diff --git a/Makefile b/Makefile index 2876be152..143fee074 100644 --- a/Makefile +++ b/Makefile @@ -1,123 +1,530 @@ -# Master Makefile to compile everything in /usr/src except the system. +# $NetBSD: Makefile,v 1.299 2012/08/17 16:22:27 joerg Exp $ + +# +# This is the top-level makefile for building NetBSD. For an outline of +# how to build a snapshot or release, as well as other release engineering +# information, see http://www.NetBSD.org/developers/releng/index.html +# +# Not everything you can set or do is documented in this makefile. In +# particular, you should review the files in /usr/share/mk (especially +# bsd.README) for general information on building programs and writing +# Makefiles within this structure, and see the comments in src/etc/Makefile +# for further information on installation and release set options. +# +# Variables listed below can be set on the make command line (highest +# priority), in /etc/mk.conf (middle priority), or in the environment +# (lowest priority). +# +# Variables: +# DESTDIR is the target directory for installation of the compiled +# software. It defaults to /. Note that programs are built against +# libraries installed in DESTDIR. +# MKMAN, if `no', will prevent building of manual pages. +# MKOBJDIRS, if not `no', will build object directories at +# an appropriate point in a build. +# MKSHARE, if `no', will prevent building and installing +# anything in /usr/share. +# MKUPDATE, if not `no', will avoid a `make cleandir' at the start of +# `make build', as well as having the effects listed in +# /usr/share/mk/bsd.README. +# NOCLEANDIR, if defined, will avoid a `make cleandir' at the start +# of the `make build'. +# NOINCLUDES will avoid the `make includes' usually done by `make build'. +# +# See mk.conf(5) for more details. +# +# +# Targets: +# build: +# Builds a full release of NetBSD in DESTDIR, except for the +# /etc configuration files. +# If BUILD_DONE is set, this is an empty target. +# distribution: +# Builds a full release of NetBSD in DESTDIR, including the /etc +# configuration files. +# buildworld: +# As per `make distribution', except that it ensures that DESTDIR +# is not the root directory. +# installworld: +# Install the distribution from DESTDIR to INSTALLWORLDDIR (which +# defaults to the root directory). Ensures that INSTALLWORLDDIR +# is not the root directory if cross compiling. +# release: +# Does a `make distribution', and then tars up the DESTDIR files +# into ${RELEASEDIR}/${RELEASEMACHINEDIR}, in release(7) format. +# (See etc/Makefile for more information on this.) +# regression-tests: +# Runs the regression tests in "regress" on this host. +# sets: +# Populate ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets +# from ${DESTDIR} +# sourcesets: +# Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR} +# syspkgs: +# Populate ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/syspkgs +# from ${DESTDIR} +# iso-image: +# Create CD-ROM image in RELEASEDIR/iso. +# RELEASEDIR must already have been populated by `make release' +# or equivalent. +# iso-image-source: +# Create CD-ROM image with source in RELEASEDIR/iso. +# RELEASEDIR must already have been populated by +# `make release sourcesets' or equivalent. +# live-image: +# Create bootable live image for emulators or USB stick etc. +# in RELEASEDIR/liveimage. +# RELEASEDIR must already have been populated by `make release' +# or equivalent. +# install-image: +# Create bootable installation image for USB stick etc. +# in RELEASEDIR/installimage. +# RELEASEDIR must already have been populated by `make release' +# or equivalent. +# +# Targets invoked by `make build,' in order: +# cleandir: cleans the tree. +# do-top-obj: creates the top level object directory. +# do-tools-obj: creates object directories for the host toolchain. +# do-tools: builds host toolchain. +# obj: creates object directories. +# do-distrib-dirs: creates the distribution directories. +# includes: installs include files. +# do-tools-compat: builds the "libnbcompat" library; needed for some +# random host tool programs in the source tree. +# do-lib: builds and installs prerequisites from lib +# if ${MKCOMPAT} != "no". +# do-compat-lib: builds and installs prerequisites from compat/lib +# if ${MKCOMPAT} != "no". +# do-build: builds and installs the entire system. +# do-x11: builds and installs X11 if ${MKX11} != "no"; either +# X11R7 from src/external/mit/xorg if ${X11FLAVOUR} == "Xorg" +# or X11R6 from src/x11 +# do-extsrc: builds and installs extsrc if ${MKEXTSRC} != "no". +# do-obsolete: installs the obsolete sets (for the postinstall-* targets). +# + +.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == "" +.MAKEFLAGS: -m ${.CURDIR}/share/mk +.endif + +# +# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may +# not be the top level objdir, because "make obj" can happen in the *middle* +# of "make build" (long after is calculated it). So, pre-set +# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}. +# +_SRC_TOP_OBJ_= .include -MAKE?=make +# +# Sanity check: make sure that "make build" is not invoked simultaneously +# with a standard recursive target. +# -usage: - @echo "" - @echo "Master Makefile for MINIX commands and utilities." - @echo "Root privileges are required for some actions." - @echo "" - @echo "Usage:" - @echo " make world # Compile everything (libraries & commands)" - @echo " make includes # Install include files from src/" - @echo " make libraries # Compile and install libraries" - @echo " make commands # Compile all, commands, but don't install" - @echo " make install # Compile and install commands" - @echo " make clean # Remove all compiler results" - @echo "" - @echo "Run 'make' in releasetools/ to create a new MINIX configuration." - @echo "" +.if make(build) || make(release) || make(snapshot) +.for targ in ${TARGETS:Nobj:Ncleandir} +.if make(${targ}) && !target(.BEGIN) +.BEGIN: + @echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.' + @false +.endif +.endfor +.endif -# world has to be able to make a new system, even if there -# is no complete old system. it has to install commands, for which -# it has to install libraries, for which it has to install includes, -# for which it has to install /etc (for users and ownerships). -# etcfiles also creates a directory hierarchy in its -# 'make install' target. -# +# +# _SUBDIR is used to set SUBDIR, after removing directories that have +# BUILD_${dir}=no, or that have no ${dir}/Makefile. +# +_SUBDIR= tools lib include gnu external crypto/external bin games +_SUBDIR+= libexec sbin usr.bin +_SUBDIR+= commands man +_SUBDIR+= common drivers kernel servers +_SUBDIR+= usr.sbin share rescue sys etc tests compat .WAIT distrib regress -# etcfiles has to be done first. - -distribution: etcfiles includes mkfiles libraries do-libgcc .WAIT dep-all install etcforce - -do-libgcc: .PHONY .MAKE - ${MAKEDIRTARGET} external/gpl3/gcc/lib/libgcc/libgcc all - ${MAKEDIRTARGET} external/gpl3/gcc/lib/libgcc/libgcc install - -world: mkfiles etcfiles includes libraries dep-all install etcforce - -# subdirs where userland utilities and other executables live -CMDSDIRS=commands bin sbin usr.bin usr.sbin libexec external - -# subdirs where system stuff lives -SYSDIRS=sys kernel servers drivers - -# combination -CMDSYSDIRS=$(CMDSDIRS) $(SYSDIRS) - -etcfiles: .PHONY .MAKE - ${MAKEDIRTARGET} etc install - -etcforce: .PHONY .MAKE - ${MAKEDIRTARGET} etc installforce - -mkfiles: .PHONY .MAKE - ${MAKEDIRTARGET} share/mk install - -includes: .PHONY .MAKE - ${MAKEDIRTARGET} include includes - ${INSTALL_DIR} ${DESTDIR}/usr/include/g++ - ${MAKEDIRTARGET} lib includes - ${MAKEDIRTARGET} sys includes - ${MAKEDIRTARGET} external includes - -.for dir in lib lib/csu lib/libc -do-${dir:S/\//-/g}: .PHONY .MAKE - ${MAKEDIRTARGET} ${dir} dependall - ${MAKEDIRTARGET} ${dir} install +.for dir in ${_SUBDIR} +.if "${dir}" == ".WAIT" \ + || (${BUILD_${dir}:Uyes} != "no" && exists(${dir}/Makefile)) +SUBDIR+= ${dir} +.endif .endfor -# libraries are built by building and installing csu, then libc, then -# the rest -libraries: includes .PHONY .MAKE do-lib-csu .WAIT do-lib-libc .WAIT do-lib +.if exists(regress) +regression-tests: .PHONY .MAKE + @echo Running regression tests... + ${MAKEDIRTARGET} regress regress +.endif -commands: includes libraries .PHONY .MAKE -.for dir in $(CMDSDIRS) - ${MAKEDIRTARGET} ${dir} dependall -.endfor +.if ${MKUNPRIVED} != "no" +NOPOSTINSTALL= # defined +.endif -dep-all: .PHONY .MAKE -.for dir in $(CMDSYSDIRS) - ${MAKEDIRTARGET} ${dir} dependall -.endfor - -install: .PHONY .MAKE -.for dir in $(CMDSYSDIRS) - ${MAKEDIRTARGET} ${dir} install -.endfor - ${MAKEDIRTARGET} man install +afterinstall: .PHONY .MAKE +.if ${MKMAN} != "no" +.if !defined(__MINIX) + ${MAKEDIRTARGET} share/man makedb +.else ${MAKEDIRTARGET} man makedb - ${MAKEDIRTARGET} share install - ${MAKEDIRTARGET} releasetools install +.endif # !defined(__MINIX) +.endif +.if !defined(__MINIX) +.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no") + ${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta +.endif +.endif # !defined(__MINIX) +.if !defined(NOPOSTINSTALL) + ${MAKEDIRTARGET} . postinstall-check +.endif -clean: mkfiles .PHONY .MAKE -.for dir in $(CMDSDIRS) - ${MAKEDIRTARGET} ${dir} clean +_POSTINSTALL= ${.CURDIR}/usr.sbin/postinstall/postinstall +_POSTINSTALL_ENV= \ + AWK=${TOOL_AWK:Q} \ + DB=${TOOL_DB:Q} \ + HOST_SH=${HOST_SH:Q} \ + MAKE=${MAKE:Q} \ + PWD_MKDB=${TOOL_PWD_MKDB:Q} \ + STAT=${TOOL_STAT:Q} + +postinstall-check: .PHONY + @echo " === Post installation checks ===" + ${_POSTINSTALL_ENV} ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check; if [ $$? -gt 1 ]; then exit 1; fi + @echo " ================================" + +postinstall-fix: .NOTMAIN .PHONY + @echo " === Post installation fixes ===" + ${_POSTINSTALL_ENV} ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix + @echo " ===============================" + +postinstall-fix-obsolete: .NOTMAIN .PHONY + @echo " === Removing obsolete files ===" + ${_POSTINSTALL_ENV} ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete + @echo " ===============================" + + +# +# Targets (in order!) called by "make build". +# +.if defined(HAVE_GCC) +.if ${HAVE_GCC} == "4" +LIBGCC_EXT=4 +BUILD_CC_LIB_BASEDIR= gnu/lib +BUILD_CC_LIB_BASETARGET= gnu-lib +.else +LIBGCC_EXT= +BUILD_CC_LIB_BASEDIR= external/gpl3/gcc/lib +BUILD_CC_LIB_BASETARGET= external-gpl3-gcc-lib +.endif +.endif + +BUILDTARGETS+= check-tools +.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR) +BUILDTARGETS+= cleandir +.endif +.if ${MKOBJDIRS} != "no" +BUILDTARGETS+= do-top-obj +.endif +.if ${USETOOLS} == "yes" # { +.if ${MKOBJDIRS} != "no" +BUILDTARGETS+= do-tools-obj +.endif +BUILDTARGETS+= do-tools +.endif # USETOOLS # } +.if ${MKOBJDIRS} != "no" +BUILDTARGETS+= obj +.endif +BUILDTARGETS+= clean_METALOG +.if !defined(NODISTRIBDIRS) +BUILDTARGETS+= do-distrib-dirs +.endif +.if !defined(NOINCLUDES) +BUILDTARGETS+= includes +.endif +BUILDTARGETS+= do-lib +.if !defined(__MINIX) +# LSC Not used in MINIX3 +BUILDTARGETS+= do-compat-lib +.endif # !defiend(__MINIX) +BUILDTARGETS+= do-build +.if ${MKX11} != "no" +BUILDTARGETS+= do-x11 +.endif +.if ${MKEXTSRC} != "no" +BUILDTARGETS+= do-extsrc +.endif +BUILDTARGETS+= do-obsolete + +# +# Enforce proper ordering of some rules. +# + +.ORDER: ${BUILDTARGETS} +includes-lib: .PHONY includes-include includes-sys +includes-gnu: .PHONY includes-lib + +# +# Build the system and install into DESTDIR. +# + +START_TIME!= date + +build: .PHONY .MAKE +.if defined(BUILD_DONE) + @echo "Build already installed into ${DESTDIR}" +.else + @echo "Build started at: ${START_TIME}" +.for tgt in ${BUILDTARGETS} + ${MAKEDIRTARGET} . ${tgt} .endfor - ${MAKEDIRTARGET} sys clean - ${MAKEDIRTARGET} releasetools clean - ${MAKEDIRTARGET} lib clean - ${MAKEDIRTARGET} test clean + ${MAKEDIRTARGET} etc install-etc-release + @echo "Build started at: ${START_TIME}" + @printf "Build finished at: " && date +.endif -cleandepend: mkfiles .PHONY .MAKE -.for dir in $(CMDSYSDIRS) - ${MAKEDIRTARGET} ${dir} cleandepend +# +# Build a full distribution, but not a release (i.e. no sets into +# ${RELEASEDIR}). "buildworld" enforces a build to ${DESTDIR} != / +# + +distribution buildworld: .PHONY .MAKE +.if make(buildworld) && \ + (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") + @echo "Won't make ${.TARGET} with DESTDIR=/" + @false +.endif + ${MAKEDIRTARGET} . build NOPOSTINSTALL=1 + ${MAKEDIRTARGET} etc distribution INSTALL_DONE=1 +.if defined(__MINIX) + ${MAKEDIRTARGET} releasetools hdboot +.endif # defined(__MINIX) +.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/" + ${MAKEDIRTARGET} . postinstall-fix-obsolete + ${MAKEDIRTARGET} distrib/sets checkflist +.endif + @echo "make ${.TARGET} started at: ${START_TIME}" + @printf "make ${.TARGET} finished at: " && date + +# +# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/') +# If installing to /, ensures that the host's operating system is NetBSD and +# the host's `uname -m` == ${MACHINE}. +# + +HOST_UNAME_S!= uname -s +.if ${HOST_OSTYPE:C/\-.*//} != "Minix" +HOST_UNAME_M!= uname -m +.else +HOST_UNAME_M:= ${MACHINE} +.endif + +installworld: .PHONY .MAKE +.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") + @echo "Can't make ${.TARGET} to DESTDIR=/" + @false +.endif +.if !defined(INSTALLWORLDDIR) || \ + ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/" +.if (${HOST_UNAME_S} != "Minix") + @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to Minix with INSTALLWORLDDIR=/" + @false +.endif +.if (${HOST_UNAME_M} != ${MACHINE}) + @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/" + @false +.endif +.endif + ${MAKEDIRTARGET} distrib/sets installsets \ + INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=${INSTALLSETS:Q} + ${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR} + @echo "make ${.TARGET} started at: ${START_TIME}" + @printf "make ${.TARGET} finished at: " && date + +# +# Install modules from $DESTDIR to $INSTALLMODULESDIR +# +installmodules: .PHONY .MAKE +.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") + @echo "Can't make ${.TARGET} to DESTDIR=/" + @false +.endif +.if !defined(INSTALLMODULESDIR) || \ + ${INSTALLMODULESDIR} == "" || ${INSTALLMODULESDIR} == "/" +.if (${HOST_UNAME_S} != "NetBSD") + @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLMODULESDIR=/" + @false +.endif +.if (${HOST_UNAME_M} != ${MACHINE}) + @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLMODULESDIR=/" + @false +.endif +.endif + ${MAKEDIRTARGET} sys/modules install DESTDIR=${INSTALLMODULESDIR:U/} + @echo "make ${.TARGET} started at: ${START_TIME}" + @printf "make ${.TARGET} finished at: " && date + +# +# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR +# + +.for tgt in sets sourcesets syspkgs +${tgt}: .PHONY .MAKE + ${MAKEDIRTARGET} distrib/sets ${tgt} .endfor - ${MAKEDIRTARGET} lib cleandepend -# Shorthands -all: .PHONY .MAKE dep-all - ${MAKEDIRTARGET} releasetools all +# +# Build a release or snapshot (implies "make distribution"). Note that +# in this case, the set lists will be checked before the tar files +# are made. +# -# Obsolete targets -elf-libraries: .PHONY - echo "That target is just libraries now." - false +release snapshot: .PHONY .MAKE + ${MAKEDIRTARGET} . distribution + ${MAKEDIRTARGET} etc release DISTRIBUTION_DONE=1 + @echo "make ${.TARGET} started at: ${START_TIME}" + @printf "make ${.TARGET} finished at: " && date -gnu-includes: .PHONY - echo "That target is obsolete." - echo "Current MINIX GCC packages don't require it any more." - false +# +# Create a CD-ROM image. +# +iso-image: .PHONY + ${MAKEDIRTARGET} distrib iso_image + ${MAKEDIRTARGET} etc iso-image + @echo "make ${.TARGET} started at: ${START_TIME}" + @printf "make ${.TARGET} finished at: " && date + +iso-image-source: .PHONY + ${MAKEDIRTARGET} distrib iso_image CDSOURCE=true + ${MAKEDIRTARGET} etc iso-image + @echo "make ${.TARGET} started at: ${START_TIME}" + @printf "make ${.TARGET} finished at: " && date + +# +# Create bootable live images. +# + +live-image: .PHONY + ${MAKEDIRTARGET} etc live-image + @echo "make ${.TARGET} started at: ${START_TIME}" + @printf "make ${.TARGET} finished at: " && date + +# +# Create bootable installation images. +# + +install-image: .PHONY + ${MAKEDIRTARGET} etc install-image + @echo "make ${.TARGET} started at: ${START_TIME}" + @printf "make ${.TARGET} finished at: " && date + +# +# Special components of the "make build" process. +# + +check-tools: .PHONY +.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN) + @echo '*** WARNING: Building on MACHINE=${MACHINE} with missing toolchain.' + @echo '*** May result in a failed build or corrupt binaries!' +.elif defined(EXTERNAL_TOOLCHAIN) + @echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.' +.endif +.if defined(NBUILDJOBS) + @echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!' +.endif + +# Delete or sanitise a leftover METALOG from a previous build. +clean_METALOG: .PHONY .MAKE +.if ${MKUPDATE} != "no" + ${MAKEDIRTARGET} distrib/sets clean_METALOG +.endif + +do-distrib-dirs: .PHONY .MAKE +.if !defined(DESTDIR) || ${DESTDIR} == "" + ${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/ +.else + ${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR} +.endif + +.for targ in cleandir obj includes +do-${targ}: .PHONY ${targ} + @true +.endfor + +.for dir in tools tools/compat +do-${dir:S/\//-/g}: .PHONY .MAKE +.for targ in dependall install + ${MAKEDIRTARGET} ${dir} ${targ} +.endfor +.endfor + +do-lib: .PHONY .MAKE + ${MAKEDIRTARGET} lib build_install + +do-compat-lib: .PHONY .MAKE + ${MAKEDIRTARGET} compat build_install BOOTSTRAP_SUBDIRS="../../../lib" + +do-top-obj: .PHONY .MAKE + ${MAKEDIRTARGET} . obj NOSUBDIR= + +do-tools-obj: .PHONY .MAKE + ${MAKEDIRTARGET} tools obj + +do-build: .PHONY .MAKE +.for targ in dependall install + ${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no +.endfor + +do-x11: .PHONY .MAKE +.if ${MKX11} != "no" +.if ${X11FLAVOUR} == "Xorg" + ${MAKEDIRTARGET} external/mit/xorg build +.else + ${MAKEDIRTARGET} x11 build +.endif +.else + @echo "MKX11 is not enabled" + @false +.endif + +do-extsrc: .PHONY .MAKE +.if ${MKEXTSRC} != "no" + ${MAKEDIRTARGET} extsrc build +.else + @echo "MKEXTSRC is not enabled" + @false +.endif + +do-obsolete: .PHONY .MAKE + ${MAKEDIRTARGET} etc install-obsolete-lists + +# +# Speedup stubs for some subtrees that don't need to run these rules. +# (Tells not to recurse for them.) +# + +.for dir in bin etc distrib games libexec regress sbin usr.bin usr.sbin tools +includes-${dir}: .PHONY + @true +.endfor +.for dir in etc distrib regress +install-${dir}: .PHONY + @true +.endfor + +# +# XXX this needs to change when distrib Makefiles are recursion compliant +# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first... +# +dependall-distrib depend-distrib all-distrib: .PHONY + @true + +.include +.include +.include +.include + +# +# Display current make(1) parameters +# +params: .PHONY .MAKE + ${MAKEDIRTARGET} etc params diff --git a/bin/Makefile b/bin/Makefile index e7f753820..23adf7694 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -1,7 +1,7 @@ -# Makefile for bin +# $NetBSD: Makefile,v 1.22 2007/12/31 15:31:24 ad Exp $ +# @(#)Makefile 8.1 (Berkeley) 5/31/93 -.include - -SUBDIR= cat date ed mkdir pax rm rmdir +SUBDIR= cat date ed \ + mkdir pax rm rmdir .include diff --git a/bin/Makefile.inc b/bin/Makefile.inc index 256ee67d8..08d46e687 100644 --- a/bin/Makefile.inc +++ b/bin/Makefile.inc @@ -1,2 +1,11 @@ -BINDIR?=/bin +# $NetBSD: Makefile.inc,v 1.17 2012/03/21 05:47:53 matt Exp $ +# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93 +.include # for MKDYNAMICROOT definition + +WARNS?= 5 +BINDIR?= /bin + +.if (${MKDYNAMICROOT} == "no") +LDSTATIC?= -static +.endif diff --git a/bin/mkdir/Makefile b/bin/mkdir/Makefile index dd2e0c364..c3aca13a9 100644 --- a/bin/mkdir/Makefile +++ b/bin/mkdir/Makefile @@ -2,6 +2,8 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= mkdir +.ifdef __MINIX SYMLINKS= $(BINDIR)/$(PROG) /usr/bin/$(PROG) +.endif .include diff --git a/bin/pax/Makefile b/bin/pax/Makefile index 433e98c53..fe56afc43 100644 --- a/bin/pax/Makefile +++ b/bin/pax/Makefile @@ -54,6 +54,11 @@ DPADD+= ${LIBRMT} .if defined(__MINIX) CPPFLAGS+= -DHOSTPROG CPPFLAGS+= -Dlchown=chown -Dlchmod=chmod + +MAN+= bsdtar.1 + +bsdtar.1: tar.1 + ${INSTALL} ${.ALLSRC} ${.TARGET} .endif .include diff --git a/build.sh b/build.sh index b63b2adfa..f6009c6f7 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #! /usr/bin/env sh -# $NetBSD: build.sh,v 1.254 2012/02/26 20:32:40 tsutsui Exp $ +# $NetBSD: build.sh,v 1.255 2012/08/05 04:39:09 matt Exp $ # # Copyright (c) 2001-2011 The NetBSD Foundation, Inc. # All rights reserved. @@ -554,6 +554,14 @@ getarch() # case "${MACHINE}" in + evbearm-e[bl]) + makewrappermachine=${MACHINE} + # MACHINE_ARCH is "arm" or "armeb", not "armel" + MACHINE_ARCH=earm${MACHINE##*-} + MACHINE_ARCH=${MACHINE_ARCH%el} + MACHINE=evbarm + ;; + evbarm-e[bl]) makewrappermachine=${MACHINE} # MACHINE_ARCH is "arm" or "armeb", not "armel" @@ -658,6 +666,11 @@ getarch() MACHINE_ARCH=${MACHINE} ;; + i[4-6]86) + MACHINE=i386 + MACHINE_ARCH=i386 + ;; + *) bomb "Unknown target MACHINE: ${MACHINE}" ;; @@ -671,7 +684,7 @@ validatearch() # case "${MACHINE_ARCH}" in - alpha|arm|armeb|hppa|i386|m68000|m68k|mipse[bl]|mips64e[bl]|powerpc|powerpc64|sh3e[bl]|sparc|sparc64|vax|x86_64|ia64) + alpha|arm|armeb|earm|earmeb|hppa|i386|m68000|m68k|mipse[bl]|mips64e[bl]|powerpc|powerpc64|sh3e[bl]|sparc|sparc64|vax|x86_64|ia64) ;; "") @@ -689,7 +702,11 @@ validatearch() case "${MACHINE}" in evbarm) - arches="arm armeb" + arches="arm armeb earm earmeb" + ;; + + cats|iyonix|netwinder|shark|zaurus) + arches="arm earm" ;; algor|arc|cobalt|pmax) @@ -1196,8 +1213,7 @@ parseoptions() [ -z "${BUILDID}" ] || makeenv="${makeenv} BUILDID" MAKEFLAGS="-de -m ${TOP}/share/mk ${MAKEFLAGS}" MAKEFLAGS="${MAKEFLAGS} MKOBJDIRS=${MKOBJDIRS-yes}" - BUILDSH=1 - export MAKEFLAGS MACHINE MACHINE_ARCH BUILDSH + export MAKEFLAGS MACHINE MACHINE_ARCH } # sanitycheck -- @@ -1521,7 +1537,7 @@ validatemakeparams() if [ -z "${DESTDIR}" ] || [ "${DESTDIR}" = "/" ]; then if ${do_build} || ${do_distribution} || ${do_release}; then if ! ${do_build} || \ - [ "${uname_s}" != "NetBSD" ] || \ + [ "${uname_s}" != "Minix" ] || \ [ "${uname_m}" != "${MACHINE}" ]; then bomb "DESTDIR must != / for cross builds, or ${progname} 'distribution' or 'release'." fi @@ -1657,7 +1673,7 @@ createmakewrapper() eval cat < -YHEADER=1 PROG= sh - -SHSRCS= alias.c arith.y arith_lex.l cd.c echo.c error.c eval.c exec.c expand.c \ - histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \ - mystring.c options.c output.c parser.c redir.c show.c \ - trap.c var.c setmode.c expr.c regexp.c -GENSRCS= builtins.c init.c nodes.c syntax.c operators.c signames.c -GENHDRS= builtins.h nodes.h syntax.h token.h operators.h signames.h -SRCS= ${SHSRCS} ${GENSRCS} -DPSRCS+=${GENHDRS} BINDIR= /bin MAN= -DPADD+= ${LIBL} ${LIBEDIT} -LDADD+= -ll -ledit - -LFLAGS= -8 # 8-bit lex scanner for arithmetic -YFLAGS= -d - -# The .depend file can get references to these temporary files -.OPTIONAL: lex.yy.c y.tab.c - # Enable this line to disable command line editing #EDIT=-DNO_HISTORY # Enable this line to use the editline library instead of libedit @@ -37,55 +18,83 @@ EDIT=-DEDITLINE NO_JOBS=-DJOBS=0 MKB_NO_JOBS=-j -CPPFLAGS+=-DSHELL -I. -I${.CURDIR} +SRCS= alias.c arith.y arith_lex.l cd.c eval.c exec.c expand.c \ + histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \ + mystring.c options.c output.c parser.c redir.c show.c \ + trap.c var.c setmode.c + +.include "${.CURDIR}/bltin/Makefile.inc" + +GENSRCS= builtins.c init.c nodes.c syntax.c operators.c signames.c +GENHDRS= builtins.h nodes.h syntax.h token.h operators.h signames.h + +SRCS+= ${GENSRCS} + +CLEANFILES+=${GENSRCS} ${GENHDRS} + +DPADD+= ${LIBL} ${LIBEDIT} +LDADD+= -ll -ledit + +CPPFLAGS+= -DSHELL -D__NBSD_LIBC CPPFLAGS+=${EDIT} ${NO_PATHS_H} ${NO_JOBS} -.PATH: ${.CURDIR}/bltin +CPPFLAGS+= -I. -I${.CURDIR} -CLEANFILES+= mkinit mkinit.lo mknodes mknodes.lo \ - mksyntax mksyntax.lo mksignames mksignames.lo -CLEANFILES+= ${GENSRCS} ${GENHDRS} y.tab.h +# A. Generate C tools used to build ash +.for tool in init nodes signames syntax +${.OBJDIR}/mk${tool}: ${.CURDIR}/mk${tool}.c + ${HOST_CC} ${.ALLSRC} -o ${.TARGET} +.endfor -build-tools: mkinit mknodes mksyntax mksignames +# B. Generates C sources from C tools +NODES_ARGS:= ${.CURDIR}/nodetypes ${.CURDIR}/nodes.c.pat +INIT_ARGS:= alias.c eval.c exec.c input.c jobs.c options.c parser.c \ + redir.c trap.c var.c -.ORDER: builtins.c builtins.h -builtins.c builtins.h: mkbuiltins builtins.def shell.h - cd ${.CURDIR}; sh mkbuiltins ${MKB_NO_JOBS} ${.OBJDIR} shell.h builtins.def +.for tool in nodes signames syntax +${tool}.c ${tool}.h: ${.OBJDIR}/mk${tool} + ${.OBJDIR}/mk${tool} ${${tool:tu}_ARGS} +.endfor -init.c: mkinit alias.c eval.c exec.c input.c jobs.c options.c parser.c \ - redir.c trap.c var.c - ./mkinit ${.ALLSRC:S/^mkinit$//} +init.c: ${.OBJDIR}/mkinit \ + alias.c eval.c exec.c input.c jobs.c options.c parser.c \ + redir.c trap.c var.c + ${.OBJDIR}/mkinit ${.ALLSRC:S/^${.OBJDIR}/mkinit$//} -mkinit: mkinit.lo - ${HOST_LINK.c} mkinit.lo -o $@ +# C. Generates C sources from shell scripts +token.h: + ${.CURDIR}/mktokens.sh -mknodes: mknodes.lo - ${HOST_LINK.c} mknodes.lo -o $@ -mksyntax: mksyntax.lo - ${HOST_LINK.c} mksyntax.lo -o $@ -mksignames: mksignames.lo - ${HOST_LINK.c} mksignames.lo -o $@ +builtins.c builtins.h: + ${.CURDIR}/mkbuiltins.sh ${MKB_NO_JOBS} . ${.CURDIR}/shell.h ${.CURDIR}/builtins.def -.ORDER: nodes.c nodes.h -nodes.c nodes.h: mknodes nodetypes nodes.c.pat - ./mknodes ${.CURDIR}/nodetypes ${.CURDIR}/nodes.c.pat +operators.c operators.h: + ${.CURDIR}/bltin/mkexpr.sh ${.CURDIR}/bltin/unary_op ${.CURDIR}/bltin/binary_op -.ORDER: syntax.c syntax.h -syntax.c syntax.h: mksyntax - ./mksyntax +# D. Generates sources from yacc/lex +LFLAGS= -8 # 8-bit lex scanner for arithmetic -token.h: mktokens - sh ${.CURDIR}/mktokens +YFLAGS:= -d +CLEANFILES+= arith.h arith.y.o -.ORDER: signames.c signames.h -signames.c signames.h: mksignames - ./mksignames +parser.c: token.h +y.tab.h: arith.y +arith.h: y.tab.h +arith_lex.l: arith.h -.ORDER: operators.c operators.h -operators.c operators.h: mkexpr unary_op binary_op - sh ${.CURDIR}/bltin/mkexpr ${.CURDIR}/bltin/unary_op ${.CURDIR}/bltin/binary_op +# Explicit dependencies to ensure creation when needed +# LSC FIXME Under MINIX, the build system curiously needs more help. +# is it because of the missing order tools? +expand.c: arith.h +trap.c: signames.h +cd.c complete.c eval.c exec.c expand.c jobs.c main.c options.c parser.c redir.c show.c trap.c var.c: nodes.h +eval.c exec.c expand.c input.c input.h jobs.c mystring.c output.c parser.c trap.c var.c: syntax.h -arith.h: arith.c -arith.c: arith.y +# LSC: Seems that this file is implicitly taken into account by NetBSD's make, +# still seems to be ignored / not found currently. +# It's a sad story, as it has default rules to manage yacc / lex files. So for +# a happy ending here it is explicitly included: +.include .include + diff --git a/commands/ash/TOUR b/commands/ash/TOUR old mode 100755 new mode 100644 diff --git a/commands/ash/bltin/Makefile.inc b/commands/ash/bltin/Makefile.inc new file mode 100644 index 000000000..5e13a4d40 --- /dev/null +++ b/commands/ash/bltin/Makefile.inc @@ -0,0 +1,7 @@ + +.PATH: ${.CURDIR}/bltin + +SRCS+= echo.c error.c expr.c regexp.c + +# LSC Again nbmake seems dumber on MINIX... +expr.c: operators.h diff --git a/commands/ash/bltin/binary_op b/commands/ash/bltin/binary_op old mode 100755 new mode 100644 diff --git a/commands/ash/bltin/makefile.not b/commands/ash/bltin/makefile.not old mode 100755 new mode 100644 diff --git a/commands/ash/bltin/mkexpr b/commands/ash/bltin/mkexpr.sh similarity index 99% rename from commands/ash/bltin/mkexpr rename to commands/ash/bltin/mkexpr.sh index 7b7397f9c..c01483b50 100755 --- a/commands/ash/bltin/mkexpr +++ b/commands/ash/bltin/mkexpr.sh @@ -1,3 +1,4 @@ +#!/bin/sh # Copyright 1989 by Kenneth Almquist. All rights reserved. # # This file is part of ash. Ash is distributed under the terms specified diff --git a/commands/ash/bltin/unary_op b/commands/ash/bltin/unary_op old mode 100755 new mode 100644 diff --git a/commands/ash/mkbuiltins b/commands/ash/mkbuiltins.sh similarity index 100% rename from commands/ash/mkbuiltins rename to commands/ash/mkbuiltins.sh diff --git a/commands/ash/mktokens b/commands/ash/mktokens.sh similarity index 100% rename from commands/ash/mktokens rename to commands/ash/mktokens.sh diff --git a/commands/ash/nodes.c.pat b/commands/ash/nodes.c.pat old mode 100755 new mode 100644 diff --git a/commands/ash/nodetypes b/commands/ash/nodetypes old mode 100755 new mode 100644 diff --git a/commands/backup/Makefile b/commands/backup/Makefile index 0d4a75d35..3f497da6b 100644 --- a/commands/backup/Makefile +++ b/commands/backup/Makefile @@ -1,3 +1,6 @@ +# LSC For nwo +NOGCCERROR:= yes + PROG= backup MAN= diff --git a/commands/cal/Makefile b/commands/cal/Makefile index 485169960..603d422db 100644 --- a/commands/cal/Makefile +++ b/commands/cal/Makefile @@ -1,3 +1,5 @@ +# LSC For now... +NOGCCERROR:=yes PROG= cal MAN= diff --git a/commands/cawf/Makefile b/commands/cawf/Makefile index a24d73a50..9b635d6d4 100644 --- a/commands/cawf/Makefile +++ b/commands/cawf/Makefile @@ -33,6 +33,9 @@ # malloc() and its relatives (most do). # #DEFS = -DUNIX -DMALLOCH +#LSC For now... +NOGCCERROR:= yes + DEFS= -DUNIX -DUSG -DSTDLIB CPPFLAGS+= ${DEFS} diff --git a/commands/chmod/Makefile b/commands/chmod/Makefile index b02ab5b84..2dd84c717 100644 --- a/commands/chmod/Makefile +++ b/commands/chmod/Makefile @@ -1,3 +1,5 @@ +# LSC For now... +NOGCCERROR:= yes PROG= chmod MAN= BINDIR=/bin diff --git a/commands/chown/Makefile b/commands/chown/Makefile index d2fbd6890..2c728982b 100644 --- a/commands/chown/Makefile +++ b/commands/chown/Makefile @@ -1,3 +1,5 @@ +# LSC For Now +NOGCCERROR:= yes PROG= chown MAN= diff --git a/commands/cleantmp/Makefile b/commands/cleantmp/Makefile index ff4c1f285..2083a6622 100644 --- a/commands/cleantmp/Makefile +++ b/commands/cleantmp/Makefile @@ -1,3 +1,5 @@ +# LSC For now +NOGCCERROR:= yes PROG= cleantmp MAN= diff --git a/commands/compress/Makefile b/commands/compress/Makefile index 5f72558bb..f55347a19 100644 --- a/commands/compress/Makefile +++ b/commands/compress/Makefile @@ -1,3 +1,5 @@ +# LSC For Now... +NOGCCERROR:= yes PROG= compress MAN= diff --git a/commands/cp/Makefile b/commands/cp/Makefile index e9bc2bf39..f9e269761 100644 --- a/commands/cp/Makefile +++ b/commands/cp/Makefile @@ -1,3 +1,5 @@ +# LSC For Now... +NOGCCERROR:= yes PROG= cp BINDIR= /bin MAN= diff --git a/commands/cron/Makefile b/commands/cron/Makefile index 20e67631a..7348b1810 100644 --- a/commands/cron/Makefile +++ b/commands/cron/Makefile @@ -1,5 +1,7 @@ # Makefile for cron. +# LSC For Now... +NOGCCERROR:=yes PROG= cron SRCS= cron.c tab.c misc.c MAN= diff --git a/commands/crontab/Makefile b/commands/crontab/Makefile index 5e5dcf0fc..59092ba18 100644 --- a/commands/crontab/Makefile +++ b/commands/crontab/Makefile @@ -2,6 +2,9 @@ .include +# LSC For now... +NOGCCERROR:= yes + PROG= crontab SRCS= crontab.c tab.c misc.c CPPFLAGS+= -I${.CURDIR} -I${NETBSDSRCDIR}/commands/cron diff --git a/commands/dd/Makefile b/commands/dd/Makefile index 491f47956..d1177c82c 100644 --- a/commands/dd/Makefile +++ b/commands/dd/Makefile @@ -1,3 +1,5 @@ +# LSC For now +NOGCCERROR:=yes PROG= dd MAN= diff --git a/commands/devmand/Makefile b/commands/devmand/Makefile index 2f405296d..02dc7a834 100644 --- a/commands/devmand/Makefile +++ b/commands/devmand/Makefile @@ -1,15 +1,20 @@ + PROG = devmand - -SRCS = main.c lex.yy.c y.tab.c - -lex.yy.c: usb_scan.l y.tab.h - ${LEX} usb_scan.l - -y.tab.c y.tab.h: usb.y - ${YACC} -d usb.y - -CLEANFILES = y.tab.c y.tab.h *.d lex.yy.c lex.yy.o main.o y.tab.o MAN = + +SRCS = main.c usb_scan.l usb.y +CPPFLAGS+= -I${.CURDIR} + +YFLAGS:= -d +CLEANFILES+= y.tab.h + +usb_scan.l: usb.y + .include +# LSC: Seems that this file is implicitly taken into account by NetBSD's make, +# still seems to be ignored / not found currently. +# It's a sad story, as it has default rules to manage yacc / lex files. So for +# a happy ending here it is explicitly included: +.include diff --git a/commands/elvis/Makefile b/commands/elvis/Makefile index f7e94cf3a..8ecabd1e7 100644 --- a/commands/elvis/Makefile +++ b/commands/elvis/Makefile @@ -15,6 +15,9 @@ CPPFLAGS+= -w -DCRUNCH \ -DNO_MODELINE -DNO_OPTCOLS -DNO_DIGRAPH -DNO_EXTENSIONS \ -DNO_ERRLIST -DNO_FKEY -DNO_VISIBLE -DNO_COLOR -DNO_POPUP +# LSC Force usage of local getline +CPPFLAGS+= -D__NBSD_LIBC + ########################################################################### ### The rest of this Makefile contains no user-serviceable parts ### ########################################################################### @@ -25,13 +28,8 @@ SRCS.elvis= blk.c cmd1.c cmd2.c ctype.c curses.c cut.c ex.c input.c \ unix.c vars.c vcmd.c vi.c BINDIR= /usr/bin -.if !exists(${BINDIR}/vi) LINKS+= ${BINDIR}/elvis ${BINDIR}/vi -.endif - -.if !exists(${BINDIR}/ex) LINKS+= ${BINDIR}/elvis ${BINDIR}/ex -.endif MAN.elvis= MAN.ctags= diff --git a/commands/finger/Makefile b/commands/finger/Makefile index 34e9f8c59..266ac246a 100644 --- a/commands/finger/Makefile +++ b/commands/finger/Makefile @@ -1,4 +1,7 @@ PROG= finger MAN= +# LSC Force finger to use its local fwopen macro +CPPFLAGS.finger.c+=-D__NBSD_LIBC + .include diff --git a/commands/fix/Makefile b/commands/fix/Makefile index 9caaa4219..468e9bc3b 100644 --- a/commands/fix/Makefile +++ b/commands/fix/Makefile @@ -1,4 +1,7 @@ PROG= fix MAN= +# LSC Force fix to use its local definition of getline +CPPFLAGS.fix.c+= -D__NBSD_LIBC + .include diff --git a/commands/ftp101/Makefile b/commands/ftp101/Makefile index 553f02a2c..642587ed4 100644 --- a/commands/ftp101/Makefile +++ b/commands/ftp101/Makefile @@ -8,4 +8,7 @@ PROG= ftp SRCS= ftp.c local.c file.c xfer.c other.c net.c crc.c CPPFLAGS+= -DCRC_ONLY +# LSC Force ftp.c to use its local definition of getline +CPPFLAGS+= -D__NBSD_LIBC + .include diff --git a/commands/gcov-pull/Makefile b/commands/gcov-pull/Makefile index 8a121bd58..d45578426 100644 --- a/commands/gcov-pull/Makefile +++ b/commands/gcov-pull/Makefile @@ -1,4 +1,6 @@ PROG=gcov-pull MAN= +CPPFLAGS.gcov-pull.c+= -D__NBSD_LIBC + .include diff --git a/commands/getty/Makefile b/commands/getty/Makefile index 6425275df..f9b649e7a 100644 --- a/commands/getty/Makefile +++ b/commands/getty/Makefile @@ -1,3 +1,5 @@ +# LSC For now... +NOGCCERROR:= yes PROG= getty BINDIR= /bin MAN= diff --git a/commands/host/Makefile b/commands/host/Makefile index 1186419b0..8a7cfb1b3 100644 --- a/commands/host/Makefile +++ b/commands/host/Makefile @@ -1,4 +1,6 @@ PROG= host MAN= +CPPFLAGS.host.c+= -D__NBSD_LIBC + .include diff --git a/commands/hostaddr/Makefile b/commands/hostaddr/Makefile index 38065619a..28de61595 100644 --- a/commands/hostaddr/Makefile +++ b/commands/hostaddr/Makefile @@ -1,5 +1,6 @@ PROG= hostaddr BINMODE= 4755 MAN= +CPPFLAGS+= -D__NBSD_LIBC .include diff --git a/commands/logger/Makefile b/commands/logger/Makefile index ac8698341..ec5c48ab5 100644 --- a/commands/logger/Makefile +++ b/commands/logger/Makefile @@ -1,4 +1,5 @@ PROG= logger MAN= +CPPFLAGS.logger.c+= -D__NBSD_LIBC .include diff --git a/commands/ls/Makefile b/commands/ls/Makefile index d3d12a065..b7d100432 100644 --- a/commands/ls/Makefile +++ b/commands/ls/Makefile @@ -2,4 +2,7 @@ PROG= ls BINDIR= /bin MAN= +# LSC Force usage of local mergesort +CPPFLAGS.ls.c+= -D__NBSD_LIBC + .include diff --git a/commands/nonamed/Makefile b/commands/nonamed/Makefile index 251068e78..5f25bbeca 100644 --- a/commands/nonamed/Makefile +++ b/commands/nonamed/Makefile @@ -1,4 +1,6 @@ PROG= nonamed MAN= +CPPFLAGS+=-D__NBSD_LIBC + .include diff --git a/commands/reboot/Makefile b/commands/reboot/Makefile index 91c6cee4e..18497691d 100644 --- a/commands/reboot/Makefile +++ b/commands/reboot/Makefile @@ -12,4 +12,6 @@ SYMLINKS+= ${BINDIR}/reboot /usr/bin/reboot MAN.shutdown= MAN.halt= +CPPFLAGS+= -D__NBSD_LIBC + .include diff --git a/commands/syslogd/Makefile b/commands/syslogd/Makefile index 09e1ab69b..01e2a2d14 100644 --- a/commands/syslogd/Makefile +++ b/commands/syslogd/Makefile @@ -6,6 +6,7 @@ PROG= syslogd PIDFILE= -DPIDFILE=\"/var/run/syslogd.pid\" CPPFLAGS+= -Ddebug=0 ${PIDFILE} +CPPFLAGS+= -D__NBSD_LIBC BINMODE= 700 MAN= diff --git a/commands/tcpstat/Makefile b/commands/tcpstat/Makefile index 7cdd0ace3..37d123357 100644 --- a/commands/tcpstat/Makefile +++ b/commands/tcpstat/Makefile @@ -1,5 +1,8 @@ PROG= tcpstat CPPFLAGS+= -I${NETBSDSRCDIR}/servers -D'ARGS(a)=a' + +# LSC Force inet.h to use ioc_net.h +CPPFLAGS+= -D__NBSD_LIBC MAN= .include diff --git a/commands/udpstat/Makefile b/commands/udpstat/Makefile index 8d0894d5e..07c321ed3 100644 --- a/commands/udpstat/Makefile +++ b/commands/udpstat/Makefile @@ -2,4 +2,7 @@ PROG= udpstat CPPFLAGS+= -I${NETBSDSRCDIR}/servers -D'ARGS(a)=a' MAN= +# LSC Force inet.h to use sys/ioc_net.h +CPPFLAGS+= -D__NBSD_LIBC + .include diff --git a/commands/writeisofs/Makefile b/commands/writeisofs/Makefile index 001a6a161..1355e8826 100644 --- a/commands/writeisofs/Makefile +++ b/commands/writeisofs/Makefile @@ -1,4 +1,7 @@ PROG= writeisofs MAN= +# LSC Prevent redefinition ot types +CPPFLAGS.writeisofs.c+= -D__NBSD_LIBC + .include diff --git a/common/Makefile b/common/Makefile new file mode 100644 index 000000000..b3f5270bd --- /dev/null +++ b/common/Makefile @@ -0,0 +1,4 @@ + +SUBDIR+= include + +.include diff --git a/common/include/Makefile b/common/include/Makefile new file mode 100644 index 000000000..833574271 --- /dev/null +++ b/common/include/Makefile @@ -0,0 +1,8 @@ + +INCSDIR= /usr/include/minix + +INCS+= termios.h + +SUBDIR+= sys + +.include diff --git a/common/include/Makefile.termios.inc b/common/include/Makefile.termios.inc deleted file mode 100644 index c3d78b77a..000000000 --- a/common/include/Makefile.termios.inc +++ /dev/null @@ -1,6 +0,0 @@ -.include - -.PATH: ${NETBSDSRCDIR}/common/include - -INCS+= termios.h - diff --git a/common/include/sys/Makefile.inc b/common/include/sys/Makefile similarity index 63% rename from common/include/sys/Makefile.inc rename to common/include/sys/Makefile index 88a9a8b98..b895df8be 100644 --- a/common/include/sys/Makefile.inc +++ b/common/include/sys/Makefile @@ -1,10 +1,11 @@ -.include -.PATH: ${NETBSDSRCDIR}/common/include/sys +INCSDIR= /usr/include/sys -INCS+= elf64.h elf_common.h elf_generic.h \ +INCS+= elf64.h elf_common.h elf_generic.h \ ioc_block.h ioc_fbd.h ioc_file.h ioc_tape.h ioc_disk.h \ ioc_memory.h ioc_sound.h ioc_tty.h \ kbdio.h mtio.h svrctl.h video.h vm.h procfs.h elf_core.h exec_elf.h \ disk.h dkio.h ioccom.h mutex.h iostat.h disklabel.h disklabel_gpt.h \ - bootblock.h dkbad.h extattr.h + bootblock.h dkbad.h + +.include diff --git a/common/lib/libc/Makefile.inc b/common/lib/libc/Makefile.inc index 4a63d6bfb..862b6bc0b 100644 --- a/common/lib/libc/Makefile.inc +++ b/common/lib/libc/Makefile.inc @@ -1,12 +1,13 @@ -# $NetBSD: Makefile.inc,v 1.10 2008/10/26 07:22:50 mrg Exp $ +# $NetBSD: Makefile.inc,v 1.12 2012/07/08 01:21:12 rmind Exp $ COMMON_DIR:=${.PARSEDIR} .if defined(__MINIX) COMMON_CODEDIRS=atomic gen inet md net quad stdlib string +COMMON_CODEDIRS+=hash/sha1 hash/sha2 hash/rmd160 .else COMMON_CODEDIRS=atomic gen gmon inet md net quad stdlib string sys +COMMON_CODEDIRS+=hash/sha1 hash/sha2 hash/rmd160 hash/murmurhash .endif -COMMON_CODEDIRS+=hash/sha1 hash/sha2 hash/rmd160 .if defined(COMMON_MACHINE_ARCH) && !empty(COMMON_MACHINE_ARCH) && \ exists(${COMMON_DIR}/arch/${COMMON_MACHINE_ARCH}) @@ -29,6 +30,11 @@ COMMON_ARCHDIR=${COMMON_DIR}/arch/${COMMON_ARCHSUBDIR} .if exists(${COMMON_ARCHDIR}/${i}/Makefile.inc) .include "${COMMON_ARCHDIR}/${i}/Makefile.inc" .endif +.if !empty(CPPFLAGS:M-DLIBKERN_OPTIMISE_SPACE) && \ + exists(${COMMON_ARCHDIR}/$i/small) +.PATH.S: ${COMMON_ARCHDIR}/$i/small +.endif + .if exists(${COMMON_ARCHDIR}/$i) .PATH.c: ${COMMON_ARCHDIR}/$i .PATH.S: ${COMMON_ARCHDIR}/$i diff --git a/common/lib/libc/arch/arm/atomic/Makefile.inc b/common/lib/libc/arch/arm/atomic/Makefile.inc index 2d1c864e9..e14c9b36d 100644 --- a/common/lib/libc/arch/arm/atomic/Makefile.inc +++ b/common/lib/libc/arch/arm/atomic/Makefile.inc @@ -1,19 +1,40 @@ -# $NetBSD: Makefile.inc,v 1.8 2009/01/04 17:54:29 pooka Exp $ +# $NetBSD: Makefile.inc,v 1.9 2012/08/16 16:49:10 matt Exp $ + +ARMV6= ${CPUFLAGS:M-march=armv7*} ${CPUFLAGS:M-mcpu=cortex*} +ARMV6+= ${CPUFLAGS:M-march=armv6*} ${CPUFLAGS:M-mcpu=arm11*} +ARMV6+= ${CFLAGS:M-march=armv7*:} ${CFLAGS:M-mcpu=cortex*} +ARMV6+= ${CFLAGS:M-march=armv6*:} ${CFLAGS:M-mcpu=arm11*} +ARMV6+= ${CPPFLAGS:M-march=armv7*:} ${CPPFLAGS:M-mcpu=cortex*} +ARMV6+= ${CPPFLAGS:M-march=armv6*:} ${CPPFLAGS:M-mcpu=arm11*} .if defined(LIB) && (${LIB} == "kern" || ${LIB} == "c" || ${LIB} == "pthread" \ || ${LIB} == "rump" || (defined(__MINIX) && ${LIB} == "sys")) -SRCS+= atomic_add_32_cas.c atomic_add_32_nv_cas.c atomic_and_32_cas.c \ - atomic_and_32_nv_cas.c atomic_dec_32_cas.c atomic_dec_32_nv_cas.c \ - atomic_inc_32_cas.c atomic_inc_32_nv_cas.c atomic_or_32_cas.c \ - atomic_or_32_nv_cas.c atomic_swap_32_cas.c membar_ops_nop.c +.if empty(ARMV6) +SRCS.atomic+= atomic_add_32_cas.c atomic_add_32_nv_cas.c \ + atomic_and_32_cas.c atomic_and_32_nv_cas.c \ + atomic_dec_32_cas.c atomic_dec_32_nv_cas.c \ + atomic_inc_32_cas.c atomic_inc_32_nv_cas.c \ + atomic_or_32_cas.c atomic_or_32_nv_cas.c \ + atomic_swap_32_cas.c membar_ops_nop.c +.else +SRCS.atomic+= atomic_add_32.S atomic_and_32.S atomic_cas_32.S \ + atomic_dec_32.S atomic_inc_32.S atomic_or_32.S \ + atomic_swap.S membar_ops.S +.endif .endif .if defined(LIB) && (${LIB} == "c" || ${LIB} == "pthread") -SRCS+= atomic_init_testset.c -SRCS+= atomic_cas_up.S +.if empty(ARMV6) +SRCS.atomic+= atomic_init_testset.c +SRCS.atomic+= atomic_cas_up.S CPPFLAGS+= -D__HAVE_ASM_ATOMIC_CAS_UP +.else +SRCS.atomic+= atomic_init_cas.c +.endif .endif + +SRCS+= ${SRCS.atomic} diff --git a/common/lib/libprop/Makefile.inc b/common/lib/libprop/Makefile.inc index 65685934e..2e14639eb 100644 --- a/common/lib/libprop/Makefile.inc +++ b/common/lib/libprop/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.8 2008/06/30 20:14:09 matt Exp $ +# $NetBSD: Makefile.inc,v 1.9 2012/07/27 09:10:59 pooka Exp $ .PATH: ${.PARSEDIR} @@ -6,4 +6,6 @@ SRCS+= prop_array.c prop_array_util.c prop_bool.c prop_data.c \ prop_dictionary.c prop_dictionary_util.c prop_ingest.c \ prop_kern.c prop_number.c prop_object.c prop_stack.c prop_string.c -#SRCS+= prop_rb.c +.ifdef (PROPLIB_WANT_RB) +SRCS+= prop_rb.c +.endif diff --git a/distrib/Makefile b/distrib/Makefile new file mode 100644 index 000000000..4cdb27ff7 --- /dev/null +++ b/distrib/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.19 2012/02/14 19:39:37 joerg Exp $ + +.include + +.if ${MKGROFF} != "no" +SUBDIR= notes .WAIT +.endif + +.if !defined(__MINIX) +SUBDIR+= utils +.endif + +.if exists(${MACHINE}/miniroot/Makefile.inc) +SUBDIR+= miniroot .WAIT +.endif + +.if exists(${RELEASEMACHINE}/Makefile) +SUBDIR+= ${RELEASEMACHINE} +.endif + +TARGETS+=release +TARGETS+=iso_image +TARGETS+=live_image +TARGETS+=install_image + +.include diff --git a/distrib/Makefile.inc b/distrib/Makefile.inc new file mode 100644 index 000000000..087e2b4ee --- /dev/null +++ b/distrib/Makefile.inc @@ -0,0 +1,7 @@ +# $NetBSD: Makefile.inc,v 1.10 2012/01/22 03:53:32 tsutsui Exp $ + +.include "../Makefile.inc" + +iso_image: .PHONY +live_image: .PHONY +install_image: .PHONY diff --git a/distrib/common/10-resolv.conf b/distrib/common/10-resolv.conf new file mode 100644 index 000000000..ce23dc518 --- /dev/null +++ b/distrib/common/10-resolv.conf @@ -0,0 +1,22 @@ +# Minimal version using shell builtins. + +make_resolv_conf() +{ + if [ -z "${new_domain_name_servers}" -a \ + -z "${new_domain_name}" -a \ + -z "${new_domain_search}" ]; then + return 0 + fi + if [ -n "${new_domain_search}" ]; then + echo "search ${new_domain_search}" >> /etc/resolv.conf + elif [ -n "${new_domain_name}" ]; then + echo "search ${new_domain_name}" >> /etc/resolv.conf + fi + for x in ${new_domain_name_servers}; do + echo "nameserver ${x}" >> /etc/resolv.conf + done +} + +case "${reason}" in +BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT) make_resolv_conf;; +esac diff --git a/distrib/common/99-print-sysinst b/distrib/common/99-print-sysinst new file mode 100644 index 000000000..a0ecdef17 --- /dev/null +++ b/distrib/common/99-print-sysinst @@ -0,0 +1,11 @@ +# $NetBSD: 99-print-sysinst,v 1.1 2009/04/07 11:49:17 joerg Exp $ + +case "${reason}" in +BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT) + cat > /tmp/dhcpcd-lease << EOF +host-name=${new_host_name} +domain-name=${new_domain_name} +EOF + set > /tmp/dhcpcd-lease-all + ;; +esac diff --git a/distrib/common/Makefile.bootcd b/distrib/common/Makefile.bootcd new file mode 100644 index 000000000..bfbf9bca4 --- /dev/null +++ b/distrib/common/Makefile.bootcd @@ -0,0 +1,227 @@ +# $NetBSD: Makefile.bootcd,v 1.20 2012/08/17 16:57:59 riz Exp $ +# +# Makefile snipped to create a CD/DVD ISO +# + +# XXX TODO: +# 1) merge with src/distrib/cdrom +# 2) teach makefs to add data from more than 1 directory (see below) + +# +# Required variables: +# CDBASE Basename of the iso +# +# Optional variables: +# CDRELEASE Set to 'true' to include $RELEASEDIR/$MACHINE on the CD +# CDRELEASE_NOISOS Excludes installation/cdrom directory if set +# CDSOURCE Set to 'true' to include $RELEASEDIR/source on the CD +# CDEXTRA Set to a list of files or directories containing extra +# stuff to put on CD (set by build.sh -C flag) +# CDBUILDEXTRA Set to a list of files or directories containing extra +# stuff to put on CD (use in Makefiles) +# CDEXTRA_SKIP A list of file exclusion paths to exclude when copying +# directories of extra stuff in CDEXTRA AND CDBUILDEXTRA +# BOOT Defaults to $DESTDIR/usr/mdec/boot +# BOOTXX_CD9660 Defaults to $DESTDIR/usr/mdec/bootxx_cd9660 +# CDBOOTOPTIONS Options for installboot, eg -o console=com0,speed=9600 +# CDMAKEFSOPTIONS Options for makefs, eg bootimage=i386;bootxx,no-emul-boot +# CDROMS_RELEASEDIR Where to install ${CDBASE}.iso +# CDINSTKERNEL instkernel directory (relative to ${.CURDIR}) +# CDKERNELS couples of the form: +# source name_on_cd +# CDRUNTIME files/directories to copy from $DESTDIR onto the CD +# source kernels are copied from ${CDINSTKERNEL} (or its obj dir) +# note that as of yet, bootxx_cd9660 can't load kernel names of more than +# 8 chars (though they can be in a sub-directory meaning the pathname is +# longer than 8 chars) +# + +BOOT?= ${DESTDIR}/usr/mdec/boot +BOOTXX_CD9660?= ${DESTDIR}/usr/mdec/bootxx_cd9660 +CDRELEASE?= false +CDSOURCE?= false +.if ${CDRELEASE} == false +CDROMS_RELEASEDIR?= ${MACHINE}/installation/cdrom +.else +CDROMS_RELEASEDIR?= images +.endif +.if defined(CDRELEASE_NOISOS) +CDRELEASE_EXCLUDE= -s ',./installation/cdrom.*,,gp' +.endif +.if !defined(CDRELEASE_LIVEIMAGE) +CDRELEASE_EXCLUDE+= -s ',./installation/liveimage.*,,gp' +.endif +.if !defined(CDRELEASE_INSTALLIMAGE) +CDRELEASE_EXCLUDE+= -s ',./installation/installimage.*,,gp' +.endif + +.include # for HOST_SH +.include # For PRINTOBJDIR +.include # For KERNSRCDIR + +DISTRIBVER!= ${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh +DISTRIBREV!= ${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh -s +ISO_VOLID!= echo NETBSD_${DISTRIBREV} | tr a-z A-Z +PUBLISHER?= The_NetBSD_Project +.if defined(CDMAKEFSOPTIONS) +_CDMAKEFSOPTIONS= rockridge,label=${ISO_VOLID},publisher=${PUBLISHER},${CDMAKEFSOPTIONS} +.else +_CDMAKEFSOPTIONS= rockridge,label=${ISO_VOLID},publisher=${PUBLISHER} +.endif + +# Stuff that should come from elsewhere - XXX where? - HF +CP?= cp +RM?= rm +MKDIR?= mkdir -p +CHMOD?= chmod +ECHO?= echo + +.if ${CDRELEASE} == false +CDIMAGE= ${CDBASE}.iso +.else +CDIMAGE= NetBSD-${DISTRIBVER}-${CDBASE:S/cd$//}.iso +.endif + +CLEANFILES+= ${CDIMAGE} +CLEANFILES+= bootxx.${MACHINE} + + +.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" + +.if defined(CDINSTKERNEL) +_INSTKERNELNOBJDIR!= cd ${.CURDIR}/${CDINSTKERNEL} && ${PRINTOBJDIR} +.endif +.if exists(${DESTDIR}/usr/mdec/bootxx_cd9660) +.if exists(${DESTDIR}/usr/mdec/boot.${MACHINE}) +BOOT2=boot.${MACHINE} +.else +BOOT2=boot +.endif +.endif + +prepare: + ${MKDIR} cdrom +.if defined(CDKERNELS) +.for kernel target in ${CDKERNELS} + ${CP} ${_INSTKERNELNOBJDIR}/${kernel} cdrom/${target} +.endfor +.if exists(${DESTDIR}/usr/mdec/bootxx_cd9660) + ${RM} -f cdrom/${BOOT2} + ${CP} ${DESTDIR}/usr/mdec/${BOOT2} cdrom/${BOOT2} + ${RM} -f bootxx.${MACHINE} + ${CP} ${DESTDIR}/usr/mdec/bootxx_cd9660 bootxx.${MACHINE} + ${CHMOD} +w bootxx.${MACHINE} +.if defined(CDBOOTOPTIONS) + ${TOOL_INSTALLBOOT} -m${MACHINE} -e ${CDBOOTOPTIONS} bootxx.${MACHINE} +.endif +.endif +.endif + +# Copy $RELEASEDIR/${MACHINE} in the CDROM dir +# +# XXX This could be done a lot easier if makefs(8) could +# XXX include more than one directory on the image - HF +# +copy-releasedir: + ${RM} -f ${RELEASEDIR}/${CDROMS_RELEASEDIR}/${CDIMAGE} + if ${CDRELEASE}; then \ + if [ ! -d ${RELEASEDIR}/${RELEASEMACHINEDIR} ]; then \ + echo "Missing ${RELEASEDIR}/${RELEASEMACHINEDIR}, aborting"; \ + exit 1; \ + fi; \ + ${MKDIR} cdrom/${MACHINE}; \ + curdir=$$(pwd); \ + release_destdir=$$(pwd)/cdrom/${MACHINE}; \ + cd ${RELEASEDIR}/${RELEASEMACHINEDIR}; \ + echo Copying $$(pwd) to $$release_destdir ...; \ + ${TOOL_PAX} \ + -rw -pe -v \ + ${CDRELEASE_EXCLUDE} \ + . $$release_destdir; \ + cd $$curdir; \ + fi + if ${CDSOURCE}; then \ + if [ ! -d ${RELEASEDIR}/source ]; then \ + echo "Missing ${RELEASEDIR}/source, aborting"; \ + exit 1; \ + fi; \ + ${MKDIR} cdrom/source; \ + curdir=$$(pwd); \ + release_destdir=$$(pwd)/cdrom/source; \ + cd ${RELEASEDIR}/source; \ + echo Copying $$(pwd) to $$release_destdir ...; \ + ${TOOL_PAX} \ + -rw -pe -v \ + . $$release_destdir; \ + cd $$curdir; \ + fi + if [ "X${CDRUNTIME}}" != "X" ]; then \ + curdir=$$(pwd); \ + release_destdir=$${curdir}/cdrom; \ + cd $$release_destdir; \ + cd ${DESTDIR}; \ + for cde in ${CDRUNTIME}; \ + do \ + ${TOOL_PAX} -rw -pp -v $${cde} $$release_destdir;\ + done; \ + cd $$curdir; \ + fi + if [ "X${CDEXTRA}${CDBUILDEXTRA}" != "X" ]; then \ + curdir=`pwd`; \ + skipflag=""; \ + cdextra_skip="${CDEXTRA_SKIP}"; \ + if [ "X$${cdextra_skip}" != "X" ]; then \ + rm -f cdskip; \ + for skip in $${cdextra_skip}; \ + do \ + echo $${skip} >> cdskip; \ + done; \ + skipflag="-X $${curdir}/cdskip"; \ + fi; \ + cdextra="${CDEXTRA}"; \ + cdbuildextra="${CDBUILDEXTRA}"; \ + for cde in $${cdextra} $${cdbuildextra}; \ + do \ + release_destdir=$${curdir}/cdrom; \ + if [ -f $${cde} ]; then \ + echo Copying $${cde} to $$release_destdir ...; \ + ${CP} $${cde} $${release_destdir}; \ + elif [ -d $${cde} ]; then \ + cd $${cde}; \ + echo Copying $$(pwd) to $$release_destdir ...; \ + ${TOOL_MTREE} -c $${skipflag} | \ + ${TOOL_PAX} -rw -pe -v -M \ + $$release_destdir; \ + else \ + echo "Missing $${cde}, aborting"; \ + exit 1; \ + fi; \ + cd $$curdir; \ + done; \ + fi + +image: + ${TOOL_MAKEFS} -t cd9660 -o ${_CDMAKEFSOPTIONS:Q} ${CDIMAGE} cdrom + +.if ${CDRELEASE} == false +release: prepare .WAIT prepare_md_post .WAIT copy-releasedir .WAIT image_md_pre .WAIT image .WAIT image_md_post + ${MKDIR} ${RELEASEDIR}/${CDROMS_RELEASEDIR} + ${RELEASE_INSTALL} ${CDIMAGE} ${RELEASEDIR}/${CDROMS_RELEASEDIR} + +iso_image: +.else +release: + +iso_image: prepare .WAIT prepare_md_post .WAIT copy-releasedir .WAIT image_md_pre .WAIT image .WAIT image_md_post + ${MKDIR} ${RELEASEDIR}/${CDROMS_RELEASEDIR} + ${RELEASE_INSTALL} ${CDIMAGE} ${RELEASEDIR}/${CDROMS_RELEASEDIR} +.endif + +clean: + ${RM} -fr cdrom + +prepare_md_post: .PHONY +image_md_post: .PHONY +image_md_pre: .PHONY + +.include diff --git a/distrib/common/Makefile.crunch b/distrib/common/Makefile.crunch new file mode 100644 index 000000000..dc6d939d8 --- /dev/null +++ b/distrib/common/Makefile.crunch @@ -0,0 +1,77 @@ +# $NetBSD: Makefile.crunch,v 1.24 2008/10/19 22:05:19 apb Exp $ +# +# Makefile snippet to build a crunchgen(1)ed binary from the provided lists +# +# Required variables: +# NETBSDSRCDIR top level of src tree (set by ) +# CRUNCHBIN name of crunchgen(1)ed binary +# LISTS list file(s) to use +# +# Optional variables: +# SMALLPROG if != 0, add SMALLPROG=1 to CRUNCHENV. [default: 1] +# SMALLPROG_INET6 if != 0 and SMALLPROG != 0, and ${USE_INET6} != "no", +# add SMALLPROG_INET6=1 to CRUNCHENV. [default: 0] +# CRUNCHENV environment to pass to crunchgen(1) and when building +# the crunched program with make(1) (as command line +# variables, to override any user provided environment +# or make(1) cmdline vars). +# CRUNCHGEN_FLAGS extra options to crunchgen(1) +# DESTDIR destination directory +# PARSELISTENV environment variables to set for parselist.awk +# +# Variables modified by this: +# CRUNCHENV may get SMALLPROG=1 or SMALLPROG_INET6=1 added +# + +.if !defined(_MAKEFILE_CRUNCH_) +_MAKEFILE_CRUNCH_=1 + +CRUNCHENV+= AWK=${TOOL_AWK:Q} + +SMALLPROG?= 1 +SMALLPROG_INET6?= 0 +.if ${SMALLPROG} # { +CRUNCHENV+= SMALLPROG=1 +.if ${SMALLPROG_INET6} && (${USE_INET6} != "no") +CRUNCHENV+= SMALLPROG_INET6=1 +.endif +.endif # } + +.include "${DISTRIBDIR}/common/Makefile.parselist" + +.PHONY: ${CRUNCHBIN} +${CRUNCHBIN}: ${CRUNCHBIN}.mk ${CRUNCHBIN}.cache ${CRUNCHBIN}.c + ${MAKE} ${CRUNCHENV} -f ${CRUNCHBIN}.mk ${CRUNCHBIN}.crunched + +${CRUNCHBIN}.c: ${CRUNCHBIN}.mk + [ ! -f ${.TARGET} ] || touch ${.TARGET} + +${CRUNCHBIN}.cache: ${CRUNCHBIN}.mk + [ ! -f ${.TARGET} ] || touch ${.TARGET} + +CRUNCHGEN != command -v ${TOOL_CRUNCHGEN:[-1]} || echo + +${CRUNCHBIN}.mk: ${CRUNCHBIN}.conf ${CRUNCHGEN} + ${CRUNCHENV} ${TOOL_CRUNCHGEN} -f -D ${NETBSDSRCDIR} \ + -L ${DESTDIR}/usr/lib -q ${CRUNCHGEN_FLAGS} ${CRUNCHBIN}.conf + +${CRUNCHBIN}.conf: ${LISTS} ${PARSELISTDEP} + -rm -f ${.TARGET} ${.TARGET}.tmp + ${PARSELIST} -v mode=crunch ${LISTS} > ${.TARGET}.tmp \ + && mv ${.TARGET}.tmp ${.TARGET} + +CLEANFILES+= ${CRUNCHBIN} ${CRUNCHBIN}.conf ${CRUNCHBIN}.conf.tmp \ + ${CRUNCHBIN}.cache *.o *.cro *.c + +clean cleandir distclean: cleancrunchgen + +.PHONY: cleancrunchgen + +cleancrunchgen: + if [ -f ${CRUNCHBIN}.mk ]; then \ + ${MAKE} -f ${CRUNCHBIN}.mk clean; \ + fi + rm -f ${CRUNCHBIN}.mk + + +.endif # _MAKEFILE_CRUNCH_ diff --git a/distrib/common/Makefile.dhcpcd b/distrib/common/Makefile.dhcpcd new file mode 100644 index 000000000..b44f580eb --- /dev/null +++ b/distrib/common/Makefile.dhcpcd @@ -0,0 +1,8 @@ +# $NetBSD: Makefile.dhcpcd,v 1.1 2009/04/07 11:49:17 joerg Exp $ + +IMAGEDEPENDS+= \ + ${DESTDIR}/etc/dhcpcd.conf \ + ${DESTDIR}/libexec/dhcpcd-run-hooks \ + ${DESTDIR}/libexec/dhcpcd-hooks/30-hostname + +LISTS+= ${DISTRIBDIR}/common/list.dhcpcd diff --git a/distrib/common/Makefile.distrib b/distrib/common/Makefile.distrib new file mode 100644 index 000000000..ca2adb00e --- /dev/null +++ b/distrib/common/Makefile.distrib @@ -0,0 +1,33 @@ +# $NetBSD: Makefile.distrib,v 1.9 2012/02/17 00:33:25 riz Exp $ +# +# Makefile snippet to setup various make variables variables used in distrib/: +# +# Variables defined: +# DISTRIBDIR Top level of distrib +# DISTRIBREV NetBSD version without dots, as in "59924" +# DISTRIBVER NetBSD version with dots, as in "5.99.24" +# DISTRIBVERDEP Files to depend on for version/revision vars above +# +# Commands defined: +# MAKESUMS runs sets/makesums with the appropriate environment +# RELEASE_INSTALL installs release binaries +# +# + +.if !defined(_MAKEFILE_DISTRIB_) +_MAKEFILE_DISTRIB_=1 + +.include # for HOST_SH + +DISTRIBDIR= ${NETBSDSRCDIR}/distrib +DISTRIBREV!= ${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh -s +DISTRIBVER!= ${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh +MODULEVER!= ${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh -k +DISTRIBVERDEP= ${NETBSDSRCDIR}/sys/sys/param.h \ + ${NETBSDSRCDIR}/sys/conf/osrelease.sh + +MAKESUMS= MAKE=${MAKE:Q} CKSUM=${TOOL_CKSUM:Q} ${HOST_SH} ${DISTRIBDIR}/sets/makesums +RELEASE_INSTALL=${INSTALL} ${RENAME} ${PRESERVE} ${COPY} -m ${NONBINMODE} + + +.endif # _MAKEFILE_DISTRIB_ diff --git a/distrib/common/Makefile.image b/distrib/common/Makefile.image new file mode 100644 index 000000000..bc9cdaa7e --- /dev/null +++ b/distrib/common/Makefile.image @@ -0,0 +1,140 @@ +# $NetBSD: Makefile.image,v 1.31 2009/04/03 22:36:35 perry Exp $ +# +# Makefile snippet to build a tree from the provided lists, +# and make an ffs file system image from that tree +# +# Required variables: +# NETBSDSRCDIR top level of src tree (set by ) +# LISTS list file(s) to use +# IMAGEDEPENDS depends for ${IMAGE} +# IMAGEENDIAN endianness of ${IMAGE} +# IMAGESIZE size of ${IMAGE} +# MTREECONF mtree specfiles to use to build a master specfile +# +# Optional variables: +# IMAGE name of target image +# IMAGEPOSTBUILD operation to run on ${IMAGE} ${.TARGET} after its built +# (if this returns non zero, ${.TARGET} is removed) +# CRUNCHBIN name of crunchgen(1)ed binary +# DESTDIR destination directory +# MAKEFS_FLAGS extra options to ${TOOL_MAKEFS} +# PARSELISTENV environment variables to set for parselist.awk +# WORKDIR directory to build image in to +# IMAGETAR tar.gz file to create containing ${IMAGE}'s contents +# +# IMAGE_RELEASEDIR where to install ${IMAGE}.gz +# IMAGETAR_RELEASEDIR where to install ${IMAGETAR} +# + +.if !defined(_MAKEFILE_IMAGE_) +_MAKEFILE_IMAGE_=1 + + +WORKDIR?= work +WORKSPEC?= work.spec +WORKBUILT?= work.built + +.include "${DISTRIBDIR}/common/Makefile.parselist" + +PARSELISTENV+= TARGETDIR=${.OBJDIR}/${WORKDIR:Q} + + +.if !target(${WORKBUILT}) # { +${WORKBUILT}: ${IMAGEDEPENDS} ${WORKSPEC} ${PARSELISTDEP} ${LISTS} +# There is a .PHONY ${CRUNCHBIN}, so check if out of date by hand +# Default to `.' if ${CRUNCHBIN} isn't set, to always force a rebuild. + [ "${.OODATE}" = ${CRUNCHBIN:U.} -a -f ${WORKBUILT} -a ${WORKBUILT} -nt ${CRUNCHBIN:U.} ] || { \ + ${_MKSHMSG} " build " ${.CURDIR:T}/${WORKDIR}; \ + rm -rf ${WORKDIR} ${WORKBUILT}; \ + mkdir -m 755 ${WORKDIR} && \ + ${TOOL_MTREE} -def ${WORKSPEC} -p ${WORKDIR}/ -UW && \ + ${PARSELIST} -v mode=populate ${LISTS} | \ + ${HOST_SH} -e ${POPULATE_DEBUG} \ + && touch ${WORKBUILT} ; \ + } + +CLEANFILES+= ${WORKBUILT} + +clean cleandir distclean: cleanfsimage + +.PHONY: cleanfsimage + +cleanfsimage: + -rm -rf ${WORKDIR} ${WORKBUILT} + +.endif # ! target (${WORKBUILT}) # } + +.if !target(${WORKSPEC}) # { +${WORKSPEC}: ${MTREECONF} ${LISTS} ${PARSELISTDEP} + ${_MKTARGET_CREATE} + -rm -f ${.TARGET} ${.TARGET}.tmp + ( for i in ${MTREECONF}; do \ + echo "# --" ; \ + echo "# entries from: $$i" ; \ + echo "#" ; \ + cat $$i ; \ + echo "/unset all" ; \ + done ) >> ${.TARGET}.tmp + ${PARSELIST} -v mode=mtree ${LISTS} >> ${.TARGET}.tmp \ + && mv ${.TARGET}.tmp ${.TARGET} + +CLEANFILES+= ${WORKSPEC} ${WORKSPEC}.tmp +.endif # ! target (${WORKSPEC}) # } + +.if defined(IMAGE) # { +${IMAGE}: ${WORKBUILT} + [ "${.OODATE}" = ${WORKBUILT} -a -f ${IMAGE} -a ! ${IMAGE} -ot ${WORKBUILT} ] || { \ + ${_MKSHMSG_CREATE} ${.CURDIR:T}/${.TARGET}; \ + rm -f ${.TARGET} ${.TARGET}.tmp; \ + ${TOOL_MAKEFS} -t ffs -B ${IMAGEENDIAN} -s ${IMAGESIZE} -F ${WORKSPEC} \ + -N ${NETBSDSRCDIR}/etc -o bsize=4096,fsize=512 \ + -o optimization=space,minfree=0 \ + ${MAKEFS_FLAGS} ${.TARGET}.tmp ${WORKDIR} \ + && mv -f ${.TARGET}.tmp ${.TARGET}; \ + } +.if defined(IMAGEPOSTBUILD) + ${IMAGEPOSTBUILD} || { rm -f ${.TARGET} ; false; } +.endif + +.PHONY: fsimage +fsimage: ${IMAGE} + +${IMAGE}.gz: ${IMAGE} + ${_MKTARGET_CREATE} + -rm -f ${.TARGET} + gzip -9nc ${.ALLSRC} > ${.TARGET} + +realall: ${IMAGE} + +.if defined(IMAGE_RELEASEDIR) +release:: check_RELEASEDIR .WAIT ${IMAGE}.gz + ${RELEASE_INSTALL} ${IMAGE}.gz \ + ${RELEASEDIR}/${RELEASEMACHINEDIR}/${IMAGE_RELEASEDIR} +.endif + +CLEANFILES+= ${IMAGE} ${IMAGE}.gz ${IMAGE}.tmp +.endif # ! defined(IMAGE) # } + + +.if defined(IMAGETAR) # { +${IMAGETAR}: ${WORKBUILT} ${WORKSPEC} ${IMAGEDEPENDS} + ${_MKTARGET_CREATE} + ( cd ${WORKDIR}; \ + GZIP=-9n ${TOOL_PAX} -ON ${NETBSDSRCDIR}/etc -wdzM <${.OBJDIR}/${WORKSPEC} \ + ) > ${.TARGET}.tmp \ + && mv ${.TARGET}.tmp ${.TARGET} + +realall: ${IMAGETAR} + +CLEANFILES+= ${IMAGETAR} ${IMAGETAR}.tmp + +.if defined(IMAGETAR_RELEASEDIR) +release:: check_RELEASEDIR .WAIT ${IMAGETAR} + ${RELEASE_INSTALL} ${IMAGETAR} \ + ${RELEASEDIR}/${RELEASEMACHINEDIR}/${IMAGETAR_RELEASEDIR} +.endif + +.endif # ! defined(IMAGETAR) # } + + +.endif # _MAKEFILE_IMAGE_ diff --git a/distrib/common/Makefile.makedev b/distrib/common/Makefile.makedev new file mode 100644 index 000000000..1b549c654 --- /dev/null +++ b/distrib/common/Makefile.makedev @@ -0,0 +1,71 @@ +# $NetBSD: Makefile.makedev,v 1.18 2012/08/10 05:22:22 matt Exp $ +# +# Makefile snippet to add ${MAKEDEVTARGETS} devices to the mtree list +# (if set), otherwise copy .OBJDIR-of-etc/MAKEDEV to ./dev +# +# If this is to be used with Makefile.image, then this file should be +# .include-d first. +# +# Required variables: +# NETBSDSRCDIR top level of src tree (set by ) +# MACHINE machine name (set externally by build framework) +# +# Optional variables: +# MAKEDEVTARGETS targets to create with .OBJDIR-of-etc/MAKEDEV +# +# Variables modified by this: +# MAKEDEVSCRIPT path to .OBJDIR-of-etc/MAKEDEV +# MTREECONF may get "devices.spec" added +# LISTS may get "list.makedev" added +# IMAGEDEPENDS may get ${MAKEDEVSCRIPT} added +# PARSELISTENV may get MAKEDEVSCRIPT=... added +# + +.if !defined(_MAKEFILE_MAKEDEV_) +_MAKEFILE_MAKEDEV_=1 + + +MAKEDEVSPEC?= devices.spec + +_MAKEDEVOBJDIR!=cd ${NETBSDSRCDIR}/etc && ${PRINTOBJDIR} +MAKEDEVSCRIPT= ${_MAKEDEVOBJDIR}/MAKEDEV + +CLEANFILES+= ${MAKEDEVSPEC} ${MAKEDEVSPEC}.tmp + + +.if defined(MAKEDEVTARGETS) + +# +# MAKEDEVTARGETS is set; add those devices to the mtree spec that's +# used to build the file system +# +MTREECONF+= ${MAKEDEVSPEC} + +${MAKEDEVSPEC}: ${MAKEDEVSCRIPT} Makefile \ + ${NETBSDSRCDIR}/etc/etc.${MACHINE}/MAKEDEV.conf + + ${_MKTARGET_CREATE} + rm -f ${.TARGET} ${.TARGET}.tmp + MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \ + ${HOST_SH} ${MAKEDEVSCRIPT} -s ${MAKEDEVTARGETS} \ + > ${.TARGET}.tmp + ${TOOL_SED} -e '/^\. type=dir/d' -e 's,^\.,./dev,' ${.TARGET}.tmp \ + | sort -o ${.TARGET} + +.else # ! MAKEDEVTARGETS + +# +# MAKEDEVTARGETS isn't set; copy in /dev/MAKEDEV and rely upon +# init(8) to mount an mfs /dev and recreate the devices by +# (effectively) running "cd /dev ; ./MAKEDEV all" +# +LISTS+= ${DISTRIBDIR}/common/list.makedev +IMAGEDEPENDS+= ${MAKEDEVSCRIPT} +PARSELISTENV+= MAKEDEVSCRIPT=${MAKEDEVSCRIPT:Q} + +${MAKEDEVSPEC}: .PHONY + +.endif # ! MAKEDEVTARGETS + + +.endif # _MAKEFILE_MAKEDEV_ diff --git a/distrib/common/Makefile.mdset b/distrib/common/Makefile.mdset new file mode 100644 index 000000000..a52d97c8d --- /dev/null +++ b/distrib/common/Makefile.mdset @@ -0,0 +1,182 @@ +# $NetBSD: Makefile.mdset,v 1.35 2011/01/01 16:56:18 jym Exp $ +# +# Makefile snippet to ${TOOL_MDSETIMAGE} file system images into kernels +# + +# +# Required variables: +# NETBSDSRCDIR Top level of src tree (set by ) +# MDSETTARGETS List of images to ${TOOL_MDSETIMAGE} into kernels, +# containing one or more tuples of the form: +# KERNEL IMAGE FILENAME +# +# The kernel is ${TOOL_MDSETIMAGE} with ${IMAGE}, +# ${STRIP}ped (after the symbols are stored in +# ${FILENAME}.symbols.gz), and gzipped into +# ${FILENAME}.gz. +# +# If KERNEL does not contain a `/', use +# ${KERNOBJDIR}/KERNEL/netbsd as the kernel. +# +# If FILENAME is "-", use "netbsd-${KERNEL}" as +# the target name. This may not be a sensible +# name if KERNEL contains a `/'. +# +# Optional variables: +# MDSET_RELEASEDIR Where to install release kernels. +# +# MDSET_NOGZIP If defined, don't gzip any kernels. +# +# MDSET_NOGZIP.${FILENAME} If defined, don't gzip ${FILENAME} +# +# MDSET_NOIMAGE.${FILENAME} If defined, don't add ${IMAGE} to +# ${FILENAME} +# +# MDSET_NOSTRIP If defined, don't strip any kernels. +# +# MDSET_NOSTRIP.${FILENAME} If defined, don't strip ${FILENAME} +# +# MDSET_NOSYMBOLS If defined, don't generate *.symbols.gz +# +# MDSET_NOSYMBOLS.${FILENAME} If defined, don't generate +# ${FILENAME}.symbols.gz +# +# MDSET_POST For each kernel, +# execute this after ${NM} / ${STRIP}. +# Kernel is available as "${.TARGET}" +# +# MDSET_POST.${FILENAME} For each kernel named ${FILENAME}, +# execute this after ${NM} / ${STRIP}. +# Kernel is available as "${.TARGET}" +# +# MDSET_SUFFIXES.${FILENAME} List of extra install kernel suffixes +# and build commands to create from +# ${FILENAME} after its created by +# ${TOOL_MDSETIMAGE} ; ${NM} ; ${STRIP}: +# SUFFIX COMMANDVAR +# "${.TARGET}" is "${FILENAME}.${SUFFIX}" +# COMMANDVAR is the name of the variable +# containing the command to build +# ${.TARGET}. +# +# Variables modified by this: +# KERNELS List of kernel .gz files to build +# KERNELSYMS List of kernel .symbol.gz files to build +# + +.if !defined(_MAKEFILE_MDSET_) +_MAKEFILE_MDSET_=1 + +.include + +.for _K _I _F in ${MDSETTARGETS} # { + +_KERNEL:=${_K} # (work around obscure issue in make(1)) +.if (${_KERNEL:M*/*} != "") +_KERNNAME.${_K}.${_F}:= ${_K} +.else +_KERNNAME.${_K}.${_F}:= ${KERNOBJDIR}/${_K}/netbsd +.endif + +_FILENAME:=${_F} # (work around obscure issue in make(1)) +.if ${_FILENAME} == "-" +_KERNEL.${_K}.${_F}:= netbsd-${_K} +_FILENAME:= ${_KERNEL.${_K}.${_F}} +.else +_KERNEL.${_K}.${_F}:= ${_F} +.endif + +.for _S _C in ${MDSET_SUFFIXES.${_F}} # { +CLEANFILES+= ${_KERNEL.${_K}.${_F}}.${_S} + +${_KERNEL.${_K}.${_F}}.${_S}: ${_KERNEL.${_K}.${_F}} +.if defined(${_C}) + ${${_C}} +.else + @echo "No such variable \"${_C}\"" + false +.endif + +.if defined(MDSET_NOGZIP.${_FILENAME}) && defined(MDSET_NOGZIP) +KERNELS+= ${_KERNEL.${_K}.${_F}}.${_S} +.else # { +KERNELS+= ${_KERNEL.${_K}.${_F}}.${_S}.gz + +${_KERNEL.${_K}.${_F}}.${_S}.gz: ${_KERNEL.${_K}.${_F}}.${_S} + ${_MKTARGET_CREATE} + -rm -f ${.TARGET} + gzip -9nc ${.ALLSRC} > ${.TARGET} +.endif # } + +.endfor # } + +.if !defined(MDSET_NOSYMBOLS.${_FILENAME}) && !defined(MDSET_NOSYMBOLS) +KERNELSYMS+= ${_KERNEL.${_K}.${_F}}.symbols.gz +.endif + +.if defined(MDSET_POST.${_FILENAME}) +_POST.${_KERNEL.${_K}.${_F}}:= ${MDSET_POST.${_FILENAME}} +.elif defined(MDSET_POST) +_POST.${_KERNEL.${_K}.${_F}}:= ${MDSET_POST} +.endif + + +CLEANFILES+= ${_KERNEL.${_K}.${_F}} + +.if defined(MDSET_NOIMAGE.${_FILENAME}) +${_I}= +.endif + +# Darwin requires a special hack - this is documented in +# doc/HACKS, and just works around the problems described more +# fully in http://mail-index.netbsd.org/current-users/2008/06/27/msg003242.html +OPSYS!= uname -s +.if ${OPSYS} == "Darwin" +MDSETIMAGEFLAGS= +.else +MDSETIMAGEFLAGS=-v +.endif + +${_KERNEL.${_K}.${_F}}: .NOTMAIN ${_KERNNAME.${_K}.${_F}} ${_I} + ${_MKTARGET_CREATE} "(from: ${.ALLSRC})" + @rm -f ${.TARGET} ${.TARGET}.tmp ${.TARGET}.symbols.gz + @cp ${_KERNNAME.${_K}.${_F}} ${.TARGET}.tmp +.if !defined(MDSET_NOIMAGE.${_FILENAME}) + ${TOOL_MDSETIMAGE} ${MDSETIMAGEFLAGS} ${.TARGET}.tmp ${_I} +.endif +.if !defined(MDSET_NOSYMBOLS.${_FILENAME}) && !defined(MDSET_NOSYMBOLS) + ${NM} ${.TARGET}.tmp | gzip -9n > ${.TARGET}.symbols.gz +.endif +.if !defined(MDSET_NOSTRIP.${_FILENAME}) && !defined(MDSET_NOSTRIP) + ${STRIP} -R .comment -R .ident ${.TARGET}.tmp +.endif + @mv ${.TARGET}.tmp ${.TARGET} +.if defined(MDSET_POST.${_FILENAME}) || defined(MDSET_POST) + ${_POST.${.TARGET}} +.endif + +.if defined(MDSET_NOGZIP.${_FILENAME}) || defined(MDSET_NOGZIP) +KERNELS+= ${_KERNEL.${_K}.${_F}} +.else # { +KERNELS+= ${_KERNEL.${_K}.${_F}}.gz + +${_KERNEL.${_K}.${_F}}.gz: ${_KERNEL.${_K}.${_F}} + ${_MKTARGET_CREATE} + -rm -f ${.TARGET} + gzip -9nc ${.ALLSRC} > ${.TARGET} +.endif # } + +.endfor # } + +CLEANFILES+= ${KERNELS} ${KERNELSYMS} + +realall: ${KERNELS} + +.if defined(MDSET_RELEASEDIR) +release:: check_RELEASEDIR .WAIT ${KERNELS} + ${RELEASE_INSTALL} ${KERNELS} ${KERNELSYMS} \ + ${RELEASEDIR}/${RELEASEMACHINEDIR}/${MDSET_RELEASEDIR} +.endif + + +.endif # _MAKEFILE_MDSET_ diff --git a/distrib/common/Makefile.parselist b/distrib/common/Makefile.parselist new file mode 100644 index 000000000..f8b6dbf9b --- /dev/null +++ b/distrib/common/Makefile.parselist @@ -0,0 +1,28 @@ +# $NetBSD: Makefile.parselist,v 1.6 2008/10/19 22:05:20 apb Exp $ +# +# Makefile snippet to setup parselist.awk related variables: +# PARSELISTENV environment variables to pass to parselist.awk +# (may be appended to by caller) +# PARSELISTDEP dependency on parselist.awk +# PARSELIST run ${PARSELISTENV} awk -f ${PARSELISTDEP} +# + +.if !defined(_MAKEFILE_PARSELIST_) +_MAKEFILE_PARSELIST_=1 + + +PARSELISTENV+= NETBSDSRCDIR=${NETBSDSRCDIR:Q} \ + CRUNCHBIN=${CRUNCHBIN:Q} \ + CURDIR=${.CURDIR:Q} \ + DESTDIR=${DESTDIR:Q} \ + DISTRIBDIR=${DISTRIBDIR:Q} \ + MACHINE=${MACHINE:Q} \ + MACHINE_ARCH=${MACHINE_ARCH:Q} \ + MAKE=${MAKE:Q} \ + OBJDIR=${.OBJDIR:Q} + +PARSELISTDEP= ${DISTRIBDIR}/common/parselist.awk +PARSELIST= ${PARSELISTENV} ${TOOL_AWK} -f ${PARSELISTDEP} + + +.endif # _MAKEFILE_PARSELIST_ diff --git a/distrib/common/Makefile.tarfloppy b/distrib/common/Makefile.tarfloppy new file mode 100644 index 000000000..cfb3ca4a6 --- /dev/null +++ b/distrib/common/Makefile.tarfloppy @@ -0,0 +1,104 @@ +# $NetBSD: Makefile.tarfloppy,v 1.16 2009/04/03 22:36:35 perry Exp $ +# +# Makefile snippet to create a set of ustar floppies. +# Each floppy has an 8KB header, followed by part or all of the ustar archive. +# +# Required variables: +# NETBSDSRCDIR Top level of src tree (set by ) +# FLOPPYBASE Basename of floppies. Floppy number ${n} will +# be generated as ${FLOPPYBASE}${n}${FLOPPYSUFFIX} +# FLOPPYSIZE Size of floppy in 512 byte blocks. +# FLOPPYFILES Files to write to floppy. +# Usually set to "boot ${FLOPPYMETAFILE} netbsd" +# +# Optional variables: +# FLOPPY_BOOT Bootstrap to use as "boot". +# FLOPPY_BOOT_STRIP If yes, strip "boot" before use. +# FLOPPY_NETBSD Kernel to to use as "netbsd". +# FLOPPYINSTBOOT Installboot program to use. +# USTAR image file is in @IMAGE@. +# FLOPPYMAX Maximum number of floppies to build. +# If 1, the final image is installed as +# ${FLOPPYBASE}${FLOPPYSUFFIX} instead of +# ${FLOPPYBASE}1${FLOPPYSUFFIX} +# FLOPPYMETAFILE USTAR metafile(s) (optional) +# FLOPPYPAD If defined, pad the last floppy to ${FLOPPYSIZE} +# FLOPPYSUFFIX Suffix of created floppies. +# FLOPPY_RELEASEDIR Where to install release floppies. +# + +.if !defined(_MAKEFILE_TARFLOPPY_) +_MAKEFILE_TARFLOPPY_=1 + + +.if defined(FLOPPY_BOOT) # { +CLEANFILES+= boot +boot: ${FLOPPY_BOOT} + ${_MKTARGET_CREATE} "(from: ${.ALLSRC})" + @rm -f boot + @cp ${.ALLSRC} boot +.if defined(FLOPPY_BOOT_STRIP) + @${STRIP} boot +.endif +.endif # FLOPPY_BOOT # } + +.if defined(FLOPPY_BOOT_CFG) +CLEANFILES+= boot.cfg +boot.cfg: ${FLOPPY_BOOT_CFG} + ${_MKTARGET_CREATE} "(from: ${.ALLSRC})" + @rm -f ${.TARGET} + @cp ${.ALLSRC} ${.TARGET} +.endif # FLOPPY_BOOT_CFG + +.if defined(FLOPPY_NETBSD) # { +CLEANFILES+= netbsd netbsd.tmp +.if ${FLOPPY_NETBSD:E}=="gz" +COPY_CMD= gunzip -c ${.ALLSRC} > ${.TARGET}.tmp +COMPRESS_CMD= gzip -9nc ${.TARGET}.tmp > ${.TARGET}; rm -f ${.TARGET}.tmp +.else +COPY_CMD= cp ${.ALLSRC} ${.TARGET}.tmp +COMPRESS_CMD= mv -f ${.TARGET}.tmp ${.TARGET} +.endif +netbsd: ${FLOPPY_NETBSD} + ${_MKTARGET_CREATE} "(from: ${.ALLSRC})" + ${COPY_CMD} + ${STRIP} -R .comment -R .ident ${.TARGET}.tmp + ${COMPRESS_CMD} +.endif # FLOPPY_NETBSD # } + + +.if defined(FLOPPYMETAFILE) # { +CLEANFILES+= ${FLOPPYMETAFILE} +${FLOPPYMETAFILE}: + ${_MKTARGET_CREATE} + @rm -f ${FLOPPYMETAFILE} + @touch ${FLOPPYMETAFILE} +.endif # FLOPPYMETAFILE # } + + +${FLOPPYBASE}1${FLOPPYSUFFIX}: ${FLOPPYFILES} ${DISTRIBDIR}/common/buildfloppies.sh + ${_MKTARGET_CREATE} "(from: ${FLOPPYFILES})" + PAX=${TOOL_PAX:Q} ${HOST_SH} ${DISTRIBDIR}/common/buildfloppies.sh \ + ${FLOPPYINSTBOOT:D-i ${FLOPPYINSTBOOT}} ${FLOPPYPAD:D-p} \ + ${FLOPPYMAX:D-m ${FLOPPYMAX}} ${FLOPPYSUFFIX:D-s ${FLOPPYSUFFIX}} \ + -N ${DESTDIR}/etc \ + ${FLOPPYBASE} ${FLOPPYSIZE} ${FLOPPYFILES} + +CLEANFILES+= ${FLOPPYBASE}?${FLOPPYSUFFIX} + + +realall: ${FLOPPYBASE}1${FLOPPYSUFFIX} + +.if defined(FLOPPY_RELEASEDIR) +release:: check_RELEASEDIR .WAIT ${FLOPPYBASE}1${FLOPPYSUFFIX} + if [ -e ${FLOPPYBASE}2${FLOPPYSUFFIX} ]; then \ + ${RELEASE_INSTALL} ${FLOPPYBASE}?${FLOPPYSUFFIX} \ + ${RELEASEDIR}/${RELEASEMACHINEDIR}/${FLOPPY_RELEASEDIR}; \ + else \ + ${RELEASE_INSTALL} ${FLOPPYBASE}1${FLOPPYSUFFIX} \ + ${RELEASEDIR}/${RELEASEMACHINEDIR}/${FLOPPY_RELEASEDIR}/${FLOPPYBASE}${FLOPPYSUFFIX}; \ + fi +.endif + + +.endif # _MAKEFILE_TARFLOPPY_ diff --git a/distrib/common/bootimage/Makefile.bootimage b/distrib/common/bootimage/Makefile.bootimage new file mode 100644 index 000000000..a01040493 --- /dev/null +++ b/distrib/common/bootimage/Makefile.bootimage @@ -0,0 +1,407 @@ +# $NetBSD: Makefile.bootimage,v 1.6 2012/04/22 07:23:42 tsutsui Exp $ +# +# Copyright (c) 2009, 2010, 2011 Izumi Tsutsui. All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# +# Makefile to create a bootable FS image for USB flash or emulators +# + +# +# Required variables: +# RELEASEDIR +# Should be defined in nbmake-${MACHINE} +# IMGBASE +# Basename of the image +# +# Optional variables: +# BOOTDISK +# device name of target bootable disk specified in /etc/fstab +# (default: sd0) +# USE_MBR +# set yes if target disk image requires MBR partition +# (default: no) +# MBR_BOOTCODE +# optional MBR bootcode which should be installed by fdisk(8) +# (default: empty) +# - specified MBR_BOOTCODE must exist in ${DESTDIR}/usr/mdec +# - if MBR_BOOTCODE is not specified, +# MBR_DEFAULT_BOOTCODE (default: mbr) will be used +# if the target ${MACHINE} has the one in /usr/mdec +# USE_SUNLABEL +# set yes if target disk image requires Sun's label +# (default: no) +# INSTALLBOOT_AFTER_DISKLABEL (untested) +# set yes if the target ${MACHINE} requires disklabel +# to run installboot(8), like hp300 +# (default: empty) +# IMAGEMB +# target image size in MB +# (default: 2048) +# SWAPMB +# swap size in target image in MB +# (default: 128) +# KERN_SET +# kernel set name which should be extracted into image +# (default: kern-GENERIC) +# SETS +# binary sets that should be extracted into image +# (default: modules base etc comp games man misc tests text +# xbase xcomp xetc xfont xserver) +# SETS_DIR +# directory path where binary sets are stored +# (default: ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets) +# IMGFILE_EXTRA +# list of additional files to be copied into images, +# containing one or more tuples of the form: +# FILE TARGETPATH +# for installation image etc. +# (default: empty) +# IMGDIR_EXTRA +# list of additional directories to be copied into images, +# containing one or more tuples of the form: +# DIR TARGETPATH +# for installation image etc. +# (default: empty) +# XXX: currently permissions in IMGDIR_EXTRA are not handled +# IMGDIR_EXCLUDE +# pax(1) options to exclude files which should not copied +# into TARGETPATH in IMGDIR_EXTRA +# (default: empty) +# FSTAB_IN +# template file of /etc/fstab +# (default: ${DISTRIBDIR}/common/bootimage/fstab.in) +# SPEC_IN +# default files of spec file for makefs(8) +# (default: ${DISTRIBDIR}/common/bootimage/spec.in) +# SPEC_EXTRA +# additional files of spec file for makefs(8) +# (default: empty) +# IMGMAKEFSOPTIONS +# options passed to makefs(8) to create root file system +# (default: -o bsize=16384,fsize=2048,density=8192) +# INSTALLBOOTOPTIONS +# options passed to installboot(8), e.g., -o console=com0 +# (default: empty) +# PRIMARY_BOOT +# primary boot loader that should be installed into +# the target image via installboot(8) +# (default: empty) +# SECONDARY_BOOT +# secondary bootloader that should be put into the target image +# (default: empty) +# SECONDARY_BOOT_ARG +# extra arguments that should be passed to installboot(8) +# to specify the secondary bootloader +# (default: empty) +# DISKPROTO_IN +# template file of disklabel -R +# (default: ${DISTRIBDIR}/common/bootimage/diskproto.in +# or ${DISTRIBDIR}/common/bootimage/diskproto.mbr.in) +# OMIT_SWAPIMG +# no need to put swap partition into image (for USB stick) +# (default: no) +# + +.include # for HOST_SH +.include # +.include # for TARGET_ENDIANNESS + +.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" + +.if empty(IMGBASE) +.BEGIN: + @echo "Error: IMGBASE is not set" + @false +.endif + +# should be defined elsewhere? +CAT?= cat +CHMOD?= chmod +CP?= cp +DD?= dd +MKDIR?= mkdir -p +RM?= rm + +# +# common definitions for image +# +BOOTDISK?= sd0 +USE_MBR?= no +USE_SUNLABEL?= no +INSTALLBOOT_AFTER_DISKLABEL?= no + +# +# size parameters for image +# +IMAGEMB?= 2048 # 2048MB +SWAPMB?= 128 # 128MB + +# XXX: SWAPMB could be zero and expr(1) returns exit status 1 in that case +IMAGESECTORS!= expr ${IMAGEMB} \* 1024 \* 1024 / 512 +SWAPSECTORS!= expr ${SWAPMB} \* 1024 \* 1024 / 512 || true + +.if ${USE_MBR} == "no" +LABELSECTORS?= 0 +.else +#LABELSECTORS?= 63 # historical +#LABELSECTORS?= 32 # 16KB aligned +LABELSECTORS?= 2048 # 1MB aligned for modern flash devices +.endif + +FSSECTORS!= expr ${IMAGESECTORS} - ${SWAPSECTORS} - ${LABELSECTORS} +FSSIZE!= expr ${FSSECTORS} \* 512 + +# parameters for disklabel and MBR +HEADS= 64 +SECTORS= 32 +CYLINDERS!= expr ${IMAGESECTORS} / \( ${HEADS} \* ${SECTORS} \) +SECPERCYLINDERS!= expr ${HEADS} \* ${SECTORS} +MBRHEADS= 255 +MBRSECTORS= 63 +MBRCYLINDERS!= expr ${IMAGESECTORS} / \( ${MBRHEADS} \* ${MBRSECTORS} \) +MBRNETBSD= 169 + +BSDPARTSECTORS!= expr ${IMAGESECTORS} - ${LABELSECTORS} +FSOFFSET= ${LABELSECTORS} +SWAPOFFSET!= expr ${LABELSECTORS} + ${FSSECTORS} + +# parameters for sunlabel +FSCYLINDERS!= expr ${FSSECTORS} / \( ${HEADS} \* ${SECTORS} \) +SWAPCYLINDERS!= expr ${SWAPSECTORS} / \( ${HEADS} \* ${SECTORS} \) || true + + +# +# definitions to create root fs +# +SETS_DEFAULT= modules base etc comp games man misc tests text +.if ${MKX11} != "no" +SETS_DEFAULT+= xbase xcomp xetc xfont xserver +.endif + +KERN_SET?= kern-GENERIC +SETS?= ${SETS_DEFAULT} +IMG_SETS= ${KERN_SET} ${SETS} +SETS_DIR?= ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets + +FSTAB_IN?= ${DISTRIBDIR}/common/bootimage/fstab.in +SPEC_IN?= ${DISTRIBDIR}/common/bootimage/spec.in + +IMGMAKEFSOPTIONS?= -o bsize=16384,fsize=2048,density=8192 + +WORKDIR?= work +WORKSPEC?= work.spec +WORKFSTAB?= work.fstab +WORKRCCONF?= work.rc.conf +WORKFS?= work.rootfs +TARGETFS?= imgroot.fs + +CLEANFILES+= ${WORKSPEC} ${WORKFSTAB} ${WORKRCCONF} ${WORKFS} +CLEANFILES+= ${TARGETFS} + +# +# create root file system for the image +# +${TARGETFS}: prepare_md_post + @if [ ! -d ${RELEASEDIR}/${RELEASEMACHINEDIR} ]; then \ + echo "Missing ${RELEASEDIR}/${RELEASEMACHINEDIR}, aborting"; \ + false; \ + fi; + @${MKDIR} ${WORKDIR} +.for set in ${IMG_SETS} + @if [ ! -f ${SETS_DIR}/${set}.tgz ]; then \ + echo "Missing ${SETS_DIR}/${set}.tgz, aborting"; \ + false; \ + fi + @echo Extracting ${set}.tgz ... + @(cd ${WORKDIR}; ${TOOL_PAX} -rnz -f ${SETS_DIR}/${set}.tgz .) +.endfor +.if defined(SECONDARY_BOOT) + @echo Copying secondary boot... + ${CP} -f ${WORKDIR}/usr/mdec/${SECONDARY_BOOT} ${WORKDIR} +.endif + @echo Preparing /etc/fstab ... + ${TOOL_SED} "s/@@BOOTDISK@@/${BOOTDISK}/" < ${FSTAB_IN} > ${WORKFSTAB} + ${CP} ${WORKFSTAB} ${WORKDIR}/etc/fstab + @echo Setting rc_configured=YES in /etc/rc.conf ... + ${TOOL_SED} "s/rc_configured=NO/rc_configured=YES/" \ + < ${WORKDIR}/etc/rc.conf > ${WORKRCCONF} + ${CP} ${WORKRCCONF} ${WORKDIR}/etc/rc.conf +.if defined(IMGDIR_EXTRA) + @echo Copying extra dirs... +.for _SRCDIR _TARGET in ${IMGDIR_EXTRA} + @if [ ! -d ${_SRCDIR} ]; then \ + echo "${_SRCDIR} is not directory, aborting"; \ + false; \ + fi + ${MKDIR} ${WORKDIR}/${_TARGET} + (cd ${_SRCDIR} ; \ + ${TOOL_PAX} -rw -pe -v \ + ${IMGDIR_EXCLUDE} \ + . ${.OBJDIR}/${WORKDIR}/${_TARGET} ) +.endfor +.endif +.if defined(IMGFILE_EXTRA) + @echo Copying extra files... +.for _SRC _TARGET in ${IMGFILE_EXTRA} + @if [ ! -f ${_SRC} ]; then \ + echo "${_SRC} in IMGFILE_EXTRA not found, aborting"; \ + false; \ + fi + @if [ -f ${_SRC} ]; then \ + echo ${CP} ${_SRC} ${WORKDIR}/${_TARGET}; \ + ${CP} ${_SRC} ${WORKDIR}/${_TARGET}; \ + fi +.endfor +.endif + @echo Preparing spec files for makefs... + ${RM} -f ${WORKSPEC} + cat ${WORKDIR}/etc/mtree/* | \ + ${TOOL_SED} -e 's/ size=[0-9]*//' > ${WORKSPEC} + ${HOST_SH} ${WORKDIR}/dev/MAKEDEV -s all | \ + ${TOOL_SED} -e '/^\. type=dir/d' -e 's,^\.,./dev,' >> ${WORKSPEC} + cat ${SPEC_IN} >> ${WORKSPEC} +.if defined(SECONDARY_BOOT) + echo "./${SECONDARY_BOOT} type=file uname=root gname=operator mode=0444" \ + >> ${WORKSPEC} +.endif +.if defined(SPEC_EXTRA) + cat ${SPEC_EXTRA} >> ${WORKSPEC} +.endif + @echo Creating rootfs... + # XXX /var/spool/ftp/hidden is unreadable + ${CHMOD} +r ${WORKDIR}/var/spool/ftp/hidden + ${TOOL_MAKEFS} -M ${FSSIZE} -m ${FSSIZE} \ + -B ${TARGET_ENDIANNESS} \ + -F ${WORKSPEC} -N ${WORKDIR}/etc \ + ${IMGMAKEFSOPTIONS} \ + ${WORKFS} ${WORKDIR} +.if !empty(PRIMARY_BOOT) && ${INSTALLBOOT_AFTER_DISKLABEL} == "no" + ${TOOL_INSTALLBOOT} -v -m ${MACHINE} ${INSTALLBOOTOPTIONS} ${WORKFS} \ + ${WORKDIR}/usr/mdec/${PRIMARY_BOOT} ${SECONDARY_BOOT_ARG} +.endif + @echo done. + mv ${WORKFS} ${.TARGET} + +# +# definitions to create image +# +.if ${USE_MBR} != "no" +DISKPROTO_IN?= ${DISTRIBDIR}/common/bootimage/diskproto.mbr.in +.else +DISKPROTO_IN?= ${DISTRIBDIR}/common/bootimage/diskproto.in +.endif + +MBR_DEFAULT_BOOTCODE?= mbr + +OMIT_SWAPIMG?= no + +WORKMBR?= work.mbr +WORKSWAP?= work.swap +WORKLABEL?= work.diskproto +WORKIMG?= work.img + +CLEANFILES+= ${WORKMBR} ${WORKSWAP} +CLEANFILES+= ${WORKLABEL}.tmp ${WORKLABEL} +CLEANFILES+= ${WORKIMG} ${IMGBASE}.img + +${WORKLABEL}: + ${TOOL_SED} \ + -e "s/@@SECTORS@@/${SECTORS}/" \ + -e "s/@@HEADS@@/${HEADS}/" \ + -e "s/@@SECPERCYLINDERS@@/${SECPERCYLINDERS}/" \ + -e "s/@@CYLINDERS@@/${CYLINDERS}/" \ + -e "s/@@IMAGESECTORS@@/${IMAGESECTORS}/" \ + -e "s/@@FSSECTORS@@/${FSSECTORS}/" \ + -e "s/@@FSOFFSET@@/${FSOFFSET}/" \ + -e "s/@@SWAPSECTORS@@/${SWAPSECTORS}/" \ + -e "s/@@SWAPOFFSET@@/${SWAPOFFSET}/" \ + -e "s/@@BSDPARTSECTORS@@/${BSDPARTSECTORS}/" \ + < ${DISKPROTO_IN} > ${WORKLABEL}.tmp + mv ${WORKLABEL}.tmp ${WORKLABEL} + +${IMGBASE}.img: ${TARGETFS} ${WORKLABEL} +.if ${USE_MBR} != "no" + @echo creating MBR labels... + ${DD} if=/dev/zero of=${WORKMBR} seek=$$((${IMAGESECTORS} - 1)) count=1 + ${TOOL_FDISK} -f -i -u \ + -b ${MBRCYLINDERS}/${MBRHEADS}/${MBRSECTORS} \ + -0 -a -s ${MBRNETBSD}/${FSOFFSET}/${BSDPARTSECTORS} \ + -F ${WORKMBR} +.if empty(MBR_BOOTCODE) + @if [ -f ${WORKDIR}/usr/mdec/${MBR_DEFAULT_BOOTCODE} ]; then \ + echo ${TOOL_FDISK} -f \ + -i -c ${WORKDIR}/usr/mdec/${MBR_DEFAULT_BOOTCODE} \ + -F ${WORKMBR}; \ + ${TOOL_FDISK} -f \ + -i -c ${WORKDIR}/usr/mdec/${MBR_DEFAULT_BOOTCODE} \ + -F ${WORKMBR}; \ + fi +.else + @if [ ! -f ${WORKDIR}/usr/mdec/${MBR_BOOTCODE} ]; then \ + echo "${MBR_BOOTCODE} is not found in DESTDIR/usr/mdec, aborting"; \ + false; \ + fi + ${TOOL_FDISK} -f -i -c ${WORKDIR}/usr/mdec/${MBR_BOOTCODE} \ + -F ${WORKMBR} +.endif + ${DD} if=${WORKMBR} count=${LABELSECTORS} | \ + ${CAT} - ${TARGETFS} > ${WORKIMG} +.else + ${CP} ${TARGETFS} ${WORKIMG} +.endif +.if ${OMIT_SWAPIMG} == "no" + ${DD} if=/dev/zero of=${WORKSWAP} seek=$$((${SWAPSECTORS} - 1)) count=1 + ${CAT} ${WORKSWAP} >> ${WORKIMG} +.endif +.if ${USE_SUNLABEL} != "no" + @echo Creating sun disklabel... + printf 'V ncyl %d\nV nhead %d\nV nsect %d\na %d %d/0/0\nb %d %d/0/0\nW\n' \ + ${CYLINDERS} ${HEADS} ${SECTORS} \ + ${FSOFFSET} ${FSCYLINDERS} ${FSCYLINDERS} ${SWAPCYLINDERS} | \ + ${TOOL_SUNLABEL} -nq ${WORKIMG} +.endif + ${TOOL_DISKLABEL} -R -F ${WORKIMG} ${WORKLABEL} +.if !empty(PRIMARY_BOOT) && ${INSTALLBOOT_AFTER_DISKLABEL} != "no" + ${TOOL_INSTALLBOOT} -v -m ${MACHINE} ${INSTALLBOOTOPTOINS} ${WORKIMG} \ + ${WORKDIR}/usr/mdec/${PRIMARY_BOOT} +.endif + mv ${WORKIMG} ${.TARGET} + + +CLEANFILES+= ${IMGBASE}.img.gz ${IMGBASE}.img.gz.tmp + +${IMGBASE}.img.gz: ${IMGBASE}.img + ${TOOL_GZIP} -9c ${IMGBASE}.img > ${.TARGET}.tmp + mv ${.TARGET}.tmp ${.TARGET} + +clean: + @if [ -d ${WORKDIR}/var/spool/ftp/hidden ]; then \ + ${CHMOD} +r ${WORKDIR}/var/spool/ftp/hidden; \ + fi # XXX + ${RM} -fr ${WORKDIR} + +prepare_md_post: .PHONY +image_md_post: .PHONY +image_md_pre: .PHONY + +.include diff --git a/distrib/common/bootimage/Makefile.installimage b/distrib/common/bootimage/Makefile.installimage new file mode 100644 index 000000000..b2dd91902 --- /dev/null +++ b/distrib/common/bootimage/Makefile.installimage @@ -0,0 +1,62 @@ +# $NetBSD: Makefile.installimage,v 1.3 2012/04/22 07:23:42 tsutsui Exp $ +# +# Common Makefile to create a bootable installation image for USB flash etc. +# + +# +# Required variables: +# INSTIMGBASE +# Basename of the liveimage +# +# See Makefile.bootimage for other variables. +# + +.if !target(check_INSTIMGBASE) +check_INSTIMGBASE: .PHONY .NOTMAIN +.if !defined(INSTIMGBASE) + @echo "Error: INSTIMGBASE is not set" + @false +.else + @true +.endif +.endif + +SWAPMB= 0 # no swap +OMIT_SWAPIMG= yes # nothing to write + +KERN_SET?= kern-GENERIC +SETS?= modules base etc + +FSTAB_IN?= ${NETBSDSRCDIR}/distrib/common/bootimage/fstab.install.in + +.if ${USE_MBR} != "no" +DISKPROTO_IN?= ${NETBSDSRCDIR}/distrib/common/bootimage/diskproto.noswap.mbr.in +.else +DISKPROTO_IN?= ${NETBSDSRCDIR}/distrib/common/bootimage/diskproto.noswap.in +.endif + +# XXX: no permission info for makefs(8) +IMGDIR_EXTRA= ${RELEASEDIR}/${RELEASEMACHINEDIR} ${RELEASEMACHINEDIR} +IMGDIR_EXCLUDE= -s ',./installation/cdrom.*,,gp' +IMGDIR_EXCLUDE+= -s ',./installation/liveimage.*,,gp' +IMGDIR_EXCLUDE+= -s ',./installation/installimage.*,,gp' + +IMGBASE= ${INSTIMGBASE} + +.include "${NETBSDSRCDIR}/distrib/common/bootimage/Makefile.bootimage" + +# INSTIMG_RELEASEDIR specifies where to install ${INSTIMGBASE}.img.gz. +# This should be passed from etc/Makefile or etc/etc.${MACHINE}/Makefile.inc +# but also set default here for manual builds. +INSTIMG_RELEASEDIR?= ${RELEASEMACHINEDIR}/installation/installimage + +# should be defined elsewhere? +MKDIR?= mkdir -p + +install_image: check_INSTIMGBASE check_RELEASEDIR ${IMGBASE}.img.gz + ${MKDIR} ${INSTIMG_RELEASEDIR} + ${RELEASE_INSTALL} ${IMGBASE}.img.gz ${INSTIMG_RELEASEDIR} + # note ${MAKESUM} will be calculated in src/etc/Makefile + +release: + diff --git a/distrib/common/bootimage/Makefile.liveimage b/distrib/common/bootimage/Makefile.liveimage new file mode 100644 index 000000000..d118653cd --- /dev/null +++ b/distrib/common/bootimage/Makefile.liveimage @@ -0,0 +1,42 @@ +# $NetBSD: Makefile.liveimage,v 1.2 2012/01/22 16:50:00 tsutsui Exp $ +# +# Common Makefile to create a bootable FS image for USB flash or emulators +# + +# +# Required variables: +# LIVEIMGBASE +# Basename of the liveimage +# +# See Makefile.bootimage for other variables. +# + +.if !target(check_LIVEIMGBASE) +check_LIVEIMGBASE: .PHONY .NOTMAIN +.if !defined(LIVEIMGBASE) + @echo "Error: LIVEIMGBASE is not set" + @false +.else + @true +.endif +.endif + +IMGBASE= ${LIVEIMGBASE} + +.include "${NETBSDSRCDIR}/distrib/common/bootimage/Makefile.bootimage" + +# LIVEIMG_RELEASEDIR specifies where to install ${LIVEIMGBASE}.img.gz. +# This should be passed from etc/Makefile or etc/etc.${MACHINE}/Makefile.inc +# but also set default here for manual builds. +LIVEIMG_RELEASEDIR?= ${RELEASEMACHINEDIR}/installation/liveimage + +# should be defined elsewhere? +MKDIR?= mkdir -p + +live_image: check_LIVEIMGBASE check_RELEASEDIR ${IMGBASE}.img.gz + ${MKDIR} ${LIVEIMG_RELEASEDIR} + ${RELEASE_INSTALL} ${IMGBASE}.img.gz ${LIVEIMG_RELEASEDIR} + # note ${MAKESUM} will be calculated in src/etc/Makefile + +release: + diff --git a/distrib/common/bootimage/diskproto.in b/distrib/common/bootimage/diskproto.in new file mode 100644 index 000000000..6b7ab45b9 --- /dev/null +++ b/distrib/common/bootimage/diskproto.in @@ -0,0 +1,24 @@ +# $NetBSD: diskproto.in,v 1.1 2012/01/22 03:53:30 tsutsui Exp $ +type: ESDI +disk: image +label: +flags: +bytes/sector: 512 +sectors/track: @@SECTORS@@ +tracks/cylinder: @@HEADS@@ +sectors/cylinder: @@SECPERCYLINDERS@@ +cylinders: @@CYLINDERS@@ +total sectors: @@IMAGESECTORS@@ +rpm: 3600 +interleave: 1 +trackskew: 0 +cylinderskew: 0 +headswitch: 0 # microseconds +track-to-track seek: 0 # microseconds +drivedata: 0 + +8 partitions: +# size offset fstype [fsize bsize cpg/sgs] +a: @@FSSECTORS@@ @@FSOFFSET@@ 4.2BSD 1024 8192 16 +b: @@SWAPSECTORS@@ @@SWAPOFFSET@@ swap +c: @@IMAGESECTORS@@ 0 unused 0 0 diff --git a/distrib/common/bootimage/diskproto.mbr.in b/distrib/common/bootimage/diskproto.mbr.in new file mode 100644 index 000000000..dd31a9bed --- /dev/null +++ b/distrib/common/bootimage/diskproto.mbr.in @@ -0,0 +1,25 @@ +# $NetBSD: diskproto.mbr.in,v 1.1 2012/01/22 03:53:30 tsutsui Exp $ +type: ESDI +disk: image +label: +flags: +bytes/sector: 512 +sectors/track: @@SECTORS@@ +tracks/cylinder: @@HEADS@@ +sectors/cylinder: @@SECPERCYLINDERS@@ +cylinders: @@CYLINDERS@@ +total sectors: @@IMAGESECTORS@@ +rpm: 3600 +interleave: 1 +trackskew: 0 +cylinderskew: 0 +headswitch: 0 # microseconds +track-to-track seek: 0 # microseconds +drivedata: 0 + +8 partitions: +# size offset fstype [fsize bsize cpg/sgs] +a: @@FSSECTORS@@ @@FSOFFSET@@ 4.2BSD 1024 8192 16 +b: @@SWAPSECTORS@@ @@SWAPOFFSET@@ swap +c: @@BSDPARTSECTORS@@ @@FSOFFSET@@ unused 0 0 +d: @@IMAGESECTORS@@ 0 unused 0 0 diff --git a/distrib/common/bootimage/diskproto.noswap.in b/distrib/common/bootimage/diskproto.noswap.in new file mode 100644 index 000000000..81fa9ae23 --- /dev/null +++ b/distrib/common/bootimage/diskproto.noswap.in @@ -0,0 +1,23 @@ +# $NetBSD: diskproto.noswap.in,v 1.1 2012/01/22 03:53:30 tsutsui Exp $ +type: ESDI +disk: image +label: +flags: +bytes/sector: 512 +sectors/track: @@SECTORS@@ +tracks/cylinder: @@HEADS@@ +sectors/cylinder: @@SECPERCYLINDERS@@ +cylinders: @@CYLINDERS@@ +total sectors: @@IMAGESECTORS@@ +rpm: 3600 +interleave: 1 +trackskew: 0 +cylinderskew: 0 +headswitch: 0 # microseconds +track-to-track seek: 0 # microseconds +drivedata: 0 + +8 partitions: +# size offset fstype [fsize bsize cpg/sgs] +a: @@FSSECTORS@@ @@FSOFFSET@@ 4.2BSD 1024 8192 16 +c: @@IMAGESECTORS@@ 0 unused 0 0 diff --git a/distrib/common/bootimage/diskproto.noswap.mbr.in b/distrib/common/bootimage/diskproto.noswap.mbr.in new file mode 100644 index 000000000..4bd266925 --- /dev/null +++ b/distrib/common/bootimage/diskproto.noswap.mbr.in @@ -0,0 +1,24 @@ +# $NetBSD: diskproto.noswap.mbr.in,v 1.1 2012/01/22 03:53:30 tsutsui Exp $ +type: ESDI +disk: image +label: +flags: +bytes/sector: 512 +sectors/track: @@SECTORS@@ +tracks/cylinder: @@HEADS@@ +sectors/cylinder: @@SECPERCYLINDERS@@ +cylinders: @@CYLINDERS@@ +total sectors: @@IMAGESECTORS@@ +rpm: 3600 +interleave: 1 +trackskew: 0 +cylinderskew: 0 +headswitch: 0 # microseconds +track-to-track seek: 0 # microseconds +drivedata: 0 + +8 partitions: +# size offset fstype [fsize bsize cpg/sgs] +a: @@FSSECTORS@@ @@FSOFFSET@@ 4.2BSD 1024 8192 16 +c: @@BSDPARTSECTORS@@ @@FSOFFSET@@ unused 0 0 +d: @@IMAGESECTORS@@ 0 unused 0 0 diff --git a/distrib/common/bootimage/fstab.in b/distrib/common/bootimage/fstab.in new file mode 100644 index 000000000..e7c413bb0 --- /dev/null +++ b/distrib/common/bootimage/fstab.in @@ -0,0 +1,5 @@ +/dev/@@BOOTDISK@@a / ffs rw,log 1 1 +/dev/@@BOOTDISK@@b none none sw 0 0 +ptyfs /dev/pts ptyfs rw 0 0 +kernfs /kern kernfs rw,noauto 0 0 +procfs /proc procfs rw,noauto 0 0 diff --git a/distrib/common/bootimage/fstab.install.in b/distrib/common/bootimage/fstab.install.in new file mode 100644 index 000000000..721f22203 --- /dev/null +++ b/distrib/common/bootimage/fstab.install.in @@ -0,0 +1,2 @@ +/dev/@@BOOTDISK@@a / ffs rw,log 1 1 +tmpfs /tmp tmpfs rw 0 0 diff --git a/distrib/common/bootimage/spec.in b/distrib/common/bootimage/spec.in new file mode 100644 index 000000000..76ddcfa03 --- /dev/null +++ b/distrib/common/bootimage/spec.in @@ -0,0 +1,5 @@ +# $NetBSD: spec.in,v 1.1 2012/01/22 03:53:30 tsutsui Exp $ +./netbsd type=file mode=0755 uname=root gname=operator +./kern type=dir mode=0755 uname=root gname=operator +./proc type=dir mode=0755 uname=root gname=operator +./tmp type=dir mode=1777 uname=root gname=operator diff --git a/distrib/common/buildfloppies.sh b/distrib/common/buildfloppies.sh new file mode 100644 index 000000000..2a6ffe608 --- /dev/null +++ b/distrib/common/buildfloppies.sh @@ -0,0 +1,213 @@ +#!/bin/sh +# +# $NetBSD: buildfloppies.sh,v 1.17 2008/11/12 14:22:16 apb Exp $ +# +# Copyright (c) 2002-2003 The NetBSD Foundation, Inc. +# All rights reserved. +# +# This code is derived from software contributed to The NetBSD Foundation +# by Luke Mewburn of Wasabi Systems. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS +# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + +# set defaults +# +: ${PAX=pax} +prog=${0##*/} +etcdir=/etc + + +usage() +{ + cat 1>&2 << _USAGE_ +Usage: ${prog} [options] base size file [...] + -i instboot eval instboot as a shell command to install a + bootstrap. @IMAGE@ is replaced with with the + file name of the floppy image. + -m max maximum number of floppies to build + -N etcdir directory in which to find passwd and group files. + -p pad last floppy to floppy size + -s suffix suffix for floppies + base basename of generated floppies + size size of a floppy in 512 byte blocks + file [...] file(s) to store in the floppies +_USAGE_ + exit 1 +} + +plural() +{ + [ $1 -ne 1 ] && echo "s" +} + +roundup() +{ + echo $(( ( $1 + $2 - 1 ) / ( $2 ) )) +} + + +# parse and check arguments +# + +while getopts i:m:N:ps: opt; do + case ${opt} in + i) + instboot=${OPTARG} ;; + m) + maxdisks=${OPTARG} ;; + N) + etcdir=${OPTARG} ;; + p) + pad=1 ;; + s) + suffix=${OPTARG} ;; + \?|*) + usage + ;; + esac +done + +shift $(( ${OPTIND} - 1 )) +[ $# -lt 3 ] && usage +floppybase=$1 +floppysize=$2 +shift 2 +files=$* + +# setup temp file, remove existing images +# +floppy=floppy.$$.tar +trap "rm -f ${floppy}" 0 1 2 3 # EXIT HUP INT QUIT +rm -f ${floppybase}?${suffix} # XXX breaks if maxdisks > 9 + +# create tar file +# +dd if=/dev/zero of=${floppy} bs=8k count=1 2>/dev/null +( + echo ". type=dir optional" + for f in ${files}; do + echo "./$f type=file uname=root gname=operator mode=0444" + done +) | \ +${PAX} -O -w -b8k -M -N "${etcdir}" -s,^./,, >> ${floppy} || exit 1 + +# install bootstrap before the image is split into multiple disks +# +if [ -n "$instboot" ]; then + instboot=$( echo $instboot | sed -e s/@IMAGE@/${floppy}/ ) + echo "Running instboot: ${instboot}" + eval ${instboot} || exit 1 +fi + +# check size against available number of disks +# +set -- $(ls -ln $floppy) +bytes=$5 +blocks=$(roundup ${bytes} 512) + # when calculating numdisks, take into account: + # a) the image already has an 8K tar header prepended + # b) each floppy needs an 8K tar volume header +numdisks=$(roundup ${blocks}-16 ${floppysize}-16) +if [ -z "${maxdisks}" ]; then + maxdisks=${numdisks} +fi + +# Try to accurately summarise free space +# +msg= +# First floppy has 8k boot code, the rest an 8k 'multivolume header'. +# Each file has a 512 byte header and is rounded to a multiple of 512. +# The archive ends with two 512 byte blocks of zeros. +# The output file is then rounded up to a multiple of 8k. +# floppysize is in units of 512-byte blocks; free_space is in bytes. +free_space=$(($maxdisks * ($floppysize - 16) * 512 - 512 * 2)) +for file in $files; do + set -- $(ls -ln $file) + file_bytes=$5 + pad_bytes=$(($(roundup $file_bytes 512) * 512 - $file_bytes)) + [ "$file_bytes" != 0 -o "$file" = "${file#USTAR.volsize.}" ] && + msg="$msg $file $pad_bytes," + free_space=$(($free_space - 512 - $file_bytes - $pad_bytes)) +done +echo "Free space in last tar block:$msg" + +if [ ${numdisks} -gt ${maxdisks} ]; then + # Add in the size of the last item (we really want the kernel) ... + excess=$(( 0 - $free_space + $pad_bytes)) + echo 1>&2 \ + "$prog: Image is ${excess} bytes ($(( ${excess} / 1024 )) KB)"\ + "too big to fit on ${maxdisks} disk"$(plural ${maxdisks}) + exit 1 +fi + +padto=$(( ${floppysize} * ${maxdisks} )) +if [ -n "${pad}" ]; then + echo \ + "Writing $(( ${padto} * 512 )) bytes ($(( ${padto} / 2 )) KB)" \ + "on ${numdisks} disk"$(plural ${numdisks})"," \ + "padded by ${free_space} bytes" \ + "($(( ${free_space} / 1024 )) KB)" +else + echo "Writing ${bytes} bytes ($(( ${blocks} / 2 )) KB)"\ + "on ${numdisks} disk"$(plural ${numdisks})"," \ + "free space ${free_space} bytes" \ + "($(( ${free_space} / 1024 )) KB)" +fi + +# write disks +# +curdisk=1 +image= +seek=0 +skip=0 +floppysize8k=$(( ${floppysize} / 16 )) +while [ ${curdisk} -le ${numdisks} ]; do + image="${floppybase}${curdisk}${suffix}" + echo "Creating disk ${curdisk} to ${image}" + if [ ${curdisk} -eq 1 ]; then + : > ${image} + else + echo USTARFS ${curdisk} > ${image} + fi + count=$(( ${floppysize8k} - ${seek} )) + dd bs=8k conv=sync seek=${seek} skip=${skip} count=${count} \ + if=${floppy} of=${image} 2>/dev/null + + curdisk=$(( ${curdisk} + 1 )) + skip=$(( $skip + $count )) + seek=1 +done + +# pad last disk if necessary +# +if [ -n "${pad}" ]; then + dd if=$image of=$image conv=notrunc conv=sync bs=${floppysize}b count=1 +fi + + +# final status +# +echo "Final result:" +ls -l ${floppybase}?${suffix} # XXX breaks if maxdisks > 9 + +exit 0 diff --git a/distrib/common/list.dhcpcd b/distrib/common/list.dhcpcd new file mode 100644 index 000000000..864c58fa0 --- /dev/null +++ b/distrib/common/list.dhcpcd @@ -0,0 +1,14 @@ +# $NetBSD: list.dhcpcd,v 1.2 2011/05/31 06:19:11 christos Exp $ +# +# list file (c.f. parselist.awk) for DHCP-enabled install media. +# + +PROG sbin/dhcpcd +SPECIAL dhcpcd srcdir external/bsd/dhcpcd/sbin/dhcpcd + +COPY ${DESTDIR}/etc/dhcpcd.conf etc/dhcpcd.conf +COPY ${DESTDIR}/libexec/dhcpcd-run-hooks libexec/dhcpcd-run-hooks 555 + +COPY ${NETBSDSRCDIR}/distrib/common/10-resolv.conf libexec/dhcpcd-hooks/10-resolv.conf +COPY ${DESTDIR}/libexec/dhcpcd-hooks/30-hostname libexec/dhcpcd-hooks/30-hostname +COPY ${NETBSDSRCDIR}/distrib/common/99-print-sysinst libexec/dhcpcd-hooks/99-print-sysinst diff --git a/distrib/common/list.inet6 b/distrib/common/list.inet6 new file mode 100644 index 000000000..8624e3ef5 --- /dev/null +++ b/distrib/common/list.inet6 @@ -0,0 +1,6 @@ +# $NetBSD: list.inet6,v 1.1 2009/09/20 22:50:50 abs Exp $ + +PROG sbin/ping6 +PROG sbin/rtsol + +SPECIAL ping6 srcdir distrib/utils/x_ping6 diff --git a/distrib/common/list.makedev b/distrib/common/list.makedev new file mode 100644 index 000000000..5d1d0af8b --- /dev/null +++ b/distrib/common/list.makedev @@ -0,0 +1,3 @@ +# $NetBSD: list.makedev,v 1.7 2007/03/03 06:40:06 apb Exp $ + +COPY ${MAKEDEVSCRIPT} dev/MAKEDEV 555 diff --git a/distrib/common/list.sysinst b/distrib/common/list.sysinst new file mode 100644 index 000000000..65e198e7f --- /dev/null +++ b/distrib/common/list.sysinst @@ -0,0 +1,17 @@ +# $NetBSD: list.sysinst,v 1.12 2005/08/27 15:42:56 xtraeme Exp $ +# +# list file (c.f. parselist.awk) for sysinst-using install media. +# +# NOTE: sysinst needs at least 4 free inodes and a few KB of free disk space. +# + +PROG sysinst +PROG usr/bin/progress + +SPECIAL sysinst srcdir distrib/utils/sysinst/arch/${MACHINE} + +# Foreign texts for sysinst +COPY ${OBJDIR}/sysinst/sysinstmsgs.fr sysinstmsgs.fr +COPY ${OBJDIR}/sysinst/sysinstmsgs.de sysinstmsgs.de +COPY ${OBJDIR}/sysinst/sysinstmsgs.pl sysinstmsgs.pl +COPY ${OBJDIR}/sysinst/sysinstmsgs.es sysinstmsgs.es diff --git a/distrib/common/list.sysinst.en b/distrib/common/list.sysinst.en new file mode 100644 index 000000000..951459594 --- /dev/null +++ b/distrib/common/list.sysinst.en @@ -0,0 +1,11 @@ +# $NetBSD: list.sysinst.en,v 1.1 2004/04/18 20:04:26 dsl Exp $ +# +# list file (c.f. parselist.awk) for sysinst-using install media. +# +# NOTE: sysinst needs at least 4 free inodes and a few KB of free disk space. +# + +PROG sysinst +PROG usr/bin/progress + +SPECIAL sysinst srcdir distrib/utils/sysinst/arch/${MACHINE} diff --git a/distrib/common/list2sh.awk b/distrib/common/list2sh.awk new file mode 100644 index 000000000..01c385617 --- /dev/null +++ b/distrib/common/list2sh.awk @@ -0,0 +1,55 @@ +# $NetBSD: list2sh.awk,v 1.1 2009/09/18 09:24:59 abs Exp $ + +BEGIN { + printf("cd ${CURDIR}\n"); + printf("\n"); +} +/^$/ || /^#/ { + print $0; + next; +} +$1 == "COPY" { + printf("echo '%s'\n", $0); + printf("rm -f ${TARGDIR}/%s\n", $3); + printf("cp %s ${TARGDIR}/%s\n", $2, $3); + next; +} +$1 == "LINK" { + printf("echo '%s'\n", $0); + printf("rm -f ${TARGDIR}/%s\n", $3); + printf("(cd ${TARGDIR}; ln %s %s)\n", $2, $3); + next; +} +$1 == "SYMLINK" { + printf("echo '%s'\n", $0); + printf("rm -f ${TARGDIR}/%s\n", $3); + printf("(cd ${TARGDIR}; ln -s %s %s)\n", $2, $3); + next; +} +$1 == "COPYDIR" { + printf("echo '%s'\n", $0); + printf("(cd ${TARGDIR}/%s && find . ! -name . | xargs /bin/rm -rf)\n", + $3); + printf("(cd %s && find . ! -name . | cpio -pdamu ${TARGDIR}/%s)\n", $2, + $3); + next; +} +$1 == "SPECIAL" { + printf("echo '%s'\n", $0); + printf("(cd ${TARGDIR};"); + for (i = 2; i <= NF; i++) + printf(" %s", $i); + printf(")\n"); + next; +} +{ + printf("echo '%s'\n", $0); + printf("echo 'Unknown keyword \"%s\" at line %d of input.'\n", $1, NR); + printf("exit 1\n"); + exit 1; +} +END { + printf("\n"); + printf("exit 0\n"); + exit 0; +} diff --git a/distrib/common/mkprotocols b/distrib/common/mkprotocols new file mode 100755 index 000000000..4b89a31ba --- /dev/null +++ b/distrib/common/mkprotocols @@ -0,0 +1,7 @@ +#!/bin/sh +# $NetBSD: mkprotocols,v 1.1 2008/05/01 22:01:16 garbled Exp $ +# Generate a shaved down protocols file for install media. +# +echo "# \$NetBSD\$" > protocols +echo "# Shaved down /etc/protocols for installation media" >> protocols +/usr/bin/sed -e 's/#.*//' -e '/^$/d' -e 's/ *$//' -e 's/ */ /' ../../etc/protocols >> protocols diff --git a/distrib/common/mtree.common b/distrib/common/mtree.common new file mode 100644 index 000000000..f6ebe8bc5 --- /dev/null +++ b/distrib/common/mtree.common @@ -0,0 +1,28 @@ +# $NetBSD: mtree.common,v 1.9 2009/04/07 11:49:17 joerg Exp $ + +/set type=dir uname=root gname=operator mode=0755 + +. +./bin +./dev +./etc +./libexec +./libexec/dhcpcd-hooks +./mnt +./mnt2 +./kern +./sbin +./targetroot +./tmp mode=01777 +./usr +./usr/bin +./usr/mdec +./usr/sbin +./usr/share +./usr/share/misc +./var +./var/db +./var/run +./var/log +./var/spool +./var/spool/lock diff --git a/distrib/common/mtree.dot b/distrib/common/mtree.dot new file mode 100644 index 000000000..9bbdac4dd --- /dev/null +++ b/distrib/common/mtree.dot @@ -0,0 +1,3 @@ +# $NetBSD: mtree.dot,v 1.1 2002/05/03 14:20:54 lukem Exp $ + +. type=dir uname=root gname=operator mode=0755 diff --git a/distrib/common/parselist.awk b/distrib/common/parselist.awk new file mode 100644 index 000000000..9de6c224b --- /dev/null +++ b/distrib/common/parselist.awk @@ -0,0 +1,359 @@ +# $NetBSD: parselist.awk,v 1.16 2009/04/10 16:16:12 apb Exp $ +# +# Copyright (c) 2002 The NetBSD Foundation, Inc. +# All rights reserved. +# +# This code is derived from software contributed to The NetBSD Foundation +# by Luke Mewburn of Wasabi Systems. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS +# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + +# +# awk -f parselist.awk -v mode=MODE [var=val ...] file1 [...] +# +# Parse list files file1 [...], generating different output, +# depending upon the value of MODE: +# +# crunch crunchgen(1) config +# +# install make(1) Makefile to install commands into ${TARGETDIR}, +# with an `install' target. +# The following environment variables need to be set: +# TARGETDIR Directory to populate +# +# mtree mtree(8) specfile +# +# populate sh(1) commands to populate ${TARGETDIR} from ${CURDIR} +# The following environment variables need to be set: +# CURDIR Source directory; make(1)'s ${.CURDIR} +# TARGETDIR Directory to populate +# +# The following environment variables need to be set for all modes: +# CRUNCHBIN Name of crunchgen(1) target binary +# OBJDIR Object directory; make(1)'s ${.OBJDIR} +# +# Each line of the input is either a comment (starts with `#'), +# or contains one of the following keywords and arguments. +# +# Before each line is parsed for a keyword, words surrounded by +# "${" and "}", and containing only letters, numbers, and `_' +# will be replaced by the value of the environment variable of +# the same name. I.e., "${MACHINE_ARCH}" will be replaced with the +# value of ENVIRON["MACHINE_ARCH"]. +# +# mode key operation +# -------- --------- +# C crunch +# I install +# M mtree +# P populate +# +# mode keyword arg1 [...] description +# ---- ------------------ ----------- +# +# C ARGVLN prog link as per crunchgen(1) `ln' +# +# P CMD arg1 [...] run CMD as a shell command +# +# IMP COPY src dest [perm] copy src to dest. perm defaults to 0444 +# +# IMP COPYDIR src dest recursively copy files under src to +# dest. for M, dest is listed first, +# followed by the subdirectories in src. +# copied directories have mode 0755. +# copied files have mode 0444. +# +# C LIBS libspec ... as per crunchgen(1) `libs' +# +# IMP LINK src d1 [d2 ...] hard link src to d1, d2, ... +# +# M MTREE arg1 [...] output arguments `as-is' to specfile +# +# CIMP PROG prog [links...] program(s) to crunch/mtree/populate. +# for I, M & P, the first prog listed +# is copied from ${OBJDIR}/${CRUNCHBIN} +# and then used as the name to link +# all other PROG entries to. +# +# C SPECIAL prog cmd ... as per crunchgen(1) `special' +# +# C SRCDIRS dirname ... as per crunchgen(1) `srcdirs' +# +# IMP SYMLINK src dest [...] symlink src to dest, [...] +# + +BEGIN \ +{ + crunchprog = ""; + + if (mode != "crunch" && mode != "install" && + mode != "mtree" && mode != "populate") + errx("Unknown parselist mode '" mode "'"); + + needvars["CRUNCHBIN"]++ + needvars["OBJDIR"]++ + if (mode == "install") { + needvars["TARGETDIR"]++ + } + else if (mode == "populate") { + needvars["CURDIR"]++ + } + for (nv in needvars) { + if (! (nv in ENVIRON)) + errx("Environment variable " nv " not defined"); + } + + print "#"; + print "# This file is automatically generated by"; + print "#\tparselist mode=" mode; + print "#"; + print ""; + if (mode == "install") { + print ".include " + print "install:" + } else if (mode == "mtree") { + print "/unset\tall"; + print "/set\ttype=file uname=root gname=operator"; + print; + } else if (mode == "populate") { + print "cd " ENVIRON["CURDIR"]; + print; + } +} + +/^$/ || /^#/ \ +{ + print; + next; +} + +# replace ${FOO} with ENVIRON["FOO"] +# +/\$\{[A-Za-z0-9_]+\}/ \ +{ + while (match($0, /\$\{[A-Za-z0-9_]+\}/) > 0) { + v = substr($0, RSTART + 2, RLENGTH - 3); + if (! (v in ENVIRON)) + err("Variable " v " is not in the environment"); + else + sub(/\$\{[A-Za-z0-9_]+\}/, ENVIRON[v]); + } +} + +$1 == "COPY" \ +{ + if (NF < 3 || NF > 4) + err("Usage: COPY src dest [perm]"); + if (mode == "install" || mode == "mtree" || mode == "populate") + copy($2, $3, $4); + next; +} + +$1 == "COPYDIR" \ +{ + if (NF != 3) + err("Usage: COPYDIR src dest"); + srcdir=$2; + destdir=$3; + if (mode == "mtree") { + printf("./%s type=dir mode=755\n", destdir); + command="cd " srcdir " && find . -type d -print" + while (command | getline dir) { + gsub(/^\.\//, "", dir); + if (dir == ".") + continue; + printf("./%s/%s type=dir mode=755\n", destdir, dir); + } + close(command); + } + if (mode == "install" || mode == "mtree" || mode == "populate") { + command="cd " srcdir " && find . -type f -print" + while (command | getline srcfile) { + gsub(/^\.\//, "", srcfile); + copy(srcdir "/" srcfile, destdir "/" srcfile, ""); + } + close(command); + } + next; +} + +$1 == "LIBS" || $1 == "SPECIAL" || $1 == "SRCDIRS" \ +{ + if (NF < 2) + err("Usage: " $1 " args..."); + if (mode == "crunch") { + $1 = tolower($1); + print; + } + next; +} + +$1 == "PROG" \ +{ + if (NF < 2) + err("Usage: PROG prog [link ...]"); + if (mode == "crunch") { + prog = basename($2); + print "progs " prog; + for (i = 3; i <= NF; i++) + print "ln " prog " " basename($i); + } else { + for (i = 2; i <= NF; i++) { + if (crunchprog == "") { + crunchprog = $i; + copy(ENVIRON["OBJDIR"] "/" ENVIRON["CRUNCHBIN"], + crunchprog, 555); + continue; + } + link(crunchprog, $i, 555); + } + } + next; +} + +$1 == "ARGVLN" \ +{ + if (NF != 3) + err("Usage: ARGVLN prog link"); + if (mode == "crunch") { + $1 = "ln"; + print; + } + next; +} + +$1 == "LINK" \ +{ + if (NF < 3) + err("Usage: LINK prog link [...]"); + if (mode == "install" || mode == "mtree" || mode == "populate") { + for (i = 3; i <= NF; i++) + link($2, $i, 444); + } + next; +} + +$1 == "SYMLINK" \ +{ + if (NF < 3) + err("Usage: SYMLINK prog link [...]"); + if (mode == "install" || mode == "mtree" || mode == "populate") { + for (i = 3; i <= NF; i++) + symlink($2, $i); + } + next; +} + +$1 == "CMD" \ +{ + if (NF < 2) + err("Usage: CMD ..."); + if (mode == "populate") { + printf("(cd %s;", ENVIRON["TARGETDIR"]); + for (i = 2; i <= NF; i++) + printf(" %s", $i); + print ") || exit 1"; + } + next; +} + +$1 == "MTREE" \ +{ + if (NF < 2) + err("Usage: MTREE ..."); + if (mode == "mtree") { + sub(/^[^ \t]+[ \t]+/, ""); # strip first word ("MTREE") + print; + } + next; +} + + +{ + err("Unknown keyword '" $1 "'"); +} + + +function basename (file) \ +{ + gsub(/[^\/]+\//, "", file); + return file; +} + +function copy (src, dest, perm) \ +{ + if (perm == "") + perm = 444; + if (mode == "install") { + printf("\t${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP}" \ + " -m %s %s %s/%s\n", + perm, src, ENVIRON["TARGETDIR"], dest) + } else if (mode == "mtree") { + printf("./%s mode=%s\n", dest, perm); + } else { + printf("rm -rf %s/%s\n", ENVIRON["TARGETDIR"], dest); + printf("cp %s %s/%s\n", src, ENVIRON["TARGETDIR"], dest); + printf("chmod %s %s/%s\n", perm, ENVIRON["TARGETDIR"], dest); + } +} + +function link (src, dest, perm) \ +{ + if (mode == "install") { + printf("\t${INSTALL_LINK} -o ${BINOWN} -g ${BINGRP}" \ + " -m %s %s/%s %s/%s\n", + perm, ENVIRON["TARGETDIR"], src, ENVIRON["TARGETDIR"], dest) + } else if (mode == "mtree") { + printf("./%s mode=%s\n", dest, perm); + } else { + printf("rm -rf %s/%s\n", ENVIRON["TARGETDIR"], dest); + printf("(cd %s; ln %s %s) || exit 1\n", + ENVIRON["TARGETDIR"], src, dest); + } +} + +function symlink (src, dest) \ +{ + if (mode == "install") { + printf("\t${INSTALL_SYMLINK} %s/%s %s/%s\n", + ENVIRON["TARGETDIR"], src, ENVIRON["TARGETDIR"], dest) + } else if (mode == "mtree") { + printf("./%s type=link link=%s\n", dest, src); + } else { + printf("rm -rf %s/%s\n", ENVIRON["TARGETDIR"], dest); + printf("(cd %s; ln -s %s %s) || exit 1\n", + ENVIRON["TARGETDIR"], src, dest); + } +} + +function err(msg) \ +{ + printf("parselist: %s at line %d of input.\n", msg, NR) >"/dev/stderr"; + exit 1; +} + +function errx(msg) \ +{ + printf("parselist: %s.\n", msg) >"/dev/stderr"; + exit 1; +} diff --git a/distrib/common/protocols b/distrib/common/protocols new file mode 100644 index 000000000..ba5293cf0 --- /dev/null +++ b/distrib/common/protocols @@ -0,0 +1,137 @@ +# $NetBSD: protocols,v 1.1 2008/05/01 22:02:54 garbled Exp $ +# Shaved down /etc/protocols for installation media +hopopt 0 HOPOPT +icmp 1 ICMP +igmp 2 IGMP +ggp 3 GGP +ip 4 IP +st 5 ST +tcp 6 TCP +cbt 7 CBT +egp 8 EGP +igp 9 IGP +bbn-rcc-mon 10 BBN-RCC-MON +nvp-ii 11 NVP-II +pup 12 PUP +argus 13 ARGUS +emcon 14 EMCON +xnet 15 XNET +chaos 16 CHAOS +udp 17 UDP +mux 18 MUX +dcn-meas 19 DCN-MEAS +hmp 20 HMP +prm 21 PRM +xns-idp 22 XNS-IDP +trunk-1 23 TRUNK-1 +trunk-2 24 TRUNK-2 +leaf-1 25 LEAF-1 +leaf-2 26 LEAF-2 +rdp 27 RDP +irtp 28 IRTP +iso-tp4 29 ISO-TP4 +netblt 30 NETBLT +mfe-nsp 31 MFE-NSP +merit-inp 32 MERIT-INP +dccp 33 DCCP +3pc 34 3PC +idpr 35 IDPR +xtp 36 XTP +ddp 37 DDP +idpr-cmtp 38 IDPR-CMTP +tp++ 39 TP++ +il 40 IL +ipv6 41 IPv6 +sdrp 42 SDRP +ipv6-route 43 IPv6-Route +ipv6-frag 44 IPv6-Frag +idrp 45 IDRP +rsvp 46 RSVP +gre 47 GRE +dsr 48 DSR +bna 49 BNA +esp 50 ESP +ah 51 AH +i-nlsp 52 I-NLSP +swipe 53 SWIPE +narp 54 NARP +mobile 55 MOBILE +tlsp 56 TLSP +skip 57 SKIP +ipv6-icmp 58 IPv6-ICMP +ipv6-nonxt 59 IPv6-NoNxt +ipv6-opts 60 IPv6-Opts +cftp 62 CFTP +sat-expak 64 SAT-EXPAK +kryptolan 65 KRYPTOLAN +rvd 66 RVD +ippc 67 IPPC +sat-mon 69 SAT-MON +visa 70 VISA +ipcv 71 IPCV +cpnx 72 CPNX +cphb 73 CPHB +wsn 74 WSN +pvp 75 PVP +br-sat-mon 76 BR-SAT-MON +sun-nd 77 SUN-ND +wb-mon 78 WB-MON +wb-expak 79 WB-EXPAK +iso-ip 80 ISO-IP +vmtp 81 VMTP +secure-vmtp 82 SECURE-VMTP +vines 83 VINES +ttp 84 TTP +nsfnet-igp 85 NSFNET-IGP +dgp 86 DGP +tcf 87 TCF +eigrp 88 EIGRP +ospfigp 89 OSPFIGP +sprite-rpc 90 Sprite-RPC +larp 91 LARP +mtp 92 MTP +ax.25 93 AX.25 +ipip 94 IPIP +micp 95 MICP +scc-sp 96 SCC-SP +etherip 97 ETHERIP +encap 98 ENCAP +gmtp 100 GMTP +ifmp 101 IFMP +pnni 102 PNNI +pim 103 PIM +aris 104 ARIS +scps 105 SCPS +qnx 106 QNX +a/n 107 A/N +ipcomp 108 IPComp +snp 109 SNP +compaq-peer 110 Compaq-Peer +ipx-in-ip 111 IPX-in-IP +vrrp 112 VRRP +pgm 113 PGM +l2tp 115 L2TP +ddx 116 DDX +iatp 117 IATP +stp 118 STP +srp 119 SRP +uti 120 UTI +smp 121 SMP +sm 122 SM +ptp 123 PTP +isis 124 ISIS +fire 125 FIRE +crtp 126 CRTP +crudp 127 CRUDP +sscopmce 128 SSCOPMCE +iplt 129 IPLT +sps 130 SPS +pipe 131 PIPE +sctp 132 SCTP +fc 133 FC +rsvp-e2e-ignore 134 RSVP-E2E-IGNORE +mobility 135 Mobility +udplite 136 UDPLite +mpls-in-ip 137 MPLS-in-IP +use 253 Use +use 254 Use diff --git a/distrib/common/runlist.sh b/distrib/common/runlist.sh new file mode 100644 index 000000000..ac5b5071e --- /dev/null +++ b/distrib/common/runlist.sh @@ -0,0 +1,13 @@ +# $NetBSD: runlist.sh,v 1.1 2009/09/18 09:24:59 abs Exp $ + +if [ "X$1" = "X-d" ]; then + SHELLCMD=cat + shift +else + SHELLCMD="sh -e" +fi + +( while [ "X$1" != "X" ]; do + cat $1 + shift +done ) | awk -f ${NETBSDSRCDIR}/distrib/common/list2sh.awk | ${SHELLCMD} diff --git a/distrib/common/services b/distrib/common/services new file mode 100644 index 000000000..ae319c947 --- /dev/null +++ b/distrib/common/services @@ -0,0 +1,47 @@ +# $NetBSD: services,v 1.4 2009/09/20 19:41:35 abs Exp $ +# Minimal /etc/services file for install +ftp-data 20/tcp +ftp-data 20/udp +ftp 21/tcp +ftp 21/udp +bootps 67/tcp +bootps 67/udp +bootpc 68/tcp +bootpc 68/udp +tftp 69/tcp +tftp 69/udp +http 80/tcp +sunrpc 111/tcp +sunrpc 111/udp +sftp 115/tcp +sftp 115/udp +mftp 349/tcp +mftp 349/udp +shell 514/tcp +kshell 544/tcp +kshell 544/udp +dhcpv6-client 546/tcp +dhcpv6-client 546/udp +dhcpv6-server 547/tcp +dhcpv6-server 547/udp +ftp-agent 574/tcp +ftp-agent 574/udp +dhcp-failover 647/tcp +dhcp-failover 647/udp +ftps-data 989/tcp +ftps-data 989/udp +ftps 990/tcp +ftps 990/udp +tftp-mcast 1758/tcp +tftp-mcast 1758/udp +nfs 2049/tcp +nfs 2049/udp +tftps 3713/tcp +tftps 3713/udp +kftp-data 6620/tcp +kftp-data 6620/udp +kftp 6621/tcp +kftp 6621/udp +mcftp 6622/tcp +mcftp 6622/udp + diff --git a/distrib/common/sunbootcd.sh b/distrib/common/sunbootcd.sh new file mode 100755 index 000000000..26d68ef94 --- /dev/null +++ b/distrib/common/sunbootcd.sh @@ -0,0 +1,134 @@ +#! /bin/sh +# +# $NetBSD: sunbootcd.sh,v 1.6 2012/02/22 16:12:34 martin Exp $ +# +# Copyright (c) 2003 The NetBSD Foundation, Inc. +# All rights reserved. +# +# This code is derived from software contributed to The NetBSD Foundation +# by Luke Mewburn. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS +# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + +: ${SUNLABEL:=sunlabel} # sunlabel(8) +: ${CYLSIZE:=640} # Cylinder size, in 512byte blocks + +PROGNAME=${0##*/} +FORMAT="%-8s offset %4d, size %4d, file %s\n" + + +usage() +{ + cat 1>&2 << _USAGE_ +Usage: ${PROGNAME} fsimage sun4 [sun4c [sun4m [sun3|sun4d [sun3x|sun4u]]]] + Combine file system partitions for Sun Microsystems, Inc. computers + into a CD-ROM file system image suitable for booting on the + following platforms: + NetBSD/sun3: sun3, sun3x + NetBSD/sparc: sun4, sun4c, sun4d, sun4m + NetBSD/sparc64: sun4u + The architecture arguments must be bootable file system image + for that architecture, or \`-' if no entry is desired. + \`fsimage' is typically an iso9660 file system image, although + any type of file system can be used as long as the first 512 + bytes of the image are not used. \`fsimage' is modified, and + the additional partitions are added in order. If the same + filename is used more than once for different architectures, + it will only be copied once. +_USAGE_ + exit 1 +} + +if [ $# -lt 2 -o $# -gt 6 ]; then + usage +fi + +for curfile in $*; do + [ "$curfile" = "-" ] && continue + if [ ! -f "$curfile" ]; then + echo 1>&2 "${PROGNAME}: ${curfile}: No such file." + exit 1 + fi +done + +ISOIMAGE="$1"; shift + +ISOSIZE=$( ls -l "${ISOIMAGE}" | awk '{print $5}' ) +ISOBLKS=$(( (${ISOSIZE} + 511) / 512 )) +ISOCYLS=$(( (${ISOBLKS} + (${CYLSIZE} - 1)) / ${CYLSIZE} )) + +printf "${FORMAT}" "fsimage:" 0 ${ISOCYLS} "${ISOIMAGE}" + +ENDCYL=${ISOCYLS} +curpart=0 +for curfile in $*; do + curpart=$(( ${curpart} + 1 )) + [ "$curfile" = "-" ] && continue + + tpart=1 + curoff=${ENDCYL} + while [ ${tpart} -lt ${curpart} ]; do + tfile=$(eval echo \$PART${tpart}FILE) + if [ "${curfile}" = "${tfile}" ]; then + curoff=$(eval echo \$PART${tpart}OFF) + break + fi + tpart=$(( ${tpart} + 1 )) + done + + cursize=$( ls -l "${curfile}" | awk '{print $5}' ) + curblks=$(( (${cursize} + 511) / 512 )) + curcyls=$(( (${curblks} + (${CYLSIZE} - 1)) / ${CYLSIZE} )) + printf "${FORMAT}" "Image ${curpart}:" ${curoff} ${curcyls} "${curfile}" + + eval PART${curpart}SIZE=${cursize} \ + PART${curpart}BLKS=${curblks} \ + PART${curpart}CYLS=${curcyls} \ + PART${curpart}OFF=${curoff} \ + PART${curpart}FILE="${curfile}" + + if [ $curoff -eq $ENDCYL ]; then # append ${curfile} + echo " (appending ${curfile} to ${ISOIMAGE})" + dd if="${curfile}" of="${ISOIMAGE}" bs=${CYLSIZE}b \ + seek=${ENDCYL} conv=notrunc,sync 2>/dev/null + ENDCYL=$(( $ENDCYL + $curcyls )) + fi + +done + +printf "${FORMAT}" "Final:" 0 ${ENDCYL} "${ISOIMAGE}" + +${SUNLABEL} -nq "${ISOIMAGE}" << _partinfo_ +V nsect ${CYLSIZE} +V nhead 1 +V rpm 300 +V pcyl ${ENDCYL} +V ncyl ${ENDCYL} +a 0 $(( ${ISOCYLS} * ${CYLSIZE} )) +b ${PART1OFF:-0} $(( ${PART1CYLS:-0} * ${CYLSIZE} )) +c ${PART2OFF:-0} $(( ${PART2CYLS:-0} * ${CYLSIZE} )) +d ${PART3OFF:-0} $(( ${PART3CYLS:-0} * ${CYLSIZE} )) +e ${PART4OFF:-0} $(( ${PART4CYLS:-0} * ${CYLSIZE} )) +f ${PART5OFF:-0} $(( ${PART5CYLS:-0} * ${CYLSIZE} )) +W +_partinfo_ diff --git a/distrib/sets/Makefile b/distrib/sets/Makefile new file mode 100644 index 000000000..62cad67c1 --- /dev/null +++ b/distrib/sets/Makefile @@ -0,0 +1,315 @@ +# $NetBSD: Makefile,v 1.84 2011/08/09 15:02:30 jmcneill Exp $ + +# Experimental RCS METALOG versioning +# (Needs host's rcs(1) commands) +# +# TODO: +# - In 'build.sh distribution', print diff to previous +#RCSMETALOG=1 + +# The `all' target must appear before bsd.own.mk is pulled in. +all: + @echo "Please understand what you are doing, first." + @false + +.include +.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" + +.if ${USE_PIGZGZIP} != "no" +COMPRESS_PROGRAM=${TOOL_PIGZ:Q} +.else +COMPRESS_PROGRAM=gzip +.endif + +SETSENV= DESTDIR=${DESTDIR:Q} \ + MACHINE=${MACHINE:Q} \ + MACHINE_ARCH=${MACHINE_ARCH:Q} \ + AWK=${TOOL_AWK:Q} \ + CKSUM=${TOOL_CKSUM:Q} \ + DB=${TOOL_DB:Q} \ + HOST_SH=${HOST_SH:Q} \ + MAKE=${MAKE:Q} \ + MKTEMP=${TOOL_MKTEMP:Q} \ + MTREE=${TOOL_MTREE:Q} \ + PAX=${TOOL_PAX:Q} \ + COMPRESS_PROGRAM=${COMPRESS_PROGRAM:Q} \ + PKG_CREATE=${TOOL_PKG_CREATE:Q} \ + SED=${TOOL_SED:Q} \ + TSORT=${TSORT:Q} +SETSCMD= cd ${.CURDIR} && \ + ${SETSENV} \ + ${HOST_SH} + +MAKETARS_FLAGS= +.if ${MKX11} != "no" +MAKESRCTARS_X11_FLAGS= -x ${X11SRCDIR} +.endif +.if ${MKEXTSRC} != "no" +MAKESRCTARS_EXTSRC_FLAGS= -y ${EXTSRCSRCDIR} +.endif +.if ${MKX11} != "no" +MAKEFLIST_X11_FLAGS= ,x +.endif +.if ${MKEXTSRC} != "no" +MAKEFLIST_EXTSRC_FLAGS= ,ext +.endif +MAKEFLIST_FLAGS= -L base${MAKEFLIST_X11_FLAGS}${MAKEFLIST_EXTSRC_FLAGS} +MAKESRCTARS_FLAGS= -N ${NETBSDSRCDIR}/etc + +.if ${MAKEVERBOSE} < 2 +MAKETARS_FLAGS+= -q +MAKESRCTARS_FLAGS+= -q +.endif + +.if !defined(MAKETARSETS) +MAKETARSETS!= ${SETSCMD} ./makeflist -l ${MAKEFLIST_FLAGS} +.endif + +print_have_gcc: .PHONY + @echo ${HAVE_GCC} + +print_machine: .PHONY + @echo ${MACHINE} + +print_machine_arch: .PHONY + @echo ${MACHINE_ARCH} + +print_machine_cpu: .PHONY + @echo ${MACHINE_CPU} + +print_object_fmt: .PHONY + @echo ${OBJECT_FMT} + +print_toolchain_missing: .PHONY + @echo "${TOOLCHAIN_MISSING}" + +print_mkvars \ +print_set_lists_base print_set_lists_x print_set_lists_ext \ +list_set_lists_base list_set_lists_x list_set_lists_ext \ +list_set_files_base list_set_files_x list_set_files_ext \ + : .PHONY + @${SETSENV}; rundir="${.CURDIR}"; . ./sets.subr; ${.TARGET} + +# +# METALOG MANIPULATION TARGETS +# +# METALOG is the name of a metadata log file, and is set in +# if MKUNPRIVED is not "no". +# +# METALOG.unpriv is a command line option passed to various scripts; +# it is either blank or "-M ${METALOG}.sanitised", depending on the +# MKUNPRIVED flag. +# +# The sanitise_METALOG target creates METALOG.sanitised from METALOG, +# without modifying METALOG itself. METALOG.sanitised is sorted, and +# has duplicates merged. This is used near the end of a build, after +# build products have been installed in DESTDIR and corresponding lines +# have been added to METALOG, but before METALOG.sanitised is used in +# the creation of sets in RELEASEDIR. +# +# The clean_METALOG either deletes METALOG or replaces METALOG with +# a sanitised version of itself, depending on the MKUPDATE flag, and +# deletes old METALOG.* files. This is intended to be used at the start +# of a build, to ensure that repeated MKUPDATE builds do not cause +# unbounded growth of METALOG. +# + +.if ${MKUNPRIVED} == "no" +METALOG.unpriv= +sanitise_METALOG: .PHONY + @true +clean_METALOG: .PHONY + @true +.else # MKUNPRIVED +METALOG.unpriv= -M ${METALOG}.sanitised +sanitise_METALOG: .PHONY ${METALOG}.sanitised +${METALOG}.sanitised: ${METALOG} + sort ${METALOG} | \ + ${TOOL_MTREE} -CSM -k all -N ${NETBSDSRCDIR}/etc \ + >${METALOG}.new + mv ${METALOG}.new ${METALOG}.sanitised +.if defined(RCSMETALOG) + . ./metalog.subr; \ + xrcs_descr="build distribution METALOG"; \ + xrcs_msg="$$(date)"; \ + xrcs_cur=${METALOG}.sanitised; \ + xrcs update +.endif +.if ${MKUPDATE} == "no" || !exists(${METALOG}) +clean_METALOG: .PHONY + rm -f ${METALOG} ${METALOG}.* +.else # MKUPDATE +clean_METALOG: .PHONY ${METALOG}.sanitised + mv ${METALOG}.sanitised ${METALOG} +.if defined(RCSMETALOG) + [ -f ${METALOG}.sanitised,v ] && mv ${METALOG}.sanitised,v ${METALOG},v +.endif + rm -f ${METALOG}.* +.if defined(RCSMETALOG) + [ -f ${METALOG},v ] && mv ${METALOG},v ${METALOG}.sanitised,v +.endif +.endif # MKUPDATE +.endif # MKUNPRIVED + +# +# FILE LIST TARGETS +# + +# This target has debugging value only, really. +makeflist: .PHONY .PRECIOUS check_DESTDIR + ${SETSCMD} ./makeflist ${MAKEFLIST_FLAGS} + +checkflist: .PRECIOUS .PHONY check_DESTDIR sanitise_METALOG + ${SETSCMD} ${.CURDIR}/checkflist \ + ${MAKEFLIST_FLAGS} ${CHECKFLIST_FLAGS} ${METALOG.unpriv} + +checkflist-x11: .PHONY check_DESTDIR + ${SETSCMD} ./checkflist -x ${CHECKFLIST_FLAGS} + +checkflist-extsrc: .PHONY check_DESTDIR + ${SETSCMD} ./checkflist -y ${CHECKFLIST_FLAGS} + +.if defined(DESTDIR) && ${DESTDIR} != "" +checkflist_if_DESTDIR: checkflist +.else +checkflist_if_DESTDIR: +.endif + +# +# SET BUILDING TARGETS +# + +TARDIR= ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets +SOURCETARDIR= ${RELEASEDIR}/source/sets + +# If MAKETARS_SERIAL is set to "YES" or "yes", then the tar sets will be +# made in series, even if make's "-j" flag requests multiple parallel +# jobs. This is useful on systems that exhibit poor performance when +# running multiple parallel disk-intensive operations. The default is +# MAKETARS_SERIAL=NO, which will obey the "-j" flag passed to the make +# command. +# +MAKETARS_SERIAL?= NO +.if empty(MAKETARS_SERIAL:M[Yy][Ee][Ss]) +_MAKETARS_WAIT= # empty +.else +_MAKETARS_WAIT= .WAIT +.endif + +maketars: .PRECIOUS .PHONY check_DESTDIR check_RELEASEDIR \ + sanitise_METALOG checkflist_if_DESTDIR .WAIT \ + maketarsetup .WAIT \ + ${MAKETARSETS:@.TARS.@${_MAKETARS_WAIT} do-${.TARS.}@} + @true + +maketarsetup: .EXEC +.if defined(DESTDIR) && ${DESTDIR} != "" + ${_MKMSG} "execute checkflist" + ${MAKE} checkflist +.endif + mkdir -p ${TARDIR} + for i in MD5 SHA512; do \ + rm -f ${TARDIR}/$$i ${TARDIR}/$$i.tmp; \ + done + +makesetfiles: .PHONY sanitise_METALOG + ${_MKMSG_CREATE} "set lists" + ${SETSCMD} ./maketars -S -d ${DESTDIR:S,^$,/,} ${MAKETARS_FLAGS} \ + ${METALOG.unpriv} \ + -N ${NETBSDSRCDIR}/etc ${MAKEFLIST_FLAGS} -t ${TARDIR} + +.for tar in ${MAKETARSETS} +do-${tar}: .PHONY sanitise_METALOG + ${_MKMSG_CREATE} "${tar}.tgz" + ${SETSCMD} ./maketars -d ${DESTDIR:S,^$,/,} ${MAKETARS_FLAGS} \ + ${METALOG.unpriv} \ + -N ${NETBSDSRCDIR}/etc -t ${TARDIR} ${tar} \ + || { rm -f ${TARDIR}/${tar}.tgz; false; } +.endfor + + +makesrctars: .PRECIOUS .PHONY check_RELEASEDIR + ${_MKMSG_CREATE} "source tar files" + mkdir -p ${SOURCETARDIR} + ${SETSCMD} ./makesrctars ${MAKESRCTARS_FLAGS} \ + ${MAKESRCTARS_X11_FLAGS} ${MAKESRCTARS_EXTSRC_FLAGS} \ + ${NETBSDSRCDIR} ${SOURCETARDIR} + + +makesums: .PRECIOUS .PHONY check_RELEASEDIR .WAIT \ + ${MAKETARSETS:@.TARS.@do-sum-${.TARS.}@} + for i in MD5 SHA512; do \ + mv ${TARDIR}/$$i.tmp ${TARDIR}/$$i; \ + done + +.for tar in ${MAKETARSETS} +do-sum-${tar}: .PHONY do-${tar} + ${_MKMSG_CREATE} "${tar} checksums" + ${MAKESUMS} -t ${TARDIR} ${tar}.tgz + for i in MD5 SHA512; do \ + ${TOOL_CAT} ${TARDIR}/$$i >> ${TARDIR}/$$i.tmp; \ + done +.endfor +.ORDER: ${MAKETARSETS:@.TARS.@do-sum-${.TARS.}@} + + +installsets: .PHONY check_DESTDIR sanitise_METALOG +.if !defined(INSTALLDIR) + @echo "setenv INSTALLDIR before doing that!" + @false +.endif + ${SETSCMD} ./maketars -d ${DESTDIR:S,^$,/,} ${MAKETARS_FLAGS} \ + ${METALOG.unpriv} -N ${NETBSDSRCDIR}/etc \ + ${MAKEFLIST_FLAGS} -i ${INSTALLDIR} ${INSTALLSETS} + +# Should we ignore errors like extra or missing files in the flists? +SLOPPY_FLIST?= NO +.if !empty(SLOPPY_FLIST:M[Yy][Ee][Ss]) +CHECKFLIST_FLAGS+= -e -m +REGPKG.sloppy= -m +.endif + +.if ${MAKEVERBOSE} == 0 +REGPKG.verbose?= -q +.elif ${MAKEVERBOSE} == 1 +REGPKG.verbose?= +.else # MAKEVERBOSE >= 2 +REGPKG.verbose?= -v +.endif +REGPKG.force?= # -f, or empty +REGPKG.cache?= -c # -c, or empty +REGPKG.update:= ${MKUPDATE:tl:Nno:C/..*/-u/} +SYSPKGSETS?= all +makesyspkgs: .PHONY check_DESTDIR check_RELEASEDIR \ + sanitise_METALOG checkflist_if_DESTDIR + mkdir -p ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/syspkgs + ${SETSCMD} ${.CURDIR}/regpkgset \ + ${REGPKG.verbose} ${REGPKG.force} ${REGPKG.sloppy} \ + ${REGPKG.cache} ${REGPKG.update} \ + -d ${DESTDIR:S,^$,/,} ${METALOG.unpriv} \ + -N ${NETBSDSRCDIR}/etc \ + -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/syspkgs ${SYSPKGSETS} + +makesyspkgsums: .PHONY check_RELEASEDIR + ${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/syspkgs + +# Update the "deps" file. +# XXX: Why is "deps" checked in to the source tree, instead of +# just being created as necessary? +makedeps: .PHONY + ${SETSCMD} ./syspkgdeps all >${.CURDIR}/deps + +# +# MAIN ENTRY POINTS +# + +syspkgs: .PHONY makesyspkgs .WAIT makesyspkgsums + @true + +sets: .PHONY maketars .WAIT makesums + @true + +sourcesets: .PHONY makesrctars + @true + +.include diff --git a/distrib/sets/README b/distrib/sets/README new file mode 100644 index 000000000..a476d2b53 --- /dev/null +++ b/distrib/sets/README @@ -0,0 +1,79 @@ +# $NetBSD: README,v 1.11 2009/09/12 09:24:32 jnemeth Exp $ + +the scripts should be run from the directory where they reside. + +makeflist: output the list of files that should be in a + distribution, according to the contents of the + 'lists' directory. + +checkflist: check the file list (as internally generated + by makeflist) against the tree living in $DESTDIR. + (that tree should be made with 'make distribution'.) + +maketars: make tarballs of the various sets in the distribution, + based on the contents of the lists, the tree in + $DESTDIR, and put the tarballs in $RELEASEDIR. + Note that this script _doesn't_ create the 'secr' + distribution, because (for now) it requires + manual intervention to get the binaries right... + (i'll add another script to create that dist, later.) + +what's in 'lists': + +lists describing file sets. There are two sets of lists per file +set: machine dependent and machine-independent files. (there's +also another file in the 'man' dir, which is used by the 'man' +and 'misc' sets, but that's explained later.) + +There is one machine-independent file, named "mi". There are +N machine-dependent files (one per architecture), named "md.${ARCH}". + +the sets are as follows: + + base: the base binary set. excludes everything described + below. + + comp: compiler tools. All of the tools relating to C, C++, + and FORTRAN (yes, there are two!) that are in the + tree. This includes includes, the linker, tool chain, + and the .a versions of the libraries. (obviously, + base includes ldd, ld.so, and the shared versions. + base also includes 'cpp', because that's used by X11.) + includes the man pages for all the binaries contained + within. Also, includes all library and system call + manual pages. + + etc: /etc, and associated files (/var/cron/tabs, /root, + etc.). things that shouldn't be blindly reinstalled + on an upgrade. + + games: the games and their man pages. + + man: all of the man pages for the system, except those + listed elsewhere (e.g. in comp, games, misc, text). + Includes machine-dependent man pages for this CPU. + + misc: share/dict, share/doc, and the machine-dependent + man pages for other CPUs which happen to always + be installed. + + modules: stand/${MACHINE}/${OSRELEASE}/modules kernel modules + + tests: unit, regression, integration and stress tests for the + whole system. + + text: text processing tools. groff and all of its friends. + includes man pages for all bins contained within. + + +as noted, in addition to the "standard" files in each dir, there's +a file called 'md_share' in lists/man. it's the list of man pages +that are installed from /usr/src/share, which are machine-dependent. +(note that ones that are installed from elsewhere, and thus are +installed on only one architecture, are listed in the md.${ARCH} +file.) basically, it's grepped through, to see which of the +machine-dependent man pages that are always installed should go +in the 'man' set, and which should go into the 'misc' set. + +Each set must contain "./etc/mtree/set." within the mi +list. Failure to add this will break unprivileged builds. diff --git a/distrib/sets/TODO b/distrib/sets/TODO new file mode 100644 index 000000000..5edc93ff7 --- /dev/null +++ b/distrib/sets/TODO @@ -0,0 +1,19 @@ +TODO list for system packages +============================= + ++ commit Alan Barrett's mods from PR 22514 for system package building + from build.sh ++ decide whether to keep a separate system package database of + metadata, and, if so, where to keep it ++ if using separate database, add a flag to support this to pkg_* ++ add syspkg support to sysinst + + add pkg_install utilities (and necessary sub-utilities) to + the crunched install tools + + fix sysinst to use them ++ need a tool to create meta-packages + + base-bind meta-pkg created from base-bind-root, + base-bind-bin and base-bind-example + + base meta-pkg created from base-* meta-pkgs + + bundle packages into tar files (`pkgsets'per src/distrib/syspkg/notes) + + meta-pkg content entirely derivable from pkg names (base-*, base-bind-*) ++ add system packages to the release ISOs diff --git a/distrib/sets/attrs b/distrib/sets/attrs new file mode 100644 index 000000000..498faff6b --- /dev/null +++ b/distrib/sets/attrs @@ -0,0 +1,11 @@ +minix-sys preserve +base-sys-root preserve +base-sys-share preserve +base-sys-shlib preserve +base-sys-usr preserve +base-sysutil-bin preserve +base-sysutil-root preserve +base-sysutil-share preserve +base-util-bin preserve +base-util-root preserve +base-util-share preserve diff --git a/distrib/sets/checkflist b/distrib/sets/checkflist new file mode 100644 index 000000000..6a1b5c617 --- /dev/null +++ b/distrib/sets/checkflist @@ -0,0 +1,296 @@ +#! /bin/sh -- +# +# $NetBSD: checkflist,v 1.42 2009/12/11 11:48:41 uebayasi Exp $ +# +# Verify output of makeflist against contents of ${DESTDIR} and ${metalog}. + +if [ -z "${DESTDIR}" ]; then + echo "DESTDIR must be set" + exit 1 +fi + +prog="${0##*/}" +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +# +# * ${SETS_DLIST}: files present in DESTDIR. +# * ${SETS_FLIST}: files mentioned in flist; +# * ${SETS_MLIST}: files mentioned in metalog; +# +SETS_DLIST="${DESTDIR}/SETS.dlist" +SETS_FLIST="${DESTDIR}/SETS.flist" +SETS_MLIST="${DESTDIR}/SETS.mlist" + +# +# * ${SETS_METALOG_EXTRA}: Files in METALOG but missing from DESTDIR." +# * ${SETS_METALOG_MISSING}: Files in DESTDIR but missing from METALOG." +# * ${SETS_DESTDIR_EXTRA}: Files in DESTDIR but missing from setlist." +# * ${SETS_DESTDIR_MISSING}: Files in setlist but missing from DESTDIR." +# +SETS_METALOG_EXTRA="${DESTDIR}/SETS.metalog.extra" +SETS_METALOG_MISSING="${DESTDIR}/SETS.metalog.missing" +SETS_DESTDIR_EXTRA="${DESTDIR}/SETS.destdir.extra" +SETS_DESTDIR_MISSING="${DESTDIR}/SETS.destdir.missing" + +es=0 +cleanup() +{ + if [ ${es} -gt 255 ]; then + es=255 + fi + exit ${es} +} +trap cleanup 0 2 3 13 # EXIT INT QUIT PIPE + +origin=. +xargs="" +dargs="" +metalog= +allowextra=false +allowmissing=false + +# handle args +while getopts xybL:M:em ch; do + case ${ch} in + x) + xargs="-x" + origin="./etc/X11 ./etc/fonts ./usr/X11R6" + ;; + y) + xargs="-y" + origin="./etc/ext ./usr/ext" + ;; + # backward compat + b) + xargs="-b" + ;; + L) + xargs="-L ${OPTARG}" + ;; + M) + metalog="${OPTARG}" + ;; + e) + allowextra=true + ;; + m) + allowmissing=true + ;; + *) + cat 1>&2 <"${SETS_DLIST}" +} + +generate_flist() +{ +${HOST_SH} "${rundir}/makeflist" ${xargs} ${dargs} \ + | ${SORT} -u | ignore_exceptions >"${SETS_FLIST}" +} + +generate_mlist() +{ +if [ -n "${metalog}" ]; then + ${AWK} '{print $1}' <"${metalog}" \ + | ${SORT} -u | ignore_exceptions >"${SETS_MLIST}" +fi +} + +generate_mlist_missing() +{ + ${COMM} -23 "${SETS_DLIST}" "${SETS_MLIST}" > "${SETS_METALOG_MISSING}" +} + +generate_mlist_extra() +{ + ${COMM} -13 "${SETS_DLIST}" "${SETS_MLIST}" > "${SETS_METALOG_EXTRA}" +} + +generate_dlist_missing() +{ + ${COMM} -23 "${SETS_FLIST}" "${SETS_DLIST}" > "${SETS_DESTDIR_MISSING}" +} + +generate_dlist_extra() +{ + ${COMM} -13 "${SETS_FLIST}" "${SETS_DLIST}" > "${SETS_DESTDIR_EXTRA}" +} + +exist_case_insensitive() +{ + while read f; do + [ -f "${DESTDIR}/${f}" ] || \ + [ -d "${DESTDIR}/${f}" ] || \ + [ -L "${DESTDIR}/${f}" ] || \ + echo "$f" + done +} + +# +# compare DESTDIR with METALOG, and report on differences. +# +compare_metalog() +{ + # Handle case insensitive filesystems + mv -f "${SETS_METALOG_EXTRA}" "${SETS_METALOG_EXTRA}.all" + exist_case_insensitive < "${SETS_METALOG_EXTRA}.all" > "${SETS_METALOG_EXTRA}" + rm -f "${SETS_METALOG_EXTRA}.all" + + check_metalog_extra + check_metalog_missing +} + +check_metalog_extra() +{ + if [ -s "${SETS_METALOG_EXTRA}" ]; then + count="$(${AWK} 'END {print NR}' "${SETS_METALOG_EXTRA}")" + echo "" + echo "======= ${count} extra files in METALOG =========" + echo "Files in METALOG but missing from DESTDIR." + echo "File was deleted after installation ?" + echo "------------------------------------------" + cat "${SETS_METALOG_EXTRA}" + echo "========= end of ${count} extra files ===========" + echo "" + es=1 # this is fatal even if ${allowextra} is true + fi +} + +check_metalog_missing() +{ + if [ -s "${SETS_METALOG_MISSING}" ]; then + count="$(${AWK} 'END {print NR}' "${SETS_METALOG_MISSING}")" + echo "" + echo "====== ${count} missing files in METALOG ========" + echo "Files in DESTDIR but missing from METALOG." + echo "File installed but not registered in METALOG ?" + echo "------------------------------------------" + cat "${SETS_METALOG_MISSING}" + echo "======== end of ${count} missing files ==========" + echo "" + es=1 # this is fatal even if ${allowmissing} is true + fi +} + +# +# compare flist with DESTDIR, and report on differences. +# +compare_destdir() +{ +# Handle case insensitive filesystems +mv -f "${SETS_DESTDIR_MISSING}" "${SETS_DESTDIR_MISSING}.all" +exist_case_insensitive < "${SETS_DESTDIR_MISSING}.all" > "${SETS_DESTDIR_MISSING}" +rm -f "${SETS_DESTDIR_MISSING}.all" + +check_destdir_extra +check_destdir_missing +} + +check_destdir_extra() +{ +if [ -s "${SETS_DESTDIR_EXTRA}" ]; then + count="$(${AWK} 'END {print NR}' "${SETS_DESTDIR_EXTRA}")" + echo "" + echo "======= ${count} extra files in DESTDIR =========" + echo "Files in DESTDIR but missing from flist." + echo "File is obsolete or flist is out of date ?" + if ${allowextra}; then + echo "This is non-fatal, due to '-e' option." + else + es=1 + fi + echo "------------------------------------------" + cat "${SETS_DESTDIR_EXTRA}" + echo "========= end of ${count} extra files ===========" + echo "" +fi +} + +check_destdir_missing() +{ +if [ -s "${SETS_DESTDIR_MISSING}" ]; then + count="$(${AWK} 'END {print NR}' "${SETS_DESTDIR_MISSING}")" + echo "" + echo "====== ${count} missing files in DESTDIR ========" + echo "Files in flist but missing from DESTDIR." + echo "File wasn't installed ?" + if ${allowmissing}; then + echo "This is non-fatal, due to '-m' option." + else + es=1 + fi + echo "------------------------------------------" + cat "${SETS_DESTDIR_MISSING}" + echo "======== end of ${count} missing files ==========" + echo "" +fi +} + +generate_dlist +generate_flist +generate_mlist + +generate_mlist_missing +generate_mlist_extra + +generate_dlist_missing +generate_dlist_extra + +if false && [ -n "${metalog}" ]; then + # XXX: Temporarily disabled due to problems with obsolete files in metalog + compare_metalog +else + compare_destdir +fi + +exit 0 # cleanup will exit with ${es} diff --git a/distrib/sets/comments b/distrib/sets/comments new file mode 100644 index 000000000..4e7edc978 --- /dev/null +++ b/distrib/sets/comments @@ -0,0 +1,470 @@ +minix-sys Minix Complete system +base-adosfs-root Root file system support for Amiga DOS file system support +base-amd-bin auto-mounter daemon +base-amd-examples example configuration files for the auto-mounter daemon and utilities +base-amd-shlib auto-mounter daemon shared library +base-audio-bin utilities for playing and recording audio +base-bind-bin the BIND DNS server +base-bind-examples example configuration files for BIND +base-bind-root root file system directories required by BIND +base-bootserver-bin software for booting diskless systems +base-c-bin utilities for the C programming language +base-c-usr /usr file system directories required by C programming language utilities +base-calendar-bin calendar(1) displays lines from the calendar database matching certain dates +base-calendar-share database of important dates for calendar(1) +base-cron-bin the cron daemon and related utilities +base-cron-root root file system directories required by the cron daemon +base-crypto-bin cryptographic utilities +base-crypto-examples example configuration files for cryptographic utilities +base-crypto-root root file system directories required by cryptographic utilities +base-crypto-shlib shared library providing cryptographic routines +base-cxx-usr /usr file system directories required by C++ programming language utilities +base-debug-bin debugging utilities +base-dhclient-root root file system support for DHCP client software +base-dhcpd-bin DHCP server +base-dhcpd-examples example configuration files for DHCP server +base-efs-root root file system support for efs file system +base-ext2fs-root root file system support for ext2fs file system +base-filecorefs-root root file system support for the Acorn FILECORE file system +base-fstab-examples various example file system tables +base-games-root root file system support for games +base-games-share shared data files for games +base-games-usr directories for the games subsystem +base-gnats-bin the GNATS bug reporting utility +base-gnats-share shared data files for the GNATS bug reporting utility +base-groff-font fonts for the groff family of text formatters +base-groff-share shared data files for the groff family of text formatters +base-hesiod-bin utilities for the HESIOD network information system +base-htmldoc-share HTML documentation +base-i18n-root directories for internationalisation support +base-i18n-shlib shared library modules for internationalisation support +base-ipf-bin IPfilter utilities +base-ipf-root directories for IPfilter +base-isdn-bin utilities and daemons for ISDN network connectivity +base-isdn-examples directories for the ISDN example files +base-kernel-modules loadable kernel modules +base-krb5-bin commands and utilities for the Kerberos V network authentication system +base-krb5-examples example configuration files for the Kerberos V network authentication system +base-krb5-root root file system support for the Kerberos V network authentication system +base-krb5-shlib root file system support for the Kerberos V network authentication system +base-libsaslc-examples example configuration files for the SASL C library +base-locale-Pig igPey atinLey ocaleley upportsey (Pig-Latin locale support) +base-locale-bin utilities for working with locales +base-locale-ca Catalan language locale support +base-locale-cs Czech language locale support +base-locale-da Danish language locale support +base-locale-de German language locale support +base-locale-el Greek language locale support +base-locale-en English language locale support +base-locale-eo Esperanto language locale support +base-locale-es Spanish language locale support +base-locale-et Estonian language locale support +base-locale-fi Finnish language locale support +base-locale-fr French language locale support +base-locale-gl Galician language locale support +base-locale-he Hebrew language locale support +base-locale-hr Croatian language locale support +base-locale-hu Hungarian language locale support +base-locale-id Indonesian language locale support +base-locale-is Icelandic language locale support +base-locale-it Italian language locale support +base-locale-ja Japanese language locale support +base-locale-ko Korean language locale support +base-locale-lt Lithuanian language locale support +base-locale-nl Dutch language locale support +base-locale-no Norwegian language locale support +base-locale-pl Polish language locale support +base-locale-pt Portuguese language locale support +base-locale-ru Russian language locale support +base-locale-share /usr/share file system support for all locales +base-locale-sk Slovak language locale support +base-locale-sl Slovenian language locale support +base-locale-sv Swedish language locale support +base-locale-tr Turkish language locale support +base-locale-uk Ukrainian language locale support +base-locale-zh Chinese language locale support +base-lpr-bin utilities for printing support +base-lpr-root root file system support for printing utilities +base-lpr-usr /usr file system support for printing +base-magic-share shared files for the file(1) utility +base-mail-bin mail utilities +base-mail-root root file system support for mail utilities +base-mailwrapper-bin the mailwrapper(8) program for multiple mailer support +base-man-bin utilities for reading online manual pages +base-man-share shared data files for the online manual pages +base-miscfs-examples example configuration files for miscellaneous file systems +base-miscfs-root root file system support for miscellaneous file systems +base-net-shlib shared libraries for network programming +base-netutil-bin networking utilities +base-netutil-examples example configuration files for networking programs +base-netutil-root root file system support for networking utilities +base-nfsclient-bin network file system client utilities +base-nfsclient-root root file system support for network file system client utilities +base-nfsserver-bin network file system server program +base-nis-bin progams and utilities for the NIS network information system +base-nis-root root file system support for the NIS network information system +base-ntfs-root root file system support for the Windows NT file system +base-ntp-bin utilities for network time protocol support +base-ntp-root basic directories for network time protocol support +base-objc-usr /usr file system support for the Objective C programming language +base-pf-bin utilities for the PF packet filter +base-pf-root directories for the PF packet filter +base-pkgutil-bin package system utilities +base-postfix-bin the Postfix mailer +base-postfix-examples example configuration files for the Postfix mailer +base-postfix-root root file system support for the Postfix mailer +base-postfix-usr /usr file system support for the Postfix mailer +base-ppp-bin utilities for the PPP point-to-point remote access protocol +base-psd-share directory structure for the Programmer's Supplementary Documentation +base-rcs-bin utilities for the RCS Revision Control System +base-reference-share directory structure for miscellaneous reference documents +base-rescue-root statically-linked binaries which can be used in extremis +base-router-bin network routing utilities +base-router-examples base directories for network routing utilities +base-router-root root file system support for network routing utilities +base-secsh-bin secure shell SSH client and server +base-sendmail-bin the sendmail(8) mailer +base-sendmail-root root file system support for the sendmail(8) mailer +base-sendmail-share shared data files for the sendmail(8) mailer +base-sendmail-usr /usr file system support for the sendmail(8) mailer +base-slip-bin the SLIP serial line internet protocol +base-slip-root root file system support for the SLIP remote access protocol +base-smbfs-root root file system support for the smbfs client SMB filesystem support +base-smm-share directory structure for the System Manager's Manual +base-sup-bin utilities for the SUP software update protocol +base-sup-examples example configuration files for the SUP software update protocol +base-sys-devlinks device node symbolic links +base-sys-examples example configuration files for kernel functionality +base-sys-root required root file system structure +base-sys-share required /usr/share file system structure +base-sys-shlib shared libraries for basic system functionality +base-sys-usr required /usr file system structure +base-sysutil-bin system utilities +base-sysutil-examples example configuration files for miscellaneous system utilities +base-sysutil-root root file system support for system utilities +base-sysutil-share shared data files for system utilities +base-sysutil_locale-share shared locale support for system utilities +base-termcap-share shared files for terminal capability database +base-texinfo-bin the GNU texinfo software +base-texinfo-share shared data files for the GNU texinfo software +base-texinfo_locale-cs Czech language support for the GNU texinfo software +base-texinfo_locale-da Danish language support for the GNU texinfo software +base-texinfo_locale-de German language support for the GNU texinfo software +base-texinfo_locale-eo Esperanto language support for the GNU texinfo software +base-texinfo_locale-fr French language support for the GNU texinfo software +base-texinfo_locale-he Hebrew language support for the GNU texinfo software +base-texinfo_locale-hr Croatian language support for the GNU texinfo software +base-texinfo_locale-ja Japanese language support for the GNU texinfo software +base-texinfo_locale-nl Dutch language support for the GNU texinfo software +base-texinfo_locale-no Norwegian language support for the GNU texinfo software +base-texinfo_locale-ru Russian language support for the GNU texinfo software +base-texinfo_locale-sv Swedish language support for the GNU texinfo software +base-texinfo_locale-tr Turkish language support for the GNU texinfo software +base-texinfo_locale-zh Chinese language support for the GNU texinfo software +base-timed-bin utilities for the timed(8) network time daemon +base-tn3270-bin utilities for connecting to IBM VM/CMS systems +base-usd-share directory structure for the User's Supplementary Documentation +base-util-bin standard utilities for use by users +base-util-root root file system support for standard user utilities +base-util-share shared data files for standard user utilities +base-util_locale-cs Czech language support for standard utilities +base-util_locale-de German language support for standard utilities +base-util_locale-el Greek language support for standard utilities +base-util_locale-eo Esperanto language support for standard utilities +base-util_locale-es Spanish language support for standard utilities +base-util_locale-et Estonian language support for standard utilities +base-util_locale-fr French language support for standard utilities +base-util_locale-gl Galician language support for standard utilities +base-util_locale-hr Croatian language support for standard utilities +base-util_locale-id Indonesian language support for standard utilities +base-util_locale-it Italian language support for standard utilities +base-util_locale-ja Japanese language support for standard utilities +base-util_locale-sv Swedish language support for standard utilities +comp-c-bin compilers and tools for the C programming language +comp-c-catman formatted manual pages +comp-c-include header files for the C programming language +comp-c-lib static libraries and shared library links for the C programming language +comp-c-lintlib data files for the lint(1) syntax checker +comp-c-man manual pages source +comp-c-piclib PIC libraries for C language shared library generation +comp-c-proflib profiling libraries for the C programming language +comp-c-root root file system symlinks for software development +comp-c-share reference files for C language programmers +comp-c-shlib shared libraries for binary file utilities and machine opcodes +comp-c_locale-da Danish language locale support for development utilities +comp-c_locale-de German language locale support for development utilities +comp-c_locale-es Spanish language locale support for development utilities +comp-c_locale-fr French language locale support for development utilities +comp-c_locale-ko Korean language locale support for development utilities +comp-c_locale-nl Dutch language locale support for development utilities +comp-c_locale-no Norwegian language locale support for development utilities +comp-c_locale-pl Polish language locale support for development utilities +comp-c_locale-pt Portuguese language locale support for development utilities +comp-c_locale-sl Slovenian language locale support for development utilities +comp-c_locale-sv Swedish language locale support for development utilities +comp-cvs-bin utilities for CVS (Concurrent Version System) +comp-cvs-catman formatted manual pages for the CVS version control system +comp-cvs-man manual page source for the CVS version control system +comp-cxx-bin compilers and tools for the C++ programming language +comp-cxx-catman formatted manual pages for the C++ programming language +comp-cxx-include header files for the C++ programming language +comp-cxx-lib static libraries and shared library links for the C++ programming language +comp-cxx-man manual pages source for the C++ programming language +comp-cxx-piclib PIC libraries for C++ language shared library generation +comp-cxx-proflib profiling libraries for the C++ programming language +comp-debug-bin utilities for source code debugging +comp-debug-catman formatted manual pages for debugging utilities +comp-debug-man manual pages source for debugging utilities +comp-debug-sbin utilities for kernel debugging +comp-fortran-bin compilers and tools for the FORTRAN programming language +comp-fortran-catman formatted manual pages for the FORTRAN programming language +comp-fortran-lib static libraries and shared library links for the FORTRAN programming language +comp-fortran-man manual pages source for the FORTRAN programming language +comp-fortran-piclib PIC libraries for the FORTRAN language shared library generation +comp-fortran-proflib profiling libraries for the FOTRAN programming language +comp-fortran-shlib shared libraries for the FORTRAN programming language +comp-i18n-lib static libraries and shared library links for compiling applications with internationalisation support +comp-ipf-include header files for the IPfilter C API +comp-krb5-catman formatted manual pages for Kerberos V support +comp-krb5-include header files for Kerberos V support +comp-krb5-lib libraries to support Kerberos V compilation +comp-krb5-man source manual pages for Kerberos V support +comp-krb5-proflib profiling libraries for Kerberos V support +comp-krb5c-catman pre-formatted manual pages for Kerberos V C support +comp-objc-bin compilers and tools for the Objective C programming language +comp-objc-lib static libraries and shared library links for the Objective C programming language +comp-objc-piclib PIC libraries for Objective C language shared library generation +comp-objc-proflib profiling libraries for the Objective C programming language +comp-sys-catman formatted manual pages for kernel programming +comp-sys-man manual pages source for kernel programming +comp-sys-shlib shared library support for basic i386 math and utility libs +comp-sysutil-catman formatted manual pages for system utilities +comp-sysutil-man manual pages source for system utilities +comp-sysutil-root manual pages source for system utilities +comp-sysutil-sbin system utilities +comp-util-bin programming utilities +comp-util-catman formatted manual pages for programming utilities +comp-util-man manual pages source for programming utilities +comp-util-sbin system development utilities +comp-util-share reference files for programming utilities +etc-amd-rc startup script for auto-mounter daemon +etc-audio-rc startup script for audio mixer control utility +etc-bind-etc configuration files for BIND DNS server +etc-bind-rc startup script for BIND DNS server +etc-bootserver-etc configuration files for diskless boot server utilities +etc-bootserver-rc startup script for diskless boot server utilities +etc-cron-log empty log file for cron(8) +etc-cron-rc startup script for cron(8) command scheduler +etc-cron-root root file system support for cron(8) command scheduler +etc-dhclient-etc configuration files for DHCP dyanamic host configuration protocol client utilities +etc-dhclient-rc startup script for DHCP dynamic host configuration protocol client +etc-dhcpd-rc startup script for DHCP dynamic host configuration protocol daemon +etc-extsrc-rc startup scripts for externally added programs +etc-games-etc configuration file for games +etc-games-scores empty score files for games +etc-ipf-rc startup scripts for IP filter +etc-isdn-rc startup script for ISDN (Integrated Services Digital Network) network connectivity utilities +etc-krb5-rc startup script for the Kerberos V authentication service +etc-libsaslc-etc configuration file for the SASL C library +etc-libsaslc-postfix configuration file for postfix SASL +etc-lpr-etc configuration file for printing services +etc-lpr-log empty log file for printing services +etc-lpr-rc startup script for printing services +etc-mail-etc configuration file for mail utilities +etc-mailwrapper-etc configuration files for the mailwrapper(8) program for multiple mailer support +etc-man-etc configuration files for the online manual pages +etc-net-etc configuration files for networking +etc-net-rc startup files for networking +etc-netutil-etc configuration files for network utilities +etc-netutil-log empty log files for networking utilities +etc-nfsserver-rc startup script for NFS network file system server utilities +etc-nis-rc startup script for the NIS network information system +etc-nis-root root file system support for the NIS network file system +etc-ntp-etc configuration files for the ntpd(8) Network Time Protocol server +etc-ntp-rc startup script for the ntpd(8) Network Time Protocol server +etc-pf-defaults default configuration files for the PF packet filter +etc-pf-etc configuration files for the PF packet filter +etc-postfix-etc configuration file for the postfix mailer program +etc-postfix-rc startup script for the postfix mailer program +etc-ppp-rc startup script for the PPP point-to-point connection protocol +etc-root-root login configuration files for the user root +etc-router-etc configuration files for network routing +etc-router-rc startup scripts for routing services +etc-secsh-etc configuration file for SSH secure remote shell utility +etc-secsh-rc startup script for SSH secure remote shell utility +etc-sendmail-etc configuration files for the sendmail(8) mailer +etc-sendmail-log empty log files for the sendmail(8) mailer +etc-sendmail-rc startup script for the sendmail(8) mailer +etc-sys-defaults default system startup configuration files +etc-sys-etc system software configuration files +etc-sys-log empty system log files +etc-sys-rc standard system startup scripts +etc-sys-root required root file system structure for system software +etc-sysutil-etc configuration files for miscellaneous system utilities +etc-sysutil-log empty log files for miscellaneous system utilities +etc-sysutil-rc startup scripts for miscellaneous system utilities +etc-timed-rc startup script for the timed(8) network time daemon +etc-util-etc configuration file for standard system utilities +etc-x11-rc startup scripts for the X11 X Window System +games-games-bin command line games +games-games-catman formatted manual pages for command-line games +games-games-man manual pages source for command-line games +games-games-root data and score files for command line games +games-games-share shared data files for command-line games +games-utils-bin miscellaneous utilities from /usr/games +games-utils-catman formatted manual pages for miscellaneous utilities from /usr/games +games-utils-man manual pages source for miscellaneous utilities from /usr/games +games-utils-share shared data files for miscellaneous utilities from /usr/games +man-adosfs-catman formatted manual pages for AmigaDOS file system support +man-adosfs-man manual pages source for AmigaDOS file system support +man-amd-catman formatted manual pages for the amd(8) auto-mounting daemon +man-amd-info texinfo documentation for the amd(8) auto-mounting daemon +man-amd-man manual pages source for the amd(8) auto-mounting daemon +man-audio-catman formatted manual pages for utilities for playing and recording audio +man-audio-man manual pages source for utilities for playing and recording audio +man-bind-catman formatted manual pages for the bind(8) domain name server daemon +man-bind-man manual pages source for the bind(8) domain name server daemon +man-bootserver-catman formatted manual pages for utilities to support remote booting of diskless workstations +man-bootserver-man manual pages source for utilities to support remote booting of diskless workstations +man-c-catman formatted manual pages for the C programming language +man-c-info the GNU texinfo software +man-c-man manual pages source for the C programming language +man-computil-info texinfo documentation for compiler utilities +man-cron-catman formatted manual pages for the cron(8) command scheduler +man-cron-man manual pages source for the cron(8) command scheduler +man-crypto-catman formatted manual pages for cryptographic utilities +man-crypto-man manual pages source for cryptographic utilities +man-cvs-info texinfo documentation for the CVS version control system +man-cxx-info texinfo documentation for the C++ programming language +man-debug-catman formatted manual pages for debugging utilities +man-debug-info texinfo documentation for debugging utilities +man-debug-man manual pages source for debugging utilities +man-dhclient-catman formatted manual pages for DHCP (dynamic host configuration protocol) client utilities +man-dhclient-man manual pages source for DHCP (dynamic host configuration protocol) client utilities +man-dhcpd-catman formatted manual pages for DHCP (dynamic host configuration protocol) server utilities +man-dhcpd-man manual pages source for DHCP (dynamic host configuration protocol) server utilities +man-efs-catman formatted manual pages for the Silicon Graphics efs file system support +man-efs-man manual pages source for the Silicon Graphics efs file system support +man-ext2fs-catman formatted manual pages for the Linux ext2fx file system support +man-ext2fs-man manual pages source for the Linux ext2fx file system support +man-filecorefs-catman formatted manual pages Acorn FileCore file system support +man-filecorefs-man manual pages source Acorn FileCore file system support +man-fortran-info texinfo documentation for the FORTRAN programming language +man-games-catman formatted man pages for games +man-games-man manual pages source for games +man-gnats-catman formatted manual pages for the GNATS bug reported system +man-gnats-info texinfo documentation for the GNATS bug reported system +man-gnats-man manual pages source for the GNATS bug reported system +man-groff-catman formatted manual pages for the groff documentation formatting utility +man-groff-man manual pages source for the groff documentation formatting utility +man-hesiod-catman formatted manual pages for the HESIOD network information system +man-hesiod-man manual pages source for the HESIOD network information system +man-info-share required file system structure for GNU texinfo documentation +man-ipf-catman formatted manual pages for the IPfilter packet filtering software +man-ipf-man manual pages source for the IPfilter packet filtering software +man-isdn-catman formatted manual pages for ISDN (Integrated Services Data Networking) support +man-isdn-man manual pages source for ISDN (Integrated Services Data Networking) support +man-krb5-catman formatted manual pages for the Kerberos V network authentication system +man-krb5-info the GNU texinfo software +man-krb5-man manual pages source for the Kerberos V network authentication system +man-locale-catman formatted manual pages for locale support utilities +man-locale-man manual pages source for locale support utilities +man-lpr-catman formatted manual pages for printing support +man-lpr-man manual pages source for printing support +man-mail-catman formatted manual pages for mail utilities +man-mail-man manual pages source for mail utilities +man-mailwrapper-catman formatted manual pages for the mailwrapper(8) program for multiple mailer support +man-mailwrapper-man manual pages source for the mailwrapper(8) program for multiple mailer support +man-man-catman formatted manual pages for the utilities for viewing the online manual +man-man-man manual pages source for the utilities for viewing the online manual +man-miscfs-catman the GNU texinfo software +man-miscfs-man manual pages sources for miscellaneous file system support +man-net-catman formatted manual pages for networking support +man-net-man manual pages source for networking support +man-netutil-catman formatted manual pages for networking utilities +man-netutil-man manual pages source for networking utilities +man-nfsclient-catman formatted manual pages for NFS (network file system) client utilities +man-nfsclient-man manual pages source for NFS (network file system) client utilities +man-nfsserver-catman formatted manual pages for NFS (network file system) server utilities +man-nfsserver-man manual pages source for NFS (network file system) server utilities +man-nis-catman formatted manual pages for the NIS network information system utilities +man-nis-man manual pages source for the NIS network information system utilities +man-ntfs-catman formatted manual pages for the Windows NT file system support +man-ntfs-man manual pages source for the Windows NT file system support +man-ntp-catman formatted manual pages for the network time protocol utilities +man-ntp-man manual pages source for the network time protocol utilities +man-pf-catman formatted manual pages for the PF packet filter +man-pf-man manual page source for the PF packet filter +man-pkgutil-catman formatted manual pages for the package system utilities +man-pkgutil-man manual pages source for the package system utilities +man-postfix-catman formatted manual pages for the postfix mailer +man-postfix-man manual pages source for the postfix mailer +man-ppp-catman formatted manual pages for the ppp point-to-point connection protocol +man-ppp-man manual pages source for the ppp point-to-point connection protocol +man-rc-catman formatted manual pages for system startup scripts +man-rc-man manual pages source for system startup scripts +man-rcs-catman formatted manual pages for the rcs(1) revision control system +man-rcs-man manual pages source for the rcs(1) revision control system +man-reference-catman formatted manual pages for miscellaneous system- and non-system-related reference documents +man-reference-man manual pages source for miscellaneous system- and non-system-related reference documents +man-router-catman formatted manual pages for routing utilities +man-router-man manual pages source for routing utilities +man-secsh-catman formatted manual pages for the ssh(1) remote secure shell connection utility +man-secsh-man manual pages source for the ssh(1) remote secure shell connection utility +man-sendmail-catman formatted manual pages for the sendmail(8) mailer +man-sendmail-man manual pages source for the sendmail(8) mailer +man-shlib-catman formatted manual pages for shared library support +man-shlib-man manual pages source for shared library support +man-slip-catman formatted manual pages for SLIP (serial line IP) remote access protocol +man-slip-man manual pages source for SLIP (serial line IP) remote access protocol +man-smbfs-catman formatted manual pages for SMB filesystem +man-smbfs-man source manual pages for SMB filesystem +man-sup-catman formatted manual pages for the sup(8) software update protocol +man-sup-man manual pages source for the sup(8) software update protocol +man-sys-catman formatted manual pages for base operating system functionality +man-sys-info the GNU texinfo software +man-sys-man manual pages source for base operating system functionality +man-sysutil-catman formatted manual pages for system utilities +man-sysutil-man manual pages source for system utilities +man-texinfo-catman formatted manual pages for texinfo utilities +man-texinfo-info texinfo documentation for texinfo utilities +man-texinfo-man source manual pages for texinfo utilities +man-timed-catman formatted manual pages for the timed(8) network time daemon +man-timed-man manual pages source for the timed(8) network time daemon +man-tn3270-catman formatted manual pages for utilities for connecting to IBM VM/CMS systems +man-tn3270-man manual pages source for utilities for connecting to IBM VM/CMS systems +man-util-catman formatted manual pages for basic user utilities +man-util-info the GNU texinfo software +man-util-man manual pages source for basic user utilities +misc-amd-examples example configuration files for automatically mount file systems +misc-bind-examples example configuration files for bind +misc-bind-htmldoc HTML documentation for bind +misc-crypto-examples example configuration files for cryptographic software +misc-dhcpd-examples example configuration files for dhcpd(8) +misc-fstab-examples example configuration files for file system tables +misc-ipf-examples example configuration files for IPfilter +misc-isdn-examples example configuration files for isdn +misc-krb5-examples example configuration files for Kerberos5 +misc-libsaslc-examples example configuration files for libsaslc +misc-netutil-examples example configuration files for network software +misc-ntp-htmldoc HTML documentation for ntp(8) software +misc-pf-examples +misc-postfix-examples example configuration files for postfix +misc-postfix-htmldoc HTML documentation for postfix +misc-psd-doc the Programmer's Supplementary Documentation for BSD +misc-reference-share miscellaneous reference documents +misc-router-examples example configuration files for routing daemons +misc-sendmail-share m4 templates for sendmail configuration +misc-smm-doc the System Manager's Manual for BSD +misc-sup-examples example configuration files for sup(8) +misc-sys-examples example configuration files for kernel functionality +misc-sysutil-examples example configuration files for system utilities +misc-usd-doc the User's Supplementary Documents for BSD +misc-util-htmldoc HTML documentation for miscellaneous utilities +text-groff-bin the groff family of text formatters (nroff, troff, groff, and related utilities) +text-groff-catman formatted manual pages for the groff family of text formatters +text-groff-font fonts for the groff family of text formatters +text-groff-man manual page source for the groff family of text formatters +text-groff-share macros and data files for the groff family of text formatters +text-texinfo-bin the GNU texinfo software +text-texinfo-share shared files for the GNU texinfo software diff --git a/distrib/sets/culldeps b/distrib/sets/culldeps new file mode 100755 index 000000000..83d3ec73d --- /dev/null +++ b/distrib/sets/culldeps @@ -0,0 +1,84 @@ +#!/bin/sh +# +# culldeps +# +# Filter redundant dependencies. +# +# Each line of input and output contains two syspkg names, +# where the first syspkg depends on the second syspkg. +# +# Emit all the dependencies on the standard input to the standard +# output EXCEPT the dependencies which can be derived from other +# dependencies by the transitive rule. For example, omit both A C +# and A D from +# +# A B +# B C +# C D +# A C +# A D +# +# because A C can be derived from A B and B C by transitivity, +# and A D can be derived from A B, B C, C D by transitivity. +# + +prog="${0##*/}" +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +SCRATCH="$(${MKTEMP} -d "/var/tmp/${prog}.XXXXXX")" +NEXTLEFTOVERS="${SCRATCH}/leftovers0" +LASTJOIN="${SCRATCH}/join0" +NEXTJOIN="${SCRATCH}/join1" +TAB=" " + +${SORT} -k 1 > "${LASTJOIN}" + +LEFTOVERS="${LASTJOIN}" + +while [ "$(${WC} -l "${LASTJOIN}" | ${AWK} '{ print $1; }')" -ne 0 ]; do + + # + # From dependencies X-requires-Y in ${LEFTOVERS} and Y-requires-Z in + # ${LASTJOIN}, produce dependencies X-requires-Z and write them to + # ${NEXTJOIN}. + # + ${SORT} -k 2 < "${LEFTOVERS}" | \ + ${JOIN} -1 2 -2 1 -o '1.1 2.2' - "${LASTJOIN}" | \ + ${SORT} -u > "${NEXTJOIN}" + if [ ${DEBUG:-0} -gt 0 ]; then + echo >&2 "${prog}: ### begin filtered results ###" + ${JOIN} -t "${TAB}" "${NEXTJOIN}" "${LEFTOVERS}" | ${SORT} 1>&2 + echo >&2 "${prog}: ### end filtered results ###" + fi + + # + # Filter out of ${LEFTOVERS} all of the dependencies X-requires-Z, which + # were produced in the previous step. Write the new leftovers to + # ${NEXTLEFTOVERS}. + # + ${JOIN} -v 2 -t "${TAB}" "${NEXTJOIN}" "${LEFTOVERS}" | \ + ${SORT} -u > "${NEXTLEFTOVERS}" + + # + # Swap output files before repeating. + # + LASTJOIN="${NEXTJOIN}" + if [ "$(basename "${NEXTJOIN}")" = join0 ]; then + NEXTJOIN="${SCRATCH}/join1" + else + NEXTJOIN="${SCRATCH}/join0" + fi + LEFTOVERS="${NEXTLEFTOVERS}" + if [ "$(basename "${NEXTLEFTOVERS}")" = leftovers0 ]; then + NEXTLEFTOVERS="${SCRATCH}/leftovers1" + else + NEXTLEFTOVERS="${SCRATCH}/leftovers0" + fi +done + +# +# Output all of the dependencies that were not culled and clean up. +# +cat "${LEFTOVERS}" +rm -r "${SCRATCH}" diff --git a/distrib/sets/deps b/distrib/sets/deps new file mode 100644 index 000000000..14d26e6d6 --- /dev/null +++ b/distrib/sets/deps @@ -0,0 +1,496 @@ +base-adosfs-root base-sys-root +base-amd-bin base-sys-usr +base-amd-examples base-sys-share +base-amd-shlib base-sys-usr +base-audio-bin base-sys-usr +base-bind-bin base-sys-usr +base-bind-root base-sys-root +base-bootserver-bin base-sys-usr +base-c-bin base-sys-usr +base-c-usr base-sys-usr +base-calendar-bin base-sys-usr +base-calendar-share base-sys-share +base-cron-bin base-sys-usr +base-cron-root base-sys-root +base-crypto-bin base-sys-usr +base-crypto-examples base-sys-share +base-crypto-root base-sys-root +base-crypto-shlib base-sys-usr +base-cxx-usr base-c-usr +base-debug-bin base-sys-usr +base-dhclient-root base-sys-root +base-dhcpd-bin base-sys-share +base-dhcpd-bin base-sys-usr +base-dhcpd-examples base-sys-share +base-efs-root base-sys-root +base-ext2fs-root base-sys-root +base-filecorefs-root base-sys-root +base-fstab-examples base-sys-share +base-games-root base-sys-root +base-games-share base-sys-share +base-games-usr base-sys-usr +base-gnats-bin base-sys-usr +base-gnats-share base-sys-share +base-groff-font base-sys-share +base-groff-share base-termcap-share +base-hesiod-bin base-sys-usr +base-htmldoc-share base-sys-share +base-i18n-root base-sys-usr +base-i18n-shlib base-i18n-root +base-isdn-bin base-sys-usr +base-isdn-examples base-sys-share +base-krb5-bin base-sys-usr +base-krb5-examples base-sys-share +base-krb5-root base-sys-root +base-krb5-shlib base-sys-usr +base-libsaslc-examples base-sys-share +base-locale-Pig base-locale-share +base-locale-bg base-locale-share +base-locale-bin base-sys-usr +base-locale-ca base-locale-share +base-locale-cs base-locale-share +base-locale-da base-locale-share +base-locale-de base-locale-share +base-locale-el base-locale-share +base-locale-en base-locale-share +base-locale-eo base-locale-share +base-locale-es base-locale-share +base-locale-et base-locale-share +base-locale-fi base-locale-share +base-locale-fr base-locale-share +base-locale-gl base-locale-share +base-locale-he base-locale-share +base-locale-hr base-locale-share +base-locale-hu base-locale-share +base-locale-hy base-locale-share +base-locale-id base-locale-share +base-locale-is base-locale-share +base-locale-it base-locale-share +base-locale-ja base-locale-share +base-locale-ko base-locale-share +base-locale-lt base-locale-share +base-locale-nb base-locale-share +base-locale-nl base-locale-share +base-locale-no base-locale-share +base-locale-pl base-locale-share +base-locale-pt base-locale-share +base-locale-ro base-locale-share +base-locale-ru base-locale-share +base-locale-share base-sys-share +base-locale-sk base-locale-share +base-locale-sl base-locale-share +base-locale-sv base-locale-share +base-locale-tr base-locale-share +base-locale-uk base-locale-share +base-locale-zh base-locale-share +base-lpr-bin base-lpr-usr +base-lpr-root base-sys-root +base-lpr-usr base-sys-usr +base-magic-share base-termcap-share +base-mail-bin base-sys-usr +base-mail-root base-sys-root +base-mailwrapper-bin base-sys-usr +base-man-bin base-sys-usr +base-man-share base-sys-share +base-miscfs-examples base-sys-share +base-miscfs-root base-sys-root +base-net-shlib base-sys-usr +base-netutil-bin base-sys-usr +base-netutil-examples base-sys-share +base-netutil-root base-sys-usr +base-nfsclient-bin base-sys-usr +base-nfsclient-root base-sys-root +base-nfsserver-bin base-sys-usr +base-nis-bin base-sys-usr +base-nis-root base-sys-root +base-ntfs-root base-sys-root +base-ntp-bin base-sys-usr +base-ntp-root base-sys-root +base-objc-usr base-c-usr +base-pkgutil-bin base-sys-usr +base-postfix-bin base-postfix-usr +base-postfix-examples base-sys-share +base-postfix-root base-sys-root +base-postfix-usr base-sys-usr +base-ppp-bin base-sys-usr +base-psd-share base-sys-share +base-rcs-bin base-sys-usr +base-reference-share base-termcap-share +base-rescue-root base-sys-root +base-router-bin base-sys-usr +base-router-examples base-sys-share +base-router-root base-sys-root +base-rpcbind-bin base-sys-usr +base-rpcserver-bin base-sys-usr +base-rpcutil-bin base-sys-usr +base-secsh-bin base-sys-usr +base-secsh-shlib base-sys-usr +base-sendmail-bin base-sys-usr +base-sendmail-root base-sys-root +base-sendmail-share base-sys-share +base-sendmail-usr base-c-usr +base-slip-bin base-sys-usr +base-slip-root base-sys-root +base-smbfs-root base-sys-root +base-smm-share base-sys-share +base-sup-bin base-sys-usr +base-sup-examples base-sys-share +base-sys-examples base-sys-share +base-sys-share base-sys-root +base-sys-shlib base-sys-usr +base-sys-usr base-sys-root +base-sysutil-bin base-sys-usr +base-sysutil-examples base-sys-share +base-sysutil-root base-sys-usr +base-sysutil-share base-sys-share +base-termcap-share base-sys-share +base-texinfo-bin base-sys-usr +base-texinfo-share base-sys-share +base-texinfo_locale-cs base-locale-cs +base-texinfo_locale-da base-locale-da +base-texinfo_locale-de base-locale-de +base-texinfo_locale-eo base-locale-eo +base-texinfo_locale-fr base-locale-fr +base-texinfo_locale-he base-locale-he +base-texinfo_locale-hr base-locale-hr +base-texinfo_locale-ja base-locale-ja +base-texinfo_locale-nb base-locale-nb +base-texinfo_locale-nl base-locale-nl +base-texinfo_locale-no base-locale-no +base-texinfo_locale-pl base-locale-pl +base-texinfo_locale-ro base-locale-ro +base-texinfo_locale-ru base-locale-ru +base-texinfo_locale-sv base-locale-sv +base-texinfo_locale-tr base-locale-tr +base-texinfo_locale-zh base-locale-zh +base-timed-bin base-sys-usr +base-tn3270-bin base-sys-usr +base-usd-share base-sys-share +base-util-bin base-sys-usr +base-util-root base-sys-root +base-util-share base-sys-share +base-util_locale-cs base-locale-cs +base-util_locale-de base-locale-de +base-util_locale-el base-locale-el +base-util_locale-eo base-locale-eo +base-util_locale-es base-locale-es +base-util_locale-et base-locale-et +base-util_locale-fr base-locale-fr +base-util_locale-gl base-locale-gl +base-util_locale-hr base-locale-hr +base-util_locale-id base-locale-id +base-util_locale-it base-locale-it +base-util_locale-ja base-locale-ja +base-util_locale-sv base-locale-sv +base-x11-root base-sys-root +comp-c-bin base-sys-usr +comp-c-catman base-man-share +comp-c-include base-objc-usr +comp-c-lib base-sys-usr +comp-c-lintlib base-c-usr +comp-c-man base-man-share +comp-c-piclib base-sys-usr +comp-c-proflib base-sys-usr +comp-c-root base-sys-root +comp-c-share base-termcap-share +comp-c-shlib base-sys-usr +comp-c_locale-be base-locale-share +comp-c_locale-ca base-locale-ca +comp-c_locale-cs base-locale-cs +comp-c_locale-da base-locale-da +comp-c_locale-de base-locale-de +comp-c_locale-el base-locale-el +comp-c_locale-en@boldquot base-locale-share +comp-c_locale-en@quot base-locale-share +comp-c_locale-es base-locale-es +comp-c_locale-et base-locale-et +comp-c_locale-fi base-locale-share +comp-c_locale-fr base-locale-fr +comp-c_locale-gl base-locale-gl +comp-c_locale-id base-locale-id +comp-c_locale-it base-locale-it +comp-c_locale-ja base-locale-ja +comp-c_locale-ko base-locale-ko +comp-c_locale-nl base-locale-nl +comp-c_locale-nn base-locale-share +comp-c_locale-no base-locale-no +comp-c_locale-pl base-locale-pl +comp-c_locale-pr base-locale-pt +comp-c_locale-pt_BR base-locale-pt +comp-c_locale-ro base-locale-ro +comp-c_locale-ru base-locale-ru +comp-c_locale-sk base-locale-sk +comp-c_locale-sl base-locale-sl +comp-c_locale-sr base-locale-share +comp-c_locale-sv base-locale-sv +comp-c_locale-tr base-locale-tr +comp-c_locale-uk base-locale-share +comp-c_locale-zh_CN base-locale-zh +comp-c_locale-zh_TW base-locale-zh +comp-cvs-bin base-sys-usr +comp-cvs-catman base-man-share +comp-cvs-man base-man-share +comp-cxx-bin base-sys-usr +comp-cxx-catman base-man-share +comp-cxx-include base-cxx-usr +comp-cxx-lib base-sys-usr +comp-cxx-man base-man-share +comp-cxx-piclib base-sys-usr +comp-cxx-proflib base-sys-usr +comp-debug-bin base-sys-usr +comp-debug-catman base-man-share +comp-debug-man base-man-share +comp-debug-sbin base-sys-usr +comp-fortran-bin base-sys-usr +comp-fortran-catman base-man-share +comp-fortran-lib base-sys-usr +comp-fortran-man base-man-share +comp-fortran-proflib base-sys-usr +comp-i18n-lib base-i18n-root +comp-krb5-catman base-man-share +comp-krb5-include base-c-usr +comp-krb5-lib base-sys-usr +comp-krb5-man base-man-share +comp-krb5-proflib base-sys-usr +comp-krb5c-catman base-man-share +comp-objc-bin base-sys-usr +comp-objc-lib base-sys-usr +comp-objc-piclib base-sys-usr +comp-objc-proflib base-sys-usr +comp-sendmail-include base-sendmail-usr +comp-sendmail-lib base-sys-usr +comp-sendmail-lintlib base-c-usr +comp-sys-catman base-man-share +comp-sys-man base-man-share +comp-sys-root base-sys-root +comp-sysutil-catman base-man-share +comp-sysutil-man base-man-share +comp-util-bin base-sys-usr +comp-util-catman base-man-share +comp-util-man base-man-share +comp-util-sbin base-sys-usr +comp-util-share base-termcap-share +comp-util-share base-util-share +etc-amd-rc base-sys-root +etc-audio-rc base-sys-root +etc-bind-etc base-bind-root +etc-bind-rc base-sys-root +etc-bootserver-etc base-sys-root +etc-bootserver-rc base-sys-root +etc-cron-log base-sys-root +etc-cron-rc base-sys-root +etc-cron-root base-cron-root +etc-dhclient-rc base-sys-root +etc-dhcpd-rc base-sys-root +etc-games-etc base-sys-root +etc-games-scores base-games-root +etc-ipf-rc base-sys-root +etc-isdn-rc base-sys-root +etc-krb5-rc base-sys-root +etc-libsaslc-etc base-sys-root +etc-libsaslc-postfix base-sys-root +etc-lpr-etc base-sys-root +etc-lpr-log base-sys-root +etc-lpr-rc base-sys-root +etc-mail-etc base-sys-root +etc-mailwrapper-etc base-sys-root +etc-man-etc base-sys-root +etc-net-etc base-sys-root +etc-net-rc base-sys-root +etc-netutil-etc base-sys-root +etc-netutil-log base-sys-root +etc-nfsserver-rc base-sys-root +etc-nis-rc base-sys-root +etc-nis-root base-nis-root +etc-ntp-etc base-sys-root +etc-ntp-rc base-sys-root +etc-postfix-etc base-postfix-bin +etc-postfix-rc base-sys-root +etc-ppp-rc base-sys-root +etc-root-root base-sys-root +etc-router-etc base-sys-root +etc-router-rc base-sys-root +etc-rpcbind-rc base-sys-root +etc-secsh-etc base-sys-root +etc-secsh-rc base-sys-root +etc-sendmail-etc base-sendmail-root +etc-sendmail-log base-sys-root +etc-sendmail-rc base-sys-root +etc-sys-defaults base-sys-root +etc-sys-etc base-sys-root +etc-sys-log base-sys-root +etc-sys-rc base-sys-root +etc-sys-root base-sys-root +etc-sysutil-etc base-sysutil-bin +etc-sysutil-log base-util-root +etc-sysutil-rc base-sys-root +etc-timed-rc base-sys-root +etc-util-etc base-sys-root +etc-x11-rc base-sys-root +games-games-bin base-games-usr +games-games-catman base-man-share +games-games-man base-man-share +games-games-root base-games-root +games-games-share base-games-share +games-sys-root base-sys-root +games-usd-doc base-usd-share +games-utils-bin base-games-usr +games-utils-catman base-man-share +games-utils-man base-man-share +games-utils-share base-games-share +man-adosfs-catman base-man-share +man-adosfs-man base-man-share +man-amd-catman base-man-share +man-amd-info base-texinfo-share +man-amd-man base-man-share +man-audio-catman base-man-share +man-audio-man base-man-share +man-bind-catman base-man-share +man-bind-man base-man-share +man-bootserver-catman base-man-share +man-bootserver-man base-man-share +man-c-catman base-man-share +man-c-info base-texinfo-share +man-c-man base-man-share +man-computil-info base-texinfo-share +man-cron-catman base-man-share +man-cron-man base-man-share +man-crypto-catman base-man-share +man-crypto-man base-man-share +man-cvs-info base-texinfo-share +man-debug-catman base-man-share +man-debug-info base-texinfo-share +man-debug-man base-man-share +man-dhclient-catman base-man-share +man-dhclient-man base-man-share +man-dhcpd-catman base-man-share +man-dhcpd-man base-man-share +man-efs-catman base-man-share +man-efs-man base-man-share +man-ext2fs-catman base-man-share +man-ext2fs-man base-man-share +man-filecorefs-catman base-man-share +man-filecorefs-man base-man-share +man-fortran-info base-texinfo-share +man-gnats-catman base-man-share +man-gnats-info base-texinfo-share +man-gnats-man base-man-share +man-groff-catman base-man-share +man-groff-info base-texinfo-share +man-groff-man base-man-share +man-hesiod-catman base-man-share +man-hesiod-man base-man-share +man-info-share base-texinfo-share +man-ipf-catman base-man-share +man-ipf-man base-man-share +man-isdn-catman base-man-share +man-isdn-man base-man-share +man-krb5-catman base-man-share +man-krb5-info base-texinfo-share +man-krb5-man base-man-share +man-locale-catman base-man-share +man-locale-man base-man-share +man-lpr-catman base-man-share +man-lpr-man base-man-share +man-mail-catman base-man-share +man-mail-man base-man-share +man-mailwrapper-catman base-man-share +man-mailwrapper-man base-man-share +man-man-catman base-man-share +man-man-man base-man-share +man-miscfs-catman base-man-share +man-miscfs-man base-man-share +man-net-catman base-man-share +man-net-man base-man-share +man-netutil-catman base-man-share +man-netutil-man base-man-share +man-nfsclient-catman base-man-share +man-nfsclient-man base-man-share +man-nfsserver-catman base-man-share +man-nfsserver-man base-man-share +man-nis-catman base-man-share +man-nis-man base-man-share +man-ntfs-catman base-man-share +man-ntfs-man base-man-share +man-ntp-catman base-man-share +man-ntp-man base-man-share +man-pkgutil-catman base-man-share +man-pkgutil-man base-man-share +man-postfix-catman base-man-share +man-postfix-man base-man-share +man-ppp-catman base-man-share +man-ppp-man base-man-share +man-rc-catman base-man-share +man-rc-man base-man-share +man-rcs-catman base-man-share +man-rcs-man base-man-share +man-reference-catman base-man-share +man-reference-man base-man-share +man-router-catman base-man-share +man-router-man base-man-share +man-rpcserver-catman base-man-share +man-rpcserver-man base-man-share +man-rpcutil-catman base-man-share +man-rpcutil-man base-man-share +man-secsh-catman base-man-share +man-secsh-man base-man-share +man-sendmail-catman base-man-share +man-sendmail-man base-man-share +man-shlib-catman base-man-share +man-shlib-man base-man-share +man-slip-catman base-man-share +man-slip-man base-man-share +man-smbfs-catman base-man-share +man-smbfs-man base-man-share +man-sup-catman base-man-share +man-sup-man base-man-share +man-sys-cat base-man-share +man-sys-catman base-man-share +man-sys-info base-texinfo-share +man-sys-man base-man-share +man-sys-root base-sys-root +man-sysutil-catman base-man-share +man-sysutil-man base-man-share +man-texinfo-catman base-man-share +man-texinfo-info base-texinfo-share +man-texinfo-man base-man-share +man-timed-catman base-man-share +man-timed-man base-man-share +man-tn3270-catman base-man-share +man-tn3270-man base-man-share +man-util-catman base-man-share +man-util-info base-texinfo-share +man-util-man base-man-share +misc-amd-examples base-amd-examples +misc-amd-examples base-sys-examples +misc-bind-htmldoc base-htmldoc-share +misc-crypto-examples base-crypto-examples +misc-dhcpd-examples base-dhcpd-examples +misc-fstab-examples base-fstab-examples +misc-isdn-examples base-isdn-examples +misc-krb5-examples base-krb5-examples +misc-libsaslc-examples base-libsaslc-examples +misc-netutil-examples base-netutil-examples +misc-ntp-htmldoc base-man-share +misc-postfix-examples base-postfix-examples +misc-postfix-htmldoc base-htmldoc-share +misc-psd-doc base-psd-share +misc-reference-share base-reference-share +misc-router-examples base-router-examples +misc-sendmail-share base-sendmail-share +misc-smm-doc base-smm-share +misc-sup-examples base-sup-examples +misc-sys-examples base-miscfs-examples +misc-sys-examples base-sys-examples +misc-sys-root base-sys-root +misc-sysutil-examples base-sysutil-examples +misc-usd-doc base-usd-share +misc-util-htmldoc base-htmldoc-share +text-groff-bin base-sys-usr +text-groff-catman base-man-share +text-groff-font base-groff-font +text-groff-man base-man-share +text-groff-share base-groff-share +text-sys-root base-sys-root +text-texinfo-bin base-sys-usr +text-texinfo-share base-termcap-share diff --git a/distrib/sets/descrs b/distrib/sets/descrs new file mode 100644 index 000000000..934a0e402 --- /dev/null +++ b/distrib/sets/descrs @@ -0,0 +1,847 @@ +minix-sys Minix Complete system (to be fixed and properly put into separate packages) +base-adosfs-root Root file system support for Amiga DOS file system support +base-amd-bin auto-mounter daemon +base-amd-examples example configuration files for the auto-mounter daemon and utilities +base-amd-shlib auto-mounter daemon shared library +base-audio-bin utilities for playing and recording audio +base-bind-bin the BIND DNS server +base-bind-examples example configuration files for BIND +base-bind-root root file system directories required by BIND +base-bootserver-bin software for booting diskless systems +base-c-bin utilities for the C programming language +base-c-usr /usr file system directories required by C programming language utilities +base-calendar-bin calendar(1) displays lines from the calendar database matching certain dates +base-calendar-share database of important dates for calendar(1) +base-cron-bin the cron daemon and related utilities +base-cron-root root file system directories required by the cron daemon +base-crypto-bin cryptographic utilities +base-crypto-examples example configuration files for cryptographic utilities +base-crypto-root root file system directories required by cryptographic utilities +base-crypto-shlib shared library providing cryptographic routines +base-cxx-usr /usr file system directories required by C++ programming language utilities +base-debug-bin debugging utilities +base-dhclient-root root file system support for DHCP client software +base-dhcpd-bin DHCP server +base-dhcpd-examples example configuration files for DHCP server +base-efs-root root file system support for efs file system +base-ext2fs-root root file system support for ext2fs file system +base-filecorefs-root root file system support for the Acorn FILECORE file system +base-fstab-examples various example file system tables +base-games-root root file system support for games +base-games-share shared data files for games +base-games-usr directories for the games subsystem +base-gnats-bin the GNATS bug reporting utility +base-gnats-share shared data files for the GNATS bug reporting utility +base-groff-font fonts for the groff family of text formatters +base-groff-share shared data files for the groff family of text formatters +base-hesiod-bin utilities for the HESIOD network information system +base-htmldoc-share HTML documentation +base-i18n-root directories for internationalisation support +base-i18n-shlib shared library modules for internationalisation support +base-ipf-bin utilities for IPfilter +base-ipf-root directories for IPfilter +base-isdn-bin utilities and daemons for ISDN network connectivity +base-isdn-examples directories for the ISDN example files +base-krb5-bin commands and utilities for the Kerberos V network authentication system +base-krb5-examples example configuration files for the Kerberos V network authentication system +base-krb5-root root file system support for the Kerberos V network authentication system +base-krb5-shlib root file system support for the Kerberos V network authentication system +base-libsaslc-examples example configuration files for the SASL C library +base-locale-Pig igPey atinLey ocaleley upportsey +base-locale-af Afghan language locale support +base-locale-be Belgian language locale support +base-locale-bg Bulgarian language locale support +base-locale-bin utilities for working with locales +base-locale-ca Catalan language locale support +base-locale-cs Czech language locale support +base-locale-da Danish language locale support +base-locale-de German language locale support +base-locale-el Greek language locale support +base-locale-en English language locale support +base-locale-eo Esperanto language locale support +base-locale-es Spanish language locale support +base-locale-et Estonian language locale support +base-locale-eu Basque language/region locale support +base-locale-fi Finnish language locale support +base-locale-fr French language locale support +base-locale-gl Galician language locale support +base-locale-he Hebrew language locale support +base-locale-hr Croatian language locale support +base-locale-hu Hungarian language locale support +base-locale-hy Armenian language locale support +base-locale-id Indonesian language locale support +base-locale-is Icelandic language locale support +base-locale-it Italian language locale support +base-locale-ja Japanese language locale support +base-locale-kk Kazakh language locale support +base-locale-ko Korean language locale support +base-locale-lt Lithuanian language locale support +base-locale-nb Norwegian Bokmal language locale support +base-locale-nl Dutch language locale support +base-locale-nn Norwegian Nynorsk language locale support +base-locale-no Norwegian language locale support +base-locale-pl Polish language locale support +base-locale-pt Portuguese language locale support +base-locale-ro Romanian language locale support +base-locale-ru Russian language locale support +base-locale-share /usr/share file system support for all locales +base-locale-sk Slovak language locale support +base-locale-sl Slovenian language locale support +base-locale-sr Suriname language locale support +base-locale-sv Swedish language locale support +base-locale-tr Turkish language locale support +base-locale-uk Ukrainian language locale support +base-locale-zh Chinese language locale support +base-lpr-bin utilities for printing support +base-lpr-root root file system support for printing utilities +base-lpr-usr /usr file system support for printing +base-magic-share shared files for the file(1) utility +base-mail-bin mail utilities +base-mail-root root file system support for mail utilities +base-mailwrapper-bin the mailwrapper(8) program for multiple mailer support +base-man-bin utilities for reading online manual pages +base-man-share shared data files for the online manual pages +base-miscfs-examples example configuration files for miscellaneous file systems +base-miscfs-root root file system support for miscellaneous file systems +base-net-shlib shared libraries for network programming +base-netutil-bin networking utilities +base-netutil-examples example configuration files for networking programs +base-netutil-root root file system support for networking utilities +base-nfsclient-bin network file system client utilities +base-nfsclient-root root file system support for network file system client utilities +base-nfsserver-bin network file system server program +base-nis-bin progams and utilities for the NIS network information system +base-nis-root root file system support for the NIS network information system +base-ntfs-root root file system support for the Windows NT file system +base-ntp-bin utilities for network time protocol support +base-ntp-root basic directories for network time protocol support +base-objc-usr /usr file system support for the Objective C programming language +base-pf-bin utilities for the PF packet filter +base-pf-root directories for the PF packet filter +base-pkgutil-bin package system utilities +base-postfix-bin the Postfix mailer +base-postfix-examples example configuration files for the Postfix mailer +base-postfix-root root file system support for the Postfix mailer +base-postfix-usr /usr file system support for the Postfix mailer +base-ppp-bin utilities for the PPP point-to-point remote access protocol +base-psd-share directory structure for the Programmer's Supplementary Documentation +base-rcs-bin utilities for the RCS Revision Control System +base-reference-share directory structure for miscellaneous reference documents +base-rescue-root statically-linked binaries which can be used in extremis +base-router-bin network routing utilities +base-router-examples base directories for network routing utilities +base-router-root root file system support for network routing utilities +base-secsh-bin secure shell SSH client and server +base-slip-bin the SLIP serial line internet protocol +base-slip-root root file system support for the SLIP remote access protocol +base-smbfs-root root file system support for the smbfs client SMB filesystem support +base-smm-share directory structure for the System Manager's Manual +base-sup-bin utilities for the SUP software update protocol +base-sup-examples example configuration files for the SUP software update protocol +base-sys-devlinks device node symbolic links +base-sys-examples example configuration files for kernel functionality +base-sys-root required root file system structure +base-sys-share required /usr/share file system structure +base-sys-shlib shared libraries for basic system functionality +base-sys-usr required /usr file system structure +base-sysutil-bin system utilities +base-sysutil-examples example configuration files for miscellaneous system utilities +base-sysutil-root root file system support for system utilities +base-sysutil-share shared data files for system utilities +base-sysutil_locale-share shared locale support for system utilities +base-termcap-share shared files for terminal capability database +base-texinfo-bin the GNU texinfo software +base-texinfo-share shared data files for the GNU texinfo software +base-texinfo_locale-cs Czech language support for the GNU texinfo software +base-texinfo_locale-da Danish language support for the GNU texinfo software +base-texinfo_locale-de German language support for the GNU texinfo software +base-texinfo_locale-eo Esperanto language support for the GNU texinfo software +base-texinfo_locale-fr French language support for the GNU texinfo software +base-texinfo_locale-he Hebrew language support for the GNU texinfo software +base-texinfo_locale-hr Croatian language support for the GNU texinfo software +base-texinfo_locale-ja Japanese language support for the GNU texinfo software +base-texinfo_locale-nl Dutch language support for the GNU texinfo software +base-texinfo_locale-no Norwegian Bokmal language support for the GNU texinfo software +base-texinfo_locale-no Norwegian language support for the GNU texinfo software +base-texinfo_locale-pl Polish language support for the GNU texinfo software +base-texinfo_locale-pl Romanian language support for the GNU texinfo software +base-texinfo_locale-ru Russian language support for the GNU texinfo software +base-texinfo_locale-sv Swedish language support for the GNU texinfo software +base-texinfo_locale-tr Turkish language support for the GNU texinfo software +base-texinfo_locale-zh Chinese language support for the GNU texinfo software +base-timed-bin utilities for the timed(8) network time daemon +base-tn3270-bin utilities for connecting to IBM VM/CMS systems +base-usd-share directory structure for the User's Supplementary Documentation +base-util-bin standard utilities for use by users +base-util-root root file system support for standard user utilities +base-util-share shared data files for standard user utilities +base-util_locale-cs Czech language support for standard utilities +base-util_locale-de German language support for standard utilities +base-util_locale-el Greek language support for standard utilities +base-util_locale-eo Esperanto language support for standard utilities +base-util_locale-es Spanish language support for standard utilities +base-util_locale-et Estonian language support for standard utilities +base-util_locale-fr French language support for standard utilities +base-util_locale-gl Galician language support for standard utilities +base-util_locale-hr Croatian language support for standard utilities +base-util_locale-id Indonesian language support for standard utilities +base-util_locale-it Italian language support for standard utilities +base-util_locale-ja Japanese language support for standard utilities +base-util_locale-sv Swedish language support for standard utilities +comp-c-bin +comp-c-bin This package includes compilers and tools for the C programming language: +comp-c-bin c89, c99, cc, gcc - C compilers +comp-c-bin flex, lex - lexical analyzer generator +comp-c-bin lint - C program validator +comp-c-bin rpcgen - RPC stub generator +comp-c-bin yacc - parser generator +comp-c-catman +comp-c-catman +comp-c-catman +comp-c-catman +comp-c-catman +comp-c-catman c89, c99, cc, gcc - C compilers +comp-c-catman flex, lex - lexical analyzer generator +comp-c-catman lint - C program validator +comp-c-catman rpcgen - RPC stub generator +comp-c-catman yacc - parser generator +comp-c-catman This package includes formatted manual pages for compilers and tools for +comp-c-catman the C programming language: +comp-c-include This package contains header files for the C programming language, +comp-c-include including standard C and UNIX APIs, and APIs specific to the NetBSD +comp-c-include operating system. +comp-c-lib This contains library archives to build statically linked versions of C +comp-c-lib libraries. +comp-c-lib programs and simbolic links for use in linking software against shared +comp-c-lintlib C language syntax checker. +comp-c-lintlib This package contains library description files for use with the lint(1) +comp-c-man +comp-c-man +comp-c-man +comp-c-man +comp-c-man +comp-c-man c89, c99, cc, gcc - C compilers +comp-c-man flex, lex - lexical analyzer generator +comp-c-man lint - C program validator +comp-c-man rpcgen - RPC stub generator +comp-c-man yacc - program parser generator +comp-c-man This package includes the manual pages sources for compilers and tools +comp-c-man for the C programming language: +comp-c-piclib This includes archives of position-independent object files which can be +comp-c-piclib system. +comp-c-piclib used to recreate the shared libraries distributed with the base NetBSD +comp-c-proflib This includes versions of system libraries for use in profiling user code. +comp-c-root This contains data files installed in /var and used by C language +comp-c-root programming utilities. +comp-c-share This contains data files installed in /usr/share and used by C language +comp-c-share language. +comp-c-share programming utilities, including user reference documents on the C +comp-c-shlib shared libraries for binary file utilities and machine opcodes +comp-c_locale-be Belgian language locale support for development utilities +comp-c_locale-ca Canadian language locale support for development utilities +comp-c_locale-cs Czech language locale support for development utilities +comp-c_locale-da Danish language locale support for development utilities +comp-c_locale-de German language locale support for development utilities +comp-c_locale-el Greek language locale support for development utilities +comp-c_locale-es Spanish language locale support for development utilities +comp-c_locale-et Estonian language locale support for development utilities +comp-c_locale-fi Finnish language locale support for development utilities +comp-c_locale-fr French language locale support for development utilities +comp-c_locale-gl Galician language locale support for development utilities +comp-c_locale-id Indonesian language locale support for development utilities +comp-c_locale-it Italian language locale support for development utilities +comp-c_locale-ja Japanese language locale support for development utilities +comp-c_locale-ko Korean language locale support for development utilities +comp-c_locale-nl Dutch language locale support for development utilities +comp-c_locale-nn Norwegian Nynorsk language locale support for development utilities +comp-c_locale-no Norwegian language locale support for development utilities +comp-c_locale-pl Polish language locale support for development utilities +comp-c_locale-pt_BR Portuguese Brazilian language locale support for development utilities +comp-c_locale-ro Romanian language locale support for development utilities +comp-c_locale-ru Russian language locale support for development utilities +comp-c_locale-sk Slovak language locale support for development utilities +comp-c_locale-sl Slovenian language locale support for development utilities +comp-c_locale-sr Suriname language locale support for development utilities +comp-c_locale-sv Swedish language locale support for development utilities +comp-c_locale-tr Turkish language locale support for development utilities +comp-c_locale-uk Ukranian language locale support for development utilities +comp-c_locale-zh_CN Chinese language locale support for development utilities +comp-c_locale-zh_TW Taiwanese language locale support for development utilities +comp-cvs-bin CVS is a version control system, which allows you to keep old versions +comp-cvs-bin allows triggers to enable/log/control various operations and works well +comp-cvs-bin but operates on hierarchical collections of directories consisting of +comp-cvs-bin does not just operate on one file at a time or one directory at a time, +comp-cvs-bin occurred, etc., like RCS or SCCS. Unlike the simpler systems, CVS +comp-cvs-bin of files (usually source code), keep a log of who, when, and why changes +comp-cvs-bin over a wide area network (see manual pages). +comp-cvs-bin the concurrent editing of source files among multiple authors. CVS +comp-cvs-bin version controlled files. CVS helps to manage releases and to control +comp-cvs-catman CVS does not just operate on one file at a time or one directory at a +comp-cvs-catman This contains groff-formatted manual pages for the CVS revision control +comp-cvs-catman changes occurred, etc., like RCS or SCCS. Unlike the simpler systems, +comp-cvs-catman of version controlled files. CVS helps to manage releases and to control +comp-cvs-catman system. CVS is a version control system which allows you to keep old +comp-cvs-catman the concurrent editing of source files among multiple authors. CVS allows +comp-cvs-catman time, but operates on hierarchical collections of directories consisting +comp-cvs-catman triggers to enable/log/control various operations and works well over a +comp-cvs-catman versions of files (usually source code), keep a log of who, when, and why +comp-cvs-catman wide area network (see manual pages). +comp-cvs-man CVS is a version control system which allows you to keep old versions of +comp-cvs-man This contains manual page groff source for the CVS revision control system. +comp-cvs-man concurrent editing of source files among multiple authors. CVS allows +comp-cvs-man controlled files. CVS helps to manage releases and to control the +comp-cvs-man files (usually source code), keep a log of who, when, and why changes +comp-cvs-man not just operate on one file at a time or one directory at a time, but +comp-cvs-man occurred, etc., like RCS or SCCS. Unlike the simpler systems, CVS does +comp-cvs-man operates on hierarchical collections of directories consisting of version +comp-cvs-man triggers to enable/log/control various operations and works well over a +comp-cvs-man wide area network (see manual pages). +comp-cxx-bin +comp-cxx-bin c++, g++ - C++ compiler +comp-cxx-bin c++filt - tool for demangling C++ single function names +comp-cxx-bin flex++ - C++ lexical analyzser generator (a C++ version of flex) +comp-cxx-bin This package includes compilers and tools for the C++ programming language: +comp-cxx-catman +comp-cxx-catman c++, g++ - C++ compiler +comp-cxx-catman c++filt - tool for demangling C++ single function names +comp-cxx-catman flex++ - C++ lexical analyzser generator (a C++ version of flex) +comp-cxx-catman C++ programming language: +comp-cxx-catman This contains groff-formatted manual pages on compilers and tools for the +comp-cxx-include This contains header files for the C++ programming language. +comp-cxx-lib This contains library archives to build statically linked versions of C++ +comp-cxx-lib libraries. +comp-cxx-lib programs and simbolic links for use in linking software against shared +comp-cxx-man +comp-cxx-man c++, g++ - C++ compiler +comp-cxx-man c++filt - tool for demangling C++ single function names +comp-cxx-man flex++ - C++ lexical analyzser generator (a C++ version of flex) +comp-cxx-man This contains the manual page source on compilers and tools for the C++ +comp-cxx-man programming language: +comp-cxx-piclib This includes archives of position-independent object files which can be +comp-cxx-piclib system. +comp-cxx-piclib used to recreate the shared C++ libraries distributed with the base NetBSD +comp-cxx-proflib This includes versions of system libraries for use in profiling user C++ +comp-cxx-proflib code. +comp-debug-bin +comp-debug-bin +comp-debug-bin +comp-debug-bin +comp-debug-bin -ftest-coverage. These options cause the compiler to insert +comp-debug-bin addr2line - translates program addresses into file names and line +comp-debug-bin execution profile of C, Pascal, or Fortran77 programs. +comp-debug-bin gcov - displays basic block profile / coverage data, if requested +comp-debug-bin gdb - is the GNU debugger. The purpose of a debugger such as GDB +comp-debug-bin gprof - displays call graph profile data. gprof produces an +comp-debug-bin how often each basic block is executed; +comp-debug-bin information in the executable to figure out which file name and +comp-debug-bin instrumentation into the object files it generates, which measure +comp-debug-bin is to allow you to see what is going on ``inside'' another program +comp-debug-bin it crashed; +comp-debug-bin line number are associated with a given address; +comp-debug-bin numbers. Given an address and an executable, it uses the debugging +comp-debug-bin via the C compiler gcc(1) command line options -fprofile-arcs and +comp-debug-bin while it executes, or what another program was doing at the moment +comp-debug-bin This package contains various C programming debugging utilities, such as: +comp-debug-catman +comp-debug-catman +comp-debug-catman +comp-debug-catman +comp-debug-catman -ftest-coverage. These options cause the compiler to insert +comp-debug-catman addr2line - translates program addresses into file names and line +comp-debug-catman execution profile of C, Pascal, or Fortran77 programs. +comp-debug-catman gcov - displays basic block profile / coverage data, if requested +comp-debug-catman gdb - is the GNU debugger. The purpose of a debugger such as GDB +comp-debug-catman gprof - displays call graph profile data. gprof produces an +comp-debug-catman how often each basic block is executed; +comp-debug-catman information in the executable to figure out which file name and +comp-debug-catman instrumentation into the object files it generates, which measure +comp-debug-catman is to allow you to see what is going on ``inside'' another program +comp-debug-catman it crashed; +comp-debug-catman line number are associated with a given address; +comp-debug-catman numbers. Given an address and an executable, it uses the debugging +comp-debug-catman via the C compiler gcc(1) command line options -fprofile-arcs and +comp-debug-catman while it executes, or what another program was doing at the moment +comp-debug-catman This package contains formatted manual pages on various C programming +comp-debug-catman debugging utilities, such as: +comp-debug-man +comp-debug-man +comp-debug-man +comp-debug-man +comp-debug-man -ftest-coverage. These options cause the compiler to insert +comp-debug-man addr2line - translates program addresses into file names and line +comp-debug-man execution profile of C, Pascal, or Fortran77 programs. +comp-debug-man gcov - displays basic block profile / coverage data, if requested +comp-debug-man gdb - is the GNU debugger. The purpose of a debugger such as GDB +comp-debug-man gprof - displays call graph profile data. gprof produces an +comp-debug-man how often each basic block is executed; +comp-debug-man information in the executable to figure out which file name and +comp-debug-man instrumentation into the object files it generates, which measure +comp-debug-man is to allow you to see what is going on ``inside'' another program +comp-debug-man it crashed; +comp-debug-man line number are associated with a given address; +comp-debug-man numbers. Given an address and an executable, it uses the debugging +comp-debug-man via the C compiler gcc(1) command line options -fprofile-arcs and +comp-debug-man while it executes, or what another program was doing at the moment +comp-debug-man This package contains the manual pages groff source on various C programming +comp-debug-man debugging utilities, such as: +comp-debug-sbin This package contains kgmon, a kernel debugging utility. kgmon is a tool +comp-debug-sbin extracts profile data from the operating system and produces a gmon.out +comp-debug-sbin file suitable for later analysis by gprof(1). +comp-debug-sbin kgmon indicates the state of operating system profiling as running, off, +comp-debug-sbin or not configured. (see config(8)) If the -p flag is specified, kgmon +comp-debug-sbin used when profiling the operating system. When no arguments are supplied, +comp-fortran-bin +comp-fortran-bin +comp-fortran-bin +comp-fortran-bin FORTRAN 77, also called F77). gcc processes input files through +comp-fortran-bin and F77 compilers are integrated; g77 is a program to call gcc +comp-fortran-bin asa - interpret carriage-control characters. The asa utility reads +comp-fortran-bin assembly, and linking. This manual page contains full descriptions +comp-fortran-bin contains summaries of some general-purpose options. For a fuller +comp-fortran-bin conventions into files formatted according to UNIX line printer +comp-fortran-bin conventions. +comp-fortran-bin explanation of the compiler, see gcc(1); +comp-fortran-bin f77, fort77, g77 - GNU project Fortran Compiler (v0.5.24). The C +comp-fortran-bin files formatted according to Fortran's carriage control +comp-fortran-bin files sequentially, mapping FORTRAN carriage-control characters +comp-fortran-bin for only F77-specific aspects of the compiler, though it also +comp-fortran-bin fpr - print Fortran file utility. fpr is a filter that transforms +comp-fortran-bin one or more of four stages: prepro- cessing, compilation, +comp-fortran-bin output; +comp-fortran-bin to line-printer control sequences, and writes them to the standard +comp-fortran-bin with options to recognize programs written in Fortran (ANSI +comp-fortran-bin This package contains compilers and tools for the FORTRAN programming +comp-fortran-bin language, including the following: +comp-fortran-catman +comp-fortran-catman +comp-fortran-catman +comp-fortran-catman FORTRAN 77, also called F77). gcc processes input files through +comp-fortran-catman and F77 compilers are integrated; g77 is a program to call gcc +comp-fortran-catman asa - interpret carriage-control characters. The asa utility reads +comp-fortran-catman assembly, and linking. This manual page contains full descriptions +comp-fortran-catman contains summaries of some general-purpose options. For a fuller +comp-fortran-catman conventions into files formatted according to UNIX line printer +comp-fortran-catman conventions. +comp-fortran-catman explanation of the compiler, see gcc(1); +comp-fortran-catman f77, fort77, g77 - GNU project Fortran Compiler (v0.5.24). The C +comp-fortran-catman files formatted according to Fortran's carriage control +comp-fortran-catman files sequentially, mapping FORTRAN carriage-control characters +comp-fortran-catman for only F77-specific aspects of the compiler, though it also +comp-fortran-catman fpr - print Fortran file utility. fpr is a filter that transforms +comp-fortran-catman one or more of four stages: prepro- cessing, compilation, +comp-fortran-catman output; +comp-fortran-catman to line-printer control sequences, and writes them to the standard +comp-fortran-catman with options to recognize programs written in Fortran (ANSI +comp-fortran-catman This package contains formatted manual pages for compilers and tools for +comp-fortran-catman the FORTRAN programming language, which include: +comp-fortran-lib FORTRAN programs and simbolic links for use in linking software against +comp-fortran-lib This contains library archives to build statically linked versions of +comp-fortran-lib shared libraries. +comp-fortran-man +comp-fortran-man +comp-fortran-man +comp-fortran-man FORTRAN 77, also called F77). gcc processes input files through +comp-fortran-man and F77 compilers are integrated; g77 is a program to call gcc +comp-fortran-man asa - interpret carriage-control characters. The asa utility reads +comp-fortran-man assembly, and linking. This manual page contains full descriptions +comp-fortran-man contains summaries of some general-purpose options. For a fuller +comp-fortran-man conventions into files formatted according to UNIX line printer +comp-fortran-man conventions. +comp-fortran-man explanation of the compiler, see gcc(1); +comp-fortran-man f77, fort77, g77 - GNU project Fortran Compiler (v0.5.24). The C +comp-fortran-man files formatted according to Fortran's carriage control +comp-fortran-man files sequentially, mapping FORTRAN carriage-control characters +comp-fortran-man for only F77-specific aspects of the compiler, though it also +comp-fortran-man fpr - print Fortran file utility. fpr is a filter that transforms +comp-fortran-man one or more of four stages: prepro- cessing, compilation, +comp-fortran-man output; +comp-fortran-man to line-printer control sequences, and writes them to the standard +comp-fortran-man with options to recognize programs written in Fortran (ANSI +comp-fortran-man This package contains manual pages groff sources for compilers and tools for +comp-fortran-man the FORTRAN programming language, which include: +comp-fortran-piclib NetBSD system. +comp-fortran-piclib This includes archives of position-independent object files which can be +comp-fortran-piclib used to recreate the shared FORTRAN libraries distributed with the base +comp-fortran-proflib FORTRAN code. +comp-fortran-proflib This includes versions of system libraries for use in profiling user +comp-fortran-shlib Shared libraries for the FORTRAN programming language +comp-i18n-lib static libraries and shared library links for compiling applications with internationalisation support +comp-ipf-include header files for the IPfilter C API +comp-krb5-catman formatted manual pages for Kerberos V support +comp-krb5-include header files for Kerberos V support +comp-krb5-lib libraries to support Kerberos V compilation +comp-krb5-man source manual pages for Kerberos V support +comp-krb5-proflib profiling libraries for Kerberos V support +comp-krb5c-catman pre-formatted manual pages for Kerberos V C support +comp-objc-bin This contains the gcc backend for Objective C programming. With this +comp-objc-bin package installed, it is possible to compile Objective C programs with +comp-objc-bin the cc(1) or gcc(1) commands. +comp-objc-lib Objective C programs and simbolic links for use in linking software +comp-objc-lib This contains library archives to build statically linked versions of +comp-objc-lib against shared Objective C libraries. +comp-objc-piclib This includes archives of position-independent object files which can be +comp-objc-piclib base NetBSD system. +comp-objc-piclib used to recreate the shared Objective C libraries distributed with the +comp-objc-proflib Objective C code. +comp-objc-proflib This includes versions of system libraries for use in profiling user +comp-sys-catman This contains section 9 of the online manual pages for kernel programming, +comp-sys-catman of the kernel. +comp-sys-catman which describe APIs available for writing device drivers and other parts +comp-sys-man manual pages source for kernel programming +comp-sys-shlib shared library support for basic i386 math and utility libs +comp-sysutil-catman formatted manual pages for system utilities +comp-sysutil-man manual pages source for system utilities +comp-sysutil-root manual pages source for system utilities +comp-sysutil-sbin system utilities +comp-util-bin programming utilities +comp-util-catman formatted manual pages for programming utilities +comp-util-man manual pages source for programming utilities +comp-util-sbin system development utilities +comp-util-share reference files for programming utilities +etc-amd-rc startup script for auto-mounter daemon +etc-audio-rc startup script for audio mixer control utility +etc-bind-etc configuration files for BIND DNS server +etc-bind-rc startup script for BIND DNS server +etc-bootserver-etc configuration files for diskless boot server utilities +etc-bootserver-rc startup script for diskless boot server utilities +etc-cron-log empty log file for cron(8) +etc-cron-rc startup script for cron(8) command scheduler +etc-cron-root root file system support for cron(8) command scheduler +etc-dhclient-etc configuration files for DHCP dyanamic host configuration protocol client utilities +etc-dhclient-rc startup script for DHCP dynamic host configuration protocol client +etc-dhcpd-rc startup script for DHCP dynamic host configuration protocol daemon +etc-extsrc-rc startup scripts for externally added programs +etc-games-etc configuration file for games +etc-games-scores empty score files for games +etc-ipf-rc startup script for IP filter +etc-iscsi-etc configuration files for the NetBSD iSCSI target +etc-iscsi-rc startup script for the NetBSD iSCSI target +etc-isdn-rc startup script for ISDN (Integrated Services Digital Network) network connectivity utilities +etc-krb5-rc startup script for the Kerberos V authentication service +etc-libsaslc-etc configuration file for SASL C library +etc-libsaslc-postfix configuration file for postfix SASL +etc-lpr-etc configuration file for printing services +etc-lpr-log empty log file for printing services +etc-lpr-rc startup script for printing services +etc-mail-etc configuration file for mail utilities +etc-mailwrapper-etc configuration files for the mailwrapper(8) program for multiple mailer support +etc-man-etc configuration files for the online manual pages +etc-net-etc configuration files for networking +etc-net-rc startup files for networking +etc-netutil-etc configuration files for network utilities +etc-netutil-log empty log files for networking utilities +etc-nfsserver-rc startup script for NFS network file system server utilities +etc-nis-rc startup script for the NIS network information system +etc-nis-root root file system support for the NIS network file system +etc-ntp-etc configuration files for the ntpd(8) Network Time Protocol server +etc-ntp-rc startup script for the ntpd(8) Network Time Protocol server +etc-pf-defaults default configuration for the PF packet filter +etc-pf-etc configuration files for the PF packet filter +etc-postfix-etc configuration file for the postfix mailer program +etc-postfix-rc startup script for the postfix mailer program +etc-ppp-rc startup script for the PPP point-to-point connection protocol +etc-root-root login configuration files for the user root +etc-router-etc configuration files for network routing +etc-router-rc startup scripts for routing services +etc-secsh-etc configuration file for SSH secure remote shell utility +etc-secsh-rc startup script for SSH secure remote shell utility +etc-sendmail-log empty log files for the sendmail(8) mailer +etc-sys-defaults default system startup configuration files +etc-sys-etc system software configuration files +etc-sys-log empty system log files +etc-sys-rc standard system startup scripts +etc-sys-root required root file system structure for system software +etc-sysutil-etc configuration files for miscellaneous system utilities +etc-sysutil-log empty log files for miscellaneous system utilities +etc-sysutil-rc startup scripts for miscellaneous system utilities +etc-timed-rc startup script for the timed(8) network time daemon +etc-util-etc configuration file for standard system utilities +etc-x11-rc startup scripts for the X11 X Window System +games-games-bin command line games +games-games-catman formatted manual pages for command-line games +games-games-man manual pages source for command-line games +games-games-root data and score files for command line games +games-games-share shared data files for command-line games +games-sys-root required root file system structure for configuration files +games-usd-doc miscellaneous documentation for games +games-utils-bin miscellaneous utilities from /usr/games +games-utils-catman formatted manual pages for miscellaneous utilities from /usr/games +games-utils-man manual pages source for miscellaneous utilities from /usr/games +games-utils-share shared data files for miscellaneous utilities from /usr/games +man-adosfs-catman formatted manual pages for AmigaDOS file system support +man-adosfs-man manual pages source for AmigaDOS file system support +man-amd-catman formatted manual pages for the amd(8) auto-mounting daemon +man-amd-info texinfo documentation for the amd(8) auto-mounting daemon +man-amd-man manual pages source for the amd(8) auto-mounting daemon +man-audio-catman formatted manual pages for utilities for playing and recording audio +man-audio-man manual pages source for utilities for playing and recording audio +man-bind-catman formatted manual pages for the bind(8) domain name server daemon +man-bind-man manual pages source for the bind(8) domain name server daemon +man-bootserver-catman formatted manual pages for utilities to support remote booting of diskless workstations +man-bootserver-man manual pages source for utilities to support remote booting of diskless workstations +man-c-catman formatted manual pages for the C programming language +man-c-info the GNU texinfo software +man-c-man manual pages source for the C programming language +man-computil-info texinfo documentation for compiler utilities +man-cron-catman formatted manual pages for the cron(8) command scheduler +man-cron-man manual pages source for the cron(8) command scheduler +man-crypto-catman formatted manual pages for cryptographic utilities +man-crypto-man manual pages source for cryptographic utilities +man-cvs-info texinfo documentation for the CVS version control system +man-cxx-info texinfo documentation for the C++ programming language +man-debug-catman formatted manual pages for debugging utilities +man-debug-info texinfo documentation for debugging utilities +man-debug-man manual pages source for debugging utilities +man-dhclient-catman formatted manual pages for DHCP (dynamic host configuration protocol) client utilities +man-dhclient-man manual pages source for DHCP (dynamic host configuration protocol) client utilities +man-dhcpd-catman formatted manual pages for DHCP (dynamic host configuration protocol) server utilities +man-dhcpd-man manual pages source for DHCP (dynamic host configuration protocol) server utilities +man-efs-catman formatted manual pages for the Silicon Graphics EFS file system support +man-efs-man manual pages source for the Silicon Graphics EFS file system support +man-ext2fs-catman formatted manual pages for the Linux ext2fx file system support +man-ext2fs-man manual pages source for the Linux ext2fx file system support +man-filecorefs-catman formatted manual pages Acorn FileCore file system support +man-filecorefs-man manual pages source Acorn FileCore file system support +man-fortran-info texinfo documentation for the FORTRAN programming language +man-games-catman formatted manual pages for games +man-games-man manual pages source for games +man-gnats-catman formatted manual pages for the GNATS bug reported system +man-gnats-info texinfo documentation for the GNATS bug reported system +man-gnats-man manual pages source for the GNATS bug reported system +man-groff-catman formatted manual pages for the groff documentation formatting utility +man-groff-man manual pages source for the groff documentation formatting utility +man-hesiod-catman formatted manual pages for the HESIOD network information system +man-hesiod-man manual pages source for the HESIOD network information system +man-hfs-catman formatted manual pages for the HFS file system +man-hfs-man manual pages source for the HFS file system +man-info-share required file system structure for GNU texinfo documentation +man-ipf-catman formatted manual pages for the IPfilter packet filtering software +man-ipf-man manual pages source for the IPfilter packet filtering software +man-iscsi-catman formatted manual pages for NetBSD iSCSI target +man-iscsi-man manual pages source for NetBSD iSCSI target +man-isdn-catman formatted manual pages for ISDN (Integrated Services Data Networking) support +man-isdn-man manual pages source for ISDN (Integrated Services Data Networking) support +man-krb5-catman formatted manual pages for the Kerberos V network authentication system +man-krb5-info the GNU texinfo software +man-krb5-man manual pages source for the Kerberos V network authentication system +man-locale-catman formatted manual pages for locale support utilities +man-locale-man manual pages source for locale support utilities +man-lpr-catman formatted manual pages for printing support +man-lpr-man manual pages source for printing support +man-mail-catman formatted manual pages for mail utilities +man-mail-man manual pages source for mail utilities +man-mailwrapper-catman formatted manual pages for the mailwrapper(8) program for multiple mailer support +man-mailwrapper-man manual pages source for the mailwrapper(8) program for multiple mailer support +man-man-catman formatted manual pages for the utilities for viewing the online manual +man-man-man manual pages source for the utilities for viewing the online manual +man-miscfs-catman the GNU texinfo software +man-miscfs-man manual pages sources for miscellaneous file system support +man-net-catman formatted manual pages for networking support +man-net-man manual pages source for networking support +man-netutil-catman formatted manual pages for networking utilities +man-netutil-man manual pages source for networking utilities +man-nfsclient-catman formatted manual pages for NFS (network file system) client utilities +man-nfsclient-man manual pages source for NFS (network file system) client utilities +man-nfsserver-catman formatted manual pages for NFS (network file system) server utilities +man-nfsserver-man manual pages source for NFS (network file system) server utilities +man-nis-catman formatted manual pages for the NIS network information system utilities +man-nis-man manual pages source for the NIS network information system utilities +man-ntfs-catman formatted manual pages for the Windows NT file system support +man-ntfs-man manual pages source for the Windows NT file system support +man-ntp-catman formatted manual pages for the network time protocol utilities +man-ntp-man manual pages source for the network time protocol utilities +man-pf-catman formatted manual pages for the PF packet filter +man-pf-man manual page source for the PF packet filter +man-pkgutil-catman formatted manual pages for the package system utilities +man-pkgutil-man manual pages source for the package system utilities +man-postfix-catman formatted manual pages for the postfix mailer +man-postfix-man manual pages source for the postfix mailer +man-ppp-catman formatted manual pages for the ppp point-to-point connection protocol +man-ppp-man manual pages source for the ppp point-to-point connection protocol +man-rc-catman formatted manual pages for system startup scripts +man-rc-man manual pages source for system startup scripts +man-rcs-catman formatted manual pages for the rcs(1) revision control system +man-rcs-man manual pages source for the rcs(1) revision control system +man-reference-catman formatted manual pages for miscellaneous system- and non-system-related reference documents +man-reference-man manual pages source for miscellaneous system- and non-system-related reference documents +man-router-catman formatted manual pages for routing utilities +man-router-man manual pages source for routing utilities +man-rpcserver-catman formatted manual pages for RPC server utility +man-rpcserver-man manual pages source for RPC server utility +man-rpcutil-catman formatted manual pages for RPC utility +man-rpcutil-man manual pages source for RPC utility +man-secsh-catman formatted manual pages for the ssh(1) remote secure shell connection utility +man-secsh-man manual pages source for the ssh(1) remote secure shell connection utility +man-shlib-catman formatted manual pages for shared library support +man-shlib-man manual pages source for shared library support +man-slip-catman formatted manual pages for SLIP (serial line IP) remote access protocol +man-slip-man manual pages source for SLIP (serial line IP) remote access protocol +man-smbfs-catman formatted manual pages for SMB filesystem +man-smbfs-man source manual pages for SMB filesystem +man-sup-catman formatted manual pages for the sup(8) software update protocol +man-sup-man manual pages source for the sup(8) software update protocol +man-sys-catman formatted manual pages for base operating system functionality +man-sys-info the GNU texinfo software +man-sys-man manual pages source for base operating system functionality +man-sys-root required root file system structure for manual pages +man-sysutil-catman formatted manual pages for system utilities +man-sysutil-man manual pages source for system utilities +man-texinfo-catman formatted manual pages for texinfo utilities +man-texinfo-info texinfo documentation for texinfo utilities +man-texinfo-man source manual pages for texinfo utilities +man-timed-catman formatted manual pages for the timed(8) network time daemon +man-timed-man manual pages source for the timed(8) network time daemon +man-tn3270-catman formatted manual pages for utilities for connecting to IBM VM/CMS systems +man-tn3270-man manual pages source for utilities for connecting to IBM VM/CMS systems +man-util-catman formatted manual pages for basic user utilities +man-util-info the GNU texinfo software +man-util-man manual pages source for basic user utilities +misc-amd-examples example configuration files for automatically mount file systems +misc-bind-examples example configuration files for bind +misc-bind-htmldoc HTML documentation for bind +misc-crypto-examples example configuration files for cryptographic software +misc-dhcpd-examples example configuration files for dhcpd(8) +misc-fstab-examples example configuration files for file system tables +misc-ipf-examples example configuration files for IPfilter +misc-isdn-examples example configuration files for isdn +misc-krb5-examples example configuration files for Kerberos5 +misc-libsaslc-examples example configuration files for libsaslc +misc-netutil-examples example configuration files for network software +misc-ntp-htmldoc HTML documentation for ntp(8) software +misc-pf-examples example configuration files for the PF packet filter +misc-ntp-htmldoc HTML documentation for NTP +misc-postfix-examples example configuration files for postfix +misc-postfix-htmldoc HTML documentation for postfix +misc-psd-doc the Programmer's Supplementary Documentation for BSD +misc-reference-share miscellaneous reference documents +misc-router-examples example configuration files for routing daemons +misc-smm-doc the System Manager's Manual for BSD +misc-sup-examples example configuration files for sup(8) +misc-sys-examples example configuration files for kernel functionality +misc-sysutil-examples example configuration files for system utilities +misc-usd-doc the User's Supplementary Documents for BSD +misc-util-htmldoc HTML documentation for miscellaneous utilities +text-groff-bin Groff (GNU Troff) is a document processor which reads plain text mixed +text-groff-bin with formatting commands and produces formatted output. Included in this +text-groff-bin release are implementations of troff, pic, eqn, tbl, refer, the -man +text-groff-bin macros and the -ms macros, and drivers for PostScript, TeX dvi format, HP +text-groff-bin LaserJet 4 printers, HTML format (still alpha), and typewriter-like +text-groff-bin devices. Also included is a modified version of the Berkeley -me macros, +text-groff-bin an enhanced version of the X11 xditview previewer, and an implementation +text-groff-bin of the -mm macros. +text-groff-catman This package contains manual page sources for the groff family of text +text-groff-catman formatters. As described in the DESCR file for text-groff-catman, the +text-groff-catman online manual pages for groff contain information about the following +text-groff-catman groff-related utilities: +text-groff-catman +text-groff-catman grog - grog reads files and guesses which of the groff(1) options +text-groff-catman -e, -man, -me, -mm, -ms, -p, -s, and -t are required for +text-groff-catman printing files, and prints the groff command including those +text-groff-catman options on the standard output; +text-groff-catman +text-groff-catman troff - describes the GNU version of troff, which is part of the +text-groff-catman groff document formatting system; +text-groff-catman +text-groff-catman tbl - tbl compiles descriptions of tables embedded within troff +text-groff-catman input files into commands that are understood by troff; +text-groff-catman +text-groff-catman pic - pic compiles descriptions of pictures embedded within +text-groff-catman troff or TeX input files into commands that are understood by +text-groff-catman TeX or troff; +text-groff-catman +text-groff-catman eqn - compiles descriptions of equations embedded within troff +text-groff-catman input files into commands that are understood by troff +text-groff-catman +text-groff-catman soelim - eliminate .so directives from nroff input +text-groff-catman +text-groff-catman refer - preprocess bibliographic references for groff +text-groff-catman +text-groff-catman grops - translates the output of GNU troff to PostScript +text-groff-catman +text-groff-catman grodvi - convert groff output to TeX dvi format +text-groff-catman +text-groff-catman grotty - translates the output of GNU troff into a form +text-groff-catman suitable for typewriter-like devices +text-groff-catman +text-groff-catman groff_font - format of groff device and font description files +text-groff-catman +text-groff-catman groff_out - groff intermediate output format +text-groff-catman +text-groff-catman groff_ms, ms - groff ms macros +text-groff-catman +text-groff-catman me - macros for formatting technical papers +text-groff-catman +text-groff-catman groff_char - lists the standard groff input characters +text-groff-catman +text-groff-font +text-groff-font This package contains groff font description files. The font files for +text-groff-font device are stored in a directory 'dev'. There are two types +text-groff-font of files per device: a device description file called DESC and for each +text-groff-font font F a font file called F. These are text files; there is no associated +text-groff-font binary format. Available devices are: +text-groff-font X100 For a 100dpi X11 previewer +text-groff-font X75 For a 75 dpi X11 previewer +text-groff-font ascii For typewriter-like devices +text-groff-font dvi For TeX dvi format +text-groff-font latin1 For typewriter-like devices using the ISO Latin-1 +text-groff-font character set. +text-groff-font ps For PostScript printers and previewers +text-groff-man This package contains manual page sources for the groff family of text +text-groff-man formatters. As described in the DESCR file for text-groff-catman, the +text-groff-man online manual pages for groff contain information about the following +text-groff-man groff-related utilities: +text-groff-man +text-groff-man grog - grog reads files and guesses which of the groff(1) options +text-groff-man -e, -man, -me, -mm, -ms, -p, -s, and -t are required for +text-groff-man printing files, and prints the groff command including those +text-groff-man options on the standard output; +text-groff-man +text-groff-man troff - describes the GNU version of troff, which is part of the +text-groff-man groff document formatting system; +text-groff-man +text-groff-man tbl - tbl compiles descriptions of tables embedded within troff +text-groff-man input files into commands that are understood by troff; +text-groff-man +text-groff-man pic - pic compiles descriptions of pictures embedded within +text-groff-man troff or TeX input files into commands that are understood by +text-groff-man TeX or troff; +text-groff-man +text-groff-man eqn - compiles descriptions of equations embedded within troff +text-groff-man input files into commands that are understood by troff +text-groff-man +text-groff-man soelim - eliminate .so directives from nroff input +text-groff-man +text-groff-man refer - preprocess bibliographic references for groff +text-groff-man +text-groff-man grops - translates the output of GNU troff to PostScript +text-groff-man +text-groff-man grodvi - convert groff output to TeX dvi format +text-groff-man +text-groff-man grotty - translates the output of GNU troff into a form +text-groff-man suitable for typewriter-like devices +text-groff-man +text-groff-man groff_font - format of groff device and font description files +text-groff-man +text-groff-man groff_out - groff intermediate output format +text-groff-man +text-groff-man groff_ms, ms - groff ms macros +text-groff-man +text-groff-man me - macros for formatting technical papers +text-groff-man +text-groff-man groff_char - lists the standard groff input characters +text-groff-man +text-groff-share This package contains groff macros and data files for the macro sets +text-groff-share distributed with groff. These include: +text-groff-share man - wrapper for the man.old and mandoc macro sets for +text-groff-share displaying/printing the online manual pages; +text-groff-share man.old - old style manual page macros; +text-groff-share mandoc - a set of content-based and domain-based macros used to +text-groff-share format the BSD manual pages; +text-groff-share me, mm - formatting facility for technical papers in various +text-groff-share formats; mm has supports macro output in various languages other +text-groff-share than English; +text-groff-share mmse - example macro set file which generates macro output in +text-groff-share Swedish language; +text-groff-share ms - the Manuscript macros, set of macros for writing manuscripts; +text-texinfo-bin the GNU texinfo software +text-texinfo-share shared files for the GNU texinfo software diff --git a/distrib/sets/getdirs.awk b/distrib/sets/getdirs.awk new file mode 100644 index 000000000..f82e6a2a6 --- /dev/null +++ b/distrib/sets/getdirs.awk @@ -0,0 +1,80 @@ +# $NetBSD: getdirs.awk,v 1.5 2012/02/08 16:51:09 njoly Exp $ +# +# Copyright (c) 2002 The NetBSD Foundation, Inc. +# All rights reserved. +# +# This code is derived from software contributed to The NetBSD Foundation +# by Luke Mewburn of Wasabi Systems. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS +# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + + +function dirname(file) \ +{ + # no need to worry about args that do not contain at least one "/" + gsub(/\/[^\/]+$/, "", file) + return file +} + +# skip empty or whitespace-only lines, or lines with comments +# +/^[ ]*(#|$)/ \ +{ + next +} + +# skip mtree config lines +# +/^\/(un)?set/ \ +{ + next +} + +# error if consecutive slashes are found +# +/\/\// \ +{ + print "Unsupported consecutive slashes in path:" >"/dev/stderr" + print >"/dev/stderr" + exit 1 +} + +# all other lines are parsed +# +{ + print + file = $1 + items[file]++ + do { + file = dirname(file) + dirs[file]++ + } while (file ~ /\//) +} + +END \ +{ + for (file in dirs) { + if (! (file in items)) + print file " optional type=dir" + } +} diff --git a/distrib/sets/join.awk b/distrib/sets/join.awk new file mode 100644 index 000000000..a675aef6d --- /dev/null +++ b/distrib/sets/join.awk @@ -0,0 +1,51 @@ +# $NetBSD: join.awk,v 1.3 2008/04/30 13:10:49 martin Exp $ +# +# Copyright (c) 2002 The NetBSD Foundation, Inc. +# All rights reserved. +# +# This code is derived from software contributed to The NetBSD Foundation +# by Luke Mewburn of Wasabi Systems. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS +# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# join.awk F1 F2 +# Similar to join(1), this reads a list of words from F1 +# and outputs lines in F2 with a first word that is in F1. +# Neither file needs to be sorted + +BEGIN \ +{ + if (ARGC != 3) { + printf("Usage: join file1 file2\n") >"/dev/stderr" + exit 1 + } + while ( (getline < ARGV[1]) > 0) + words[$1] = $0 + delete ARGV[1] +} + +$1 in words \ +{ + f1=$1 + $1="" + print words[f1] $0 +} diff --git a/distrib/sets/listpkgs b/distrib/sets/listpkgs new file mode 100755 index 000000000..f63ea84df --- /dev/null +++ b/distrib/sets/listpkgs @@ -0,0 +1,49 @@ +#!/bin/sh +# +# $NetBSD: listpkgs,v 1.12 2006/01/04 13:35:55 apb Exp $ +# +# List all packages in the given pkgset by parsing the list files. +# + +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +prefix=/ + +usage() +{ + cat 1>&2 <.so." and "lib.so.." +# Exceptions to this rule may include shared libraries that +# are dlopen()ed at run-time, such as extra locales, etc. +# +# /usr/bin/ident is in `base-util-bin', not `base-rcs-bin' as it is used by pkgsrc +# /usr/bin/ldd is also used by pkgsrc, and should stay in base-util-bin +# C locale (/usr/share/nls/C) is required by POSIX, so is installed if any locales are. +# +. base-sys-root +./altroot base-sys-root +./bin base-sys-root +./bin/[ base-util-root +./bin/cat base-util-root +./bin/chgrp base-util-root +./bin/chio base-util-root +./bin/chmod base-util-root +./bin/cp base-util-root +./bin/cpio base-util-root +./bin/csh base-util-root +./bin/date base-util-root +./bin/dd base-util-root +./bin/df base-util-root +./bin/domainname base-nis-root +./bin/echo base-util-root +./bin/ed base-util-root +./bin/expr base-util-root +./bin/hostname base-util-root +./bin/kill base-util-root +./bin/ksh base-util-root +./bin/ln base-util-root +./bin/ls base-util-root +./bin/mkdir base-util-root +./bin/mt base-util-root +./bin/mv base-util-root +./bin/pax base-util-root +./bin/ps base-util-root +./bin/pwd base-util-root +./bin/rcmd base-netutil-root +./bin/rcorder base-obsolete obsolete +./bin/rcp base-netutil-root +./bin/rm base-util-root +./bin/rmail base-obsolete obsolete +./bin/rmdir base-util-root +./bin/rump.dd base-util-root rump +./bin/sh base-util-root +./bin/sleep base-util-root +./bin/stty base-util-root +./bin/sync base-util-root +./bin/systrace base-obsolete obsolete +./bin/tar base-util-root +./bin/test base-util-root +./dev base-sys-root +./dev/altq base-sys-root +./dev/btdev0 base-obsolete obsolete +./dev/btdev1 base-obsolete obsolete +./dev/btdev2 base-obsolete obsolete +./dev/btdev3 base-obsolete obsolete +./dev/bthubctl base-obsolete obsolete +./dev/fd base-sys-root +./dev/i4b base-obsolete obsolete +./dev/i4bctl base-obsolete obsolete +./dev/i4brbch0 base-obsolete obsolete +./dev/i4brbch1 base-obsolete obsolete +./dev/i4btel0 base-obsolete obsolete +./dev/i4btel1 base-obsolete obsolete +./dev/i4btrc0 base-obsolete obsolete +./dev/i4btrc1 base-obsolete obsolete +./dev/log base-sys-root +./etc base-sys-root +./etc/X11 base-x11-root +./etc/X11/fs base-x11-root +./etc/X11/lbxproxy base-x11-root +./etc/X11/proxymngr base-x11-root +./etc/X11/rstart base-x11-root +./etc/X11/rstart/commands base-x11-root +./etc/X11/rstart/commands/x11r6 base-x11-root +./etc/X11/rstart/contexts base-x11-root +./etc/X11/twm base-x11-root +./etc/X11/xdm base-x11-root +./etc/X11/xinit base-x11-root +./etc/X11/xserver base-x11-root +./etc/X11/xsm base-x11-root +./etc/atf base-atf-bin +./etc/cgd base-sys-root +./etc/defaults base-sys-root +./etc/disklabels base-obsolete obsolete +./etc/fonts base-x11-root +./etc/fonts/conf.avail base-x11-root +./etc/fonts/conf.d base-x11-root +./etc/iscsi base-sysutil-root +./etc/kerberosIV base-obsolete obsolete +./etc/kerberosV base-krb5-root +./etc/mail base-postfix-bin +./etc/mtree base-sys-root +./etc/mtree/set.base base-sys-root +./etc/namedb base-bind-root +./etc/obsolete base-obsolete obsolete +./etc/openldap base-ldap-root +./etc/openssl base-crypto-root +./etc/openssl/certs base-crypto-root +./etc/openssl/misc base-crypto-root +./etc/openssl/private base-crypto-root +./etc/pam.d base-sys-root +./etc/postfix base-postfix-bin +./etc/powerd base-sysutil-bin +./etc/powerd/scripts base-sysutil-bin +./etc/racoon base-netutil-bin +./etc/rc.conf.d base-sys-root +./etc/rc.d base-sys-root +./etc/release etc-sys-etc +./etc/skel base-sys-root +./etc/sliphome base-slip-root +./etc/ssh base-sys-root +./etc/systrace base-obsolete obsolete +./etc/uucp base-obsolete obsolete +./etc/zfs base-zfs-root +./lib base-sys-root +./lib/libdes.so base-obsolete obsolete +./lib/libssp.so base-obsolete obsolete +./libdata base-sys-root +./libdata/firmware base-firmware-root +./libdata/firmware/if_ipw base-firmware-root +./libdata/firmware/if_ipw/LICENSE base-firmware-root +./libdata/firmware/if_ipw/ipw2100-1.2-i.fw base-firmware-root +./libdata/firmware/if_ipw/ipw2100-1.2-p.fw base-firmware-root +./libdata/firmware/if_ipw/ipw2100-1.2.fw base-firmware-root +./libdata/firmware/if_iwi base-firmware-root +./libdata/firmware/if_iwi/LICENSE.ipw2200-fw base-firmware-root +./libdata/firmware/if_iwi/ipw2200-bss.fw base-firmware-root +./libdata/firmware/if_iwi/ipw2200-ibss.fw base-firmware-root +./libdata/firmware/if_iwi/ipw2200-sniffer.fw base-firmware-root +./libdata/firmware/if_iwn base-firmware-root +./libdata/firmware/if_iwn/LICENSE.iwlwifi-1000-ucode base-firmware-root +./libdata/firmware/if_iwn/LICENSE.iwlwifi-4965-ucode base-firmware-root +./libdata/firmware/if_iwn/LICENSE.iwlwifi-5000-ucode base-firmware-root +./libdata/firmware/if_iwn/LICENSE.iwlwifi-5150-ucode base-firmware-root +./libdata/firmware/if_iwn/LICENSE.iwlwifi-6000-ucode base-firmware-root +./libdata/firmware/if_iwn/LICENSE.iwlwifi-6000g2a-ucode base-firmware-root +./libdata/firmware/if_iwn/LICENSE.iwlwifi-6050-ucode base-firmware-root +./libdata/firmware/if_iwn/README.iwlwifi-1000-ucode base-firmware-root +./libdata/firmware/if_iwn/README.iwlwifi-4965-ucode base-firmware-root +./libdata/firmware/if_iwn/README.iwlwifi-5000-ucode base-firmware-root +./libdata/firmware/if_iwn/README.iwlwifi-5150-ucode base-firmware-root +./libdata/firmware/if_iwn/README.iwlwifi-6000-ucode base-firmware-root +./libdata/firmware/if_iwn/README.iwlwifi-6000g2a-ucode base-firmware-root +./libdata/firmware/if_iwn/README.iwlwifi-6050-ucode base-firmware-root +./libdata/firmware/if_iwn/iwlwifi-1000-3.ucode base-firmware-root +./libdata/firmware/if_iwn/iwlwifi-4965-1.ucode base-obsolete obsolete +./libdata/firmware/if_iwn/iwlwifi-4965-2.ucode base-firmware-root +./libdata/firmware/if_iwn/iwlwifi-5000-1.ucode base-obsolete obsolete +./libdata/firmware/if_iwn/iwlwifi-5000-2.ucode base-firmware-root +./libdata/firmware/if_iwn/iwlwifi-5150-2.ucode base-firmware-root +./libdata/firmware/if_iwn/iwlwifi-6000-4.ucode base-firmware-root +./libdata/firmware/if_iwn/iwlwifi-6000g2a-5.ucode base-firmware-root +./libdata/firmware/if_iwn/iwlwifi-6050-5.ucode base-firmware-root +./libdata/firmware/if_otus base-firmware-root +./libdata/firmware/if_otus/otus-init base-firmware-root +./libdata/firmware/if_otus/otus-license base-firmware-root +./libdata/firmware/if_otus/otus-main base-firmware-root +./libdata/firmware/if_urtwn base-firmware-root +./libdata/firmware/if_urtwn/Realtek-Firmware-License.txt base-firmware-root +./libdata/firmware/if_urtwn/rtl8192cfw.bin base-firmware-root +./libdata/firmware/if_urtwn/rtl8192cfwU.bin base-firmware-root +./libdata/firmware/if_wpi base-firmware-root +./libdata/firmware/if_wpi/LICENSE.ipw3945-ucode base-obsolete obsolete +./libdata/firmware/if_wpi/LICENSE.iwlwifi-3945-ucode base-firmware-root +./libdata/firmware/if_wpi/README.ipw3945-ucode base-obsolete obsolete +./libdata/firmware/if_wpi/README.iwlwifi-3945-ucode base-firmware-root +./libdata/firmware/if_wpi/ipw3945.ucode base-obsolete obsolete +./libdata/firmware/if_wpi/iwlwifi-3945.ucode base-firmware-root +./libdata/firmware/ral base-firmware-root +./libdata/firmware/ral/ral-license base-firmware-root +./libdata/firmware/ral/ral-rt2561 base-firmware-root +./libdata/firmware/ral/ral-rt2561s base-firmware-root +./libdata/firmware/ral/ral-rt2661 base-firmware-root +./libdata/firmware/rum base-firmware-root +./libdata/firmware/rum/rum-license base-firmware-root +./libdata/firmware/rum/rum-rt2573 base-firmware-root +./libdata/firmware/rum/run-rt2870 base-obsolete obsolete +./libdata/firmware/rum/run-rt3071 base-obsolete obsolete +./libdata/firmware/run base-firmware-root +./libdata/firmware/run/run-license base-firmware-root +./libdata/firmware/run/run-rt2870 base-firmware-root +./libdata/firmware/run/run-rt3071 base-firmware-root +./libdata/firmware/upgt base-firmware-root +./libdata/firmware/urtwn base-firmware-root obsolete +./libdata/firmware/zyd base-firmware-root +./libdata/firmware/zyd/zd1211-licence base-obsolete obsolete +./libdata/firmware/zyd/zd1211-license base-firmware-root +./libdata/firmware/zyd/zyd-zd1211 base-firmware-root +./libdata/firmware/zyd/zyd-zd1211b base-firmware-root +./libexec base-sys-root +./libexec/devpubd-hooks base-sysutil-root +./libexec/devpubd-hooks/01-makedev base-sysutil-root +./libexec/devpubd-run-hooks base-sysutil-root +./libexec/dhcpcd-hooks base-dhcpcd-root +./libexec/dhcpcd-hooks/01-test base-dhcpcd-root +./libexec/dhcpcd-hooks/02-dump base-dhcpcd-root +./libexec/dhcpcd-hooks/10-mtu base-dhcpcd-root +./libexec/dhcpcd-hooks/10-resolv.conf base-obsolete obsolete +./libexec/dhcpcd-hooks/14-lookup-hostname base-obsolete obsolete +./libexec/dhcpcd-hooks/15-hostname base-obsolete obsolete +./libexec/dhcpcd-hooks/20-resolv.conf base-dhcpcd-root +./libexec/dhcpcd-hooks/29-lookup-hostname base-dhcpcd-root +./libexec/dhcpcd-hooks/30-hostname base-dhcpcd-root +./libexec/dhcpcd-hooks/50-ntp.conf base-dhcpcd-root +./libexec/dhcpcd-run-hooks base-dhcpcd-root +./libexec/lfs_cleanerd base-sysutil-bin +./libexec/resolvconf base-resolvconf-root +./libexec/resolvconf/dnsmasq base-resolvconf-root +./libexec/resolvconf/libc base-resolvconf-root +./libexec/resolvconf/named base-resolvconf-root +./libexec/resolvconf/unbound base-resolvconf-root +./mnt base-sys-root +./rescue base-sys-root +./root base-sys-root +./sbin base-sys-root +./sbin/amrctl base-sysutil-root +./sbin/apmlabel base-sysutil-root +./sbin/atactl base-sysutil-root +./sbin/badsect base-sysutil-root +./sbin/bioctl base-sysutil-root +./sbin/brconfig base-netutil-root +./sbin/ccdconfig base-sysutil-root +./sbin/cgdconfig base-sysutil-root crypto +./sbin/chown base-sysutil-root +./sbin/clri base-sysutil-root +./sbin/devpubd base-sysutil-root +./sbin/dhclient base-dhclient-root +./sbin/dhclient-script base-dhclient-root +./sbin/dhcpcd base-dhcpcd-root +./sbin/disklabel base-sysutil-root +./sbin/dkctl base-sysutil-root +./sbin/dkscan_bsdlabel base-sysutil-root +./sbin/dmctl base-sysutil-root +./sbin/dmesg base-sysutil-root +./sbin/dmsetup base-lvm-root lvm +./sbin/drvctl base-sysutil-root +./sbin/dump base-sysutil-root +./sbin/dump_lfs base-sysutil-root +./sbin/dumpfs base-obsolete obsolete +./sbin/dumplfs base-obsolete obsolete +./sbin/fastboot base-sysutil-root +./sbin/fasthalt base-sysutil-root +./sbin/fdisk base-sysutil-root +./sbin/fsck base-sysutil-root +./sbin/fsck_ext2fs base-ext2fs-root +./sbin/fsck_ffs base-sysutil-root +./sbin/fsck_lfs base-sysutil-root +./sbin/fsck_msdos base-sysutil-root +./sbin/fsck_v7fs base-sysutil-root +./sbin/fsdb base-sysutil-root +./sbin/fsirand base-sysutil-root +./sbin/gpt base-sysutil-root +./sbin/halt base-sysutil-root +./sbin/ifconfig base-netutil-root +./sbin/init base-sysutil-root +./sbin/ipf base-ipf-root ipfilter +./sbin/ipppctl base-netutil-root +./sbin/iscsictl base-iscsi-bin iscsi +./sbin/iscsid base-iscsi-bin iscsi +./sbin/ispppcontrol base-obsolete obsolete +./sbin/lmcctl base-obsolete obsolete +./sbin/lvm base-lvm-root lvm +./sbin/mbrlabel base-sysutil-root +./sbin/mknod base-sysutil-root +./sbin/modload base-sysutil-root +./sbin/modstat base-sysutil-root +./sbin/modunload base-sysutil-root +./sbin/mount base-sysutil-root +./sbin/mount_ados base-adosfs-root +./sbin/mount_cd9660 base-sysutil-root +./sbin/mount_chfs base-sysutil-root +./sbin/mount_efs base-efs-root +./sbin/mount_ext2fs base-ext2fs-root +./sbin/mount_fdesc base-miscfs-root +./sbin/mount_ffs base-sysutil-root +./sbin/mount_filecore base-filecorefs-root +./sbin/mount_hfs base-hfs-root +./sbin/mount_hfsp base-obsolete obsolete +./sbin/mount_kernfs base-sysutil-root +./sbin/mount_lfs base-sysutil-root +./sbin/mount_mfs base-sysutil-root +./sbin/mount_msdos base-sysutil-root +./sbin/mount_nfs base-nfsclient-root +./sbin/mount_nilfs base-sysutil-root +./sbin/mount_ntfs base-ntfs-root +./sbin/mount_null base-miscfs-root +./sbin/mount_overlay base-miscfs-root +./sbin/mount_portal base-puffs-bin +./sbin/mount_procfs base-sysutil-root +./sbin/mount_ptyfs base-miscfs-root +./sbin/mount_puffs base-sysutil-root +./sbin/mount_smbfs base-smbfs-root +./sbin/mount_sysvbfs base-sysutil-root +./sbin/mount_tmpfs base-miscfs-root +./sbin/mount_udf base-sysutil-root +./sbin/mount_ufs base-sysutil-root +./sbin/mount_umap base-miscfs-root +./sbin/mount_union base-miscfs-root +./sbin/mount_v7fs base-sysutil-root +./sbin/mountd base-obsolete obsolete +./sbin/newbtconf base-sysutil-root +./sbin/newfs base-sysutil-root +./sbin/newfs_ext2fs base-sysutil-root +./sbin/newfs_lfs base-sysutil-root +./sbin/newfs_msdos base-sysutil-root +./sbin/newfs_sysvbfs base-sysutil-root +./sbin/newfs_udf base-sysutil-root +./sbin/newfs_v7fs base-sysutil-root +./sbin/newlfs base-obsolete obsolete +./sbin/nfsd base-obsolete obsolete +./sbin/nfsiod base-obsolete obsolete +./sbin/nologin base-sysutil-root +./sbin/pdisk base-sysutil-root +./sbin/pfctl base-pf-root pf +./sbin/pflogd base-pf-root pf +./sbin/pfs base-pf-root pf +./sbin/ping base-netutil-root +./sbin/ping6 base-netutil-root use_inet6 +./sbin/poweroff base-sysutil-root +./sbin/pppoectl base-netutil-root +./sbin/quotacheck base-obsolete obsolete +./sbin/raidctl base-sysutil-root +./sbin/rcorder base-sysutil-root +./sbin/rdump base-sysutil-root +./sbin/rdump_lfs base-sysutil-root +./sbin/reboot base-sysutil-root +./sbin/resize_ffs base-sysutil-root +./sbin/resize_lfs base-sysutil-root +./sbin/resolvconf base-resolvconf-root +./sbin/restore base-sysutil-root +./sbin/rndctl base-sysutil-root +./sbin/route base-netutil-root +./sbin/routed base-router-root +./sbin/rrestore base-netutil-root +./sbin/rtsol base-netutil-root use_inet6 +./sbin/rump.cgdconfig base-sysutil-root crypto,rump +./sbin/rump.ifconfig base-netutil-root rump +./sbin/rump.modload base-sysutil-root rump +./sbin/rump.modstat base-sysutil-root rump +./sbin/rump.modunload base-sysutil-root rump +./sbin/rump.ping base-netutil-root rump +./sbin/rump.raidctl base-sysutil-root rump +./sbin/rump.route base-netutil-root rump +./sbin/rump.sysctl base-sysutil-root rump +./sbin/savecore base-sysutil-root +./sbin/scan_ffs base-sysutil-root +./sbin/scan_lfs base-sysutil-root +./sbin/scsictl base-sysutil-root +./sbin/setkey base-netutil-root +./sbin/shutdown base-sysutil-root +./sbin/slattach base-slip-root +./sbin/svhlabel base-sysutil-root +./sbin/swapctl base-sysutil-root +./sbin/swapon base-sysutil-root +./sbin/sysctl base-sysutil-root +./sbin/tbrconfig base-router-root +./sbin/ttyflags base-sysutil-root +./sbin/tunefs base-sysutil-root +./sbin/umount base-sysutil-root +./sbin/veriexecctl base-sysutil-root +./sbin/verifiedexec_load base-obsolete obsolete +./sbin/vinum base-obsolete obsolete +./sbin/wdogctl base-sysutil-root +./sbin/wsconsctl base-sysutil-root +./sbin/zfs base-zfs-bin zfs +./sbin/zpool base-zfs-bin zfs +./stand base-sys-root +./tmp base-sys-root +./usr base-sys-root +./usr/bin base-sys-usr +./usr/bin/Mail base-mail-bin +./usr/bin/agrep base-util-bin +./usr/bin/apply base-util-bin +./usr/bin/apropos base-man-bin +./usr/bin/arpaname base-bind-bin +./usr/bin/at base-cron-bin +./usr/bin/atf-check base-obsolete obsolete +./usr/bin/atf-config base-atf-bin atf +./usr/bin/atf-report base-atf-bin atf +./usr/bin/atf-run base-atf-bin atf +./usr/bin/atf-sh base-atf-bin atf +./usr/bin/atf-version base-atf-bin atf +./usr/bin/atq base-cron-bin +./usr/bin/atrm base-cron-bin +./usr/bin/audioctl base-audio-bin +./usr/bin/audiocfg base-audio-bin +./usr/bin/audioplay base-audio-bin +./usr/bin/audiorecord base-audio-bin +./usr/bin/awk base-util-bin +./usr/bin/banner base-util-bin +./usr/bin/basename base-util-bin +./usr/bin/batch base-cron-bin +./usr/bin/bc base-util-bin +./usr/bin/bdes base-crypto-bin crypto +./usr/bin/biff base-mail-bin +./usr/bin/bthset base-util-bin +./usr/bin/btkey base-util-bin +./usr/bin/btpin base-util-bin +./usr/bin/bunzip2 base-util-bin +./usr/bin/bzcat base-util-bin +./usr/bin/bzip2 base-util-bin +./usr/bin/bzip2recover base-util-bin +./usr/bin/cal base-util-bin +./usr/bin/calendar base-calendar-bin +./usr/bin/cap_mkdb base-util-bin +./usr/bin/cdplay base-audio-bin +./usr/bin/chflags base-util-bin +./usr/bin/chfn base-util-bin +./usr/bin/chgrp base-util-bin +./usr/bin/chpass base-util-bin +./usr/bin/chsh base-util-bin +./usr/bin/ci base-rcs-bin +./usr/bin/cksum base-util-bin +./usr/bin/clear base-util-bin +./usr/bin/cmp base-util-bin +./usr/bin/cleantags base-util-bin +./usr/bin/co base-rcs-bin +./usr/bin/col base-util-bin +./usr/bin/colcrt base-util-bin +./usr/bin/colrm base-util-bin +./usr/bin/column base-util-bin +./usr/bin/comm base-util-bin +./usr/bin/compile_et base-obsolete obsolete +./usr/bin/compress base-util-bin +./usr/bin/cpio base-util-bin +./usr/bin/cpp base-util-bin gcccmds +./usr/bin/crontab base-cron-bin +./usr/bin/csplit base-util-bin +./usr/bin/ctags base-c-bin +./usr/bin/cu base-util-bin +./usr/bin/cut base-util-bin +./usr/bin/db base-util-bin +./usr/bin/dc base-util-bin +./usr/bin/deroff base-util-bin +./usr/bin/diff base-util-bin +./usr/bin/diff3 base-util-bin +./usr/bin/dig base-netutil-bin +./usr/bin/dirname base-util-bin +./usr/bin/dns-sd base-mdns-bin mdns +./usr/bin/dnsquery base-obsolete obsolete +./usr/bin/du base-util-bin +./usr/bin/egrep base-util-bin +./usr/bin/eject base-util-bin +./usr/bin/env base-util-bin +./usr/bin/error base-util-bin +./usr/bin/ex base-util-bin +./usr/bin/expand base-util-bin +./usr/bin/false base-util-bin +./usr/bin/fgrep base-util-bin +./usr/bin/file base-util-bin +./usr/bin/fincore base-util-bin +./usr/bin/find base-util-bin +./usr/bin/finger base-util-bin +./usr/bin/fmt base-util-bin +./usr/bin/fold base-util-bin +./usr/bin/from base-mail-bin +./usr/bin/fsplit base-util-bin +./usr/bin/fstat base-util-bin +./usr/bin/ftp base-netutil-bin +./usr/bin/gcpp base-util-bin gcccmds +./usr/bin/gencat base-locale-bin +./usr/bin/getcap base-util-bin +./usr/bin/getconf base-util-bin +./usr/bin/getent base-util-bin +./usr/bin/getextattr base-util-bin +./usr/bin/getopt base-util-bin +./usr/bin/gkermit base-util-bin +./usr/bin/grep base-util-bin +./usr/bin/groups base-util-bin +./usr/bin/gss base-obsolete obsolete +./usr/bin/gsstool base-krb5-bin kerberos +./usr/bin/gunzip base-util-bin +./usr/bin/gzcat base-util-bin +./usr/bin/gzexe base-util-bin +./usr/bin/gzip base-util-bin +./usr/bin/head base-util-bin +./usr/bin/hesinfo base-hesiod-bin hesiod +./usr/bin/hexdump base-util-bin +./usr/bin/host base-netutil-bin +./usr/bin/hoststat base-mailwrapper-bin +./usr/bin/hxtool base-krb5-bin kerberos +./usr/bin/iconv base-util-bin +./usr/bin/id base-util-bin +./usr/bin/ident base-util-bin +./usr/bin/indent base-c-bin +./usr/bin/info base-texinfo-bin +./usr/bin/infocmp base-util-bin +./usr/bin/innetgr base-nis-bin +./usr/bin/install base-util-bin +./usr/bin/install-info base-texinfo-bin +./usr/bin/install-sid base-gnats-bin +./usr/bin/ipcrm base-util-bin +./usr/bin/ipcs base-util-bin +./usr/bin/join base-util-bin +./usr/bin/jot base-util-bin +./usr/bin/kcc base-krb5-bin kerberos +./usr/bin/kdestroy base-krb5-bin kerberos +./usr/bin/kdump base-debug-bin +./usr/bin/kf base-obsolete obsolete +./usr/bin/kgetcred base-krb5-bin kerberos +./usr/bin/kinit base-krb5-bin kerberos +./usr/bin/klist base-krb5-bin kerberos +./usr/bin/kpasswd base-krb5-bin kerberos +./usr/bin/krb5-config base-krb5-bin kerberos +./usr/bin/ktrace base-debug-bin +./usr/bin/ktruss base-debug-bin +./usr/bin/lam base-util-bin +./usr/bin/last base-util-bin +./usr/bin/lastcomm base-util-bin +./usr/bin/ld base-util-bin binutils +./usr/bin/ldapadd base-ldap-bin ldap +./usr/bin/ldapcompare base-ldap-bin ldap +./usr/bin/ldapdelete base-ldap-bin ldap +./usr/bin/ldapexop base-ldap-bin ldap +./usr/bin/ldapmodify base-ldap-bin ldap +./usr/bin/ldapmodrdn base-ldap-bin ldap +./usr/bin/ldappasswd base-ldap-bin ldap +./usr/bin/ldapsearch base-ldap-bin ldap +./usr/bin/ldapurl base-ldap-bin ldap +./usr/bin/ldapwhoami base-ldap-bin ldap +./usr/bin/ldd base-util-bin +./usr/bin/leave base-util-bin +./usr/bin/less base-util-bin +./usr/bin/lessecho base-util-bin +./usr/bin/lesskey base-util-bin +./usr/bin/locale base-locale-bin +./usr/bin/locate base-util-bin +./usr/bin/lock base-util-bin +./usr/bin/logger base-util-bin +./usr/bin/login base-util-bin +./usr/bin/logname base-util-bin +./usr/bin/look base-util-bin +./usr/bin/lp base-lpr-bin +./usr/bin/lpq base-lpr-bin +./usr/bin/lpr base-lpr-bin +./usr/bin/lprm base-lpr-bin +./usr/bin/lsextattr base-util-bin +./usr/bin/lua base-util-bin +./usr/bin/lzcat base-util-bin +./usr/bin/lzf base-util-bin +./usr/bin/lzfcat base-util-bin +./usr/bin/lzma base-util-bin +./usr/bin/lzmainfo base-util-bin +./usr/bin/m4 base-util-bin +./usr/bin/machine base-util-bin +./usr/bin/mail base-mail-bin +./usr/bin/mailq base-mailwrapper-bin +./usr/bin/mailx base-mail-bin +./usr/bin/make base-util-bin +./usr/bin/man base-man-bin +./usr/bin/md2 base-util-bin +./usr/bin/md4 base-util-bin +./usr/bin/md5 base-util-bin +./usr/bin/merge base-util-bin +./usr/bin/mesg base-util-bin +./usr/bin/midiplay base-audio-bin +./usr/bin/mixerctl base-audio-bin +./usr/bin/mk_cmds base-obsolete obsolete +./usr/bin/mkcsmapper base-util-bin +./usr/bin/mkdep base-c-bin +./usr/bin/mkesdb base-util-bin +./usr/bin/mkfifo base-util-bin +./usr/bin/mklocale base-locale-bin +./usr/bin/mktemp base-util-bin +./usr/bin/modstat base-obsolete obsolete +./usr/bin/more base-util-bin +./usr/bin/mset base-obsolete obsolete +./usr/bin/msgs base-util-bin +./usr/bin/nbsvtool base-crypto-bin crypto +./usr/bin/netgroup base-nis-bin +./usr/bin/netpgp base-crypto-bin crypto +./usr/bin/netpgpkeys base-crypto-bin crypto +./usr/bin/netpgpverify base-crypto-bin crypto +./usr/bin/netstat base-netutil-bin +./usr/bin/newaliases base-mailwrapper-bin +./usr/bin/newgrp base-util-bin +./usr/bin/newsyslog base-util-bin +./usr/bin/nex base-obsolete obsolete +./usr/bin/nfsstat base-nfsclient-bin +./usr/bin/nice base-util-bin +./usr/bin/nl base-util-bin +./usr/bin/nohup base-util-bin +./usr/bin/nslookup base-netutil-bin +./usr/bin/nsupdate base-netutil-bin +./usr/bin/nvi base-obsolete obsolete +./usr/bin/nview base-obsolete obsolete +./usr/bin/od base-util-bin +./usr/bin/openpgp base-obsolete obsolete +./usr/bin/openssl base-crypto-bin crypto +./usr/bin/page base-util-bin +./usr/bin/pagesize base-util-bin +./usr/bin/passwd base-util-bin +./usr/bin/paste base-util-bin +./usr/bin/patch base-util-bin +./usr/bin/pathchk base-util-bin +./usr/bin/pawd base-amd-bin +./usr/bin/paxctl base-obsolete obsolete +./usr/bin/pcap-config base-util-bin +./usr/bin/pgrep base-util-bin +./usr/bin/pigz base-util-bin +./usr/bin/pkill base-util-bin +./usr/bin/pmap base-util-bin +./usr/bin/pr base-util-bin +./usr/bin/prenice base-util-bin +./usr/bin/printenv base-util-bin +./usr/bin/printf base-util-bin +./usr/bin/progress base-util-bin +./usr/bin/purgestat base-mailwrapper-bin +./usr/bin/pwhash base-util-bin +./usr/bin/qsafe base-util-bin crypto +./usr/bin/qsieve base-util-bin crypto +./usr/bin/qsubst base-util-bin +./usr/bin/quota base-util-bin +./usr/bin/radioctl base-audio-bin +./usr/bin/rcs base-rcs-bin +./usr/bin/rcsclean base-rcs-bin +./usr/bin/rcsdiff base-rcs-bin +./usr/bin/rcsfreeze base-rcs-bin +./usr/bin/rcslog base-rcs-bin +./usr/bin/rcsmerge base-rcs-bin +./usr/bin/rdist base-netutil-bin +./usr/bin/readlink base-util-bin +./usr/bin/renice base-util-bin +./usr/bin/reset base-util-bin +./usr/bin/rev base-util-bin +./usr/bin/revoke base-util-bin +./usr/bin/rfcomm_sppd base-util-bin +./usr/bin/rlog base-rcs-bin +./usr/bin/rlogin base-netutil-bin +./usr/bin/rmd160 base-util-bin +./usr/bin/rmextattr base-util-bin +./usr/bin/rpcinfo base-rpcutil-bin +./usr/bin/rs base-util-bin +./usr/bin/rsh base-netutil-bin +./usr/bin/rump.dhcpclient base-util-bin rump +./usr/bin/rump.halt base-util-bin rump +./usr/bin/rump.netstat base-netutil-bin rump +./usr/bin/rump.sockstat base-util-bin rump +./usr/bin/rump_allserver base-util-bin rump +./usr/bin/rump_server base-util-bin rump +./usr/bin/rup base-netutil-bin +./usr/bin/ruptime base-netutil-bin +./usr/bin/rusers base-netutil-bin +./usr/bin/rwall base-netutil-bin +./usr/bin/rwho base-netutil-bin +./usr/bin/scp base-secsh-bin crypto +./usr/bin/script base-util-bin +./usr/bin/sdiff base-util-bin +./usr/bin/sdpquery base-util-bin +./usr/bin/sed base-util-bin +./usr/bin/send-pr base-gnats-bin +./usr/bin/seq base-util-bin +./usr/bin/setextattr base-util-bin +./usr/bin/sftp base-secsh-bin crypto +./usr/bin/sha1 base-util-bin +./usr/bin/shar base-util-bin +./usr/bin/shlock base-util-bin +./usr/bin/shmif_dumpbus base-util-bin +./usr/bin/showmount base-nfsclient-bin +./usr/bin/shuffle base-util-bin +./usr/bin/skey base-util-bin skey +./usr/bin/skeyaudit base-util-bin skey +./usr/bin/skeyinfo base-util-bin skey +./usr/bin/skeyinit base-util-bin skey +./usr/bin/slogin base-secsh-bin crypto +./usr/bin/sockstat base-util-bin +./usr/bin/sort base-util-bin +./usr/bin/spell base-util-bin +./usr/bin/split base-util-bin +./usr/bin/sqlite3 base-util-bin +./usr/bin/ssh base-secsh-bin crypto +./usr/bin/ssh-add base-secsh-bin crypto +./usr/bin/ssh-agent base-secsh-bin crypto +./usr/bin/ssh-keygen base-secsh-bin crypto +./usr/bin/ssh-keyscan base-secsh-bin crypto +./usr/bin/stat base-util-bin +./usr/bin/string2key base-krb5-bin kerberos +./usr/bin/su base-util-bin +./usr/bin/sum base-util-bin +./usr/bin/sysstat base-util-bin +./usr/bin/systat base-util-bin +./usr/bin/tabs base-util-bin +./usr/bin/tail base-util-bin +./usr/bin/talk base-netutil-bin +./usr/bin/tar base-util-bin +./usr/bin/tcopy base-util-bin +./usr/bin/tee base-util-bin +./usr/bin/telnet base-netutil-bin +./usr/bin/tftp base-netutil-bin +./usr/bin/tic base-util-bin +./usr/bin/time base-util-bin +./usr/bin/tip base-util-bin +./usr/bin/tmux base-util-bin +./usr/bin/tn3270 base-obsolete obsolete +./usr/bin/top base-util-bin +./usr/bin/touch base-util-bin +./usr/bin/tpfmt base-util-bin +./usr/bin/tput base-util-bin +./usr/bin/tr base-util-bin +./usr/bin/true base-util-bin +./usr/bin/tset base-util-bin +./usr/bin/tty base-util-bin +./usr/bin/ul base-util-bin +./usr/bin/uname base-util-bin +./usr/bin/uncompress base-util-bin +./usr/bin/unexpand base-util-bin +./usr/bin/uniq base-util-bin +./usr/bin/units base-util-bin +./usr/bin/unlzf base-util-bin +./usr/bin/unlzma base-util-bin +./usr/bin/unvis base-util-bin +./usr/bin/unxz base-util-bin +./usr/bin/unzip base-util-bin +./usr/bin/uptime base-util-bin +./usr/bin/usbhidaction base-util-bin +./usr/bin/usbhidctl base-util-bin +./usr/bin/users base-util-bin +./usr/bin/utoppya base-util-bin +./usr/bin/uucp base-obsolete obsolete +./usr/bin/uudecode base-util-bin +./usr/bin/uuencode base-util-bin +./usr/bin/uuidgen base-util-bin +./usr/bin/uulog base-obsolete obsolete +./usr/bin/uuname base-obsolete obsolete +./usr/bin/uupick base-obsolete obsolete +./usr/bin/uusched base-obsolete obsolete +./usr/bin/uustat base-obsolete obsolete +./usr/bin/uuto base-obsolete obsolete +./usr/bin/uux base-obsolete obsolete +./usr/bin/vacation base-mail-bin +./usr/bin/verify_krb5_conf base-krb5-bin kerberos +./usr/bin/vi base-util-bin +./usr/bin/videoctl base-video-bin +./usr/bin/view base-util-bin +./usr/bin/vis base-util-bin +./usr/bin/vmstat base-util-bin +./usr/bin/vndcompress base-util-bin +./usr/bin/vnduncompress base-util-bin +./usr/bin/w base-util-bin +./usr/bin/wall base-util-bin +./usr/bin/wc base-util-bin +./usr/bin/what base-util-bin +./usr/bin/whatis base-util-bin +./usr/bin/whereis base-util-bin +./usr/bin/which base-util-bin +./usr/bin/who base-util-bin +./usr/bin/whoami base-util-bin +./usr/bin/whois base-netutil-bin +./usr/bin/window base-obsolete obsolete +./usr/bin/write base-util-bin +./usr/bin/xargs base-util-bin +./usr/bin/xmlwf base-util-bin +./usr/bin/xz base-util-bin +./usr/bin/xzcat base-util-bin +./usr/bin/yes base-util-bin +./usr/bin/ypcat base-nis-bin yp +./usr/bin/ypmatch base-nis-bin yp +./usr/bin/yppasswd base-nis-bin use_yp +./usr/bin/ypwhich base-nis-bin yp +./usr/bin/zcat base-util-bin +./usr/bin/zcmp base-util-bin +./usr/bin/zdiff base-util-bin +./usr/bin/zegrep base-util-bin +./usr/bin/zfgrep base-util-bin +./usr/bin/zforce base-util-bin +./usr/bin/zgrep base-util-bin +./usr/bin/zmore base-util-bin +./usr/bin/znew base-util-bin +./usr/bin/ztest base-zfs-bin zfs +./usr/games base-games-usr +./usr/games/hide base-games-usr +./usr/include base-c-usr +./usr/include/adosfs base-c-usr +./usr/include/altq base-c-usr +./usr/include/arpa base-c-usr +./usr/include/cdk base-obsolete obsolete +./usr/include/clang-3.0 base-obsolete obsolete +./usr/include/clang-3.2 base-c-usr +./usr/include/compat base-obsolete obsolete +./usr/include/crypto base-c-usr +./usr/include/dev base-c-usr +./usr/include/dev/apm base-c-usr +./usr/include/dev/ata base-c-usr +./usr/include/dev/dec base-c-usr +./usr/include/dev/dm base-c-usr +./usr/include/dev/dmover base-c-usr +./usr/include/dev/dtv base-c-usr +./usr/include/dev/filemon base-c-usr +./usr/include/dev/eisa base-obsolete obsolete +./usr/include/dev/hpc base-c-usr +./usr/include/dev/i2c base-c-usr +./usr/include/dev/i2o base-c-usr +./usr/include/dev/ic base-c-usr +./usr/include/dev/ieee1394 base-c-usr +./usr/include/dev/ir base-c-usr +./usr/include/dev/isa base-c-usr +./usr/include/dev/isapnp base-obsolete obsolete +./usr/include/dev/iscsi base-c-usr iscsi +./usr/include/dev/microcode base-obsolete obsolete +./usr/include/dev/microcode/aic7xxx base-obsolete obsolete +./usr/include/dev/microcode/isp base-obsolete obsolete +./usr/include/dev/mii base-obsolete obsolete +./usr/include/dev/ofisa base-obsolete obsolete +./usr/include/dev/ofw base-c-usr +./usr/include/dev/pci base-c-usr +./usr/include/dev/pci/hdaudio base-c-usr +./usr/include/dev/pckbc base-c-usr +./usr/include/dev/pcmcia base-c-usr +./usr/include/dev/pud base-c-usr +./usr/include/dev/putter base-c-usr +./usr/include/dev/raidframe base-c-usr +./usr/include/dev/rcons base-obsolete obsolete +./usr/include/dev/sbus base-c-usr +./usr/include/dev/scsipi base-c-usr +./usr/include/dev/sun base-c-usr +./usr/include/dev/tc base-c-usr +./usr/include/dev/usb base-c-usr +./usr/include/dev/vinum base-obsolete obsolete +./usr/include/dev/vme base-c-usr +./usr/include/dev/wscons base-c-usr +./usr/include/filecorefs base-c-usr +./usr/include/fs base-c-usr +./usr/include/fs/efs base-c-usr +./usr/include/fs/hfs base-c-usr +./usr/include/fs/hfsp base-obsolete obsolete +./usr/include/fs/nilfs base-c-usr +./usr/include/fs/ptyfs base-c-usr +./usr/include/fs/puffs base-puffs-usr +./usr/include/fs/smbfs base-c-usr +./usr/include/fs/sysvbfs base-c-usr +./usr/include/fs/tmpfs base-c-usr +./usr/include/fs/udf base-c-usr +./usr/include/fs/v7fs base-c-usr +./usr/include/g++ base-cxx-usr +./usr/include/g++/backward base-cxx-usr +./usr/include/g++/bits base-cxx-usr +./usr/include/g++/debug base-cxx-usr +./usr/include/g++/decimal base-cxx-usr +./usr/include/g++/ext base-cxx-usr +./usr/include/g++/gen base-obsolete obsolete +./usr/include/g++/parallel base-cxx-usr +./usr/include/g++/std base-obsolete obsolete +./usr/include/g++/tr1 base-cxx-usr +./usr/include/g++/tr1_impl base-cxx-usr +./usr/include/gcc-4.1 base-obsolete !gcc,obsolete +./usr/include/gcc-4.1 base-c-usr gcc=4 +./usr/include/gcc-4.1 base-obsolete gcc=45,obsolete +./usr/include/gcc-4.5 base-c-usr +./usr/include/gssapi base-c-usr +./usr/include/gssapi/rpc base-obsolete obsolete +./usr/include/isofs base-c-usr +./usr/include/isofs/cd9660 base-c-usr +./usr/include/kadm5 base-c-usr +./usr/include/kerberosIV base-obsolete obsolete +./usr/include/krb5 base-c-usr +./usr/include/libmilter base-obsolete obsolete +./usr/include/lzma base-c-usr +./usr/include/machine base-c-usr +./usr/include/milter base-obsolete obsolete +./usr/include/miscfs base-c-usr +./usr/include/miscfs/fdesc base-c-usr +./usr/include/miscfs/fifofs base-c-usr +./usr/include/miscfs/genfs base-c-usr +./usr/include/miscfs/kernfs base-c-usr +./usr/include/miscfs/nullfs base-c-usr +./usr/include/miscfs/overlay base-c-usr +./usr/include/miscfs/portal base-obsolete obsolete +./usr/include/miscfs/procfs base-c-usr +./usr/include/miscfs/ptyfs base-obsolete obsolete +./usr/include/miscfs/specfs base-c-usr +./usr/include/miscfs/syncfs base-c-usr +./usr/include/miscfs/umapfs base-c-usr +./usr/include/miscfs/union base-c-usr +./usr/include/msdosfs base-c-usr +./usr/include/net base-c-usr +./usr/include/net/agr base-c-usr +./usr/include/net80211 base-c-usr +./usr/include/netatalk base-c-usr +./usr/include/netbt base-c-usr +./usr/include/netccitt base-obsolete obsolete +./usr/include/netinet base-c-usr +./usr/include/netinet6 base-c-usr +./usr/include/netipsec base-c-usr +./usr/include/netisdn base-c-usr +./usr/include/netiso base-c-usr +./usr/include/netkey base-c-usr +./usr/include/netmpls base-c-usr +./usr/include/netnatm base-c-usr +./usr/include/netns base-obsolete obsolete +./usr/include/netsmb base-c-usr +./usr/include/nfs base-c-usr +./usr/include/ntfs base-c-usr +./usr/include/objc base-objc-usr +./usr/include/openpgpsdk base-obsolete obsolete +./usr/include/openssl base-c-usr +./usr/include/pcap base-c-usr +./usr/include/ppath base-c-usr +./usr/include/prop base-c-usr +./usr/include/protocols base-c-usr +./usr/include/quota base-obsolete obsolete +./usr/include/readline base-c-usr +./usr/include/rpc base-c-usr +./usr/include/rpcsvc base-c-usr +./usr/include/rump base-c-usr +./usr/include/security base-c-usr +./usr/include/ss base-obsolete obsolete +./usr/include/ssp base-c-usr +./usr/include/sys base-c-usr +./usr/include/trousers base-c-usr +./usr/include/tss base-c-usr +./usr/include/ufs base-c-usr +./usr/include/ufs/ext2fs base-c-usr +./usr/include/ufs/ffs base-c-usr +./usr/include/ufs/lfs base-c-usr +./usr/include/ufs/mfs base-c-usr +./usr/include/ufs/ufs base-c-usr +./usr/include/uvm base-c-usr +./usr/include/vm base-obsolete obsolete +./usr/lib base-sys-usr +./usr/lib/i18n base-i18n-root +./usr/lib/libntp.so base-obsolete obsolete +./usr/lib/libssp.so base-obsolete obsolete +./usr/lib/libusb.a base-obsolete obsolete +./usr/lib/libusb.so base-obsolete obsolete +./usr/lib/lua base-sys-usr +./usr/lib/lua/5.1 base-sys-usr +./usr/lib/npf base-sys-usr +./usr/lib/runemodule base-obsolete obsolete +./usr/lib/runemodule/libBIG5.a base-obsolete obsolete +./usr/lib/runemodule/libBIG5.so base-obsolete obsolete +./usr/lib/runemodule/libBIG5.so.3 base-obsolete obsolete +./usr/lib/runemodule/libBIG5.so.3.0 base-obsolete obsolete +./usr/lib/runemodule/libEUC.a base-obsolete obsolete +./usr/lib/runemodule/libEUC.so base-obsolete obsolete +./usr/lib/runemodule/libEUC.so.3 base-obsolete obsolete +./usr/lib/runemodule/libEUC.so.3.0 base-obsolete obsolete +./usr/lib/runemodule/libEUCTW.a base-obsolete obsolete +./usr/lib/runemodule/libEUCTW.so base-obsolete obsolete +./usr/lib/runemodule/libEUCTW.so.3 base-obsolete obsolete +./usr/lib/runemodule/libEUCTW.so.3.0 base-obsolete obsolete +./usr/lib/runemodule/libISO2022.a base-obsolete obsolete +./usr/lib/runemodule/libISO2022.so base-obsolete obsolete +./usr/lib/runemodule/libISO2022.so.3 base-obsolete obsolete +./usr/lib/runemodule/libISO2022.so.3.0 base-obsolete obsolete +./usr/lib/runemodule/libMSKanji.a base-obsolete obsolete +./usr/lib/runemodule/libMSKanji.so base-obsolete obsolete +./usr/lib/runemodule/libMSKanji.so.3 base-obsolete obsolete +./usr/lib/runemodule/libMSKanji.so.3.0 base-obsolete obsolete +./usr/lib/runemodule/libUTF2.a base-obsolete obsolete +./usr/lib/runemodule/libUTF2.so base-obsolete obsolete +./usr/lib/runemodule/libUTF2.so.3 base-obsolete obsolete +./usr/lib/runemodule/libUTF2.so.3.0 base-obsolete obsolete +./usr/lib/runemodule/libUTF8.a base-obsolete obsolete +./usr/lib/runemodule/libUTF8.so base-obsolete obsolete +./usr/lib/runemodule/libUTF8.so.3 base-obsolete obsolete +./usr/lib/runemodule/libUTF8.so.3.0 base-obsolete obsolete +./usr/lib/security base-sys-usr +./usr/libdata base-sys-usr +./usr/libdata/debug base-sys-usr +./usr/libdata/debug/bin base-sys-usr +./usr/libdata/debug/libexec base-sys-usr +./usr/libdata/debug/sbin base-sys-usr +./usr/libdata/debug/usr base-sys-usr +./usr/libdata/debug/usr/bin base-sys-usr +./usr/libdata/debug/usr/games base-sys-usr +./usr/libdata/debug/usr/lib base-sys-usr +./usr/libdata/debug/usr/lib/i18n base-i18n-root +./usr/libdata/debug/usr/lib/npf base-sys-usr +./usr/libdata/debug/usr/libexec base-sys-usr +./usr/libdata/debug/usr/libexec/ching base-sys-usr +./usr/libdata/debug/usr/libexec/lpr base-sys-usr +./usr/libdata/debug/usr/libexec/postfix base-sys-usr +./usr/libdata/debug/usr/libexec/uucp base-obsolete obsolete +./usr/libdata/debug/usr/mdec base-sys-usr +./usr/libdata/debug/usr/sbin base-sys-usr +./usr/libdata/firmware base-firmware-usr +./usr/libdata/firmware/radeon base-firmware-usr +./usr/libdata/firmware/radeon/CEDAR_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/CEDAR_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/CEDAR_rlc.bin base-firmware-usr +./usr/libdata/firmware/radeon/CYPRESS_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/CYPRESS_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/CYPRESS_rlc.bin base-firmware-usr +./usr/libdata/firmware/radeon/JUNIPER_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/JUNIPER_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/JUNIPER_rlc.bin base-firmware-usr +./usr/libdata/firmware/radeon/R100_cp.bin base-firmware-usr +./usr/libdata/firmware/radeon/R200_cp.bin base-firmware-usr +./usr/libdata/firmware/radeon/R300_cp.bin base-firmware-usr +./usr/libdata/firmware/radeon/R420_cp.bin base-firmware-usr +./usr/libdata/firmware/radeon/R520_cp.bin base-firmware-usr +./usr/libdata/firmware/radeon/R600_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/R600_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/R600_rlc.bin base-firmware-usr +./usr/libdata/firmware/radeon/R700_rlc.bin base-firmware-usr +./usr/libdata/firmware/radeon/REDWOOD_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/REDWOOD_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/REDWOOD_rlc.bin base-firmware-usr +./usr/libdata/firmware/radeon/RS600_cp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RS690_cp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RS780_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RS780_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV610_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV610_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV620_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV620_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV630_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV630_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV635_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV635_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV670_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV670_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV710_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV710_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV730_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV730_pfp.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV770_me.bin base-firmware-usr +./usr/libdata/firmware/radeon/RV770_pfp.bin base-firmware-usr +./usr/libdata/ldscripts base-c-usr +./usr/libdata/lint base-c-usr +./usr/libexec base-sys-usr +./usr/libexec/atf-check base-atf-bin atf +./usr/libexec/atf-cleanup base-obsolete obsolete +./usr/libexec/atf-exec base-atf-bin obsolete +./usr/libexec/atf-format base-obsolete obsolete +./usr/libexec/atf-killpg base-obsolete obsolete +./usr/libexec/atrun base-cron-bin +./usr/libexec/ching base-games-usr +./usr/libexec/comsat base-mail-bin +./usr/libexec/cpp0 base-obsolete obsolete +./usr/libexec/digest-service base-krb5-bin kerberos +./usr/libexec/dnskeygen base-obsolete obsolete +./usr/libexec/fingerd base-netutil-bin +./usr/libexec/ftp-proxy base-obsolete obsolete +./usr/libexec/ftpd base-netutil-bin +./usr/libexec/getNAME base-man-bin !makemandb +./usr/libexec/getty base-sysutil-bin +./usr/libexec/hprop base-obsolete obsolete +./usr/libexec/hpropd base-krb5-bin kerberos +./usr/libexec/httpd base-netutil-bin +./usr/libexec/identd base-netutil-bin +./usr/libexec/ipropd-master base-krb5-bin kerberos +./usr/libexec/ipropd-slave base-krb5-bin kerberos +./usr/libexec/kadmind base-krb5-bin kerberos +./usr/libexec/kdc base-obsolete obsolete +./usr/libexec/kfd base-obsolete obsolete +./usr/libexec/kpasswdd base-krb5-bin kerberos +./usr/libexec/lfs_cleanerd base-obsolete obsolete +./usr/libexec/locate.bigram base-sysutil-bin +./usr/libexec/locate.code base-sysutil-bin +./usr/libexec/locate.updatedb base-sysutil-bin +./usr/libexec/lpr base-lpr-usr +./usr/libexec/lpr/lpf base-lpr-bin +./usr/libexec/lpr/pjlfilter base-lpr-bin +./usr/libexec/mail.local base-mail-bin +./usr/libexec/makekey base-crypto-bin +./usr/libexec/makewhatis base-man-bin !makemandb +./usr/libexec/named-xfer base-obsolete obsolete +./usr/libexec/ntalkd base-netutil-bin +./usr/libexec/pfspamd base-obsolete obsolete +./usr/libexec/pfspamd-setup base-obsolete obsolete +./usr/libexec/pfspamlogd base-obsolete obsolete +./usr/libexec/postfix base-postfix-usr +./usr/libexec/postfix/anvil base-postfix-bin postfix +./usr/libexec/postfix/bounce base-postfix-bin postfix +./usr/libexec/postfix/cleanup base-postfix-bin postfix +./usr/libexec/postfix/discard base-postfix-bin postfix +./usr/libexec/postfix/dnsblog base-postfix-bin postfix +./usr/libexec/postfix/error base-postfix-bin postfix +./usr/libexec/postfix/flush base-postfix-bin postfix +./usr/libexec/postfix/lmtp base-postfix-bin postfix +./usr/libexec/postfix/local base-postfix-bin postfix +./usr/libexec/postfix/master base-postfix-bin postfix +./usr/libexec/postfix/nqmgr base-obsolete obsolete +./usr/libexec/postfix/oqmgr base-postfix-bin postfix +./usr/libexec/postfix/pickup base-postfix-bin postfix +./usr/libexec/postfix/pipe base-postfix-bin postfix +./usr/libexec/postfix/post-install base-postfix-bin postfix +./usr/libexec/postfix/postfix-files base-postfix-bin postfix +./usr/libexec/postfix/postfix-script base-postfix-bin postfix +./usr/libexec/postfix/postfix-wrapper base-postfix-bin postfix +./usr/libexec/postfix/postmulti-script base-postfix-bin postfix +./usr/libexec/postfix/postscreen base-postfix-bin postfix,crypto +./usr/libexec/postfix/proxymap base-postfix-bin postfix +./usr/libexec/postfix/qmgr base-postfix-bin postfix +./usr/libexec/postfix/qmqpd base-obsolete obsolete +./usr/libexec/postfix/scache base-postfix-bin postfix +./usr/libexec/postfix/sendmail base-postfix-bin postfix +./usr/libexec/postfix/showq base-postfix-bin postfix +./usr/libexec/postfix/smtp base-postfix-bin postfix +./usr/libexec/postfix/smtpd base-postfix-bin postfix +./usr/libexec/postfix/spawn base-postfix-bin postfix +./usr/libexec/postfix/tlsmgr base-postfix-bin postfix,crypto +./usr/libexec/postfix/tlsproxy base-postfix-bin postfix,crypto +./usr/libexec/postfix/trivial-rewrite base-postfix-bin postfix +./usr/libexec/postfix/verify base-postfix-bin postfix +./usr/libexec/postfix/virtual base-postfix-bin postfix +./usr/libexec/rexecd base-netutil-bin +./usr/libexec/rlogind base-netutil-bin +./usr/libexec/rmail base-obsolete obsolete +./usr/libexec/rpc.rquotad base-nfsserver-bin +./usr/libexec/rpc.rstatd base-rpcserver-bin +./usr/libexec/rpc.rusersd base-rpcserver-bin +./usr/libexec/rpc.rwalld base-rpcserver-bin +./usr/libexec/rpc.sprayd base-rpcserver-bin +./usr/libexec/rshd base-netutil-bin +./usr/libexec/sendmail base-obsolete obsolete +./usr/libexec/sendmail/sendmail base-obsolete obsolete +./usr/libexec/sftp-server base-secsh-bin crypto +./usr/libexec/sm.bin base-obsolete obsolete +./usr/libexec/smrsh base-obsolete obsolete +./usr/libexec/spamd base-obsolete obsolete +./usr/libexec/spamd-setup base-obsolete obsolete +./usr/libexec/spamlogd base-obsolete obsolete +./usr/libexec/spellprog base-util-bin +./usr/libexec/ssh-keysign base-secsh-bin crypto +./usr/libexec/ssh-pkcs11-helper base-secsh-bin crypto +./usr/libexec/telnetd base-netutil-bin +./usr/libexec/tftp-proxy base-pf-bin pf +./usr/libexec/tftpd base-netutil-bin +./usr/libexec/utmp_update base-sysutil-bin +./usr/libexec/uucp base-obsolete obsolete +./usr/libexec/uucp/uuchk base-obsolete obsolete +./usr/libexec/uucp/uucico base-obsolete obsolete +./usr/libexec/uucp/uuconv base-obsolete obsolete +./usr/libexec/uucp/uuxqt base-obsolete obsolete +./usr/libexec/uucpd base-obsolete obsolete +./usr/libexec/uugetty base-obsolete obsolete +./usr/libexec/virecover base-util-bin +./usr/lkm base-obsolete obsolete +./usr/lkm/adosfs.o base-obsolete obsolete +./usr/lkm/bsdcomp.o base-obsolete obsolete +./usr/lkm/cd9660.o base-obsolete obsolete +./usr/lkm/coda.o base-obsolete obsolete +./usr/lkm/coda5.o base-obsolete obsolete +./usr/lkm/deflate.o base-obsolete obsolete +./usr/lkm/efs.o base-obsolete obsolete +./usr/lkm/ext2fs.o base-obsolete obsolete +./usr/lkm/fdesc.o base-obsolete obsolete +./usr/lkm/filecorefs.o base-obsolete obsolete +./usr/lkm/hfs.o base-obsolete obsolete +./usr/lkm/hfsp.o base-obsolete obsolete +./usr/lkm/if_ipl.o base-obsolete obsolete +./usr/lkm/kernfs.o base-obsolete obsolete +./usr/lkm/lfs.o base-obsolete obsolete +./usr/lkm/mfs.o base-obsolete obsolete +./usr/lkm/msdosfs.o base-obsolete obsolete +./usr/lkm/ntfs.o base-obsolete obsolete +./usr/lkm/nullfs.o base-obsolete obsolete +./usr/lkm/overlay.o base-obsolete obsolete +./usr/lkm/pf.o base-obsolete obsolete +./usr/lkm/portal.o base-obsolete obsolete +./usr/lkm/procfs.o base-obsolete obsolete +./usr/lkm/ptyfs.o base-obsolete obsolete +./usr/lkm/puffs.o base-obsolete obsolete +./usr/lkm/smbfs.o base-obsolete obsolete +./usr/lkm/tap.o base-obsolete obsolete +./usr/lkm/tmpfs.o base-obsolete obsolete +./usr/lkm/udf.o base-obsolete obsolete +./usr/lkm/umapfs.o base-obsolete obsolete +./usr/lkm/union.o base-obsolete obsolete +./usr/lkm/vnd.o base-obsolete obsolete +./usr/mdec base-sys-usr +./usr/sbin base-sys-usr +./usr/sbin/ac base-sysutil-bin +./usr/sbin/accton base-sysutil-bin +./usr/sbin/altqd base-router-bin +./usr/sbin/altqstat base-router-bin +./usr/sbin/amd base-amd-bin +./usr/sbin/amq base-amd-bin +./usr/sbin/arp base-netutil-bin +./usr/sbin/audit-packages base-pkgutil-bin crypto +./usr/sbin/authpf base-pf-bin pf +./usr/sbin/bootpd base-bootserver-bin +./usr/sbin/bootpef base-bootserver-bin +./usr/sbin/bootpgw base-bootserver-bin +./usr/sbin/bootptest base-bootserver-bin +./usr/sbin/bpm base-pkgutil-bin crypto +./usr/sbin/btattach base-sysutil-bin +./usr/sbin/btconfig base-sysutil-bin +./usr/sbin/btcontrol base-obsolete obsolete +./usr/sbin/btdevctl base-sysutil-bin +./usr/sbin/bthcid base-sysutil-bin +./usr/sbin/btpand base-sysutil-bin +./usr/sbin/btuartd base-obsolete obsolete +./usr/sbin/catman base-man-bin +./usr/sbin/chat base-ppp-bin +./usr/sbin/chown base-sysutil-bin +./usr/sbin/chroot base-sysutil-bin +./usr/sbin/chrtbl base-obsolete obsolete +./usr/sbin/cnwctl base-netutil-bin +./usr/sbin/cpuctl base-sysutil-bin +./usr/sbin/crash base-sysutil-bin +./usr/sbin/cron base-cron-bin +./usr/sbin/daicctl base-isdn-bin +./usr/sbin/dbsym base-sysutil-bin binutils +./usr/sbin/ddns-confgen base-bind-bin +./usr/sbin/dev_mkdb base-sysutil-bin +./usr/sbin/dhcpd base-dhcpd-bin +./usr/sbin/dhcrelay base-dhcpd-bin +./usr/sbin/dig base-obsolete obsolete +./usr/sbin/diskpart base-sysutil-bin +./usr/sbin/dnsquery base-obsolete obsolete +./usr/sbin/dnssec-dsfromkey base-bind-bin +./usr/sbin/dnssec-keyfromlabel base-bind-bin +./usr/sbin/dnssec-keygen base-bind-bin +./usr/sbin/dnssec-makekeyset base-obsolete obsolete +./usr/sbin/dnssec-revoke base-bind-bin +./usr/sbin/dnssec-settime base-bind-bin +./usr/sbin/dnssec-signkey base-obsolete obsolete +./usr/sbin/dnssec-signzone base-bind-bin +./usr/sbin/download-vulnerability-list base-pkgutil-bin crypto +./usr/sbin/dtmfdecode base-isdn-bin +./usr/sbin/dtrace base-debug-bin dtrace +./usr/sbin/dumpfs base-sysutil-bin +./usr/sbin/dumplfs base-sysutil-bin +./usr/sbin/eaytest base-obsolete obsolete +./usr/sbin/editmap base-obsolete obsolete +./usr/sbin/edquota base-sysutil-bin +./usr/sbin/envstat base-sysutil-bin +./usr/sbin/eshconfig base-sysutil-bin +./usr/sbin/etcupdate base-sysutil-bin +./usr/sbin/extattrctl base-sysutil-bin +./usr/sbin/faithd base-router-bin inet6 +./usr/sbin/fixmount base-nfsclient-bin +./usr/sbin/flashctl base-sysutil-bin +./usr/sbin/flush base-obsolete obsolete +./usr/sbin/fsinfo base-sysutil-bin +./usr/sbin/fssconfig base-sysutil-bin +./usr/sbin/ftp-proxy base-pf-bin pf +./usr/sbin/fusermount base-refuse-bin +./usr/sbin/fwctl base-sysutil-bin +./usr/sbin/g711conv base-obsolete obsolete +./usr/sbin/getencstat base-sysutil-bin +./usr/sbin/gettable base-obsolete obsolete +./usr/sbin/gifconfig base-obsolete obsolete +./usr/sbin/gpioctl base-sysutil-bin +./usr/sbin/greconfig base-obsolete obsolete +./usr/sbin/group base-sysutil-bin +./usr/sbin/groupadd base-sysutil-bin +./usr/sbin/groupdel base-sysutil-bin +./usr/sbin/groupinfo base-sysutil-bin +./usr/sbin/groupmod base-sysutil-bin +./usr/sbin/hdaudioctl base-sysutil-bin +./usr/sbin/hlfsd base-amd-bin +./usr/sbin/host base-obsolete obsolete +./usr/sbin/hostapd base-sysutil-bin +./usr/sbin/hostapd_cli base-sysutil-bin +./usr/sbin/hprop base-krb5-bin kerberos +./usr/sbin/htable base-obsolete obsolete +./usr/sbin/i2cscan base-sysutil-bin +./usr/sbin/ifmcstat base-netutil-bin inet6 +./usr/sbin/ifwatchd base-netutil-bin +./usr/sbin/inetd base-netutil-bin +./usr/sbin/installboot base-sysutil-bin +./usr/sbin/iopctl base-sysutil-bin +./usr/sbin/iostat base-sysutil-bin +./usr/sbin/ipfs base-ipf-bin ipfilter +./usr/sbin/ipfstat base-ipf-bin ipfilter +./usr/sbin/ipftest base-ipf-bin ipfilter +./usr/sbin/ipmon base-ipf-bin ipfilter +./usr/sbin/ipnat base-ipf-bin ipfilter +./usr/sbin/ippool base-ipf-root ipfilter +./usr/sbin/ipresend base-ipf-bin ipfilter +./usr/sbin/iprop-log base-krb5-bin kerberos +./usr/sbin/ipsend base-ipf-bin ipfilter +./usr/sbin/iptest base-ipf-bin ipfilter +./usr/sbin/irdaattach base-sysutil-bin +./usr/sbin/iscsi-initiator base-iscsi-bin iscsi +./usr/sbin/iscsi-target base-iscsi-bin iscsi +./usr/sbin/isdnd base-isdn-bin +./usr/sbin/isdnmonitor base-isdn-bin +./usr/sbin/isdntel base-isdn-bin +./usr/sbin/isdntelctl base-isdn-bin +./usr/sbin/isdntrace base-isdn-bin +./usr/sbin/isibootd base-bootserver-bin +./usr/sbin/ispppcontrol base-obsolete obsolete +./usr/sbin/iwictl base-sysutil-bin +./usr/sbin/kadmin base-krb5-bin kerberos +./usr/sbin/kcm base-krb5-bin kerberos +./usr/sbin/kdc base-krb5-bin kerberos +./usr/sbin/kdigest base-krb5-bin kerberos +./usr/sbin/kimpersonate base-krb5-bin kerberos +./usr/sbin/kmpstat base-obsolete obsolete +./usr/sbin/kstash base-krb5-bin kerberos +./usr/sbin/ktutil base-krb5-bin kerberos +./usr/sbin/kvm_mkdb base-obsolete obsolete +./usr/sbin/lastlogin base-sysutil-bin +./usr/sbin/ldpd base-router-bin +./usr/sbin/link base-sysutil-bin +./usr/sbin/linkfarm base-obsolete obsolete +./usr/sbin/lmcconfig base-netutil-bin +./usr/sbin/lmtp base-obsolete obsolete +./usr/sbin/lockstat base-sysutil-bin +./usr/sbin/lpc base-lpr-bin +./usr/sbin/lpd base-lpr-bin +./usr/sbin/lptest base-lpr-bin +./usr/sbin/lwresd base-bind-bin +./usr/sbin/mailstats base-obsolete obsolete +./usr/sbin/mailwrapper base-mailwrapper-bin +./usr/sbin/makedbm base-nis-bin yp +./usr/sbin/makefs base-sysutil-bin +./usr/sbin/makemap base-obsolete obsolete +./usr/sbin/map-mbone base-netutil-bin +./usr/sbin/mbrlabel base-obsolete obsolete +./usr/sbin/mdconfig base-sysutil-bin +./usr/sbin/mdnsd base-mdns-bin mdns +./usr/sbin/mdsetimage base-sysutil-bin binutils +./usr/sbin/mk-amd-map base-amd-bin +./usr/sbin/mkalias base-nis-bin yp +./usr/sbin/mknetid base-nis-bin yp +./usr/sbin/mld6query base-netutil-bin use_inet6 +./usr/sbin/mlxctl base-sysutil-bin +./usr/sbin/mmcformat base-sysutil-bin +./usr/sbin/mopa.out base-obsolete obsolete +./usr/sbin/mopchk base-bootserver-bin +./usr/sbin/mopcopy base-bootserver-bin +./usr/sbin/mopd base-bootserver-bin +./usr/sbin/mopprobe base-bootserver-bin +./usr/sbin/moptrace base-bootserver-bin +./usr/sbin/mount_9p base-puffs-bin rump +./usr/sbin/mount_psshfs base-puffs-bin rump +./usr/sbin/mount_puffsportal base-obsolete obsolete +./usr/sbin/mount_sysctlfs base-puffs-bin rump +./usr/sbin/mountd base-nfsserver-bin +./usr/sbin/moused base-sysutil-bin +./usr/sbin/mrinfo base-router-bin +./usr/sbin/mrouted base-router-bin +./usr/sbin/mscdlabel base-sysutil-bin +./usr/sbin/mtrace base-netutil-bin +./usr/sbin/mtrace6 base-obsolete obsolete +./usr/sbin/mtree base-sysutil-bin +./usr/sbin/named base-bind-bin +./usr/sbin/named-bootconf base-obsolete obsolete +./usr/sbin/named-checkconf base-bind-bin +./usr/sbin/named-checkzone base-bind-bin +./usr/sbin/named-compilezone base-bind-bin +./usr/sbin/named-journalprint base-bind-bin +./usr/sbin/named.reload base-obsolete obsolete +./usr/sbin/named.restart base-obsolete obsolete +./usr/sbin/ncdcs base-sysutil-root binutils +./usr/sbin/ndbootd base-bootserver-bin +./usr/sbin/ndc base-obsolete obsolete +./usr/sbin/ndp base-netutil-bin inet6 +./usr/sbin/netgroup_mkdb base-nis-bin +./usr/sbin/nfsd base-nfsserver-bin +./usr/sbin/nfsiod base-obsolete obsolete +./usr/sbin/npfctl base-npf-bin npf +./usr/sbin/npftest base-npf-bin npf,rump,pic +./usr/sbin/nsec3hash base-bind-bin +./usr/sbin/nslookup base-obsolete obsolete +./usr/sbin/nsquery base-obsolete obsolete +./usr/sbin/nstest base-obsolete obsolete +./usr/sbin/ntp-keygen base-ntp-bin crypto +./usr/sbin/ntpd base-ntp-bin +./usr/sbin/ntpdate base-ntp-bin +./usr/sbin/ntpdc base-ntp-bin +./usr/sbin/ntpq base-ntp-bin +./usr/sbin/ntptime base-ntp-bin +./usr/sbin/ntptimeset base-obsolete obsolete +./usr/sbin/ntptrace base-ntp-bin +./usr/sbin/omshell base-dhcpd-bin +./usr/sbin/pac base-sysutil-bin +./usr/sbin/paxctl base-sysutil-bin +./usr/sbin/pcictl base-sysutil-bin +./usr/sbin/perfused base-perfuse-bin +./usr/sbin/pfspamdb base-obsolete obsolete +./usr/sbin/pim6dd base-obsolete obsolete +./usr/sbin/pim6sd base-obsolete obsolete +./usr/sbin/pim6stat base-obsolete obsolete +./usr/sbin/pkg_add base-pkgutil-bin crypto +./usr/sbin/pkg_admin base-pkgutil-bin crypto +./usr/sbin/pkg_create base-pkgutil-bin crypto +./usr/sbin/pkg_delete base-pkgutil-bin crypto +./usr/sbin/pkg_info base-pkgutil-bin crypto +./usr/sbin/pkg_view base-obsolete obsolete +./usr/sbin/portmap base-obsolete obsolete +./usr/sbin/postalias base-postfix-bin postfix +./usr/sbin/postcat base-postfix-bin postfix +./usr/sbin/postconf base-postfix-bin postfix +./usr/sbin/postdrop base-postfix-bin postfix +./usr/sbin/postfix base-postfix-bin postfix +./usr/sbin/postinstall base-sysutil-bin +./usr/sbin/postkick base-postfix-bin postfix +./usr/sbin/postlock base-postfix-bin postfix +./usr/sbin/postlog base-postfix-bin postfix +./usr/sbin/postmap base-postfix-bin postfix +./usr/sbin/postmulti base-postfix-bin postfix +./usr/sbin/postqueue base-postfix-bin postfix +./usr/sbin/postsuper base-postfix-bin postfix +./usr/sbin/powerd base-sysutil-bin +./usr/sbin/pppd base-ppp-bin +./usr/sbin/pppdump base-ppp-bin +./usr/sbin/pppoectl base-obsolete obsolete +./usr/sbin/pppstats base-ppp-bin +./usr/sbin/praliases base-obsolete obsolete +./usr/sbin/psrset base-sysutil-bin +./usr/sbin/pstat base-sysutil-bin +./usr/sbin/pvcsif base-netutil-bin +./usr/sbin/pvctxctl base-netutil-bin +./usr/sbin/pwd_mkdb base-sysutil-bin +./usr/sbin/quot base-sysutil-bin +./usr/sbin/quotacheck base-sysutil-bin +./usr/sbin/quotactl base-obsolete obsolete +./usr/sbin/quotadump base-sysutil-bin +./usr/sbin/quotaoff base-sysutil-bin +./usr/sbin/quotaon base-sysutil-bin +./usr/sbin/quotarestore base-sysutil-bin +./usr/sbin/racoon base-netutil-bin crypto +./usr/sbin/racoonctl base-netutil-bin crypto +./usr/sbin/rarpd base-bootserver-bin +./usr/sbin/rbootd base-bootserver-bin +./usr/sbin/rdate base-netutil-bin +./usr/sbin/rdconfig base-obsolete obsolete +./usr/sbin/repquota base-sysutil-bin +./usr/sbin/revnetgroup base-nis-bin yp +./usr/sbin/rip6query base-netutil-bin inet6 +./usr/sbin/rmt base-sysutil-bin +./usr/sbin/rndc base-bind-bin +./usr/sbin/rndc-confgen base-bind-bin +./usr/sbin/route6d base-router-bin use_inet6 +./usr/sbin/rpc.bootparamd base-bootserver-bin +./usr/sbin/rpc.lockd base-nfsserver-bin +./usr/sbin/rpc.pcnfsd base-nfsserver-bin +./usr/sbin/rpc.statd base-nfsserver-bin +./usr/sbin/rpc.yppasswdd base-nis-bin yp +./usr/sbin/rpcbind base-rpcbind-bin +./usr/sbin/rtadvd base-router-bin use_inet6 +./usr/sbin/rtquery base-netutil-bin +./usr/sbin/rtsold base-netutil-bin inet6 +./usr/sbin/rump.envstat base-sysutil-bin rump +./usr/sbin/rump.powerd base-sysutil-bin rump +./usr/sbin/rump.traceroute base-netutil-bin rump +./usr/sbin/rump_cd9660 base-puffs-bin rump +./usr/sbin/rump_efs base-puffs-bin rump +./usr/sbin/rump_ext2fs base-puffs-bin rump +./usr/sbin/rump_ffs base-puffs-bin rump +./usr/sbin/rump_hfs base-puffs-bin rump +./usr/sbin/rump_lfs base-puffs-bin rump +./usr/sbin/rump_msdos base-puffs-bin rump +./usr/sbin/rump_nfs base-puffs-bin rump +./usr/sbin/rump_ntfs base-puffs-bin rump +./usr/sbin/rump_smbfs base-puffs-bin crypto,rump +./usr/sbin/rump_syspuffs base-puffs-bin rump +./usr/sbin/rump_sysvbfs base-puffs-bin rump +./usr/sbin/rump_tmpfs base-puffs-bin rump +./usr/sbin/rump_udf base-puffs-bin rump +./usr/sbin/rump_v7fs base-puffs-bin rump +./usr/sbin/rwhod base-netutil-bin +./usr/sbin/sa base-sysutil-bin +./usr/sbin/schedctl base-sysutil-bin +./usr/sbin/screenblank base-sysutil-bin +./usr/sbin/scriptdump base-obsolete obsolete +./usr/sbin/sdpd base-sysutil-bin +./usr/sbin/sendmail base-mailwrapper-bin +./usr/sbin/services_mkdb base-sysutil-bin +./usr/sbin/sesd base-sysutil-bin +./usr/sbin/setencstat base-sysutil-bin +./usr/sbin/setkey base-obsolete obsolete +./usr/sbin/setobjstat base-sysutil-bin +./usr/sbin/sliplogin base-slip-bin +./usr/sbin/slstats base-slip-bin +./usr/sbin/smrsh base-obsolete obsolete +./usr/sbin/sntp base-ntp-bin +./usr/sbin/spamdb base-obsolete obsolete +./usr/sbin/spawn base-obsolete obsolete +./usr/sbin/spray base-rpcutil-bin +./usr/sbin/srtconfig base-netutil-bin +./usr/sbin/sshd base-secsh-bin crypto +./usr/sbin/statmsg base-obsolete obsolete +./usr/sbin/stdethers base-nis-bin yp +./usr/sbin/stdhosts base-nis-bin yp +./usr/sbin/sti base-sysutil-bin +./usr/sbin/sunlabel base-sysutil-bin +./usr/sbin/sup base-sup-bin +./usr/sbin/supfilesrv base-sup-bin +./usr/sbin/supscan base-sup-bin +./usr/sbin/sushi base-obsolete obsolete +./usr/sbin/sysconfd base-obsolete obsolete +./usr/sbin/sysctl base-obsolete obsolete +./usr/sbin/syslogd base-sysutil-bin +./usr/sbin/tbrconfig base-obsolete obsolete +./usr/sbin/tcpdchk base-netutil-bin +./usr/sbin/tcpdmatch base-netutil-bin +./usr/sbin/tcpdrop base-netutil-bin +./usr/sbin/tcpdump base-netutil-bin +./usr/sbin/timed base-timed-bin +./usr/sbin/timedc base-timed-bin +./usr/sbin/tprof base-sysutil-bin +./usr/sbin/traceroute base-netutil-bin +./usr/sbin/traceroute6 base-netutil-bin use_inet6 +./usr/sbin/trpt base-netutil-bin +./usr/sbin/trsp base-obsolete obsolete +./usr/sbin/unlink base-sysutil-bin +./usr/sbin/update base-obsolete obsolete +./usr/sbin/usbdevs base-sysutil-bin +./usr/sbin/user base-sysutil-bin +./usr/sbin/useradd base-sysutil-bin +./usr/sbin/userdel base-sysutil-bin +./usr/sbin/userinfo base-sysutil-bin +./usr/sbin/usermod base-sysutil-bin +./usr/sbin/uuchk base-obsolete obsolete +./usr/sbin/veriexecgen base-sysutil-bin +./usr/sbin/vipw base-sysutil-bin +./usr/sbin/vnconfig base-sysutil-bin +./usr/sbin/wake base-obsolete obsolete +./usr/sbin/wakeonlan base-netutil-bin +./usr/sbin/wiconfig base-sysutil-bin +./usr/sbin/wire-test base-netutil-bin +./usr/sbin/wlanctl base-sysutil-bin +./usr/sbin/wpa_cli base-sysutil-bin +./usr/sbin/wpa_passphrase base-sysutil-bin +./usr/sbin/wpa_supplicant base-sysutil-bin +./usr/sbin/wsconscfg base-sysutil-bin +./usr/sbin/wsfontload base-sysutil-bin +./usr/sbin/wsmoused base-sysutil-bin +./usr/sbin/wsmuxctl base-sysutil-bin +./usr/sbin/xntpd base-obsolete obsolete +./usr/sbin/xntpdc base-obsolete obsolete +./usr/sbin/ypbind base-nis-bin yp +./usr/sbin/ypinit base-nis-bin yp +./usr/sbin/yppoll base-nis-bin yp +./usr/sbin/yppush base-nis-bin yp +./usr/sbin/ypserv base-nis-bin yp +./usr/sbin/ypset base-nis-bin yp +./usr/sbin/yptest base-nis-bin yp +./usr/sbin/ypxfr base-nis-bin yp +./usr/sbin/zdb base-zfs-bin zfs +./usr/sbin/zdump base-sysutil-bin +./usr/sbin/zic base-sysutil-bin +./usr/share base-sys-share +./usr/share/atf base-atf-share +./usr/share/atf/atf-run.hooks base-atf-bin share,atf +./usr/share/atf/atf.config.subr base-obsolete obsolete +./usr/share/atf/atf.footer.subr base-obsolete obsolete +./usr/share/atf/atf.header.subr base-obsolete obsolete +./usr/share/atf/atf.init.subr base-obsolete obsolete +./usr/share/atf/libatf-sh.subr base-atf-share atf,share +./usr/share/calendar base-calendar-share +./usr/share/calendar/calendar.birthday base-calendar-share share +./usr/share/calendar/calendar.christian base-calendar-share share +./usr/share/calendar/calendar.computer base-calendar-share share +./usr/share/calendar/calendar.history base-calendar-share share +./usr/share/calendar/calendar.holiday base-calendar-share share +./usr/share/calendar/calendar.judaic base-calendar-share share +./usr/share/calendar/calendar.lotr base-calendar-share share +./usr/share/calendar/calendar.music base-calendar-share share +./usr/share/calendar/calendar.netbsd base-calendar-share share +./usr/share/calendar/calendar.usholiday base-calendar-share share +./usr/share/dhcpd base-dhcpd-bin +./usr/share/dhcpd/pxe.defs base-dhcpd-bin share +./usr/share/dict base-reference-share +./usr/share/dict/papers base-reference-share +./usr/share/dict/special base-reference-share +./usr/share/doc base-sys-share +./usr/share/doc/html base-htmldoc-share +./usr/share/doc/html/bind9 base-htmldoc-share +./usr/share/doc/html/bind9/arm base-htmldoc-share +./usr/share/doc/html/bzip2 base-htmldoc-share +./usr/share/doc/html/ntp/hints base-obsolete obsolete +./usr/share/doc/html/postfix base-htmldoc-share +./usr/share/doc/psd base-psd-share +./usr/share/doc/psd/01.cacm base-psd-share +./usr/share/doc/psd/02.implement base-psd-share +./usr/share/doc/psd/03.iosys base-psd-share +./usr/share/doc/psd/04.uprog base-psd-share +./usr/share/doc/psd/05.sysman base-psd-share +./usr/share/doc/psd/06.Clang base-psd-share +./usr/share/doc/psd/07.pascal base-psd-share +./usr/share/doc/psd/08.f77 base-psd-share +./usr/share/doc/psd/09.f77io base-psd-share +./usr/share/doc/psd/10.gdb base-psd-share +./usr/share/doc/psd/11.adb base-psd-share +./usr/share/doc/psd/12.make base-psd-share +./usr/share/doc/psd/13.rcs base-psd-share +./usr/share/doc/psd/14.sccs base-psd-share +./usr/share/doc/psd/15.yacc base-psd-share +./usr/share/doc/psd/16.lex base-psd-share +./usr/share/doc/psd/17.m4 base-psd-share +./usr/share/doc/psd/18.gprof base-psd-share +./usr/share/doc/psd/19.curses base-psd-share +./usr/share/doc/psd/20.ipctut base-psd-share +./usr/share/doc/psd/21.ipc base-psd-share +./usr/share/doc/smm base-smm-share +./usr/share/doc/smm/01.setup base-smm-share +./usr/share/doc/smm/01.setup/tahoe base-obsolete obsolete +./usr/share/doc/smm/01.setup/vax base-obsolete obsolete +./usr/share/doc/smm/02.config base-smm-share +./usr/share/doc/smm/03.fsck_ffs base-smm-share +./usr/share/doc/smm/04.quotas base-smm-share +./usr/share/doc/smm/05.fastfs base-smm-share +./usr/share/doc/smm/06.nfs base-smm-share +./usr/share/doc/smm/07.lpd base-smm-share +./usr/share/doc/smm/08.sendmailop base-obsolete obsolete +./usr/share/doc/smm/09.sendmail base-obsolete obsolete +./usr/share/doc/smm/10.named base-obsolete obsolete +./usr/share/doc/smm/11.timedop base-smm-share +./usr/share/doc/smm/12.timed base-smm-share +./usr/share/doc/smm/13.amd base-smm-share +./usr/share/doc/smm/14.uucpimpl base-obsolete obsolete +./usr/share/doc/smm/15.uucpnet base-obsolete obsolete +./usr/share/doc/smm/16.security base-smm-share +./usr/share/doc/smm/17.password base-smm-share +./usr/share/doc/smm/18.net base-smm-share +./usr/share/doc/usd base-usd-share +./usr/share/doc/usd/01.begin base-usd-share +./usr/share/doc/usd/02.learn base-usd-share +./usr/share/doc/usd/03.shell base-usd-share +./usr/share/doc/usd/04.csh base-usd-share +./usr/share/doc/usd/05.dc base-usd-share +./usr/share/doc/usd/06.bc base-usd-share +./usr/share/doc/usd/07.mail base-usd-share +./usr/share/doc/usd/08.mh base-usd-share +./usr/share/doc/usd/09.edtut base-usd-share +./usr/share/doc/usd/10.edadv base-usd-share +./usr/share/doc/usd/11.edit base-usd-share +./usr/share/doc/usd/12.ex base-usd-share +./usr/share/doc/usd/12.vi base-usd-share +./usr/share/doc/usd/13.ex base-obsolete obsolete +./usr/share/doc/usd/13.ex/Makefile base-obsolete obsolete +./usr/share/doc/usd/13.ex/ex.rm base-obsolete obsolete +./usr/share/doc/usd/13.ex/ex.summary base-obsolete obsolete +./usr/share/doc/usd/13.viref base-usd-share +./usr/share/doc/usd/14.jove base-usd-share +./usr/share/doc/usd/15.sed base-usd-share +./usr/share/doc/usd/16.awk base-usd-share +./usr/share/doc/usd/17.msmacros base-usd-share +./usr/share/doc/usd/18.msdiffs base-usd-share +./usr/share/doc/usd/19.memacros base-usd-share +./usr/share/doc/usd/20.meref base-usd-share +./usr/share/doc/usd/21.troff base-usd-share +./usr/share/doc/usd/22.trofftut base-usd-share +./usr/share/doc/usd/23.eqn base-usd-share +./usr/share/doc/usd/24.eqnguide base-usd-share +./usr/share/doc/usd/25.tbl base-usd-share +./usr/share/doc/usd/26.refer base-usd-share +./usr/share/doc/usd/27.invert base-usd-share +./usr/share/doc/usd/28.bib base-usd-share +./usr/share/doc/usd/29.diction base-usd-share +./usr/share/doc/usd/30.rogue base-usd-share +./usr/share/doc/usd/31.trek base-usd-share +./usr/share/examples base-sys-share +./usr/share/examples/amd base-amd-examples +./usr/share/examples/apm base-sys-examples +./usr/share/examples/dhcp base-dhcpd-examples +./usr/share/examples/disktab base-sys-examples +./usr/share/examples/emul base-sys-examples +./usr/share/examples/emul/linux base-sys-examples +./usr/share/examples/emul/linux/etc base-sys-examples +./usr/share/examples/emul/svr4 base-sys-examples +./usr/share/examples/emul/svr4/etc base-sys-examples +./usr/share/examples/emul/ultrix base-sys-examples +./usr/share/examples/emul/ultrix/etc base-sys-examples +./usr/share/examples/fstab base-fstab-examples +./usr/share/examples/ftpd base-netutil-examples +./usr/share/examples/getdate base-sys-examples +./usr/share/examples/hostapd base-netutil-examples +./usr/share/examples/ipf base-netutil-examples +./usr/share/examples/isdn base-isdn-examples +./usr/share/examples/kerberos base-krb5-examples +./usr/share/examples/lua base-sys-examples share +./usr/share/examples/lua/README base-sys-examples share +./usr/share/examples/lua/gpio.lua base-sys-examples share +./usr/share/examples/lua/sqlite.lua base-sys-examples share +./usr/share/examples/mount_portal base-miscfs-examples +./usr/share/examples/named base-obsolete obsolete +./usr/share/examples/npf base-netutil-examples +./usr/share/examples/npf/host-npf.conf base-netutil-examples +./usr/share/examples/npf/soho_gw-npf.conf base-netutil-examples +./usr/share/examples/npf/hashtablefile base-netutil-examples +./usr/share/examples/npf/treetablefile base-netutil-examples +./usr/share/examples/openssl base-crypto-examples +./usr/share/examples/pf base-netutil-examples +./usr/share/examples/postfix base-postfix-examples +./usr/share/examples/racoon base-netutil-examples +./usr/share/examples/racoon/roadwarrior base-netutil-examples +./usr/share/examples/racoon/roadwarrior/client base-netutil-examples +./usr/share/examples/racoon/roadwarrior/server base-netutil-examples +./usr/share/examples/rtadvd base-router-examples +./usr/share/examples/smbfs base-sysutil-examples +./usr/share/examples/supfiles base-sup-examples +./usr/share/examples/syslogd base-sysutil-examples +./usr/share/examples/veriexecctl base-obsolete obsolete +./usr/share/examples/veriexecctl/fpgen.sh base-obsolete obsolete +./usr/share/examples/veriexecctl/gen_md5 base-obsolete obsolete +./usr/share/examples/veriexecctl/gen_rmd160 base-obsolete obsolete +./usr/share/examples/veriexecctl/gen_sha1 base-obsolete obsolete +./usr/share/examples/verifiedexec_load base-obsolete obsolete +./usr/share/examples/verifiedexec_load/gen_md5 base-obsolete obsolete +./usr/share/examples/verifiedexec_load/gen_sha1 base-obsolete obsolete +./usr/share/examples/wsmoused base-sysutil-examples +./usr/share/examples/wsmoused/wsmoused.conf base-sysutil-examples share +./usr/share/games base-games-share +./usr/share/games/atc base-games-share +./usr/share/games/boggle base-games-share +./usr/share/games/ching base-games-share +./usr/share/games/fortune base-games-share +./usr/share/games/larn base-games-share +./usr/share/games/quiz.db base-games-share +./usr/share/gnats base-gnats-share +./usr/share/gnats/netbsd base-gnats-share share +./usr/share/gnats/send-pr.el base-gnats-share share +./usr/share/groff_font base-groff-font +./usr/share/groff_font/devX100 base-groff-font +./usr/share/groff_font/devX100-12 base-groff-font +./usr/share/groff_font/devX75 base-groff-font +./usr/share/groff_font/devX75-12 base-groff-font +./usr/share/groff_font/devascii base-groff-font +./usr/share/groff_font/devcp1047 base-groff-font +./usr/share/groff_font/devdvi base-groff-font +./usr/share/groff_font/devdvi/generate base-groff-font +./usr/share/groff_font/devhtml base-groff-font +./usr/share/groff_font/devkoi8-r base-groff-font +./usr/share/groff_font/devlatin1 base-groff-font +./usr/share/groff_font/devlbp base-groff-font +./usr/share/groff_font/devlj4 base-groff-font +./usr/share/groff_font/devlj4/generate base-groff-font +./usr/share/groff_font/devps base-groff-font +./usr/share/groff_font/devps/generate base-groff-font +./usr/share/groff_font/devutf8 base-groff-font +./usr/share/i18n base-sysutil-share +./usr/share/i18n/csmapper base-sysutil-share +./usr/share/i18n/csmapper/APPLE base-sysutil-share +./usr/share/i18n/csmapper/APPLE/CELTIC%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/CENTEURO%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/CROATIAN%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/CYRILLIC%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/DINGBATS%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/GAELIC%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/GREEK%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/ICELAND%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/INUIT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/ROMAN%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/ROMANIAN%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/THAI%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/TURKISH%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%CELTIC.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%CENTEURO.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%CROATIAN.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%CYRILLIC.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%DINGBATS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%GAELIC.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%GREEK.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%ICELAND.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%INUIT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%ROMAN.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%ROMANIAN.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%THAI.mps base-sysutil-share nls +./usr/share/i18n/csmapper/APPLE/UCS%TURKISH.mps base-sysutil-share nls +./usr/share/i18n/csmapper/AST base-sysutil-share +./usr/share/i18n/csmapper/AST/ARMSCII-7%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/AST/ARMSCII-8%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/AST/ARMSCII-8A%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/AST/UCS%ARMSCII-7.mps base-sysutil-share nls +./usr/share/i18n/csmapper/AST/UCS%ARMSCII-8.mps base-sysutil-share nls +./usr/share/i18n/csmapper/AST/UCS%ARMSCII-8A.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5 base-sysutil-share +./usr/share/i18n/csmapper/BIG5/Big5@1984%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/Big5EXT@2003%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/Big5EXT@E%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/Big5EXT@ETen%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/BIG5/Big5EXT@IBM%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/Big5EXT@Plus%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/Big5UDA%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/ETen%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/ETen%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/HKSCS%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/HKSCS%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS%Big5@1984.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS%Big5EXT@2003.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS%Big5EXT@E.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS%Big5EXT@ETen.mps base-obsolete obsolete +./usr/share/i18n/csmapper/BIG5/UCS%Big5EXT@IBM.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS%Big5EXT@Plus.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS%Big5UDA.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS@BMP%ETen.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS@BMP%HKSCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS@SIP%ETen.mps base-sysutil-share nls +./usr/share/i18n/csmapper/BIG5/UCS@SIP%HKSCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CBM base-sysutil-share +./usr/share/i18n/csmapper/CBM/CBMINT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CBM/UCS%CBMINT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS base-sysutil-share +./usr/share/i18n/csmapper/CNS/CNS11643-1%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-2%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-3%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/CNS/CNS11643-3%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-3%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-4%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-4%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-5%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-5%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-6%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-6%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-7%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/CNS11643-7%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS%CNS11643-1.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS%CNS11643-2.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS%CNS11643-3.mps base-obsolete obsolete +./usr/share/i18n/csmapper/CNS/UCS@BMP%CNS11643-3.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@BMP%CNS11643-4.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@BMP%CNS11643-5.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@BMP%CNS11643-6.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@BMP%CNS11643-7.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@SIP%CNS11643-3.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@SIP%CNS11643-4.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@SIP%CNS11643-5.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@SIP%CNS11643-6.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CNS/UCS@SIP%CNS11643-7.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP base-sysutil-share +./usr/share/i18n/csmapper/CP/CP037%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP038%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP10000%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP10006%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP10007%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP10029%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1006%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP10079%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP10081%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1026%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1046%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1124%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1125%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1129%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1131%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1133%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1140%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1141%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1142%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1143%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1144%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1145%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1146%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1147%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1148%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1149%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1161%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1162%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1163%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1250%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1251%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1252%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1253%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1254%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1255%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1256%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1257%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP1258%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP273%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP274%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP275%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP277%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP278%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP280%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP281%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP284%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP285%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP290%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP297%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP420%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP423%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP424%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP437%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP500%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP737%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP775%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP850%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP851%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP852%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP853%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP855%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP856%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP857%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP858%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP860%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP861%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP862%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP863%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP864%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP865%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP866%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP868%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP869%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP870%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP871%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP874%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP875%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP880%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP891%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP903%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP904%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP905%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP918%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP922%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP932EXT%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/CP/CP932UDA%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP932VDC@IBM%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP932VDC@NEC_IBM%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP936EXT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP942EXT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP942VDC@IBM%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/CP/CP949EXT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/CP950%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP037.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP038.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP10000.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP10006.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP10007.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP10029.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1006.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP10079.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP10081.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1026.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1046.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1124.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1125.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1129.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1131.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1133.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1140.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1141.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1142.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1143.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1144.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1145.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1146.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1147.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1148.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1149.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1161.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1162.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1163.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1250.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1251.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1252.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1253.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1254.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1255.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1256.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1257.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP1258.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP273.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP274.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP275.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP277.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP278.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP280.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP281.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP284.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP285.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP290.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP297.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP420.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP423.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP424.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP437.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP500.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP737.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP775.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP850.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP851.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP852.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP853.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP855.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP856.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP857.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP858.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP860.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP861.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP862.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP863.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP864.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP865.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP866.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP868.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP869.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP870.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP871.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP874.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP875.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP880.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP891.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP903.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP904.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP905.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP918.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP922.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP932EXT.mps base-obsolete obsolete +./usr/share/i18n/csmapper/CP/UCS%CP932UDA.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP932VDC@IBM.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP932VDC@NEC_IBM.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP936EXT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP942EXT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP942VDC@IBM.mps base-obsolete obsolete +./usr/share/i18n/csmapper/CP/UCS%CP949EXT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/CP/UCS%CP950.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC base-sysutil-share +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-AT-DE%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-AT-DE-A%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-CA-FR%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-DK-NO%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-DK-NO-A%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-ES%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-ES-A%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-ES-S%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-FI-SE%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-FI-SE-A%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-FR%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-IT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-PT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-UK%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/EBCDIC-US%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-AT-DE-A.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-AT-DE.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-CA-FR.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-DK-NO-A.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-DK-NO.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-ES-A.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-ES-S.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-ES.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-FI-SE-A.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-FI-SE.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-FR.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-IT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-PT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-UK.mps base-sysutil-share nls +./usr/share/i18n/csmapper/EBCDIC/UCS%EBCDIC-US.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB base-sysutil-share +./usr/share/i18n/csmapper/GB/GB12345%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/GB18030%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/GB2312%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/GB2312EXT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/GB2312UDA1%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/GB2312UDA2%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/GBKEXT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/GBKUDA%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/ISO-IR-165EXT%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS%GB12345.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS%GB2312.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS%GB2312EXT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS%GB2312UDA1.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS%GB2312UDA2.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS%GBKEXT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS%GBKUDA.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS%ISO-IR-165EXT.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GB/UCS@BMP%GB18030.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GEORGIAN base-sysutil-share +./usr/share/i18n/csmapper/GEORGIAN/GEORGIAN-ACADEMY%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GEORGIAN/GEORGIAN-ACADEMY@OldCapital%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GEORGIAN/GEORGIAN-PS%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GEORGIAN/GEORGIAN-PS@OldCapital%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GEORGIAN/UCS%GEORGIAN-ACADEMY.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GEORGIAN/UCS%GEORGIAN-ACADEMY@OldCapital.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GEORGIAN/UCS%GEORGIAN-PS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/GEORGIAN/UCS%GEORGIAN-PS@OldCapital.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859 base-sysutil-share +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-10%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-11%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-13%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-14%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-15%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-16%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-2%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-3%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-4%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-5%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-6%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-7%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-8%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/ISO-8859-9%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-10.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-11.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-13.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-14.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-15.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-16.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-2.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-3.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-4.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-5.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-6.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-7.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-8.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO-8859/UCS%ISO-8859-9.mps base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646 base-sysutil-share +./usr/share/i18n/csmapper/ISO646/ISO646-BASIC@1983%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-CA%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-CA2%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-CN%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-CU%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-DE%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-DK%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-ES%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-ES2%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-FR%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-FR1%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-GB%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-HU%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-IRV@1983%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-IT%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-JP%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-JP-OCR-B%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-KR%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-NO%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-NO2%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-PT%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-PT2%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-SE%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-SE2%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-US%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/ISO646/ISO646-YU%UCS.646 base-sysutil-share nls +./usr/share/i18n/csmapper/JIS base-sysutil-share +./usr/share/i18n/csmapper/JIS/JISX0201-KANA%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0208@1978%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0208@1990%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0208@MS%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0208UDC%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0208VDC@NEC%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0212%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0212@MS%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0212UDC%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0212VDC@IBM%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0213-1%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0213-1%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0213-2%UCS@BMP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/JISX0213-2%UCS@SIP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0201-KANA.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0208@1978.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0208@1990.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0208@MS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0208UDC.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0208VDC@NEC.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0212.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0212@MS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0212UDC.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS%JISX0212VDC@IBM.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS@BMP%JISX0213-1.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS@BMP%JISX0213-2.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS@SIP%JISX0213-1.mps base-sysutil-share nls +./usr/share/i18n/csmapper/JIS/UCS@SIP%JISX0213-2.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KAZAKH base-sysutil-share +./usr/share/i18n/csmapper/KAZAKH/KZ1048%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KAZAKH/PTCP154%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KAZAKH/UCS%KZ1048.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KAZAKH/UCS%PTCP154.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI base-sysutil-share +./usr/share/i18n/csmapper/KOI/GOST19768-74%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/ISO-5427%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/KOI7%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/KOI8%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/KOI8-BASE%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/KOI/KOI8-C%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/KOI8-E%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/KOI8-R%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/KOI8-RU%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/KOI8-T%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/KOI8-U%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%GOST19768-74.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%ISO-5427.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%KOI7.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%KOI8-BASE.mps base-obsolete obsolete +./usr/share/i18n/csmapper/KOI/UCS%KOI8-C.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%KOI8-E.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%KOI8-R.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%KOI8-RU.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%KOI8-T.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%KOI8-U.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KOI/UCS%KOI8.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KS base-sysutil-share +./usr/share/i18n/csmapper/KS/JOHAB%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KS/KSC5601%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/KS/KSC5601HANGUL%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KS/KSC5601HANJA%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KS/UCS%JOHAB.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KS/UCS%KSC5601.mps base-obsolete obsolete +./usr/share/i18n/csmapper/KS/UCS%KSC5601HANGUL.mps base-sysutil-share nls +./usr/share/i18n/csmapper/KS/UCS%KSC5601HANJA.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC base-sysutil-share +./usr/share/i18n/csmapper/MISC/ATARIST%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/Big5%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/MISC/DECMCS%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/HP-ROMAN8%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/KOI8-R%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/MISC/KOI8-U%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/MISC/MULELAO-1%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/NEXTSTEP%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/PTCP154%UCS.mps base-obsolete obsolete +./usr/share/i18n/csmapper/MISC/RISCOS-LATIN1%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/TDS565%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/UCS%ATARIST.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/UCS%Big5.mps base-obsolete obsolete +./usr/share/i18n/csmapper/MISC/UCS%DECMCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/UCS%HP-ROMAN8.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/UCS%KOI8-R.mps base-obsolete obsolete +./usr/share/i18n/csmapper/MISC/UCS%KOI8-U.mps base-obsolete obsolete +./usr/share/i18n/csmapper/MISC/UCS%MULELAO-1.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/UCS%NEXTSTEP.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/UCS%PTCP154.mps base-obsolete obsolete +./usr/share/i18n/csmapper/MISC/UCS%RISCOS-LATIN1.mps base-sysutil-share nls +./usr/share/i18n/csmapper/MISC/UCS%TDS565.mps base-sysutil-share nls +./usr/share/i18n/csmapper/TCVN base-sysutil-share +./usr/share/i18n/csmapper/TCVN/TCVN5712-1%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/TCVN/UCS%TCVN5712-1.mps base-sysutil-share nls +./usr/share/i18n/csmapper/TCVN/UCS%VISCII.mps base-sysutil-share nls +./usr/share/i18n/csmapper/TCVN/VISCII%UCS.mps base-sysutil-share nls +./usr/share/i18n/csmapper/charset.pivot base-sysutil-share nls +./usr/share/i18n/csmapper/charset.pivot.pvdb base-sysutil-share nls +./usr/share/i18n/csmapper/mapper.dir base-sysutil-share nls +./usr/share/i18n/csmapper/mapper.dir.db base-sysutil-share nls +./usr/share/i18n/esdb base-sysutil-share +./usr/share/i18n/esdb/APPLE base-sysutil-share +./usr/share/i18n/esdb/APPLE/MACCELTIC.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACCENTEURO.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACCROATIAN.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACCYRILLIC.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACDINGBATS.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACGAELIC.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACGREEK.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACICELAND.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACINUIT.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACROMAN.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACROMANIAN.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACTHAI.esdb base-sysutil-share nls +./usr/share/i18n/esdb/APPLE/MACTURKISH.esdb base-sysutil-share nls +./usr/share/i18n/esdb/AST base-sysutil-share +./usr/share/i18n/esdb/AST/ARMSCII-7.esdb base-sysutil-share nls +./usr/share/i18n/esdb/AST/ARMSCII-8.esdb base-sysutil-share nls +./usr/share/i18n/esdb/AST/ARMSCII-8A.esdb base-sysutil-share nls +./usr/share/i18n/esdb/BIG5 base-sysutil-share +./usr/share/i18n/esdb/BIG5/Big5-2003.esdb base-sysutil-share nls +./usr/share/i18n/esdb/BIG5/Big5-E.esdb base-sysutil-share nls +./usr/share/i18n/esdb/BIG5/Big5-ETen.esdb base-sysutil-share nls +./usr/share/i18n/esdb/BIG5/Big5-HKSCS.esdb base-sysutil-share nls +./usr/share/i18n/esdb/BIG5/Big5-IBM.esdb base-sysutil-share nls +./usr/share/i18n/esdb/BIG5/Big5-Plus.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CBM base-sysutil-share +./usr/share/i18n/esdb/CBM/CBMINT.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP base-sysutil-share +./usr/share/i18n/esdb/CP/CP037.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP038.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP10000.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP10006.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP10007.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP10029.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1006.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP10079.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP10081.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1026.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1046.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1124.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1125.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1129.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1131.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1133.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1140.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1141.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1142.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1143.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1144.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1145.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1146.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1147.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1148.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1149.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1161.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1162.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1163.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1250.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1251.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1252.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1253.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1254.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1255.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1256.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1257.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP1258.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP273.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP274.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP275.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP277.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP278.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP280.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP281.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP284.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP285.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP290.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP297.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP420.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP423.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP424.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP437.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP500.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP50220.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP50221.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP50222.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP51932.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP737.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP775.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP850.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP851.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP852.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP853.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP855.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP856.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP857.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP858.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP860.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP861.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP862.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP863.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP864.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP865.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP866.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP868.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP869.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP870.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP871.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP874.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP875.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP880.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP891.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP903.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP904.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP905.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP918.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP922.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP932.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP936.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP942.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP942C.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP943.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP943C.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP949.esdb base-sysutil-share nls +./usr/share/i18n/esdb/CP/CP950.esdb base-sysutil-share nls +./usr/share/i18n/esdb/DEC base-sysutil-share +./usr/share/i18n/esdb/DEC/DECHanyu.esdb base-sysutil-share nls +./usr/share/i18n/esdb/DEC/DECMCS.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC base-sysutil-share +./usr/share/i18n/esdb/EBCDIC/EBCDIC-AT-DE-A.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-AT-DE.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-CA-FR.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-DK-NO-A.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-DK-NO.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-ES-A.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-ES-S.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-ES.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-FI-SE-A.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-FI-SE.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-FR.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-IT.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-PT.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-UK.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EBCDIC/EBCDIC-US.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EUC base-sysutil-share +./usr/share/i18n/esdb/EUC/EUC-CN.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EUC/EUC-JIS-2004.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EUC/EUC-JP-MS.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EUC/EUC-JP.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EUC/EUC-KR.esdb base-sysutil-share nls +./usr/share/i18n/esdb/EUC/EUC-TW.esdb base-sysutil-share nls +./usr/share/i18n/esdb/GB base-sysutil-share +./usr/share/i18n/esdb/GB/GB12345.esdb base-sysutil-share nls +./usr/share/i18n/esdb/GB/GB18030.esdb base-sysutil-share nls +./usr/share/i18n/esdb/GB/GBK.esdb base-sysutil-share nls +./usr/share/i18n/esdb/GEORGIAN base-sysutil-share +./usr/share/i18n/esdb/GEORGIAN/GEORGIAN-ACADEMY-OldCapital.esdb base-sysutil-share nls +./usr/share/i18n/esdb/GEORGIAN/GEORGIAN-ACADEMY.esdb base-sysutil-share nls +./usr/share/i18n/esdb/GEORGIAN/GEORGIAN-PS-OldCapital.esdb base-sysutil-share nls +./usr/share/i18n/esdb/GEORGIAN/GEORGIAN-PS.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-2022 base-sysutil-share +./usr/share/i18n/esdb/ISO-2022/ISO-2022-CN-EXT.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-2022/ISO-2022-CN.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-2022/ISO-2022-JP-1.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-2022/ISO-2022-JP-2.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-2022/ISO-2022-JP-2004.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-2022/ISO-2022-JP.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-2022/ISO-2022-KR.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859 base-sysutil-share +./usr/share/i18n/esdb/ISO-8859/ISO-8859-1.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-10.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-11.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-13.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-14.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-15.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-16.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-2.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-3.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-4.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-5.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-6.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-7.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-8.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO-8859/ISO-8859-9.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646 base-sysutil-share +./usr/share/i18n/esdb/ISO646/ISO646-BASIC@1983.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-CA.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-CA2.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-CN.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-CU.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-DE.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-DK.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-ES.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-ES2.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-FR.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-FR1.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-GB.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-HU.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-IRV@1983.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-IT.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-JP-OCR-B.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-JP.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-KR.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-NO.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-NO2.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-PT.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-PT2.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-SE.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-SE2.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-US.esdb base-sysutil-share nls +./usr/share/i18n/esdb/ISO646/ISO646-YU.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KAZAKH base-sysutil-share +./usr/share/i18n/esdb/KAZAKH/KZ1048.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KAZAKH/PTCP154.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI base-sysutil-share +./usr/share/i18n/esdb/KOI/KOI7-switched.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI/KOI7.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI/KOI8-C.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI/KOI8-E.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI/KOI8-R.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI/KOI8-RU.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI/KOI8-T.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI/KOI8-U.esdb base-sysutil-share nls +./usr/share/i18n/esdb/KOI/KOI8.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC base-sysutil-share +./usr/share/i18n/esdb/MISC/ATARIST.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/Big5.esdb base-obsolete obsolete +./usr/share/i18n/esdb/MISC/C99.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/CTEXT.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/GB18030.esdb base-obsolete obsolete +./usr/share/i18n/esdb/MISC/GBK.esdb base-obsolete obsolete +./usr/share/i18n/esdb/MISC/HP-ROMAN8.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/HZ.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/HZ8.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/JAVA.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/JOHAB.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/KOI8-R.esdb base-obsolete obsolete +./usr/share/i18n/esdb/MISC/KOI8-U.esdb base-obsolete obsolete +./usr/share/i18n/esdb/MISC/MULELAO-1.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/NEXTSTEP.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/PTCP154.esdb base-obsolete obsolete +./usr/share/i18n/esdb/MISC/RISCOS-LATIN1.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/Shift_JIS-2004.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/Shift_JIS.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/TDS565.esdb base-sysutil-share nls +./usr/share/i18n/esdb/MISC/ZW.esdb base-sysutil-share nls +./usr/share/i18n/esdb/TCVN base-sysutil-share +./usr/share/i18n/esdb/TCVN/TCVN5712-1.esdb base-sysutil-share nls +./usr/share/i18n/esdb/TCVN/VIQR.esdb base-sysutil-share nls +./usr/share/i18n/esdb/TCVN/VISCII.esdb base-sysutil-share nls +./usr/share/i18n/esdb/UTF base-sysutil-share +./usr/share/i18n/esdb/UTF/UTF-16.esdb base-sysutil-share nls +./usr/share/i18n/esdb/UTF/UTF-16BE.esdb base-sysutil-share nls +./usr/share/i18n/esdb/UTF/UTF-16LE.esdb base-sysutil-share nls +./usr/share/i18n/esdb/UTF/UTF-32.esdb base-sysutil-share nls +./usr/share/i18n/esdb/UTF/UTF-32BE.esdb base-sysutil-share nls +./usr/share/i18n/esdb/UTF/UTF-32LE.esdb base-sysutil-share nls +./usr/share/i18n/esdb/UTF/UTF-7.esdb base-sysutil-share nls +./usr/share/i18n/esdb/UTF/UTF-8.esdb base-sysutil-share nls +./usr/share/i18n/esdb/esdb.alias base-sysutil-share nls +./usr/share/i18n/esdb/esdb.alias.db base-sysutil-share nls +./usr/share/i18n/esdb/esdb.dir base-sysutil-share nls +./usr/share/i18n/esdb/esdb.dir.db base-sysutil-share nls +./usr/share/i18n/iconv base-sysutil-share +./usr/share/i18n/iconv/iconv.dir base-sysutil-share nls +./usr/share/info base-texinfo-share +./usr/share/keymaps base-sys-share +./usr/share/keymaps/amiga base-sys-share +./usr/share/keymaps/atari base-sys-share +./usr/share/keymaps/x68k base-sys-share +./usr/share/ldscripts base-obsolete obsolete +./usr/share/legal base-sys-share +./usr/share/legal/COPYRIGHT base-sys-share share +./usr/share/lkm base-obsolete obsolete +./usr/share/lkm/README base-obsolete obsolete +./usr/share/lkm/misc base-obsolete obsolete +./usr/share/lkm/misc/Makefile base-obsolete obsolete +./usr/share/lkm/misc/README base-obsolete obsolete +./usr/share/lkm/misc/module base-obsolete obsolete +./usr/share/lkm/misc/module/Makefile base-obsolete obsolete +./usr/share/lkm/misc/module/misccall.c base-obsolete obsolete +./usr/share/lkm/misc/module/miscmod.c base-obsolete obsolete +./usr/share/lkm/misc/test base-obsolete obsolete +./usr/share/lkm/misc/test/Makefile base-obsolete obsolete +./usr/share/lkm/misc/test/testmisc.c base-obsolete obsolete +./usr/share/lkm/syscall base-obsolete obsolete +./usr/share/lkm/syscall/Makefile base-obsolete obsolete +./usr/share/lkm/syscall/README base-obsolete obsolete +./usr/share/lkm/syscall/module base-obsolete obsolete +./usr/share/lkm/syscall/module/Makefile base-obsolete obsolete +./usr/share/lkm/syscall/module/mycall.c base-obsolete obsolete +./usr/share/lkm/syscall/module/newsyscall.c base-obsolete obsolete +./usr/share/lkm/syscall/test base-obsolete obsolete +./usr/share/lkm/syscall/test/Makefile base-obsolete obsolete +./usr/share/lkm/syscall/test/testsyscall.c base-obsolete obsolete +./usr/share/lkm/vfs base-obsolete obsolete +./usr/share/lkm/vfs/Makefile base-obsolete obsolete +./usr/share/lkm/vfs/README base-obsolete obsolete +./usr/share/lkm/vfs/module base-obsolete obsolete +./usr/share/lkm/vfs/module/Makefile base-obsolete obsolete +./usr/share/lkm/vfs/module/kernfsmod.c base-obsolete obsolete +./usr/share/locale base-locale-share +./usr/share/locale/af_ZA.ISO8859-1 base-locale-af +./usr/share/locale/af_ZA.ISO8859-1/LC_CTYPE base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-1/LC_MESSAGES base-locale-af +./usr/share/locale/af_ZA.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-1/LC_MONETARY base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-1/LC_NUMERIC base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-1/LC_TIME base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-15 base-locale-af +./usr/share/locale/af_ZA.ISO8859-15/LC_CTYPE base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-15/LC_MESSAGES base-locale-af +./usr/share/locale/af_ZA.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-15/LC_MONETARY base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-15/LC_NUMERIC base-locale-af nls +./usr/share/locale/af_ZA.ISO8859-15/LC_TIME base-locale-af nls +./usr/share/locale/be base-locale-be +./usr/share/locale/be/LC_MESSAGES base-locale-be +./usr/share/locale/be_BY.CP1251 base-locale-be +./usr/share/locale/be_BY.CP1251/LC_CTYPE base-locale-be nls +./usr/share/locale/be_BY.CP1251/LC_MESSAGES base-locale-be +./usr/share/locale/be_BY.CP1251/LC_MESSAGES/SYS_LC_MESSAGES base-locale-be nls +./usr/share/locale/be_BY.CP1251/LC_MONETARY base-locale-be nls +./usr/share/locale/be_BY.CP1251/LC_NUMERIC base-locale-be nls +./usr/share/locale/be_BY.CP1251/LC_TIME base-locale-be nls +./usr/share/locale/be_BY.ISO8859-5 base-locale-be +./usr/share/locale/be_BY.ISO8859-5/LC_CTYPE base-locale-be nls +./usr/share/locale/be_BY.ISO8859-5/LC_MESSAGES base-locale-be +./usr/share/locale/be_BY.ISO8859-5/LC_MESSAGES/SYS_LC_MESSAGES base-locale-be nls +./usr/share/locale/be_BY.ISO8859-5/LC_MONETARY base-locale-be nls +./usr/share/locale/be_BY.ISO8859-5/LC_NUMERIC base-locale-be nls +./usr/share/locale/be_BY.ISO8859-5/LC_TIME base-locale-be nls +./usr/share/locale/bg_BG.CP1251 base-locale-bg +./usr/share/locale/bg_BG.CP1251/LC_CTYPE base-locale-bg nls +./usr/share/locale/bg_BG.CP1251/LC_MESSAGES base-locale-bg +./usr/share/locale/bg_BG.CP1251/LC_MESSAGES/SYS_LC_MESSAGES base-locale-bg nls +./usr/share/locale/bg_BG.CP1251/LC_MONETARY base-locale-bg nls +./usr/share/locale/bg_BG.CP1251/LC_NUMERIC base-locale-bg nls +./usr/share/locale/bg_BG.CP1251/LC_TIME base-locale-bg nls +./usr/share/locale/ca base-locale-ca +./usr/share/locale/ca/LC_MESSAGES base-locale-ca +./usr/share/locale/ca_ES.ISO8859-1 base-locale-ca +./usr/share/locale/ca_ES.ISO8859-1/LC_CTYPE base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-1/LC_MESSAGES base-locale-ca +./usr/share/locale/ca_ES.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-1/LC_MONETARY base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-1/LC_NUMERIC base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-1/LC_TIME base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-15 base-locale-ca +./usr/share/locale/ca_ES.ISO8859-15/LC_CTYPE base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-15/LC_MESSAGES base-locale-ca +./usr/share/locale/ca_ES.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-15/LC_MONETARY base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-15/LC_NUMERIC base-locale-ca nls +./usr/share/locale/ca_ES.ISO8859-15/LC_TIME base-locale-ca nls +./usr/share/locale/cs base-locale-cs +./usr/share/locale/cs/LC_MESSAGES base-locale-cs +./usr/share/locale/cs/LC_MESSAGES/grep.mo base-util_locale-cs nls,!bsdgrep +./usr/share/locale/cs/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/cs/LC_MESSAGES/texinfo.mo base-texinfo_locale-cs nls +./usr/share/locale/cs/LC_MESSAGES/xz.mo base-util_locale-cs nls +./usr/share/locale/cs_CZ.ISO8859-2 base-locale-cs +./usr/share/locale/cs_CZ.ISO8859-2/LC_CTYPE base-locale-cs nls +./usr/share/locale/cs_CZ.ISO8859-2/LC_MESSAGES base-locale-cs +./usr/share/locale/cs_CZ.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-cs nls +./usr/share/locale/cs_CZ.ISO8859-2/LC_MONETARY base-locale-cs nls +./usr/share/locale/cs_CZ.ISO8859-2/LC_NUMERIC base-locale-cs nls +./usr/share/locale/cs_CZ.ISO8859-2/LC_TIME base-locale-cs nls +./usr/share/locale/da base-locale-da +./usr/share/locale/da/LC_MESSAGES base-locale-da +./usr/share/locale/da/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/da/LC_MESSAGES/texinfo.mo base-texinfo_locale-da nls +./usr/share/locale/da_DK.ISO8859-1 base-locale-da +./usr/share/locale/da_DK.ISO8859-1/LC_CTYPE base-locale-da nls +./usr/share/locale/da_DK.ISO8859-1/LC_MESSAGES base-locale-da +./usr/share/locale/da_DK.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-da nls +./usr/share/locale/da_DK.ISO8859-1/LC_MONETARY base-locale-da nls +./usr/share/locale/da_DK.ISO8859-1/LC_NUMERIC base-locale-da nls +./usr/share/locale/da_DK.ISO8859-1/LC_TIME base-locale-da nls +./usr/share/locale/da_DK.ISO8859-15 base-locale-da +./usr/share/locale/da_DK.ISO8859-15/LC_CTYPE base-locale-da nls +./usr/share/locale/da_DK.ISO8859-15/LC_MESSAGES base-locale-da +./usr/share/locale/da_DK.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-da nls +./usr/share/locale/da_DK.ISO8859-15/LC_MONETARY base-locale-da nls +./usr/share/locale/da_DK.ISO8859-15/LC_NUMERIC base-locale-da nls +./usr/share/locale/da_DK.ISO8859-15/LC_TIME base-locale-da nls +./usr/share/locale/de base-locale-de +./usr/share/locale/de/LC_MESSAGES base-locale-de +./usr/share/locale/de/LC_MESSAGES/grep.mo base-util_locale-de nls,!bsdgrep +./usr/share/locale/de/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/de/LC_MESSAGES/texinfo.mo base-texinfo_locale-de nls +./usr/share/locale/de/LC_MESSAGES/xz.mo base-util_locale-de nls +./usr/share/locale/de_AT base-locale-de +./usr/share/locale/de_AT.ISO8859-1 base-locale-de +./usr/share/locale/de_AT.ISO8859-1/LC_CTYPE base-locale-de nls +./usr/share/locale/de_AT.ISO8859-1/LC_MESSAGES base-locale-de +./usr/share/locale/de_AT.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-de nls +./usr/share/locale/de_AT.ISO8859-1/LC_MONETARY base-locale-de nls +./usr/share/locale/de_AT.ISO8859-1/LC_NUMERIC base-locale-de nls +./usr/share/locale/de_AT.ISO8859-1/LC_TIME base-locale-de nls +./usr/share/locale/de_AT.ISO8859-15 base-locale-de +./usr/share/locale/de_AT.ISO8859-15/LC_CTYPE base-locale-de nls +./usr/share/locale/de_AT.ISO8859-15/LC_MESSAGES base-locale-de +./usr/share/locale/de_AT.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-de nls +./usr/share/locale/de_AT.ISO8859-15/LC_MONETARY base-locale-de nls +./usr/share/locale/de_AT.ISO8859-15/LC_NUMERIC base-locale-de nls +./usr/share/locale/de_AT.ISO8859-15/LC_TIME base-locale-de nls +./usr/share/locale/de_AT/LC_MESSAGES base-locale-de +./usr/share/locale/de_AT/LC_MESSAGES/texinfo.mo base-texinfo_locale-de nls +./usr/share/locale/de_CH.ISO8859-1 base-locale-de +./usr/share/locale/de_CH.ISO8859-1/LC_CTYPE base-locale-de nls +./usr/share/locale/de_CH.ISO8859-1/LC_MESSAGES base-locale-de +./usr/share/locale/de_CH.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-de nls +./usr/share/locale/de_CH.ISO8859-1/LC_MONETARY base-locale-de nls +./usr/share/locale/de_CH.ISO8859-1/LC_NUMERIC base-locale-de nls +./usr/share/locale/de_CH.ISO8859-1/LC_TIME base-locale-de nls +./usr/share/locale/de_CH.ISO8859-15 base-locale-de +./usr/share/locale/de_CH.ISO8859-15/LC_CTYPE base-locale-de nls +./usr/share/locale/de_CH.ISO8859-15/LC_MESSAGES base-locale-de +./usr/share/locale/de_CH.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-de nls +./usr/share/locale/de_CH.ISO8859-15/LC_MONETARY base-locale-de nls +./usr/share/locale/de_CH.ISO8859-15/LC_NUMERIC base-locale-de nls +./usr/share/locale/de_CH.ISO8859-15/LC_TIME base-locale-de nls +./usr/share/locale/de_DE.ISO8859-1 base-locale-de +./usr/share/locale/de_DE.ISO8859-1/LC_CTYPE base-locale-de nls +./usr/share/locale/de_DE.ISO8859-1/LC_MESSAGES base-locale-de +./usr/share/locale/de_DE.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-de nls +./usr/share/locale/de_DE.ISO8859-1/LC_MONETARY base-locale-de nls +./usr/share/locale/de_DE.ISO8859-1/LC_NUMERIC base-locale-de nls +./usr/share/locale/de_DE.ISO8859-1/LC_TIME base-locale-de nls +./usr/share/locale/de_DE.ISO8859-15 base-locale-de +./usr/share/locale/de_DE.ISO8859-15/LC_CTYPE base-locale-de nls +./usr/share/locale/de_DE.ISO8859-15/LC_MESSAGES base-locale-de +./usr/share/locale/de_DE.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-de nls +./usr/share/locale/de_DE.ISO8859-15/LC_MONETARY base-locale-de nls +./usr/share/locale/de_DE.ISO8859-15/LC_NUMERIC base-locale-de nls +./usr/share/locale/de_DE.ISO8859-15/LC_TIME base-locale-de nls +./usr/share/locale/el base-locale-el +./usr/share/locale/el/LC_MESSAGES base-locale-el +./usr/share/locale/el/LC_MESSAGES/grep.mo base-util_locale-el nls,!bsdgrep +./usr/share/locale/el_GR.ISO8859-7 base-locale-el +./usr/share/locale/el_GR.ISO8859-7/LC_CTYPE base-locale-el nls +./usr/share/locale/el_GR.ISO8859-7/LC_MESSAGES base-locale-el +./usr/share/locale/el_GR.ISO8859-7/LC_MESSAGES/SYS_LC_MESSAGES base-locale-el nls +./usr/share/locale/el_GR.ISO8859-7/LC_MONETARY base-locale-el nls +./usr/share/locale/el_GR.ISO8859-7/LC_NUMERIC base-locale-el nls +./usr/share/locale/el_GR.ISO8859-7/LC_TIME base-locale-el nls +./usr/share/locale/en@boldquot base-locale-en +./usr/share/locale/en@boldquot/LC_MESSAGES base-locale-en +./usr/share/locale/en@quot base-locale-en +./usr/share/locale/en@quot/LC_MESSAGES base-locale-en +./usr/share/locale/en_AU.ISO8859-1 base-locale-en +./usr/share/locale/en_AU.ISO8859-1/LC_CTYPE base-locale-en nls +./usr/share/locale/en_AU.ISO8859-1/LC_MESSAGES base-locale-en +./usr/share/locale/en_AU.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_AU.ISO8859-1/LC_MONETARY base-locale-en nls +./usr/share/locale/en_AU.ISO8859-1/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_AU.ISO8859-1/LC_TIME base-locale-en nls +./usr/share/locale/en_AU.ISO8859-15 base-locale-en +./usr/share/locale/en_AU.ISO8859-15/LC_CTYPE base-locale-en nls +./usr/share/locale/en_AU.ISO8859-15/LC_MESSAGES base-locale-en +./usr/share/locale/en_AU.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_AU.ISO8859-15/LC_MONETARY base-locale-en nls +./usr/share/locale/en_AU.ISO8859-15/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_AU.ISO8859-15/LC_TIME base-locale-en nls +./usr/share/locale/en_CA.ISO8859-1 base-locale-en +./usr/share/locale/en_CA.ISO8859-1/LC_CTYPE base-locale-en nls +./usr/share/locale/en_CA.ISO8859-1/LC_MESSAGES base-locale-en +./usr/share/locale/en_CA.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_CA.ISO8859-1/LC_MONETARY base-locale-en nls +./usr/share/locale/en_CA.ISO8859-1/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_CA.ISO8859-1/LC_TIME base-locale-en nls +./usr/share/locale/en_CA.ISO8859-15 base-locale-en +./usr/share/locale/en_CA.ISO8859-15/LC_CTYPE base-locale-en nls +./usr/share/locale/en_CA.ISO8859-15/LC_MESSAGES base-locale-en +./usr/share/locale/en_CA.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_CA.ISO8859-15/LC_MONETARY base-locale-en nls +./usr/share/locale/en_CA.ISO8859-15/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_CA.ISO8859-15/LC_TIME base-locale-en nls +./usr/share/locale/en_GB.ISO8859-1 base-locale-en +./usr/share/locale/en_GB.ISO8859-1/LC_CTYPE base-locale-en nls +./usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES base-locale-en +./usr/share/locale/en_GB.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_GB.ISO8859-1/LC_MONETARY base-locale-en nls +./usr/share/locale/en_GB.ISO8859-1/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_GB.ISO8859-1/LC_TIME base-locale-en nls +./usr/share/locale/en_GB.ISO8859-15 base-locale-en +./usr/share/locale/en_GB.ISO8859-15/LC_CTYPE base-locale-en nls +./usr/share/locale/en_GB.ISO8859-15/LC_MESSAGES base-locale-en +./usr/share/locale/en_GB.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_GB.ISO8859-15/LC_MONETARY base-locale-en nls +./usr/share/locale/en_GB.ISO8859-15/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_GB.ISO8859-15/LC_TIME base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-1 base-locale-en +./usr/share/locale/en_NZ.ISO8859-1/LC_CTYPE base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-1/LC_MESSAGES base-locale-en +./usr/share/locale/en_NZ.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-1/LC_MONETARY base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-1/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-1/LC_TIME base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-15 base-locale-en +./usr/share/locale/en_NZ.ISO8859-15/LC_CTYPE base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-15/LC_MESSAGES base-locale-en +./usr/share/locale/en_NZ.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-15/LC_MONETARY base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-15/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_NZ.ISO8859-15/LC_TIME base-locale-en nls +./usr/share/locale/en_US.ISO8859-1 base-locale-en +./usr/share/locale/en_US.ISO8859-1/LC_CTYPE base-locale-en nls +./usr/share/locale/en_US.ISO8859-1/LC_MESSAGES base-locale-en +./usr/share/locale/en_US.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_US.ISO8859-1/LC_MONETARY base-locale-en nls +./usr/share/locale/en_US.ISO8859-1/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_US.ISO8859-1/LC_TIME base-locale-en nls +./usr/share/locale/en_US.ISO8859-15 base-locale-en +./usr/share/locale/en_US.ISO8859-15/LC_CTYPE base-locale-en nls +./usr/share/locale/en_US.ISO8859-15/LC_MESSAGES base-locale-en +./usr/share/locale/en_US.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_US.ISO8859-15/LC_MONETARY base-locale-en nls +./usr/share/locale/en_US.ISO8859-15/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_US.ISO8859-15/LC_TIME base-locale-en nls +./usr/share/locale/en_US.US-ASCII base-locale-en +./usr/share/locale/en_US.US-ASCII/LC_CTYPE base-locale-en nls +./usr/share/locale/en_US.US-ASCII/LC_MESSAGES base-locale-en +./usr/share/locale/en_US.US-ASCII/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_US.US-ASCII/LC_MONETARY base-locale-en nls +./usr/share/locale/en_US.US-ASCII/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_US.US-ASCII/LC_TIME base-locale-en nls +./usr/share/locale/en_US.UTF-2 base-obsolete obsolete +./usr/share/locale/en_US.UTF-2/LC_CTYPE base-obsolete obsolete +./usr/share/locale/en_US.UTF-8 base-locale-en +./usr/share/locale/en_US.UTF-8/LC_CTYPE base-locale-en nls +./usr/share/locale/en_US.UTF-8/LC_MESSAGES base-locale-en +./usr/share/locale/en_US.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES base-locale-en nls +./usr/share/locale/en_US.UTF-8/LC_MONETARY base-locale-en nls +./usr/share/locale/en_US.UTF-8/LC_NUMERIC base-locale-en nls +./usr/share/locale/en_US.UTF-8/LC_TIME base-locale-en nls +./usr/share/locale/eo base-locale-eo +./usr/share/locale/eo/LC_MESSAGES base-locale-eo +./usr/share/locale/eo/LC_MESSAGES/grep.mo base-util_locale-eo nls,!bsdgrep +./usr/share/locale/eo/LC_MESSAGES/texinfo.mo base-texinfo_locale-eo nls +./usr/share/locale/es base-locale-es +./usr/share/locale/es/LC_MESSAGES base-locale-es +./usr/share/locale/es/LC_MESSAGES/grep.mo base-util_locale-es nls,!bsdgrep +./usr/share/locale/es/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/es_ES.ISO8859-1 base-locale-es +./usr/share/locale/es_ES.ISO8859-1/LC_CTYPE base-locale-es nls +./usr/share/locale/es_ES.ISO8859-1/LC_MESSAGES base-locale-es +./usr/share/locale/es_ES.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-es nls +./usr/share/locale/es_ES.ISO8859-1/LC_MONETARY base-locale-es nls +./usr/share/locale/es_ES.ISO8859-1/LC_NUMERIC base-locale-es nls +./usr/share/locale/es_ES.ISO8859-1/LC_TIME base-locale-es nls +./usr/share/locale/es_ES.ISO8859-15 base-locale-es +./usr/share/locale/es_ES.ISO8859-15/LC_CTYPE base-locale-es nls +./usr/share/locale/es_ES.ISO8859-15/LC_MESSAGES base-locale-es +./usr/share/locale/es_ES.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-es nls +./usr/share/locale/es_ES.ISO8859-15/LC_MONETARY base-locale-es nls +./usr/share/locale/es_ES.ISO8859-15/LC_NUMERIC base-locale-es nls +./usr/share/locale/es_ES.ISO8859-15/LC_TIME base-locale-es nls +./usr/share/locale/et base-locale-et +./usr/share/locale/et/LC_MESSAGES base-locale-et +./usr/share/locale/et/LC_MESSAGES/grep.mo base-util_locale-et nls,!bsdgrep +./usr/share/locale/et/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/et_EE.ISO8859-15 base-locale-et +./usr/share/locale/et_EE.ISO8859-15/LC_CTYPE base-locale-et nls +./usr/share/locale/et_EE.ISO8859-15/LC_MESSAGES base-locale-et +./usr/share/locale/et_EE.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-et nls +./usr/share/locale/et_EE.ISO8859-15/LC_MONETARY base-locale-et nls +./usr/share/locale/et_EE.ISO8859-15/LC_NUMERIC base-locale-et nls +./usr/share/locale/et_EE.ISO8859-15/LC_TIME base-locale-et nls +./usr/share/locale/eu_ES.ISO8859-1 base-locale-eu +./usr/share/locale/eu_ES.ISO8859-1/LC_CTYPE base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-1/LC_MESSAGES base-locale-eu +./usr/share/locale/eu_ES.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-1/LC_MONETARY base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-1/LC_NUMERIC base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-1/LC_TIME base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-15 base-locale-eu +./usr/share/locale/eu_ES.ISO8859-15/LC_CTYPE base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-15/LC_MESSAGES base-locale-eu +./usr/share/locale/eu_ES.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-15/LC_MONETARY base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-15/LC_NUMERIC base-locale-eu nls +./usr/share/locale/eu_ES.ISO8859-15/LC_TIME base-locale-eu nls +./usr/share/locale/fi base-locale-fi +./usr/share/locale/fi/LC_MESSAGES base-locale-fi +./usr/share/locale/fi_FI.ISO8859-1 base-locale-fi +./usr/share/locale/fi_FI.ISO8859-1/LC_CTYPE base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-1/LC_MESSAGES base-locale-fi +./usr/share/locale/fi_FI.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-1/LC_MONETARY base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-1/LC_NUMERIC base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-1/LC_TIME base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-15 base-locale-fi +./usr/share/locale/fi_FI.ISO8859-15/LC_CTYPE base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-15/LC_MESSAGES base-locale-fi +./usr/share/locale/fi_FI.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-15/LC_MONETARY base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-15/LC_NUMERIC base-locale-fi nls +./usr/share/locale/fi_FI.ISO8859-15/LC_TIME base-locale-fi nls +./usr/share/locale/fr base-locale-fr +./usr/share/locale/fr/LC_MESSAGES base-locale-fr +./usr/share/locale/fr/LC_MESSAGES/grep.mo base-util_locale-fr nls,!bsdgrep +./usr/share/locale/fr/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/fr/LC_MESSAGES/texinfo.mo base-texinfo_locale-fr nls +./usr/share/locale/fr_BE.ISO8859-1 base-locale-fr +./usr/share/locale/fr_BE.ISO8859-1/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-1/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_BE.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-1/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-1/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-1/LC_TIME base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-15 base-locale-fr +./usr/share/locale/fr_BE.ISO8859-15/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-15/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_BE.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-15/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-15/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_BE.ISO8859-15/LC_TIME base-locale-fr nls +./usr/share/locale/fr_BE.UTF-8 base-locale-fr +./usr/share/locale/fr_BE.UTF-8/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_BE.UTF-8/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_BE.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_BE.UTF-8/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_BE.UTF-8/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_BE.UTF-8/LC_TIME base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-1 base-locale-fr +./usr/share/locale/fr_CA.ISO8859-1/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-1/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_CA.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-1/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-1/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-1/LC_TIME base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-15 base-locale-fr +./usr/share/locale/fr_CA.ISO8859-15/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-15/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_CA.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-15/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-15/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_CA.ISO8859-15/LC_TIME base-locale-fr nls +./usr/share/locale/fr_CA.UTF-8 base-locale-fr +./usr/share/locale/fr_CA.UTF-8/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_CA.UTF-8/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_CA.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_CA.UTF-8/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_CA.UTF-8/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_CA.UTF-8/LC_TIME base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-1 base-locale-fr +./usr/share/locale/fr_CH.ISO8859-1/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-1/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_CH.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-1/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-1/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-1/LC_TIME base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-15 base-locale-fr +./usr/share/locale/fr_CH.ISO8859-15/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-15/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_CH.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-15/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-15/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_CH.ISO8859-15/LC_TIME base-locale-fr nls +./usr/share/locale/fr_CH.UTF-8 base-locale-fr +./usr/share/locale/fr_CH.UTF-8/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_CH.UTF-8/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_CH.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_CH.UTF-8/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_CH.UTF-8/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_CH.UTF-8/LC_TIME base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-1 base-locale-fr +./usr/share/locale/fr_FR.ISO8859-1/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-1/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_FR.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-1/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-1/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-1/LC_TIME base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-15 base-locale-fr +./usr/share/locale/fr_FR.ISO8859-15/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-15/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_FR.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-15/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-15/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_FR.ISO8859-15/LC_TIME base-locale-fr nls +./usr/share/locale/fr_FR.UTF-8 base-locale-fr +./usr/share/locale/fr_FR.UTF-8/LC_CTYPE base-locale-fr nls +./usr/share/locale/fr_FR.UTF-8/LC_MESSAGES base-locale-fr +./usr/share/locale/fr_FR.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES base-locale-fr nls +./usr/share/locale/fr_FR.UTF-8/LC_MONETARY base-locale-fr nls +./usr/share/locale/fr_FR.UTF-8/LC_NUMERIC base-locale-fr nls +./usr/share/locale/fr_FR.UTF-8/LC_TIME base-locale-fr nls +./usr/share/locale/gl base-locale-gl +./usr/share/locale/gl/LC_MESSAGES base-locale-gl +./usr/share/locale/gl/LC_MESSAGES/grep.mo base-util_locale-gl nls,!bsdgrep +./usr/share/locale/he base-locale-he +./usr/share/locale/he/LC_MESSAGES base-locale-he +./usr/share/locale/he/LC_MESSAGES/texinfo.mo base-texinfo_locale-he nls +./usr/share/locale/hr base-locale-hr +./usr/share/locale/hr/LC_MESSAGES base-locale-hr +./usr/share/locale/hr/LC_MESSAGES/grep.mo base-util_locale-hr nls,!bsdgrep +./usr/share/locale/hr/LC_MESSAGES/texinfo.mo base-texinfo_locale-hr nls +./usr/share/locale/hr_HR.ISO8859-2 base-locale-hr +./usr/share/locale/hr_HR.ISO8859-2/LC_CTYPE base-locale-hr nls +./usr/share/locale/hr_HR.ISO8859-2/LC_MESSAGES base-locale-hr +./usr/share/locale/hr_HR.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-hr nls +./usr/share/locale/hr_HR.ISO8859-2/LC_MONETARY base-locale-hr nls +./usr/share/locale/hr_HR.ISO8859-2/LC_NUMERIC base-locale-hr nls +./usr/share/locale/hr_HR.ISO8859-2/LC_TIME base-locale-hr nls +./usr/share/locale/hu_HU.ISO8859-2 base-locale-hu +./usr/share/locale/hu_HU.ISO8859-2/LC_CTYPE base-locale-hu nls +./usr/share/locale/hu_HU.ISO8859-2/LC_MESSAGES base-locale-hu +./usr/share/locale/hu_HU.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-hu nls +./usr/share/locale/hu_HU.ISO8859-2/LC_MONETARY base-locale-hu nls +./usr/share/locale/hu_HU.ISO8859-2/LC_NUMERIC base-locale-hu nls +./usr/share/locale/hu_HU.ISO8859-2/LC_TIME base-locale-hu nls +./usr/share/locale/hy_AM.ARMSCII-8 base-locale-hy +./usr/share/locale/hy_AM.ARMSCII-8/LC_CTYPE base-locale-hy nls +./usr/share/locale/hy_AM.ARMSCII-8/LC_MESSAGES base-locale-hy +./usr/share/locale/hy_AM.ARMSCII-8/LC_MESSAGES/SYS_LC_MESSAGES base-locale-hy nls +./usr/share/locale/hy_AM.ARMSCII-8/LC_MONETARY base-locale-hy nls +./usr/share/locale/hy_AM.ARMSCII-8/LC_NUMERIC base-locale-hy nls +./usr/share/locale/hy_AM.ARMSCII-8/LC_TIME base-locale-hy nls +./usr/share/locale/id base-locale-id +./usr/share/locale/id/LC_MESSAGES base-locale-id +./usr/share/locale/id/LC_MESSAGES/grep.mo base-util_locale-id nls,!bsdgrep +./usr/share/locale/id/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/is_IS.ISO8859-1 base-locale-is +./usr/share/locale/is_IS.ISO8859-1/LC_CTYPE base-locale-is nls +./usr/share/locale/is_IS.ISO8859-1/LC_MESSAGES base-locale-is +./usr/share/locale/is_IS.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-is nls +./usr/share/locale/is_IS.ISO8859-1/LC_MONETARY base-locale-is nls +./usr/share/locale/is_IS.ISO8859-1/LC_NUMERIC base-locale-is nls +./usr/share/locale/is_IS.ISO8859-1/LC_TIME base-locale-is nls +./usr/share/locale/is_IS.ISO8859-15 base-locale-is +./usr/share/locale/is_IS.ISO8859-15/LC_CTYPE base-locale-is nls +./usr/share/locale/is_IS.ISO8859-15/LC_MESSAGES base-locale-is +./usr/share/locale/is_IS.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-is nls +./usr/share/locale/is_IS.ISO8859-15/LC_MONETARY base-locale-is nls +./usr/share/locale/is_IS.ISO8859-15/LC_NUMERIC base-locale-is nls +./usr/share/locale/is_IS.ISO8859-15/LC_TIME base-locale-is nls +./usr/share/locale/it base-locale-it +./usr/share/locale/it/LC_MESSAGES base-locale-it +./usr/share/locale/it/LC_MESSAGES/grep.mo base-util_locale-it nls,!bsdgrep +./usr/share/locale/it/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/it/LC_MESSAGES/xz.mo base-util_locale-it nls +./usr/share/locale/it_CH.ISO8859-1 base-locale-it +./usr/share/locale/it_CH.ISO8859-1/LC_CTYPE base-locale-it nls +./usr/share/locale/it_CH.ISO8859-1/LC_MESSAGES base-locale-it +./usr/share/locale/it_CH.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-it nls +./usr/share/locale/it_CH.ISO8859-1/LC_MONETARY base-locale-it nls +./usr/share/locale/it_CH.ISO8859-1/LC_NUMERIC base-locale-it nls +./usr/share/locale/it_CH.ISO8859-1/LC_TIME base-locale-it nls +./usr/share/locale/it_CH.ISO8859-15 base-locale-it +./usr/share/locale/it_CH.ISO8859-15/LC_CTYPE base-locale-it nls +./usr/share/locale/it_CH.ISO8859-15/LC_MESSAGES base-locale-it +./usr/share/locale/it_CH.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-it nls +./usr/share/locale/it_CH.ISO8859-15/LC_MONETARY base-locale-it nls +./usr/share/locale/it_CH.ISO8859-15/LC_NUMERIC base-locale-it nls +./usr/share/locale/it_CH.ISO8859-15/LC_TIME base-locale-it nls +./usr/share/locale/it_IT.ISO8859-1 base-locale-it +./usr/share/locale/it_IT.ISO8859-1/LC_CTYPE base-locale-it nls +./usr/share/locale/it_IT.ISO8859-1/LC_MESSAGES base-locale-it +./usr/share/locale/it_IT.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-it nls +./usr/share/locale/it_IT.ISO8859-1/LC_MONETARY base-locale-it nls +./usr/share/locale/it_IT.ISO8859-1/LC_NUMERIC base-locale-it nls +./usr/share/locale/it_IT.ISO8859-1/LC_TIME base-locale-it nls +./usr/share/locale/it_IT.ISO8859-15 base-locale-it +./usr/share/locale/it_IT.ISO8859-15/LC_CTYPE base-locale-it nls +./usr/share/locale/it_IT.ISO8859-15/LC_MESSAGES base-locale-it +./usr/share/locale/it_IT.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-it nls +./usr/share/locale/it_IT.ISO8859-15/LC_MONETARY base-locale-it nls +./usr/share/locale/it_IT.ISO8859-15/LC_NUMERIC base-locale-it nls +./usr/share/locale/it_IT.ISO8859-15/LC_TIME base-locale-it nls +./usr/share/locale/ja base-locale-ja +./usr/share/locale/ja/LC_MESSAGES base-locale-ja +./usr/share/locale/ja/LC_MESSAGES/grep.mo base-util_locale-ja nls,!bsdgrep +./usr/share/locale/ja/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/ja/LC_MESSAGES/texinfo.mo base-texinfo_locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP base-locale-ja +./usr/share/locale/ja_JP.ISO-2022-JP-2 base-locale-ja +./usr/share/locale/ja_JP.ISO-2022-JP-2/LC_CTYPE base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP-2/LC_MESSAGES base-locale-ja +./usr/share/locale/ja_JP.ISO-2022-JP-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP-2/LC_MONETARY base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP-2/LC_NUMERIC base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP-2/LC_TIME base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP/LC_CTYPE base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP/LC_MESSAGES base-locale-ja +./usr/share/locale/ja_JP.ISO-2022-JP/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP/LC_MONETARY base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP/LC_NUMERIC base-locale-ja nls +./usr/share/locale/ja_JP.ISO-2022-JP/LC_TIME base-locale-ja nls +./usr/share/locale/ja_JP.ISO2022-JP base-obsolete obsolete +./usr/share/locale/ja_JP.ISO2022-JP/LC_CTYPE base-obsolete obsolete +./usr/share/locale/ja_JP.ISO2022-JP2 base-obsolete obsolete +./usr/share/locale/ja_JP.ISO2022-JP2/LC_CTYPE base-obsolete obsolete +./usr/share/locale/ja_JP.SJIS base-locale-ja +./usr/share/locale/ja_JP.SJIS/LC_CTYPE base-locale-ja nls +./usr/share/locale/ja_JP.SJIS/LC_MESSAGES base-locale-ja +./usr/share/locale/ja_JP.SJIS/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ja nls +./usr/share/locale/ja_JP.SJIS/LC_MONETARY base-locale-ja nls +./usr/share/locale/ja_JP.SJIS/LC_NUMERIC base-locale-ja nls +./usr/share/locale/ja_JP.SJIS/LC_TIME base-locale-ja nls +./usr/share/locale/ja_JP.ct base-locale-ja +./usr/share/locale/ja_JP.ct/LC_CTYPE base-locale-ja nls +./usr/share/locale/ja_JP.ct/LC_MESSAGES base-locale-ja +./usr/share/locale/ja_JP.ct/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ja nls +./usr/share/locale/ja_JP.ct/LC_MONETARY base-locale-ja nls +./usr/share/locale/ja_JP.ct/LC_NUMERIC base-locale-ja nls +./usr/share/locale/ja_JP.ct/LC_TIME base-locale-ja nls +./usr/share/locale/ja_JP.eucJP base-locale-ja +./usr/share/locale/ja_JP.eucJP/LC_CTYPE base-locale-ja nls +./usr/share/locale/ja_JP.eucJP/LC_MESSAGES base-locale-ja +./usr/share/locale/ja_JP.eucJP/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ja nls +./usr/share/locale/ja_JP.eucJP/LC_MONETARY base-locale-ja nls +./usr/share/locale/ja_JP.eucJP/LC_NUMERIC base-locale-ja nls +./usr/share/locale/ja_JP.eucJP/LC_TIME base-locale-ja nls +./usr/share/locale/kk_KZ.PT154 base-locale-kk +./usr/share/locale/kk_KZ.PT154/LC_CTYPE base-locale-kk nls +./usr/share/locale/kk_KZ.PT154/LC_MESSAGES base-locale-kk +./usr/share/locale/kk_KZ.PT154/LC_MESSAGES/SYS_LC_MESSAGES base-locale-kk nls +./usr/share/locale/kk_KZ.PT154/LC_MONETARY base-locale-kk nls +./usr/share/locale/kk_KZ.PT154/LC_NUMERIC base-locale-kk nls +./usr/share/locale/kk_KZ.PT154/LC_TIME base-locale-kk nls +./usr/share/locale/ko base-locale-ko +./usr/share/locale/ko/LC_MESSAGES base-locale-ko +./usr/share/locale/ko/LC_MESSAGES/grep.mo base-locale-ko nls,!bsdgrep +./usr/share/locale/ko/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/ko_KR.UTF-8 base-obsolete obsolete +./usr/share/locale/ko_KR.UTF-8/LC_CTYPE base-obsolete obsolete +./usr/share/locale/ko_KR.eucKR base-locale-ko +./usr/share/locale/ko_KR.eucKR/LC_CTYPE base-locale-ko nls +./usr/share/locale/ko_KR.eucKR/LC_MESSAGES base-locale-ko +./usr/share/locale/ko_KR.eucKR/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ko nls +./usr/share/locale/ko_KR.eucKR/LC_MONETARY base-locale-ko nls +./usr/share/locale/ko_KR.eucKR/LC_NUMERIC base-locale-ko nls +./usr/share/locale/ko_KR.eucKR/LC_TIME base-locale-ko nls +./usr/share/locale/locale.alias base-locale-share nls +./usr/share/locale/lt_LT.ISO8859-13 base-locale-lt +./usr/share/locale/lt_LT.ISO8859-13/LC_CTYPE base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-13/LC_MESSAGES base-locale-lt +./usr/share/locale/lt_LT.ISO8859-13/LC_MESSAGES/SYS_LC_MESSAGES base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-13/LC_MONETARY base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-13/LC_NUMERIC base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-13/LC_TIME base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-4 base-locale-lt +./usr/share/locale/lt_LT.ISO8859-4/LC_CTYPE base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES base-locale-lt +./usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES/SYS_LC_MESSAGES base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-4/LC_MONETARY base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-4/LC_NUMERIC base-locale-lt nls +./usr/share/locale/lt_LT.ISO8859-4/LC_TIME base-locale-lt nls +./usr/share/locale/nb base-locale-nb +./usr/share/locale/nb/LC_MESSAGES base-locale-nb +./usr/share/locale/nb/LC_MESSAGES/texinfo.mo base-texinfo_locale-nb nls +./usr/share/locale/nl base-locale-nl +./usr/share/locale/nl/LC_MESSAGES base-locale-nl +./usr/share/locale/nl/LC_MESSAGES/grep.mo base-locale-nl nls,!bsdgrep +./usr/share/locale/nl/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/nl/LC_MESSAGES/texinfo.mo base-texinfo_locale-nl nls +./usr/share/locale/nl_BE.ISO8859-1 base-locale-nl +./usr/share/locale/nl_BE.ISO8859-1/LC_CTYPE base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-1/LC_MESSAGES base-locale-nl +./usr/share/locale/nl_BE.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-1/LC_MONETARY base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-1/LC_NUMERIC base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-1/LC_TIME base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-15 base-locale-nl +./usr/share/locale/nl_BE.ISO8859-15/LC_CTYPE base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-15/LC_MESSAGES base-locale-nl +./usr/share/locale/nl_BE.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-15/LC_MONETARY base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-15/LC_NUMERIC base-locale-nl nls +./usr/share/locale/nl_BE.ISO8859-15/LC_TIME base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-1 base-locale-nl +./usr/share/locale/nl_NL.ISO8859-1/LC_CTYPE base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-1/LC_MESSAGES base-locale-nl +./usr/share/locale/nl_NL.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-1/LC_MONETARY base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-1/LC_NUMERIC base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-1/LC_TIME base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-15 base-locale-nl +./usr/share/locale/nl_NL.ISO8859-15/LC_CTYPE base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-15/LC_MESSAGES base-locale-nl +./usr/share/locale/nl_NL.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-15/LC_MONETARY base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-15/LC_NUMERIC base-locale-nl nls +./usr/share/locale/nl_NL.ISO8859-15/LC_TIME base-locale-nl nls +./usr/share/locale/nn base-locale-nn +./usr/share/locale/nn/LC_MESSAGES base-locale-nn +./usr/share/locale/nn_NO.ISO8859-1 base-locale-nn +./usr/share/locale/nn_NO.ISO8859-1/LC_CTYPE base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-1/LC_MESSAGES base-locale-nn +./usr/share/locale/nn_NO.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-1/LC_MONETARY base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-1/LC_NUMERIC base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-1/LC_TIME base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-15 base-locale-nn +./usr/share/locale/nn_NO.ISO8859-15/LC_CTYPE base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-15/LC_MESSAGES base-locale-nn +./usr/share/locale/nn_NO.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-15/LC_MONETARY base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-15/LC_NUMERIC base-locale-nn nls +./usr/share/locale/nn_NO.ISO8859-15/LC_TIME base-locale-nn nls +./usr/share/locale/no base-locale-no +./usr/share/locale/no/LC_MESSAGES base-locale-no +./usr/share/locale/no/LC_MESSAGES/grep.mo base-locale-no nls,!bsdgrep +./usr/share/locale/no/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/no/LC_MESSAGES/texinfo.mo base-texinfo_locale-no nls +./usr/share/locale/no@nynorsk base-locale-no +./usr/share/locale/no@nynorsk/LC_MESSAGES base-locale-no +./usr/share/locale/no_NO.ISO8859-1 base-locale-no +./usr/share/locale/no_NO.ISO8859-1/LC_CTYPE base-locale-no nls +./usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES base-locale-no +./usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-no nls +./usr/share/locale/no_NO.ISO8859-1/LC_MONETARY base-locale-no nls +./usr/share/locale/no_NO.ISO8859-1/LC_NUMERIC base-locale-no nls +./usr/share/locale/no_NO.ISO8859-1/LC_TIME base-locale-no nls +./usr/share/locale/no_NO.ISO8859-15 base-locale-no +./usr/share/locale/no_NO.ISO8859-15/LC_CTYPE base-locale-no nls +./usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES base-locale-no +./usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-no nls +./usr/share/locale/no_NO.ISO8859-15/LC_MONETARY base-locale-no nls +./usr/share/locale/no_NO.ISO8859-15/LC_NUMERIC base-locale-no nls +./usr/share/locale/no_NO.ISO8859-15/LC_TIME base-locale-no nls +./usr/share/locale/pl base-locale-pl +./usr/share/locale/pl/LC_MESSAGES base-locale-pl +./usr/share/locale/pl/LC_MESSAGES/grep.mo base-locale-pl nls,!bsdgrep +./usr/share/locale/pl/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/pl/LC_MESSAGES/texinfo.mo base-texinfo_locale-pl nls +./usr/share/locale/pl_PL.ISO8859-2 base-locale-pl +./usr/share/locale/pl_PL.ISO8859-2/LC_CTYPE base-locale-pl nls +./usr/share/locale/pl_PL.ISO8859-2/LC_MESSAGES base-locale-pl +./usr/share/locale/pl_PL.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-pl nls +./usr/share/locale/pl_PL.ISO8859-2/LC_MONETARY base-locale-pl nls +./usr/share/locale/pl_PL.ISO8859-2/LC_NUMERIC base-locale-pl nls +./usr/share/locale/pl_PL.ISO8859-2/LC_TIME base-locale-pl nls +./usr/share/locale/pt base-locale-pt +./usr/share/locale/pt/LC_MESSAGES base-locale-pt +./usr/share/locale/pt/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/pt_BR base-locale-pt +./usr/share/locale/pt_BR.ISO8859-1 base-locale-pt +./usr/share/locale/pt_BR.ISO8859-1/LC_CTYPE base-locale-pt nls +./usr/share/locale/pt_BR.ISO8859-1/LC_MESSAGES base-locale-pt +./usr/share/locale/pt_BR.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-pt nls +./usr/share/locale/pt_BR.ISO8859-1/LC_MONETARY base-locale-pt nls +./usr/share/locale/pt_BR.ISO8859-1/LC_NUMERIC base-locale-pt nls +./usr/share/locale/pt_BR.ISO8859-1/LC_TIME base-locale-pt nls +./usr/share/locale/pt_BR/LC_MESSAGES base-locale-pt +./usr/share/locale/pt_BR/LC_MESSAGES/grep.mo base-locale-pt nls,!bsdgrep +./usr/share/locale/pt_BR/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/pt_PT.ISO8859-1 base-locale-pt +./usr/share/locale/pt_PT.ISO8859-1/LC_CTYPE base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-1/LC_MESSAGES base-locale-pt +./usr/share/locale/pt_PT.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-1/LC_MONETARY base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-1/LC_NUMERIC base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-1/LC_TIME base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-15 base-locale-pt +./usr/share/locale/pt_PT.ISO8859-15/LC_CTYPE base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-15/LC_MESSAGES base-locale-pt +./usr/share/locale/pt_PT.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-15/LC_MONETARY base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-15/LC_NUMERIC base-locale-pt nls +./usr/share/locale/pt_PT.ISO8859-15/LC_TIME base-locale-pt nls +./usr/share/locale/ro base-locale-ro +./usr/share/locale/ro/LC_MESSAGES base-locale-ro +./usr/share/locale/ro/LC_MESSAGES/texinfo.mo base-texinfo_locale-ro nls +./usr/share/locale/ro_RO.ISO8859-2 base-locale-ro +./usr/share/locale/ro_RO.ISO8859-2/LC_CTYPE base-locale-ro nls +./usr/share/locale/ro_RO.ISO8859-2/LC_MESSAGES base-locale-ro +./usr/share/locale/ro_RO.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ro nls +./usr/share/locale/ro_RO.ISO8859-2/LC_MONETARY base-locale-ro nls +./usr/share/locale/ro_RO.ISO8859-2/LC_NUMERIC base-locale-ro nls +./usr/share/locale/ro_RO.ISO8859-2/LC_TIME base-locale-ro nls +./usr/share/locale/ru base-locale-ru +./usr/share/locale/ru/LC_MESSAGES base-locale-ru +./usr/share/locale/ru/LC_MESSAGES/grep.mo base-locale-ru nls,!bsdgrep +./usr/share/locale/ru/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/ru/LC_MESSAGES/texinfo.mo base-texinfo_locale-ru nls +./usr/share/locale/ru_BY.CP1251 base-locale-ru +./usr/share/locale/ru_BY.CP1251/LC_CTYPE base-locale-ru nls +./usr/share/locale/ru_BY.CP1251/LC_MESSAGES base-locale-ru +./usr/share/locale/ru_BY.CP1251/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ru nls +./usr/share/locale/ru_BY.CP1251/LC_MONETARY base-locale-ru nls +./usr/share/locale/ru_BY.CP1251/LC_NUMERIC base-locale-ru nls +./usr/share/locale/ru_BY.CP1251/LC_TIME base-locale-ru nls +./usr/share/locale/ru_RU.CP1251 base-locale-ru +./usr/share/locale/ru_RU.CP1251/LC_CTYPE base-locale-ru nls +./usr/share/locale/ru_RU.CP1251/LC_MESSAGES base-locale-ru +./usr/share/locale/ru_RU.CP1251/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ru nls +./usr/share/locale/ru_RU.CP1251/LC_MONETARY base-locale-ru nls +./usr/share/locale/ru_RU.CP1251/LC_NUMERIC base-locale-ru nls +./usr/share/locale/ru_RU.CP1251/LC_TIME base-locale-ru nls +./usr/share/locale/ru_RU.CP866 base-locale-ru +./usr/share/locale/ru_RU.CP866/LC_CTYPE base-locale-ru nls +./usr/share/locale/ru_RU.CP866/LC_MESSAGES base-locale-ru +./usr/share/locale/ru_RU.CP866/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ru nls +./usr/share/locale/ru_RU.CP866/LC_MONETARY base-locale-ru nls +./usr/share/locale/ru_RU.CP866/LC_NUMERIC base-locale-ru nls +./usr/share/locale/ru_RU.CP866/LC_TIME base-locale-ru nls +./usr/share/locale/ru_RU.ISO8859-5 base-locale-ru +./usr/share/locale/ru_RU.ISO8859-5/LC_CTYPE base-locale-ru nls +./usr/share/locale/ru_RU.ISO8859-5/LC_MESSAGES base-locale-ru +./usr/share/locale/ru_RU.ISO8859-5/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ru nls +./usr/share/locale/ru_RU.ISO8859-5/LC_MONETARY base-locale-ru nls +./usr/share/locale/ru_RU.ISO8859-5/LC_NUMERIC base-locale-ru nls +./usr/share/locale/ru_RU.ISO8859-5/LC_TIME base-locale-ru nls +./usr/share/locale/ru_RU.KOI8-R base-locale-ru +./usr/share/locale/ru_RU.KOI8-R/LC_CTYPE base-locale-ru nls +./usr/share/locale/ru_RU.KOI8-R/LC_MESSAGES base-locale-ru +./usr/share/locale/ru_RU.KOI8-R/LC_MESSAGES/SYS_LC_MESSAGES base-locale-ru nls +./usr/share/locale/ru_RU.KOI8-R/LC_MONETARY base-locale-ru nls +./usr/share/locale/ru_RU.KOI8-R/LC_NUMERIC base-locale-ru nls +./usr/share/locale/ru_RU.KOI8-R/LC_TIME base-locale-ru nls +./usr/share/locale/ru_SU.CP866 base-obsolete obsolete +./usr/share/locale/ru_SU.CP866/LC_CTYPE base-obsolete obsolete +./usr/share/locale/ru_SU.ISO8859-5 base-obsolete obsolete +./usr/share/locale/ru_SU.ISO8859-5/LC_CTYPE base-obsolete obsolete +./usr/share/locale/ru_SU.KOI8-R base-obsolete obsolete +./usr/share/locale/ru_SU.KOI8-R/LC_CTYPE base-obsolete obsolete +./usr/share/locale/sk base-locale-sk +./usr/share/locale/sk/LC_MESSAGES base-locale-sk +./usr/share/locale/sk_SK.ISO8859-2 base-locale-sk +./usr/share/locale/sk_SK.ISO8859-2/LC_CTYPE base-locale-sk nls +./usr/share/locale/sk_SK.ISO8859-2/LC_MESSAGES base-locale-sk +./usr/share/locale/sk_SK.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-sk nls +./usr/share/locale/sk_SK.ISO8859-2/LC_MONETARY base-locale-sk nls +./usr/share/locale/sk_SK.ISO8859-2/LC_NUMERIC base-locale-sk nls +./usr/share/locale/sk_SK.ISO8859-2/LC_TIME base-locale-sk nls +./usr/share/locale/sl base-locale-sl +./usr/share/locale/sl/LC_MESSAGES base-locale-sl +./usr/share/locale/sl/LC_MESSAGES/grep.mo base-locale-sl nls,!bsdgrep +./usr/share/locale/sl/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/sl_SI.ISO8859-2 base-locale-sl +./usr/share/locale/sl_SI.ISO8859-2/LC_CTYPE base-locale-sl nls +./usr/share/locale/sl_SI.ISO8859-2/LC_MESSAGES base-locale-sl +./usr/share/locale/sl_SI.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-sl nls +./usr/share/locale/sl_SI.ISO8859-2/LC_MONETARY base-locale-sl nls +./usr/share/locale/sl_SI.ISO8859-2/LC_NUMERIC base-locale-sl nls +./usr/share/locale/sl_SI.ISO8859-2/LC_TIME base-locale-sl nls +./usr/share/locale/sr base-locale-sr +./usr/share/locale/sr/LC_MESSAGES base-locale-sr +./usr/share/locale/sr_ME.ISO8859-2 base-locale-sr +./usr/share/locale/sr_ME.ISO8859-2/LC_CTYPE base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-2/LC_MESSAGES base-locale-sr +./usr/share/locale/sr_ME.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-2/LC_MONETARY base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-2/LC_NUMERIC base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-2/LC_TIME base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-5 base-locale-sr +./usr/share/locale/sr_ME.ISO8859-5/LC_CTYPE base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-5/LC_MESSAGES base-locale-sr +./usr/share/locale/sr_ME.ISO8859-5/LC_MESSAGES/SYS_LC_MESSAGES base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-5/LC_MONETARY base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-5/LC_NUMERIC base-locale-sr nls +./usr/share/locale/sr_ME.ISO8859-5/LC_TIME base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-2 base-locale-sr +./usr/share/locale/sr_RS.ISO8859-2/LC_CTYPE base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-2/LC_MESSAGES base-locale-sr +./usr/share/locale/sr_RS.ISO8859-2/LC_MESSAGES/SYS_LC_MESSAGES base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-2/LC_MONETARY base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-2/LC_NUMERIC base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-2/LC_TIME base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-5 base-locale-sr +./usr/share/locale/sr_RS.ISO8859-5/LC_CTYPE base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-5/LC_MESSAGES base-locale-sr +./usr/share/locale/sr_RS.ISO8859-5/LC_MESSAGES/SYS_LC_MESSAGES base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-5/LC_MONETARY base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-5/LC_NUMERIC base-locale-sr nls +./usr/share/locale/sr_RS.ISO8859-5/LC_TIME base-locale-sr nls +./usr/share/locale/sr_YU.ISO8859-2 base-obsolete obsolete +./usr/share/locale/sr_YU.ISO8859-2/LC_CTYPE base-obsolete obsolete +./usr/share/locale/sr_YU.ISO8859-5 base-obsolete obsolete +./usr/share/locale/sr_YU.ISO8859-5/LC_CTYPE base-obsolete obsolete +./usr/share/locale/sv base-locale-sv +./usr/share/locale/sv/LC_MESSAGES base-locale-sv +./usr/share/locale/sv/LC_MESSAGES/grep.mo base-util_locale-sv nls,!bsdgrep +./usr/share/locale/sv/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/sv/LC_MESSAGES/texinfo.mo base-texinfo_locale-sv nls +./usr/share/locale/sv_SE.ISO8859-1 base-locale-sv +./usr/share/locale/sv_SE.ISO8859-1/LC_CTYPE base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-1/LC_MESSAGES base-locale-sv +./usr/share/locale/sv_SE.ISO8859-1/LC_MESSAGES/SYS_LC_MESSAGES base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-1/LC_MONETARY base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-1/LC_NUMERIC base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-1/LC_TIME base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-15 base-locale-sv +./usr/share/locale/sv_SE.ISO8859-15/LC_CTYPE base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-15/LC_MESSAGES base-locale-sv +./usr/share/locale/sv_SE.ISO8859-15/LC_MESSAGES/SYS_LC_MESSAGES base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-15/LC_MONETARY base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-15/LC_NUMERIC base-locale-sv nls +./usr/share/locale/sv_SE.ISO8859-15/LC_TIME base-locale-sv nls +./usr/share/locale/tr base-locale-tr +./usr/share/locale/tr/LC_MESSAGES base-locale-tr +./usr/share/locale/tr/LC_MESSAGES/tar.mo base-obsolete obsolete +./usr/share/locale/tr/LC_MESSAGES/texinfo.mo base-texinfo_locale-tr nls +./usr/share/locale/tr_TR.ISO8859-9 base-locale-tr +./usr/share/locale/tr_TR.ISO8859-9/LC_CTYPE base-locale-tr nls +./usr/share/locale/tr_TR.ISO8859-9/LC_MESSAGES base-locale-tr +./usr/share/locale/tr_TR.ISO8859-9/LC_MESSAGES/SYS_LC_MESSAGES base-locale-tr nls +./usr/share/locale/tr_TR.ISO8859-9/LC_MONETARY base-locale-tr nls +./usr/share/locale/tr_TR.ISO8859-9/LC_NUMERIC base-locale-tr nls +./usr/share/locale/tr_TR.ISO8859-9/LC_TIME base-locale-tr nls +./usr/share/locale/uk base-locale-uk +./usr/share/locale/uk/LC_MESSAGES base-locale-uk +./usr/share/locale/uk_UA.CP1251 base-locale-uk +./usr/share/locale/uk_UA.CP1251/LC_CTYPE base-locale-uk nls +./usr/share/locale/uk_UA.CP1251/LC_MESSAGES base-locale-uk +./usr/share/locale/uk_UA.CP1251/LC_MESSAGES/SYS_LC_MESSAGES base-locale-uk nls +./usr/share/locale/uk_UA.CP1251/LC_MONETARY base-locale-uk nls +./usr/share/locale/uk_UA.CP1251/LC_NUMERIC base-locale-uk nls +./usr/share/locale/uk_UA.CP1251/LC_TIME base-locale-uk nls +./usr/share/locale/uk_UA.ISO8859-5 base-locale-uk +./usr/share/locale/uk_UA.ISO8859-5/LC_CTYPE base-locale-uk nls +./usr/share/locale/uk_UA.ISO8859-5/LC_MESSAGES base-locale-uk +./usr/share/locale/uk_UA.ISO8859-5/LC_MESSAGES/SYS_LC_MESSAGES base-locale-uk nls +./usr/share/locale/uk_UA.ISO8859-5/LC_MONETARY base-locale-uk nls +./usr/share/locale/uk_UA.ISO8859-5/LC_NUMERIC base-locale-uk nls +./usr/share/locale/uk_UA.ISO8859-5/LC_TIME base-locale-uk nls +./usr/share/locale/uk_UA.KOI8-U base-locale-uk +./usr/share/locale/uk_UA.KOI8-U/LC_CTYPE base-locale-uk nls +./usr/share/locale/uk_UA.KOI8-U/LC_MESSAGES base-locale-uk +./usr/share/locale/uk_UA.KOI8-U/LC_MESSAGES/SYS_LC_MESSAGES base-locale-uk nls +./usr/share/locale/uk_UA.KOI8-U/LC_MONETARY base-locale-uk nls +./usr/share/locale/uk_UA.KOI8-U/LC_NUMERIC base-locale-uk nls +./usr/share/locale/uk_UA.KOI8-U/LC_TIME base-locale-uk nls +./usr/share/locale/zh_CN base-locale-zh +./usr/share/locale/zh_CN.GB18030 base-locale-zh +./usr/share/locale/zh_CN.GB18030/LC_CTYPE base-locale-zh nls +./usr/share/locale/zh_CN.GB18030/LC_MESSAGES base-locale-zh +./usr/share/locale/zh_CN.GB18030/LC_MESSAGES/SYS_LC_MESSAGES base-locale-zh nls +./usr/share/locale/zh_CN.GB18030/LC_MONETARY base-locale-zh nls +./usr/share/locale/zh_CN.GB18030/LC_NUMERIC base-locale-zh nls +./usr/share/locale/zh_CN.GB18030/LC_TIME base-locale-zh nls +./usr/share/locale/zh_CN.eucCN base-locale-zh +./usr/share/locale/zh_CN.eucCN/LC_CTYPE base-locale-zh nls +./usr/share/locale/zh_CN.eucCN/LC_MESSAGES base-locale-zh +./usr/share/locale/zh_CN.eucCN/LC_MESSAGES/SYS_LC_MESSAGES base-locale-zh nls +./usr/share/locale/zh_CN.eucCN/LC_MONETARY base-locale-zh nls +./usr/share/locale/zh_CN.eucCN/LC_NUMERIC base-locale-zh nls +./usr/share/locale/zh_CN.eucCN/LC_TIME base-locale-zh nls +./usr/share/locale/zh_CN/LC_MESSAGES base-locale-zh +./usr/share/locale/zh_CN/LC_MESSAGES/texinfo.mo base-texinfo_locale-zh nls +./usr/share/locale/zh_HK.Big5-HKSCS base-obsolete obsolete +./usr/share/locale/zh_HK.Big5-HKSCS/LC_CTYPE base-obsolete obsolete +./usr/share/locale/zh_HK.Big5hkscs base-locale-zh +./usr/share/locale/zh_HK.Big5hkscs/LC_CTYPE base-locale-zh nls +./usr/share/locale/zh_HK.Big5hkscs/LC_MESSAGES base-locale-zh +./usr/share/locale/zh_HK.Big5hkscs/LC_MESSAGES/SYS_LC_MESSAGES base-locale-zh nls +./usr/share/locale/zh_HK.Big5hkscs/LC_MONETARY base-locale-zh nls +./usr/share/locale/zh_HK.Big5hkscs/LC_NUMERIC base-locale-zh nls +./usr/share/locale/zh_HK.Big5hkscs/LC_TIME base-locale-zh nls +./usr/share/locale/zh_TW base-locale-zh +./usr/share/locale/zh_TW.BIG5 base-obsolete obsolete +./usr/share/locale/zh_TW.BIG5/LC_CTYPE base-obsolete obsolete +./usr/share/locale/zh_TW.Big5 base-locale-zh +./usr/share/locale/zh_TW.Big5/LC_CTYPE base-locale-zh nls +./usr/share/locale/zh_TW.Big5/LC_MESSAGES base-locale-zh +./usr/share/locale/zh_TW.Big5/LC_MESSAGES/SYS_LC_MESSAGES base-locale-zh nls +./usr/share/locale/zh_TW.Big5/LC_MONETARY base-locale-zh nls +./usr/share/locale/zh_TW.Big5/LC_NUMERIC base-locale-zh nls +./usr/share/locale/zh_TW.Big5/LC_TIME base-locale-zh nls +./usr/share/locale/zh_TW.eucTW base-locale-zh +./usr/share/locale/zh_TW.eucTW/LC_CTYPE base-locale-zh nls +./usr/share/locale/zh_TW.eucTW/LC_MESSAGES base-locale-zh +./usr/share/locale/zh_TW.eucTW/LC_MESSAGES/SYS_LC_MESSAGES base-locale-zh nls +./usr/share/locale/zh_TW.eucTW/LC_MONETARY base-locale-zh nls +./usr/share/locale/zh_TW.eucTW/LC_NUMERIC base-locale-zh nls +./usr/share/locale/zh_TW.eucTW/LC_TIME base-locale-zh nls +./usr/share/locale/zh_TW/LC_MESSAGES base-locale-zh +./usr/share/locale/zh_TW/LC_MESSAGES/texinfo.mo base-texinfo_locale-zh nls +./usr/share/lua base-sys-root +./usr/share/lua/5.1 base-sys-root +./usr/share/man base-man-share +./usr/share/man/COPYRIGHT base-obsolete obsolete +./usr/share/man/cat1 base-man-share +./usr/share/man/cat1/atari base-man-share +./usr/share/man/cat1/hp300 base-man-share +./usr/share/man/cat1/x68k base-man-share +./usr/share/man/cat2 base-man-share +./usr/share/man/cat3 base-man-share +./usr/share/man/cat3/atari base-obsolete obsolete +./usr/share/man/cat3f base-obsolete obsolete +./usr/share/man/cat4 base-man-share +./usr/share/man/cat4/acorn26 base-man-share +./usr/share/man/cat4/acorn32 base-man-share +./usr/share/man/cat4/alpha base-man-share +./usr/share/man/cat4/amiga base-man-share +./usr/share/man/cat4/arc base-man-share +./usr/share/man/cat4/arm26 base-obsolete obsolete +./usr/share/man/cat4/arm32 base-obsolete obsolete +./usr/share/man/cat4/atari base-man-share +./usr/share/man/cat4/cobalt base-man-share +./usr/share/man/cat4/dreamcast base-man-share +./usr/share/man/cat4/emips base-man-share +./usr/share/man/cat4/evbarm base-man-share +./usr/share/man/cat4/evbmips base-man-share +./usr/share/man/cat4/evbppc base-man-share +./usr/share/man/cat4/hp300 base-man-share +./usr/share/man/cat4/hp700 base-man-share +./usr/share/man/cat4/hpcarm base-man-share +./usr/share/man/cat4/hpcmips base-man-share +./usr/share/man/cat4/hpcsh base-man-share +./usr/share/man/cat4/i386 base-man-share +./usr/share/man/cat4/mac68k base-man-share +./usr/share/man/cat4/macppc base-man-share +./usr/share/man/cat4/mvme68k base-man-share +./usr/share/man/cat4/pc532 base-obsolete obsolete +./usr/share/man/cat4/pmax base-man-share +./usr/share/man/cat4/pmppc base-obsolete obsolete +./usr/share/man/cat4/prep base-man-share +./usr/share/man/cat4/sandpoint base-man-share +./usr/share/man/cat4/sgimips base-man-share +./usr/share/man/cat4/sparc base-man-share +./usr/share/man/cat4/sparc64 base-man-share +./usr/share/man/cat4/sun2 base-man-share +./usr/share/man/cat4/sun3 base-man-share +./usr/share/man/cat4/tahoe base-obsolete obsolete +./usr/share/man/cat4/vax base-man-share +./usr/share/man/cat4/x68k base-man-share +./usr/share/man/cat4/x86 base-man-share +./usr/share/man/cat5 base-man-share +./usr/share/man/cat6 base-man-share +./usr/share/man/cat7 base-man-share +./usr/share/man/cat8 base-man-share +./usr/share/man/cat8/acorn26 base-man-share +./usr/share/man/cat8/acorn32 base-man-share +./usr/share/man/cat8/algor base-man-share +./usr/share/man/cat8/alpha base-man-share +./usr/share/man/cat8/amd64 base-man-share +./usr/share/man/cat8/amiga base-man-share +./usr/share/man/cat8/arc base-man-share +./usr/share/man/cat8/arm26 base-obsolete obsolete +./usr/share/man/cat8/arm32 base-obsolete obsolete +./usr/share/man/cat8/atari base-man-share +./usr/share/man/cat8/bebox base-man-share +./usr/share/man/cat8/cats base-man-share +./usr/share/man/cat8/cesfic base-man-share +./usr/share/man/cat8/cobalt base-man-share +./usr/share/man/cat8/dreamcast base-man-share +./usr/share/man/cat8/emips base-man-share +./usr/share/man/cat8/evbarm base-man-share +./usr/share/man/cat8/evbmips base-man-share +./usr/share/man/cat8/evbppc base-man-share +./usr/share/man/cat8/evbsh3 base-man-share +./usr/share/man/cat8/evbsh5 base-obsolete obsolete +./usr/share/man/cat8/hp300 base-man-share +./usr/share/man/cat8/hp700 base-man-share +./usr/share/man/cat8/hpcarm base-man-share +./usr/share/man/cat8/hpcmips base-man-share +./usr/share/man/cat8/hpcsh base-man-share +./usr/share/man/cat8/i386 base-man-share +./usr/share/man/cat8/ibmnws base-man-share +./usr/share/man/cat8/luna68k base-man-share +./usr/share/man/cat8/mac68k base-man-share +./usr/share/man/cat8/macppc base-man-share +./usr/share/man/cat8/mipsco base-man-share +./usr/share/man/cat8/mmeye base-man-share +./usr/share/man/cat8/mvme68k base-man-share +./usr/share/man/cat8/mvmeppc base-man-share +./usr/share/man/cat8/netwinder base-man-share +./usr/share/man/cat8/news68k base-man-share +./usr/share/man/cat8/newsmips base-man-share +./usr/share/man/cat8/next68k base-man-share +./usr/share/man/cat8/ofppc base-man-share +./usr/share/man/cat8/pc532 base-obsolete obsolete +./usr/share/man/cat8/playstation2 base-obsolete obsolete +./usr/share/man/cat8/pmax base-man-share +./usr/share/man/cat8/pmppc base-obsolete obsolete +./usr/share/man/cat8/prep base-man-share +./usr/share/man/cat8/sandpoint base-man-share +./usr/share/man/cat8/sbmips base-man-share +./usr/share/man/cat8/sgimips base-man-share +./usr/share/man/cat8/shark base-man-share +./usr/share/man/cat8/sparc base-man-share +./usr/share/man/cat8/sparc64 base-man-share +./usr/share/man/cat8/sun2 base-man-share +./usr/share/man/cat8/sun3 base-man-share +./usr/share/man/cat8/tahoe base-obsolete obsolete +./usr/share/man/cat8/vax base-man-share +./usr/share/man/cat8/walnut base-obsolete obsolete +./usr/share/man/cat8/x68k base-man-share +./usr/share/man/cat8/x86 base-man-share +./usr/share/man/cat8/x86_64 base-obsolete obsolete +./usr/share/man/cat9 base-man-share +./usr/share/man/cat9/acorn26 base-man-share +./usr/share/man/cat9/alpha base-man-share +./usr/share/man/cat9/amiga base-man-share +./usr/share/man/cat9/arm26 base-obsolete obsolete +./usr/share/man/cat9/arm32 base-obsolete obsolete +./usr/share/man/cat9/atari base-man-share +./usr/share/man/cat9/emips base-man-share +./usr/share/man/cat9/hp300 base-man-share +./usr/share/man/cat9/i386 base-man-share +./usr/share/man/cat9/mac68k base-man-share +./usr/share/man/cat9/pc532 base-obsolete obsolete +./usr/share/man/cat9/pmax base-man-share +./usr/share/man/cat9/sparc base-man-share +./usr/share/man/cat9/sun3 base-man-share +./usr/share/man/cat9/vax base-man-share +./usr/share/man/cat9/x68k base-man-share +./usr/share/man/cat9/x86 base-man-share +./usr/share/man/html1 base-man-share +./usr/share/man/html1/atari base-man-share +./usr/share/man/html1/hp300 base-man-share +./usr/share/man/html1/x68k base-man-share +./usr/share/man/html2 base-man-share +./usr/share/man/html3 base-man-share +./usr/share/man/html3f base-man-share +./usr/share/man/html4 base-man-share +./usr/share/man/html4/acorn26 base-man-share +./usr/share/man/html4/acorn32 base-man-share +./usr/share/man/html4/alpha base-man-share +./usr/share/man/html4/amiga base-man-share +./usr/share/man/html4/arc base-man-share +./usr/share/man/html4/arm26 base-obsolete obsolete +./usr/share/man/html4/arm32 base-obsolete obsolete +./usr/share/man/html4/atari base-man-share +./usr/share/man/html4/cobalt base-man-share +./usr/share/man/html4/dreamcast base-man-share +./usr/share/man/html4/emips base-man-share +./usr/share/man/html4/evbarm base-man-share +./usr/share/man/html4/evbmips base-man-share +./usr/share/man/html4/evbppc base-man-share +./usr/share/man/html4/hp300 base-man-share +./usr/share/man/html4/hp700 base-man-share +./usr/share/man/html4/hpcarm base-man-share +./usr/share/man/html4/hpcmips base-man-share +./usr/share/man/html4/hpcsh base-man-share +./usr/share/man/html4/i386 base-man-share +./usr/share/man/html4/mac68k base-man-share +./usr/share/man/html4/macppc base-man-share +./usr/share/man/html4/mvme68k base-man-share +./usr/share/man/html4/pc532 base-obsolete obsolete +./usr/share/man/html4/pmax base-man-share +./usr/share/man/html4/pmppc base-obsolete obsolete +./usr/share/man/html4/prep base-man-share +./usr/share/man/html4/sandpoint base-man-share +./usr/share/man/html4/sgimips base-man-share +./usr/share/man/html4/sparc base-man-share +./usr/share/man/html4/sparc64 base-man-share +./usr/share/man/html4/sun2 base-man-share +./usr/share/man/html4/sun3 base-man-share +./usr/share/man/html4/vax base-man-share +./usr/share/man/html4/x68k base-man-share +./usr/share/man/html4/x86 base-man-share +./usr/share/man/html5 base-man-share +./usr/share/man/html6 base-man-share +./usr/share/man/html7 base-man-share +./usr/share/man/html8 base-man-share +./usr/share/man/html8/acorn26 base-man-share +./usr/share/man/html8/acorn32 base-man-share +./usr/share/man/html8/algor base-man-share +./usr/share/man/html8/alpha base-man-share +./usr/share/man/html8/amd64 base-man-share +./usr/share/man/html8/amiga base-man-share +./usr/share/man/html8/arc base-man-share +./usr/share/man/html8/arm26 base-obsolete obsolete +./usr/share/man/html8/arm32 base-obsolete obsolete +./usr/share/man/html8/atari base-man-share +./usr/share/man/html8/bebox base-man-share +./usr/share/man/html8/cats base-man-share +./usr/share/man/html8/cesfic base-man-share +./usr/share/man/html8/cobalt base-man-share +./usr/share/man/html8/dreamcast base-man-share +./usr/share/man/html8/emips base-man-share +./usr/share/man/html8/evbarm base-man-share +./usr/share/man/html8/evbmips base-man-share +./usr/share/man/html8/evbppc base-man-share +./usr/share/man/html8/evbsh3 base-man-share +./usr/share/man/html8/evbsh5 base-obsolete obsolete +./usr/share/man/html8/hp300 base-man-share +./usr/share/man/html8/hp700 base-man-share +./usr/share/man/html8/hpcarm base-man-share +./usr/share/man/html8/hpcmips base-man-share +./usr/share/man/html8/hpcsh base-man-share +./usr/share/man/html8/i386 base-man-share +./usr/share/man/html8/ibmnws base-man-share +./usr/share/man/html8/luna68k base-man-share +./usr/share/man/html8/mac68k base-man-share +./usr/share/man/html8/macppc base-man-share +./usr/share/man/html8/mipsco base-man-share +./usr/share/man/html8/mmeye base-man-share +./usr/share/man/html8/mvme68k base-man-share +./usr/share/man/html8/mvmeppc base-man-share +./usr/share/man/html8/netwinder base-man-share +./usr/share/man/html8/news68k base-man-share +./usr/share/man/html8/newsmips base-man-share +./usr/share/man/html8/next68k base-man-share +./usr/share/man/html8/ofppc base-man-share +./usr/share/man/html8/pc532 base-obsolete obsolete +./usr/share/man/html8/playstation base-obsolete obsolete +./usr/share/man/html8/playstation2 base-obsolete obsolete +./usr/share/man/html8/pmax base-man-share +./usr/share/man/html8/pmppc base-obsolete obsolete +./usr/share/man/html8/prep base-man-share +./usr/share/man/html8/sandpoint base-man-share +./usr/share/man/html8/sbmips base-man-share +./usr/share/man/html8/sgimips base-man-share +./usr/share/man/html8/shark base-man-share +./usr/share/man/html8/sparc base-man-share +./usr/share/man/html8/sparc64 base-man-share +./usr/share/man/html8/sun2 base-man-share +./usr/share/man/html8/sun3 base-man-share +./usr/share/man/html8/vax base-man-share +./usr/share/man/html8/walnut base-obsolete obsolete +./usr/share/man/html8/x68k base-man-share +./usr/share/man/html8/x86 base-man-share +./usr/share/man/html8/x86_64 base-obsolete obsolete +./usr/share/man/html9 base-man-share +./usr/share/man/html9/acorn26 base-man-share +./usr/share/man/html9/alpha base-man-share +./usr/share/man/html9/amiga base-man-share +./usr/share/man/html9/arm26 base-obsolete obsolete +./usr/share/man/html9/arm32 base-obsolete obsolete +./usr/share/man/html9/atari base-man-share +./usr/share/man/html9/emips base-man-share +./usr/share/man/html9/hp300 base-man-share +./usr/share/man/html9/i386 base-man-share +./usr/share/man/html9/mac68k base-man-share +./usr/share/man/html9/pc532 base-obsolete obsolete +./usr/share/man/html9/pmax base-man-share +./usr/share/man/html9/sparc base-man-share +./usr/share/man/html9/sun3 base-man-share +./usr/share/man/html9/vax base-man-share +./usr/share/man/html9/x68k base-man-share +./usr/share/man/html9/x86 base-man-share +./usr/share/man/makewhatis.sed base-man-share !makemandb,share +./usr/share/man/man1 base-man-share +./usr/share/man/man1/atari base-man-share +./usr/share/man/man1/hp300 base-man-share +./usr/share/man/man1/x68k base-man-share +./usr/share/man/man2 base-man-share +./usr/share/man/man3 base-man-share +./usr/share/man/man3/atari base-obsolete obsolete +./usr/share/man/man3f base-man-share +./usr/share/man/man4 base-man-share +./usr/share/man/man4/acorn26 base-man-share +./usr/share/man/man4/acorn32 base-man-share +./usr/share/man/man4/alpha base-man-share +./usr/share/man/man4/amiga base-man-share +./usr/share/man/man4/arc base-man-share +./usr/share/man/man4/arm26 base-obsolete obsolete +./usr/share/man/man4/arm32 base-obsolete obsolete +./usr/share/man/man4/atari base-man-share +./usr/share/man/man4/cobalt base-man-share +./usr/share/man/man4/dreamcast base-man-share +./usr/share/man/man4/emips base-man-share +./usr/share/man/man4/evbarm base-man-share +./usr/share/man/man4/evbmips base-man-share +./usr/share/man/man4/evbppc base-man-share +./usr/share/man/man4/hp300 base-man-share +./usr/share/man/man4/hp700 base-man-share +./usr/share/man/man4/hpcarm base-man-share +./usr/share/man/man4/hpcmips base-man-share +./usr/share/man/man4/hpcsh base-man-share +./usr/share/man/man4/i386 base-man-share +./usr/share/man/man4/mac68k base-man-share +./usr/share/man/man4/macppc base-man-share +./usr/share/man/man4/mvme68k base-man-share +./usr/share/man/man4/pc532 base-obsolete obsolete +./usr/share/man/man4/pmax base-man-share +./usr/share/man/man4/pmppc base-obsolete obsolete +./usr/share/man/man4/prep base-man-share +./usr/share/man/man4/sandpoint base-man-share +./usr/share/man/man4/sgimips base-man-share +./usr/share/man/man4/sparc base-man-share +./usr/share/man/man4/sparc64 base-man-share +./usr/share/man/man4/sun2 base-man-share +./usr/share/man/man4/sun3 base-man-share +./usr/share/man/man4/tahoe base-obsolete obsolete +./usr/share/man/man4/vax base-man-share +./usr/share/man/man4/x68k base-man-share +./usr/share/man/man4/x86 base-man-share +./usr/share/man/man5 base-man-share +./usr/share/man/man6 base-man-share +./usr/share/man/man7 base-man-share +./usr/share/man/man8 base-man-share +./usr/share/man/man8/acorn26 base-man-share +./usr/share/man/man8/acorn32 base-man-share +./usr/share/man/man8/algor base-man-share +./usr/share/man/man8/alpha base-man-share +./usr/share/man/man8/amd64 base-man-share +./usr/share/man/man8/amiga base-man-share +./usr/share/man/man8/arc base-man-share +./usr/share/man/man8/arm26 base-obsolete obsolete +./usr/share/man/man8/arm32 base-obsolete obsolete +./usr/share/man/man8/atari base-man-share +./usr/share/man/man8/bebox base-man-share +./usr/share/man/man8/cats base-man-share +./usr/share/man/man8/cesfic base-man-share +./usr/share/man/man8/cobalt base-man-share +./usr/share/man/man8/dreamcast base-man-share +./usr/share/man/man8/emips base-man-share +./usr/share/man/man8/evbarm base-man-share +./usr/share/man/man8/evbmips base-man-share +./usr/share/man/man8/evbppc base-man-share +./usr/share/man/man8/evbsh3 base-man-share +./usr/share/man/man8/evbsh5 base-obsolete obsolete +./usr/share/man/man8/hp300 base-man-share +./usr/share/man/man8/hp700 base-man-share +./usr/share/man/man8/hpcarm base-man-share +./usr/share/man/man8/hpcmips base-man-share +./usr/share/man/man8/hpcsh base-man-share +./usr/share/man/man8/i386 base-man-share +./usr/share/man/man8/ibmnws base-man-share +./usr/share/man/man8/luna68k base-man-share +./usr/share/man/man8/mac68k base-man-share +./usr/share/man/man8/macppc base-man-share +./usr/share/man/man8/mipsco base-man-share +./usr/share/man/man8/mmeye base-man-share +./usr/share/man/man8/mvme68k base-man-share +./usr/share/man/man8/mvmeppc base-man-share +./usr/share/man/man8/netwinder base-man-share +./usr/share/man/man8/news68k base-man-share +./usr/share/man/man8/newsmips base-man-share +./usr/share/man/man8/next68k base-man-share +./usr/share/man/man8/ofppc base-man-share +./usr/share/man/man8/pc532 base-obsolete obsolete +./usr/share/man/man8/playstation2 base-obsolete obsolete +./usr/share/man/man8/pmax base-man-share +./usr/share/man/man8/pmppc base-obsolete obsolete +./usr/share/man/man8/prep base-man-share +./usr/share/man/man8/sandpoint base-man-share +./usr/share/man/man8/sbmips base-man-share +./usr/share/man/man8/sgimips base-man-share +./usr/share/man/man8/shark base-man-share +./usr/share/man/man8/sparc base-man-share +./usr/share/man/man8/sparc64 base-man-share +./usr/share/man/man8/sun2 base-man-share +./usr/share/man/man8/sun3 base-man-share +./usr/share/man/man8/tahoe base-obsolete obsolete +./usr/share/man/man8/vax base-man-share +./usr/share/man/man8/walnut base-obsolete obsolete +./usr/share/man/man8/x68k base-man-share +./usr/share/man/man8/x86 base-man-share +./usr/share/man/man8/x86_64 base-obsolete obsolete +./usr/share/man/man9 base-man-share +./usr/share/man/man9/acorn26 base-man-share +./usr/share/man/man9/alpha base-man-share +./usr/share/man/man9/amiga base-man-share +./usr/share/man/man9/arm26 base-obsolete obsolete +./usr/share/man/man9/arm32 base-obsolete obsolete +./usr/share/man/man9/atari base-man-share +./usr/share/man/man9/emips base-man-share +./usr/share/man/man9/hp300 base-man-share +./usr/share/man/man9/i386 base-man-share +./usr/share/man/man9/mac68k base-man-share +./usr/share/man/man9/pc532 base-obsolete obsolete +./usr/share/man/man9/pmax base-man-share +./usr/share/man/man9/sparc base-man-share +./usr/share/man/man9/sun3 base-man-share +./usr/share/man/man9/vax base-man-share +./usr/share/man/man9/x68k base-man-share +./usr/share/man/man9/x86 base-man-share +./usr/share/man/whatis.db base-man-share man,!makemandb +./usr/share/me base-groff-share +./usr/share/misc base-terminfo-share +./usr/share/misc/acronyms base-reference-share share +./usr/share/misc/acronyms.comp base-reference-share share +./usr/share/misc/ascii base-reference-share share +./usr/share/misc/bsd-family-tree base-reference-share share +./usr/share/misc/getopt base-obsolete obsolete +./usr/share/misc/magic base-obsolete obsolete +./usr/share/misc/magic.mgc base-magic-share share +./usr/share/misc/magic.mime base-obsolete obsolete +./usr/share/misc/magic.mime.mgc base-obsolete obsolete +./usr/share/misc/mail.help base-reference-share share +./usr/share/misc/mail.tildehelp base-reference-share share +./usr/share/misc/map3270 base-obsolete obsolete +./usr/share/misc/more.help base-obsolete obsolete +./usr/share/misc/nslookup.help base-obsolete obsolete +./usr/share/misc/terminfo base-terminfo-share share +./usr/share/misc/terminfo.cdb base-terminfo-share share +./usr/share/misc/units.lib base-reference-share share +./usr/share/misc/usb_hid_usages base-reference-share share +./usr/share/misc/vgrindefs.db base-groff-share share +./usr/share/mk base-util-share +./usr/share/mk/bsd.README base-mk-share share +./usr/share/mk/bsd.clang-analyze.mk base-mk-share share +./usr/share/mk/bsd.clean.mk base-mk-share share +./usr/share/mk/bsd.crypto.mk base-obsolete obsolete +./usr/share/mk/bsd.dep.mk base-mk-share share +./usr/share/mk/bsd.depall.mk base-obsolete obsolete +./usr/share/mk/bsd.doc.mk base-mk-share share +./usr/share/mk/bsd.endian.mk base-mk-share share +./usr/share/mk/bsd.files.mk base-mk-share share +./usr/share/mk/bsd.gcc.mk base-mk-share share +./usr/share/mk/bsd.hostlib.mk base-mk-share share +./usr/share/mk/bsd.hostprog.mk base-mk-share share +./usr/share/mk/bsd.inc.mk base-mk-share share +./usr/share/mk/bsd.info.mk base-mk-share share +./usr/share/mk/bsd.init.mk base-mk-share share +./usr/share/mk/bsd.ioconf.mk base-mk-share share +./usr/share/mk/bsd.kernobj.mk base-mk-share share +./usr/share/mk/bsd.kinc.mk base-mk-share share +./usr/share/mk/bsd.klinks.mk base-mk-share share +./usr/share/mk/bsd.kmod.mk base-obsolete obsolete +./usr/share/mk/bsd.kmodule.mk base-mk-share share +./usr/share/mk/bsd.lib.mk base-mk-share share +./usr/share/mk/bsd.links.mk base-mk-share share +./usr/share/mk/bsd.lua.mk base-mk-share share +./usr/share/mk/bsd.man.mk base-mk-share share +./usr/share/mk/bsd.nls.mk base-mk-share share +./usr/share/mk/bsd.obj.mk base-mk-share share +./usr/share/mk/bsd.own.mk base-mk-share share +./usr/share/mk/bsd.port.mk base-obsolete obsolete +./usr/share/mk/bsd.port.subdir.mk base-obsolete obsolete +./usr/share/mk/bsd.prog.mk base-mk-share share +./usr/share/mk/bsd.rpc.mk base-mk-share share +./usr/share/mk/bsd.shlib.mk base-mk-share share +./usr/share/mk/bsd.subdir.mk base-mk-share share +./usr/share/mk/bsd.sys.mk base-mk-share share +./usr/share/mk/bsd.test.mk base-mk-share share +./usr/share/mk/bsd.x11.mk base-mk-share share +./usr/share/mk/sys.mk base-mk-share share +./usr/share/ms base-groff-share +./usr/share/nls base-locale-share +./usr/share/nls/C base-locale-share +./usr/share/nls/C/grep.cat base-locale-share nls,bsdgrep +./usr/share/nls/C/libc.cat base-locale-share nls +./usr/share/nls/C/sushi.cat base-obsolete obsolete +./usr/share/nls/Pig base-locale-Pig +./usr/share/nls/Pig/libc.cat base-locale-Pig nls +./usr/share/nls/ca base-locale-ca +./usr/share/nls/ca/libc.cat base-locale-ca nls +./usr/share/nls/cs base-locale-cs +./usr/share/nls/cs/libc.cat base-locale-cs nls +./usr/share/nls/de base-locale-de +./usr/share/nls/de/libc.cat base-locale-de nls +./usr/share/nls/es base-locale-es +./usr/share/nls/es/libc.cat base-locale-es nls +./usr/share/nls/es_ES.ISO8859-1 base-locale-es +./usr/share/nls/es_ES.ISO8859-1/grep.cat base-locale-es nls,bsdgrep +./usr/share/nls/fi base-locale-fi +./usr/share/nls/fi/libc.cat base-locale-fi nls +./usr/share/nls/fr base-locale-fr +./usr/share/nls/fr/libc.cat base-locale-fr nls +./usr/share/nls/gl_ES.ISO8859-1 base-locale-gl +./usr/share/nls/gl_ES.ISO8859-1/grep.cat base-locale-gl nls,bsdgrep +./usr/share/nls/hu_HU.ISO8859-2 base-locale-hu +./usr/share/nls/hu_HU.ISO8859-2/grep.cat base-locale-hu nls,bsdgrep +./usr/share/nls/ja_JP.SJIS base-locale-ja +./usr/share/nls/ja_JP.SJIS/grep.cat base-locale-ja nls,bsdgrep +./usr/share/nls/ja_JP.UTF-8 base-locale-ja +./usr/share/nls/ja_JP.UTF-8/grep.cat base-locale-ja nls,bsdgrep +./usr/share/nls/ja_JP.eucJP base-locale-ja +./usr/share/nls/ja_JP.eucJP/grep.cat base-locale-ja nls,bsdgrep +./usr/share/nls/nl base-locale-nl +./usr/share/nls/nl/libc.cat base-locale-nl nls +./usr/share/nls/nls.alias base-locale-share nls +./usr/share/nls/no base-locale-no +./usr/share/nls/no/libc.cat base-locale-no nls +./usr/share/nls/pl base-locale-pl +./usr/share/nls/pl/libc.cat base-locale-pl nls +./usr/share/nls/pt_BR.ISO8859-1 base-locale-pt +./usr/share/nls/pt_BR.ISO8859-1/grep.cat base-locale-pt nls,bsdgrep +./usr/share/nls/ru_RU.KOI8-R base-locale-ru +./usr/share/nls/ru_RU.KOI8-R/grep.cat base-locale-ru nls,bsdgrep +./usr/share/nls/sk base-locale-sk +./usr/share/nls/sk/libc.cat base-locale-sk nls +./usr/share/nls/sv base-locale-sv +./usr/share/nls/sv/libc.cat base-locale-sv nls +./usr/share/nls/uk_UA.UTF-8 base-locale-uk +./usr/share/nls/uk_UA.UTF-8/grep.cat base-locale-uk nls,bsdgrep +./usr/share/nls/zh_CN.UTF-8 base-locale-zh +./usr/share/nls/zh_CN.UTF-8/grep.cat base-locale-zh nls,bsdgrep +./usr/share/nvi base-util-share +./usr/share/nvi/catalog base-util-share +./usr/share/nvi/catalog/dutch base-util-share share +./usr/share/nvi/catalog/english base-util-share share +./usr/share/nvi/catalog/french base-util-share share +./usr/share/nvi/catalog/german base-util-share share +./usr/share/nvi/catalog/ru_RU.KOI8-R base-util-share share +./usr/share/nvi/catalog/spanish base-util-share share +./usr/share/nvi/catalog/swedish base-util-share share +./usr/share/sushi base-obsolete obsolete +./usr/share/sushi/help base-obsolete obsolete +./usr/share/sushi/index base-obsolete obsolete +./usr/share/sushi/info base-obsolete obsolete +./usr/share/sushi/info/index base-obsolete obsolete +./usr/share/sushi/info/programming base-obsolete obsolete +./usr/share/sushi/info/programming/basics base-obsolete obsolete +./usr/share/sushi/info/programming/basics/help base-obsolete obsolete +./usr/share/sushi/info/programming/execapi base-obsolete obsolete +./usr/share/sushi/info/programming/execapi/help base-obsolete obsolete +./usr/share/sushi/info/programming/formapi base-obsolete obsolete +./usr/share/sushi/info/programming/formapi/help base-obsolete obsolete +./usr/share/sushi/info/programming/help base-obsolete obsolete +./usr/share/sushi/info/programming/helpapi base-obsolete obsolete +./usr/share/sushi/info/programming/helpapi/help base-obsolete obsolete +./usr/share/sushi/info/programming/i18n base-obsolete obsolete +./usr/share/sushi/info/programming/i18n/help base-obsolete obsolete +./usr/share/sushi/info/programming/index base-obsolete obsolete +./usr/share/sushi/info/programming/indexapi base-obsolete obsolete +./usr/share/sushi/info/programming/indexapi/help base-obsolete obsolete +./usr/share/sushi/info/programming/scriptapi base-obsolete obsolete +./usr/share/sushi/info/programming/scriptapi/help base-obsolete obsolete +./usr/share/sushi/info/programming/searchpaths base-obsolete obsolete +./usr/share/sushi/info/programming/searchpaths/help base-obsolete obsolete +./usr/share/sushi/install base-obsolete obsolete +./usr/share/sushi/install/help base-obsolete obsolete +./usr/share/sushi/install/index base-obsolete obsolete +./usr/share/sushi/install/install base-obsolete obsolete +./usr/share/sushi/install/install/form base-obsolete obsolete +./usr/share/sushi/install/install/preform base-obsolete obsolete +./usr/share/sushi/install/install/script base-obsolete obsolete +./usr/share/sushi/install/install/script1 base-obsolete obsolete +./usr/share/sushi/install/install/script2 base-obsolete obsolete +./usr/share/sushi/install/installb base-obsolete obsolete +./usr/share/sushi/install/installb/form base-obsolete obsolete +./usr/share/sushi/install/installb/preform base-obsolete obsolete +./usr/share/sushi/install/installb/script base-obsolete obsolete +./usr/share/sushi/install/list base-obsolete obsolete +./usr/share/sushi/install/list/exec base-obsolete obsolete +./usr/share/sushi/install/remove base-obsolete obsolete +./usr/share/sushi/install/remove/form base-obsolete obsolete +./usr/share/sushi/install/remove/script base-obsolete obsolete +./usr/share/sushi/install/remove/script1 base-obsolete obsolete +./usr/share/sushi/network base-obsolete obsolete +./usr/share/sushi/network/exports base-obsolete obsolete +./usr/share/sushi/network/exports/addexport base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/form base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/help base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/preform base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script1 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script2 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script3 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script4 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script5 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script6 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script7 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script8 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/script9 base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/scripta base-obsolete obsolete +./usr/share/sushi/network/exports/addexport/scriptb base-obsolete obsolete +./usr/share/sushi/network/exports/delexport base-obsolete obsolete +./usr/share/sushi/network/exports/delexport/form base-obsolete obsolete +./usr/share/sushi/network/exports/delexport/help base-obsolete obsolete +./usr/share/sushi/network/exports/delexport/script base-obsolete obsolete +./usr/share/sushi/network/exports/delexport/script1 base-obsolete obsolete +./usr/share/sushi/network/exports/help base-obsolete obsolete +./usr/share/sushi/network/exports/index base-obsolete obsolete +./usr/share/sushi/network/help base-obsolete obsolete +./usr/share/sushi/network/hostname base-obsolete obsolete +./usr/share/sushi/network/hostname/form base-obsolete obsolete +./usr/share/sushi/network/hostname/help base-obsolete obsolete +./usr/share/sushi/network/hostname/script base-obsolete obsolete +./usr/share/sushi/network/hostname/script1 base-obsolete obsolete +./usr/share/sushi/network/hosts base-obsolete obsolete +./usr/share/sushi/network/hosts/addhost base-obsolete obsolete +./usr/share/sushi/network/hosts/addhost/form base-obsolete obsolete +./usr/share/sushi/network/hosts/addhost/help base-obsolete obsolete +./usr/share/sushi/network/hosts/addhost/script base-obsolete obsolete +./usr/share/sushi/network/hosts/addv6host base-obsolete obsolete +./usr/share/sushi/network/hosts/addv6host/form base-obsolete obsolete +./usr/share/sushi/network/hosts/addv6host/help base-obsolete obsolete +./usr/share/sushi/network/hosts/addv6host/script base-obsolete obsolete +./usr/share/sushi/network/hosts/delhost base-obsolete obsolete +./usr/share/sushi/network/hosts/delhost/form base-obsolete obsolete +./usr/share/sushi/network/hosts/delhost/help base-obsolete obsolete +./usr/share/sushi/network/hosts/delhost/script base-obsolete obsolete +./usr/share/sushi/network/hosts/delhost/script1 base-obsolete obsolete +./usr/share/sushi/network/hosts/help base-obsolete obsolete +./usr/share/sushi/network/hosts/index base-obsolete obsolete +./usr/share/sushi/network/hosts/modhost base-obsolete obsolete +./usr/share/sushi/network/hosts/modhost/form base-obsolete obsolete +./usr/share/sushi/network/hosts/modhost/help base-obsolete obsolete +./usr/share/sushi/network/hosts/modhost/preform base-obsolete obsolete +./usr/share/sushi/network/hosts/modhost/script base-obsolete obsolete +./usr/share/sushi/network/hosts/modhost/script1 base-obsolete obsolete +./usr/share/sushi/network/hosts/modhost/script2 base-obsolete obsolete +./usr/share/sushi/network/hosts/modv6host base-obsolete obsolete +./usr/share/sushi/network/hosts/modv6host/form base-obsolete obsolete +./usr/share/sushi/network/hosts/modv6host/help base-obsolete obsolete +./usr/share/sushi/network/hosts/modv6host/preform base-obsolete obsolete +./usr/share/sushi/network/hosts/modv6host/script base-obsolete obsolete +./usr/share/sushi/network/hosts/modv6host/script1 base-obsolete obsolete +./usr/share/sushi/network/hosts/modv6host/script2 base-obsolete obsolete +./usr/share/sushi/network/index base-obsolete obsolete +./usr/share/sushi/network/interfaces base-obsolete obsolete +./usr/share/sushi/network/interfaces/help base-obsolete obsolete +./usr/share/sushi/network/interfaces/index base-obsolete obsolete +./usr/share/sushi/network/interfaces/interface base-obsolete obsolete +./usr/share/sushi/network/interfaces/interface/form base-obsolete obsolete +./usr/share/sushi/network/interfaces/interface/help base-obsolete obsolete +./usr/share/sushi/network/interfaces/interface/nwid.sed base-obsolete obsolete +./usr/share/sushi/network/interfaces/interface/preform base-obsolete obsolete +./usr/share/sushi/network/interfaces/interface/script base-obsolete obsolete +./usr/share/sushi/network/interfaces/interface/script1 base-obsolete obsolete +./usr/share/sushi/network/interfaces/interface/script2 base-obsolete obsolete +./usr/share/sushi/network/interfaces/listif base-obsolete obsolete +./usr/share/sushi/network/interfaces/listif/script base-obsolete obsolete +./usr/share/sushi/network/routing base-obsolete obsolete +./usr/share/sushi/network/routing/default base-obsolete obsolete +./usr/share/sushi/network/routing/default/form base-obsolete obsolete +./usr/share/sushi/network/routing/default/help base-obsolete obsolete +./usr/share/sushi/network/routing/default/script base-obsolete obsolete +./usr/share/sushi/network/routing/default/script1 base-obsolete obsolete +./usr/share/sushi/network/routing/help base-obsolete obsolete +./usr/share/sushi/network/routing/index base-obsolete obsolete +./usr/share/sushi/network/routing/ipv4table base-obsolete obsolete +./usr/share/sushi/network/routing/ipv4table/exec base-obsolete obsolete +./usr/share/sushi/network/yp base-obsolete obsolete +./usr/share/sushi/network/yp/client base-obsolete obsolete +./usr/share/sushi/network/yp/client/form base-obsolete obsolete +./usr/share/sushi/network/yp/client/help base-obsolete obsolete +./usr/share/sushi/network/yp/client/script base-obsolete obsolete +./usr/share/sushi/network/yp/client/script1 base-obsolete obsolete +./usr/share/sushi/network/yp/domainname base-obsolete obsolete +./usr/share/sushi/network/yp/domainname/form base-obsolete obsolete +./usr/share/sushi/network/yp/domainname/help base-obsolete obsolete +./usr/share/sushi/network/yp/domainname/script base-obsolete obsolete +./usr/share/sushi/network/yp/domainname/script1 base-obsolete obsolete +./usr/share/sushi/network/yp/help base-obsolete obsolete +./usr/share/sushi/network/yp/index base-obsolete obsolete +./usr/share/sushi/network/yp/master base-obsolete obsolete +./usr/share/sushi/network/yp/master/form base-obsolete obsolete +./usr/share/sushi/network/yp/master/help base-obsolete obsolete +./usr/share/sushi/network/yp/master/script base-obsolete obsolete +./usr/share/sushi/network/yp/master/script1 base-obsolete obsolete +./usr/share/sushi/network/yp/slave base-obsolete obsolete +./usr/share/sushi/network/yp/slave/form base-obsolete obsolete +./usr/share/sushi/network/yp/slave/help base-obsolete obsolete +./usr/share/sushi/network/yp/slave/script base-obsolete obsolete +./usr/share/sushi/network/yp/slave/script1 base-obsolete obsolete +./usr/share/sushi/procs base-obsolete obsolete +./usr/share/sushi/procs/help base-obsolete obsolete +./usr/share/sushi/procs/index base-obsolete obsolete +./usr/share/sushi/procs/restartallprocs base-obsolete obsolete +./usr/share/sushi/procs/restartallprocs/form base-obsolete obsolete +./usr/share/sushi/procs/restartallprocs/help base-obsolete obsolete +./usr/share/sushi/procs/restartallprocs/script base-obsolete obsolete +./usr/share/sushi/procs/restartallprocs/script1 base-obsolete obsolete +./usr/share/sushi/procs/restartprocs base-obsolete obsolete +./usr/share/sushi/procs/restartprocs/form base-obsolete obsolete +./usr/share/sushi/procs/restartprocs/help base-obsolete obsolete +./usr/share/sushi/procs/restartprocs/script base-obsolete obsolete +./usr/share/sushi/procs/restartprocs/script1 base-obsolete obsolete +./usr/share/sushi/procs/showallprocs base-obsolete obsolete +./usr/share/sushi/procs/showallprocs/script base-obsolete obsolete +./usr/share/sushi/procs/showprocs base-obsolete obsolete +./usr/share/sushi/procs/showprocs/script base-obsolete obsolete +./usr/share/sushi/procs/startallprocs base-obsolete obsolete +./usr/share/sushi/procs/startallprocs/form base-obsolete obsolete +./usr/share/sushi/procs/startallprocs/help base-obsolete obsolete +./usr/share/sushi/procs/startallprocs/script base-obsolete obsolete +./usr/share/sushi/procs/startallprocs/script1 base-obsolete obsolete +./usr/share/sushi/procs/startprocs base-obsolete obsolete +./usr/share/sushi/procs/startprocs/form base-obsolete obsolete +./usr/share/sushi/procs/startprocs/help base-obsolete obsolete +./usr/share/sushi/procs/startprocs/script base-obsolete obsolete +./usr/share/sushi/procs/startprocs/script1 base-obsolete obsolete +./usr/share/sushi/procs/stopallprocs base-obsolete obsolete +./usr/share/sushi/procs/stopallprocs/form base-obsolete obsolete +./usr/share/sushi/procs/stopallprocs/help base-obsolete obsolete +./usr/share/sushi/procs/stopallprocs/script base-obsolete obsolete +./usr/share/sushi/procs/stopallprocs/script1 base-obsolete obsolete +./usr/share/sushi/procs/stopprocs base-obsolete obsolete +./usr/share/sushi/procs/stopprocs/form base-obsolete obsolete +./usr/share/sushi/procs/stopprocs/help base-obsolete obsolete +./usr/share/sushi/procs/stopprocs/script base-obsolete obsolete +./usr/share/sushi/procs/stopprocs/script1 base-obsolete obsolete +./usr/share/sushi/procs/topcpu base-obsolete obsolete +./usr/share/sushi/procs/topcpu/script base-obsolete obsolete +./usr/share/sushi/procs/topmem base-obsolete obsolete +./usr/share/sushi/procs/topmem/script base-obsolete obsolete +./usr/share/sushi/procs/toptime base-obsolete obsolete +./usr/share/sushi/procs/toptime/script base-obsolete obsolete +./usr/share/sushi/scriptoff base-obsolete obsolete +./usr/share/sushi/scriptoff/func base-obsolete obsolete +./usr/share/sushi/scripton base-obsolete obsolete +./usr/share/sushi/scripton/func base-obsolete obsolete +./usr/share/sushi/system base-obsolete obsolete +./usr/share/sushi/system/dailyconf base-obsolete obsolete +./usr/share/sushi/system/dailyconf/form base-obsolete obsolete +./usr/share/sushi/system/dailyconf/help base-obsolete obsolete +./usr/share/sushi/system/dailyconf/script base-obsolete obsolete +./usr/share/sushi/system/dailyconf/script1 base-obsolete obsolete +./usr/share/sushi/system/dailyconf/script2 base-obsolete obsolete +./usr/share/sushi/system/dailyconf/script3 base-obsolete obsolete +./usr/share/sushi/system/help base-obsolete obsolete +./usr/share/sushi/system/index base-obsolete obsolete +./usr/share/sushi/system/inetdconf base-obsolete obsolete +./usr/share/sushi/system/inetdconf/form base-obsolete obsolete +./usr/share/sushi/system/inetdconf/script base-obsolete obsolete +./usr/share/sushi/system/inetdconf/script1 base-obsolete obsolete +./usr/share/sushi/system/localtime base-obsolete obsolete +./usr/share/sushi/system/localtime/form base-obsolete obsolete +./usr/share/sushi/system/localtime/help base-obsolete obsolete +./usr/share/sushi/system/localtime/script base-obsolete obsolete +./usr/share/sushi/system/localtime/script1 base-obsolete obsolete +./usr/share/sushi/system/mailerconf base-obsolete obsolete +./usr/share/sushi/system/mailerconf/form base-obsolete obsolete +./usr/share/sushi/system/mailerconf/script base-obsolete obsolete +./usr/share/sushi/system/mailerconf/script1 base-obsolete obsolete +./usr/share/sushi/system/rcconf base-obsolete obsolete +./usr/share/sushi/system/rcconf/form base-obsolete obsolete +./usr/share/sushi/system/rcconf/script base-obsolete obsolete +./usr/share/sushi/system/rcconf/script1 base-obsolete obsolete +./usr/share/sushi/system/rcconf/script2 base-obsolete obsolete +./usr/share/sushi/system/rcconf/script3 base-obsolete obsolete +./usr/share/sushi/system/rcconf/script4 base-obsolete obsolete +./usr/share/sushi/system/securityconf base-obsolete obsolete +./usr/share/sushi/system/securityconf/form base-obsolete obsolete +./usr/share/sushi/system/securityconf/help base-obsolete obsolete +./usr/share/sushi/system/securityconf/script base-obsolete obsolete +./usr/share/sushi/system/securityconf/script1 base-obsolete obsolete +./usr/share/sushi/system/securityconf/script2 base-obsolete obsolete +./usr/share/sushi/system/securityconf/script3 base-obsolete obsolete +./usr/share/sushi/system/sshdconf base-obsolete obsolete +./usr/share/sushi/system/sshdconf/defaults base-obsolete obsolete +./usr/share/sushi/system/sshdconf/form base-obsolete obsolete +./usr/share/sushi/system/sshdconf/help base-obsolete obsolete +./usr/share/sushi/system/sshdconf/script base-obsolete obsolete +./usr/share/sushi/system/sshdconf/script1 base-obsolete obsolete +./usr/share/sushi/system/sshdconf/script2 base-obsolete obsolete +./usr/share/sushi/system/sshdconf/script3 base-obsolete obsolete +./usr/share/sushi/system/sshdconf/script4 base-obsolete obsolete +./usr/share/sushi/system/sshdconf/script5 base-obsolete obsolete +./usr/share/sushi/system/sshdconf/script6 base-obsolete obsolete +./usr/share/sushi/system/sshdconf/script7 base-obsolete obsolete +./usr/share/sushi/system/sysctl base-obsolete obsolete +./usr/share/sushi/system/sysctl/form base-obsolete obsolete +./usr/share/sushi/system/sysctl/help base-obsolete obsolete +./usr/share/sushi/system/sysctl/preform base-obsolete obsolete +./usr/share/sushi/system/sysctl/script base-obsolete obsolete +./usr/share/sushi/system/sysctl/script1 base-obsolete obsolete +./usr/share/sushi/system/sysctl/script2 base-obsolete obsolete +./usr/share/sushi/system/sysctl/sysctls base-obsolete obsolete +./usr/share/sushi/system/usermgmtconf base-obsolete obsolete +./usr/share/sushi/system/usermgmtconf/form base-obsolete obsolete +./usr/share/sushi/system/usermgmtconf/help base-obsolete obsolete +./usr/share/sushi/system/usermgmtconf/script base-obsolete obsolete +./usr/share/sushi/system/usermgmtconf/script1 base-obsolete obsolete +./usr/share/sushi/system/weeklyconf base-obsolete obsolete +./usr/share/sushi/system/weeklyconf/form base-obsolete obsolete +./usr/share/sushi/system/weeklyconf/help base-obsolete obsolete +./usr/share/sushi/system/weeklyconf/script base-obsolete obsolete +./usr/share/sushi/system/weeklyconf/script1 base-obsolete obsolete +./usr/share/sushi/system/weeklyconf/script3 base-obsolete obsolete +./usr/share/sushi/users base-obsolete obsolete +./usr/share/sushi/users/addgroup base-obsolete obsolete +./usr/share/sushi/users/addgroup/form base-obsolete obsolete +./usr/share/sushi/users/addgroup/script base-obsolete obsolete +./usr/share/sushi/users/adduser base-obsolete obsolete +./usr/share/sushi/users/adduser/form base-obsolete obsolete +./usr/share/sushi/users/adduser/script base-obsolete obsolete +./usr/share/sushi/users/adduser/script1 base-obsolete obsolete +./usr/share/sushi/users/adduser/script2 base-obsolete obsolete +./usr/share/sushi/users/adduser/script3 base-obsolete obsolete +./usr/share/sushi/users/delgroup base-obsolete obsolete +./usr/share/sushi/users/delgroup/form base-obsolete obsolete +./usr/share/sushi/users/delgroup/script base-obsolete obsolete +./usr/share/sushi/users/delgroup/script1 base-obsolete obsolete +./usr/share/sushi/users/deluser base-obsolete obsolete +./usr/share/sushi/users/deluser/form base-obsolete obsolete +./usr/share/sushi/users/deluser/preform base-obsolete obsolete +./usr/share/sushi/users/deluser/script base-obsolete obsolete +./usr/share/sushi/users/deluser/script1 base-obsolete obsolete +./usr/share/sushi/users/deluser/script2 base-obsolete obsolete +./usr/share/sushi/users/disuser base-obsolete obsolete +./usr/share/sushi/users/disuser/form base-obsolete obsolete +./usr/share/sushi/users/disuser/script base-obsolete obsolete +./usr/share/sushi/users/disuser/script1 base-obsolete obsolete +./usr/share/sushi/users/index base-obsolete obsolete +./usr/share/sushi/users/listgroup base-obsolete obsolete +./usr/share/sushi/users/listgroup/script base-obsolete obsolete +./usr/share/sushi/users/listuser base-obsolete obsolete +./usr/share/sushi/users/listuser/script base-obsolete obsolete +./usr/share/sushi/users/moduser base-obsolete obsolete +./usr/share/sushi/users/moduser/form base-obsolete obsolete +./usr/share/sushi/users/moduser/preform base-obsolete obsolete +./usr/share/sushi/users/moduser/script base-obsolete obsolete +./usr/share/sushi/users/moduser/script1 base-obsolete obsolete +./usr/share/sushi/users/moduser/script2 base-obsolete obsolete +./usr/share/sushi/users/passwd base-obsolete obsolete +./usr/share/sushi/users/passwd/form base-obsolete obsolete +./usr/share/sushi/users/passwd/script base-obsolete obsolete +./usr/share/sushi/users/passwd/script1 base-obsolete obsolete +./usr/share/sushi/util base-obsolete obsolete +./usr/share/sushi/util/help base-obsolete obsolete +./usr/share/sushi/util/index base-obsolete obsolete +./usr/share/sushi/util/logging base-obsolete obsolete +./usr/share/sushi/util/logging/func base-obsolete obsolete +./usr/share/sushi/util/scripting base-obsolete obsolete +./usr/share/sushi/util/scripting/func base-obsolete obsolete +./usr/share/tabset base-util-share +./usr/share/tabset/3101 base-util-share share +./usr/share/tabset/9837 base-util-share share +./usr/share/tabset/aa base-util-share share +./usr/share/tabset/aed512 base-util-share share +./usr/share/tabset/beehive base-util-share share +./usr/share/tabset/diablo base-util-share share +./usr/share/tabset/dtc382 base-util-share share +./usr/share/tabset/hp700-wy base-util-share share +./usr/share/tabset/ibm3101 base-util-share share +./usr/share/tabset/std base-util-share share +./usr/share/tabset/stdcrt base-util-share share +./usr/share/tabset/tandem653 base-util-share share +./usr/share/tabset/teleray base-util-share share +./usr/share/tabset/vt100 base-util-share share +./usr/share/tabset/vt100-w base-util-share share +./usr/share/tabset/wyse-adds base-util-share share +./usr/share/tabset/xerox1720 base-util-share share +./usr/share/tabset/xerox1730 base-util-share share +./usr/share/tabset/xerox1730-lm base-util-share share +./usr/share/tabset/zenith29 base-util-share share +./usr/share/tmac base-groff-share +./usr/share/tmac/mdoc base-groff-share +./usr/share/tmac/mm base-groff-share +./usr/share/vi base-obsolete obsolete +./usr/share/vi/catalog base-obsolete obsolete +./usr/share/vi/catalog/dutch base-obsolete obsolete +./usr/share/vi/catalog/english base-obsolete obsolete +./usr/share/vi/catalog/french base-obsolete obsolete +./usr/share/vi/catalog/german base-obsolete obsolete +./usr/share/vi/catalog/ru_RU.KOI8-R base-obsolete obsolete +./usr/share/vi/catalog/ru_SU.KOI8-R base-obsolete obsolete +./usr/share/vi/catalog/spanish base-obsolete obsolete +./usr/share/vi/catalog/swedish base-obsolete obsolete +./usr/share/wscons base-util-share +./usr/share/wscons/fonts base-util-share +./usr/share/wscons/fonts/donna.816 base-util-share share +./usr/share/wscons/fonts/flori.816 base-util-share share +./usr/share/wscons/fonts/latin2.808 base-util-share share +./usr/share/wscons/fonts/latin2.814 base-util-share share +./usr/share/wscons/fonts/latin2.816 base-util-share share +./usr/share/wscons/fonts/orator.816 base-util-share share +./usr/share/wscons/fonts/vt220h.808 base-util-share share +./usr/share/wscons/fonts/vt220h.810 base-util-share share +./usr/share/wscons/fonts/vt220h.814 base-util-share share +./usr/share/wscons/fonts/vt220h.816 base-util-share share +./usr/share/wscons/fonts/vt220l.808 base-util-share share +./usr/share/wscons/fonts/vt220l.810 base-util-share share +./usr/share/wscons/fonts/vt220l.814 base-util-share share +./usr/share/wscons/fonts/vt220l.816 base-util-share share +./usr/share/wscons/keymaps base-util-share +./usr/share/wscons/keymaps/amikbd.pl.qwertz.iso8859-2 base-util-share share +./usr/share/wscons/keymaps/mkbd.pt.iso8859-1 base-util-share share +./usr/share/wscons/keymaps/mkbd.pt.iso8859-2 base-obsolete obsolete +./usr/share/wscons/keymaps/pckbd.be.azerty base-util-share share +./usr/share/wscons/keymaps/pckbd.br.abnt2 base-util-share share +./usr/share/wscons/keymaps/pckbd.de_CH.iso8859-1 base-util-share share +./usr/share/wscons/keymaps/pckbd.de_CH.iso8859-2 base-obsolete obsolete +./usr/share/wscons/keymaps/pckbd.fr_CA.iso8859-1 base-util-share share +./usr/share/wscons/keymaps/pckbd.fr_CH.iso8859-1 base-util-share share +./usr/share/wscons/keymaps/pckbd.fr_CH.iso8859-2 base-obsolete obsolete +./usr/share/wscons/keymaps/pckbd.hu.iso8859-2 base-util-share share +./usr/share/wscons/keymaps/pckbd.pl.iso8859-2 base-util-share share +./usr/share/wscons/keymaps/pckbd.ru.koi8-r base-util-share share +./usr/share/wscons/keymaps/pckbd.sv.svascii base-util-share share +./usr/share/wscons/keymaps/ukbd.any.powerbook base-util-share share +./usr/share/wscons/keymaps/ukbd.be.azerty base-util-share share +./usr/share/zoneinfo base-sys-share +./usr/share/zoneinfo/Africa base-sys-share +./usr/share/zoneinfo/Africa/Abidjan base-sys-share share +./usr/share/zoneinfo/Africa/Accra base-sys-share share +./usr/share/zoneinfo/Africa/Addis_Ababa base-sys-share share +./usr/share/zoneinfo/Africa/Algiers base-sys-share share +./usr/share/zoneinfo/Africa/Asmara base-sys-share share +./usr/share/zoneinfo/Africa/Asmera base-sys-share share +./usr/share/zoneinfo/Africa/Bamako base-sys-share share +./usr/share/zoneinfo/Africa/Bangui base-sys-share share +./usr/share/zoneinfo/Africa/Banjul base-sys-share share +./usr/share/zoneinfo/Africa/Bissau base-sys-share share +./usr/share/zoneinfo/Africa/Blantyre base-sys-share share +./usr/share/zoneinfo/Africa/Brazzaville base-sys-share share +./usr/share/zoneinfo/Africa/Bujumbura base-sys-share share +./usr/share/zoneinfo/Africa/Cairo base-sys-share share +./usr/share/zoneinfo/Africa/Casablanca base-sys-share share +./usr/share/zoneinfo/Africa/Ceuta base-sys-share share +./usr/share/zoneinfo/Africa/Conakry base-sys-share share +./usr/share/zoneinfo/Africa/Dakar base-sys-share share +./usr/share/zoneinfo/Africa/Dar_es_Salaam base-sys-share share +./usr/share/zoneinfo/Africa/Djibouti base-sys-share share +./usr/share/zoneinfo/Africa/Douala base-sys-share share +./usr/share/zoneinfo/Africa/El_Aaiun base-sys-share share +./usr/share/zoneinfo/Africa/Freetown base-sys-share share +./usr/share/zoneinfo/Africa/Gaborone base-sys-share share +./usr/share/zoneinfo/Africa/Harare base-sys-share share +./usr/share/zoneinfo/Africa/Johannesburg base-sys-share share +./usr/share/zoneinfo/Africa/Juba base-sys-share share +./usr/share/zoneinfo/Africa/Kampala base-sys-share share +./usr/share/zoneinfo/Africa/Khartoum base-sys-share share +./usr/share/zoneinfo/Africa/Kigali base-sys-share share +./usr/share/zoneinfo/Africa/Kinshasa base-sys-share share +./usr/share/zoneinfo/Africa/Lagos base-sys-share share +./usr/share/zoneinfo/Africa/Libreville base-sys-share share +./usr/share/zoneinfo/Africa/Lome base-sys-share share +./usr/share/zoneinfo/Africa/Luanda base-sys-share share +./usr/share/zoneinfo/Africa/Lubumbashi base-sys-share share +./usr/share/zoneinfo/Africa/Lumumbashi base-obsolete obsolete +./usr/share/zoneinfo/Africa/Lusaka base-sys-share share +./usr/share/zoneinfo/Africa/Malabo base-sys-share share +./usr/share/zoneinfo/Africa/Maputo base-sys-share share +./usr/share/zoneinfo/Africa/Maseru base-sys-share share +./usr/share/zoneinfo/Africa/Mbabane base-sys-share share +./usr/share/zoneinfo/Africa/Mogadishu base-sys-share share +./usr/share/zoneinfo/Africa/Monrovia base-sys-share share +./usr/share/zoneinfo/Africa/Nairobi base-sys-share share +./usr/share/zoneinfo/Africa/Ndjamena base-sys-share share +./usr/share/zoneinfo/Africa/Niamey base-sys-share share +./usr/share/zoneinfo/Africa/Nouakchott base-sys-share share +./usr/share/zoneinfo/Africa/Ouagadougou base-sys-share share +./usr/share/zoneinfo/Africa/Porto-Novo base-sys-share share +./usr/share/zoneinfo/Africa/Sao_Tome base-sys-share share +./usr/share/zoneinfo/Africa/Timbuktu base-sys-share share +./usr/share/zoneinfo/Africa/Tripoli base-sys-share share +./usr/share/zoneinfo/Africa/Tunis base-sys-share share +./usr/share/zoneinfo/Africa/Windhoek base-sys-share share +./usr/share/zoneinfo/America base-sys-share +./usr/share/zoneinfo/America/Adak base-sys-share share +./usr/share/zoneinfo/America/Anchorage base-sys-share share +./usr/share/zoneinfo/America/Anguilla base-sys-share share +./usr/share/zoneinfo/America/Antigua base-sys-share share +./usr/share/zoneinfo/America/Araguaina base-sys-share share +./usr/share/zoneinfo/America/Argentina base-sys-share +./usr/share/zoneinfo/America/Argentina/Buenos_Aires base-sys-share share +./usr/share/zoneinfo/America/Argentina/Catamarca base-sys-share share +./usr/share/zoneinfo/America/Argentina/ComodRivadavia base-sys-share share +./usr/share/zoneinfo/America/Argentina/Cordoba base-sys-share share +./usr/share/zoneinfo/America/Argentina/Jujuy base-sys-share share +./usr/share/zoneinfo/America/Argentina/La_Rioja base-sys-share share +./usr/share/zoneinfo/America/Argentina/Mendoza base-sys-share share +./usr/share/zoneinfo/America/Argentina/Rio_Gallegos base-sys-share share +./usr/share/zoneinfo/America/Argentina/Salta base-sys-share share +./usr/share/zoneinfo/America/Argentina/San_Juan base-sys-share share +./usr/share/zoneinfo/America/Argentina/San_Luis base-sys-share share +./usr/share/zoneinfo/America/Argentina/Tucuman base-sys-share share +./usr/share/zoneinfo/America/Argentina/Ushuaia base-sys-share share +./usr/share/zoneinfo/America/Aruba base-sys-share share +./usr/share/zoneinfo/America/Asuncion base-sys-share share +./usr/share/zoneinfo/America/Atikokan base-sys-share share +./usr/share/zoneinfo/America/Atka base-sys-share share +./usr/share/zoneinfo/America/Bahia base-sys-share share +./usr/share/zoneinfo/America/Bahia_Banderas base-sys-share share +./usr/share/zoneinfo/America/Barbados base-sys-share share +./usr/share/zoneinfo/America/Belem base-sys-share share +./usr/share/zoneinfo/America/Belize base-sys-share share +./usr/share/zoneinfo/America/Blanc-Sablon base-sys-share share +./usr/share/zoneinfo/America/Boa_Vista base-sys-share share +./usr/share/zoneinfo/America/Bogota base-sys-share share +./usr/share/zoneinfo/America/Boise base-sys-share share +./usr/share/zoneinfo/America/Brazil base-obsolete obsolete +./usr/share/zoneinfo/America/Buenos_Aires base-sys-share share +./usr/share/zoneinfo/America/Cambridge_Bay base-sys-share share +./usr/share/zoneinfo/America/Campo_Grande base-sys-share share +./usr/share/zoneinfo/America/Canada base-obsolete obsolete +./usr/share/zoneinfo/America/Cancun base-sys-share share +./usr/share/zoneinfo/America/Caracas base-sys-share share +./usr/share/zoneinfo/America/Catamarca base-sys-share share +./usr/share/zoneinfo/America/Cayenne base-sys-share share +./usr/share/zoneinfo/America/Cayman base-sys-share share +./usr/share/zoneinfo/America/Chicago base-sys-share share +./usr/share/zoneinfo/America/Chihuahua base-sys-share share +./usr/share/zoneinfo/America/Chile base-obsolete obsolete +./usr/share/zoneinfo/America/Coral_Harbour base-sys-share share +./usr/share/zoneinfo/America/Cordoba base-sys-share share +./usr/share/zoneinfo/America/Costa_Rica base-sys-share share +./usr/share/zoneinfo/America/Cuiaba base-sys-share share +./usr/share/zoneinfo/America/Curacao base-sys-share share +./usr/share/zoneinfo/America/Creston base-sys-share share +./usr/share/zoneinfo/America/Danmarkshavn base-sys-share share +./usr/share/zoneinfo/America/Dawson base-sys-share share +./usr/share/zoneinfo/America/Dawson_Creek base-sys-share share +./usr/share/zoneinfo/America/Denver base-sys-share share +./usr/share/zoneinfo/America/Detroit base-sys-share share +./usr/share/zoneinfo/America/Dominica base-sys-share share +./usr/share/zoneinfo/America/Edmonton base-sys-share share +./usr/share/zoneinfo/America/Eirunepe base-sys-share share +./usr/share/zoneinfo/America/El_Salvador base-sys-share share +./usr/share/zoneinfo/America/Ensenada base-sys-share share +./usr/share/zoneinfo/America/Fort_Wayne base-sys-share share +./usr/share/zoneinfo/America/Fortaleza base-sys-share share +./usr/share/zoneinfo/America/Glace_Bay base-sys-share share +./usr/share/zoneinfo/America/Godthab base-sys-share share +./usr/share/zoneinfo/America/Goose_Bay base-sys-share share +./usr/share/zoneinfo/America/Grand_Turk base-sys-share share +./usr/share/zoneinfo/America/Grenada base-sys-share share +./usr/share/zoneinfo/America/Guadeloupe base-sys-share share +./usr/share/zoneinfo/America/Guatemala base-sys-share share +./usr/share/zoneinfo/America/Guayaquil base-sys-share share +./usr/share/zoneinfo/America/Guyana base-sys-share share +./usr/share/zoneinfo/America/Halifax base-sys-share share +./usr/share/zoneinfo/America/Havana base-sys-share share +./usr/share/zoneinfo/America/Hermosillo base-sys-share share +./usr/share/zoneinfo/America/Indiana base-sys-share +./usr/share/zoneinfo/America/Indiana/Indianapolis base-sys-share share +./usr/share/zoneinfo/America/Indiana/Knox base-sys-share share +./usr/share/zoneinfo/America/Indiana/Marengo base-sys-share share +./usr/share/zoneinfo/America/Indiana/Petersburg base-sys-share share +./usr/share/zoneinfo/America/Indiana/Tell_City base-sys-share share +./usr/share/zoneinfo/America/Indiana/Vevay base-sys-share share +./usr/share/zoneinfo/America/Indiana/Vincennes base-sys-share share +./usr/share/zoneinfo/America/Indiana/Winamac base-sys-share share +./usr/share/zoneinfo/America/Indianapolis base-sys-share share +./usr/share/zoneinfo/America/Inuvik base-sys-share share +./usr/share/zoneinfo/America/Iqaluit base-sys-share share +./usr/share/zoneinfo/America/Jamaica base-sys-share share +./usr/share/zoneinfo/America/Jujuy base-sys-share share +./usr/share/zoneinfo/America/Juneau base-sys-share share +./usr/share/zoneinfo/America/Kentucky base-sys-share +./usr/share/zoneinfo/America/Kentucky/Louisville base-sys-share share +./usr/share/zoneinfo/America/Kentucky/Monticello base-sys-share share +./usr/share/zoneinfo/America/Knox_IN base-sys-share share +./usr/share/zoneinfo/America/Kralendijk base-sys-share share +./usr/share/zoneinfo/America/La_Paz base-sys-share share +./usr/share/zoneinfo/America/Lima base-sys-share share +./usr/share/zoneinfo/America/Los_Angeles base-sys-share share +./usr/share/zoneinfo/America/Louisville base-sys-share share +./usr/share/zoneinfo/America/Lower_Princes base-sys-share share +./usr/share/zoneinfo/America/Maceio base-sys-share share +./usr/share/zoneinfo/America/Managua base-sys-share share +./usr/share/zoneinfo/America/Manaus base-sys-share share +./usr/share/zoneinfo/America/Marigot base-sys-share share +./usr/share/zoneinfo/America/Martinique base-sys-share share +./usr/share/zoneinfo/America/Matamoros base-sys-share share +./usr/share/zoneinfo/America/Mazatlan base-sys-share share +./usr/share/zoneinfo/America/Mendoza base-sys-share share +./usr/share/zoneinfo/America/Menominee base-sys-share share +./usr/share/zoneinfo/America/Merida base-sys-share share +./usr/share/zoneinfo/America/Metlakatla base-sys-share share +./usr/share/zoneinfo/America/Mexico_City base-sys-share share +./usr/share/zoneinfo/America/Miquelon base-sys-share share +./usr/share/zoneinfo/America/Moncton base-sys-share share +./usr/share/zoneinfo/America/Monterrey base-sys-share share +./usr/share/zoneinfo/America/Montevideo base-sys-share share +./usr/share/zoneinfo/America/Montreal base-sys-share share +./usr/share/zoneinfo/America/Montserrat base-sys-share share +./usr/share/zoneinfo/America/Nassau base-sys-share share +./usr/share/zoneinfo/America/New_York base-sys-share share +./usr/share/zoneinfo/America/Nipigon base-sys-share share +./usr/share/zoneinfo/America/Nome base-sys-share share +./usr/share/zoneinfo/America/Noronha base-sys-share share +./usr/share/zoneinfo/America/North_Dakota base-sys-share +./usr/share/zoneinfo/America/North_Dakota/Beulah base-sys-share share +./usr/share/zoneinfo/America/North_Dakota/Center base-sys-share share +./usr/share/zoneinfo/America/North_Dakota/New_Salem base-sys-share share +./usr/share/zoneinfo/America/Ojinaga base-sys-share share +./usr/share/zoneinfo/America/Panama base-sys-share share +./usr/share/zoneinfo/America/Pangnirtung base-sys-share share +./usr/share/zoneinfo/America/Paramaribo base-sys-share share +./usr/share/zoneinfo/America/Phoenix base-sys-share share +./usr/share/zoneinfo/America/Port-au-Prince base-sys-share share +./usr/share/zoneinfo/America/Port_of_Spain base-sys-share share +./usr/share/zoneinfo/America/Porto_Acre base-sys-share share +./usr/share/zoneinfo/America/Porto_Velho base-sys-share share +./usr/share/zoneinfo/America/Puerto_Rico base-sys-share share +./usr/share/zoneinfo/America/Rainy_River base-sys-share share +./usr/share/zoneinfo/America/Rankin_Inlet base-sys-share share +./usr/share/zoneinfo/America/Recife base-sys-share share +./usr/share/zoneinfo/America/Regina base-sys-share share +./usr/share/zoneinfo/America/Resolute base-sys-share share +./usr/share/zoneinfo/America/Rio_Branco base-sys-share share +./usr/share/zoneinfo/America/Rosario base-sys-share share +./usr/share/zoneinfo/America/Santa_Isabel base-sys-share share +./usr/share/zoneinfo/America/Santarem base-sys-share share +./usr/share/zoneinfo/America/Santiago base-sys-share share +./usr/share/zoneinfo/America/Santo_Domingo base-sys-share share +./usr/share/zoneinfo/America/Sao_Paulo base-sys-share share +./usr/share/zoneinfo/America/Scoresbysund base-sys-share share +./usr/share/zoneinfo/America/Shiprock base-sys-share share +./usr/share/zoneinfo/America/Sitka base-sys-share share +./usr/share/zoneinfo/America/St_Barthelemy base-sys-share share +./usr/share/zoneinfo/America/St_Johns base-sys-share share +./usr/share/zoneinfo/America/St_Kitts base-sys-share share +./usr/share/zoneinfo/America/St_Lucia base-sys-share share +./usr/share/zoneinfo/America/St_Thomas base-sys-share share +./usr/share/zoneinfo/America/St_Vincent base-sys-share share +./usr/share/zoneinfo/America/Swift_Current base-sys-share share +./usr/share/zoneinfo/America/Tegucigalpa base-sys-share share +./usr/share/zoneinfo/America/Thule base-sys-share share +./usr/share/zoneinfo/America/Thunder_Bay base-sys-share share +./usr/share/zoneinfo/America/Tijuana base-sys-share share +./usr/share/zoneinfo/America/Toronto base-sys-share share +./usr/share/zoneinfo/America/Tortola base-sys-share share +./usr/share/zoneinfo/America/Vancouver base-sys-share share +./usr/share/zoneinfo/America/Virgin base-sys-share share +./usr/share/zoneinfo/America/Whitehorse base-sys-share share +./usr/share/zoneinfo/America/Winnipeg base-sys-share share +./usr/share/zoneinfo/America/Yakutat base-sys-share share +./usr/share/zoneinfo/America/Yellowknife base-sys-share share +./usr/share/zoneinfo/Antarctica base-sys-share +./usr/share/zoneinfo/Antarctica/Casey base-sys-share share +./usr/share/zoneinfo/Antarctica/Davis base-sys-share share +./usr/share/zoneinfo/Antarctica/DumontDUrville base-sys-share share +./usr/share/zoneinfo/Antarctica/Macquarie base-sys-share share +./usr/share/zoneinfo/Antarctica/Mawson base-sys-share share +./usr/share/zoneinfo/Antarctica/McMurdo base-sys-share share +./usr/share/zoneinfo/Antarctica/Palmer base-sys-share share +./usr/share/zoneinfo/Antarctica/Rothera base-sys-share share +./usr/share/zoneinfo/Antarctica/South_Pole base-sys-share share +./usr/share/zoneinfo/Antarctica/Syowa base-sys-share share +./usr/share/zoneinfo/Antarctica/Vostok base-sys-share share +./usr/share/zoneinfo/Arctic base-sys-share +./usr/share/zoneinfo/Arctic/Longyearbyen base-sys-share share +./usr/share/zoneinfo/Asia base-sys-share +./usr/share/zoneinfo/Asia/Aden base-sys-share share +./usr/share/zoneinfo/Asia/Aktau base-obsolete obsolete +./usr/share/zoneinfo/Asia/Alma-Ata base-obsolete obsolete +./usr/share/zoneinfo/Asia/Almaty base-sys-share share +./usr/share/zoneinfo/Asia/Amman base-sys-share share +./usr/share/zoneinfo/Asia/Anadyr base-sys-share share +./usr/share/zoneinfo/Asia/Aqtau base-sys-share share +./usr/share/zoneinfo/Asia/Aqtobe base-sys-share share +./usr/share/zoneinfo/Asia/Ashgabat base-sys-share share +./usr/share/zoneinfo/Asia/Ashkhabad base-sys-share share +./usr/share/zoneinfo/Asia/Baghdad base-sys-share share +./usr/share/zoneinfo/Asia/Bahrain base-sys-share share +./usr/share/zoneinfo/Asia/Baku base-sys-share share +./usr/share/zoneinfo/Asia/Bangkok base-sys-share share +./usr/share/zoneinfo/Asia/Beirut base-sys-share share +./usr/share/zoneinfo/Asia/Bishkek base-sys-share share +./usr/share/zoneinfo/Asia/Brunei base-sys-share share +./usr/share/zoneinfo/Asia/Calcutta base-sys-share share +./usr/share/zoneinfo/Asia/Choibalsan base-sys-share share +./usr/share/zoneinfo/Asia/Chongqing base-sys-share share +./usr/share/zoneinfo/Asia/Chungking base-sys-share share +./usr/share/zoneinfo/Asia/Colombo base-sys-share share +./usr/share/zoneinfo/Asia/Dacca base-sys-share share +./usr/share/zoneinfo/Asia/Damascus base-sys-share share +./usr/share/zoneinfo/Asia/Dhaka base-sys-share share +./usr/share/zoneinfo/Asia/Dili base-sys-share share +./usr/share/zoneinfo/Asia/Dubai base-sys-share share +./usr/share/zoneinfo/Asia/Dushanbe base-sys-share share +./usr/share/zoneinfo/Asia/Gaza base-sys-share share +./usr/share/zoneinfo/Asia/Harbin base-sys-share share +./usr/share/zoneinfo/Asia/Hebron base-sys-share share +./usr/share/zoneinfo/Asia/Ho_Chi_Minh base-sys-share share +./usr/share/zoneinfo/Asia/Hong_Kong base-sys-share share +./usr/share/zoneinfo/Asia/Hovd base-sys-share share +./usr/share/zoneinfo/Asia/Irkutsk base-sys-share share +./usr/share/zoneinfo/Asia/Ishigaki base-obsolete obsolete +./usr/share/zoneinfo/Asia/Istanbul base-sys-share share +./usr/share/zoneinfo/Asia/Jakarta base-sys-share share +./usr/share/zoneinfo/Asia/Jayapura base-sys-share share +./usr/share/zoneinfo/Asia/Jerusalem base-sys-share share +./usr/share/zoneinfo/Asia/Kabul base-sys-share share +./usr/share/zoneinfo/Asia/Kamchatka base-sys-share share +./usr/share/zoneinfo/Asia/Karachi base-sys-share share +./usr/share/zoneinfo/Asia/Kashgar base-sys-share share +./usr/share/zoneinfo/Asia/Kathmandu base-sys-share share +./usr/share/zoneinfo/Asia/Katmandu base-sys-share share +./usr/share/zoneinfo/Asia/Kolkata base-sys-share share +./usr/share/zoneinfo/Asia/Krasnoyarsk base-sys-share share +./usr/share/zoneinfo/Asia/Kuala_Lumpur base-sys-share share +./usr/share/zoneinfo/Asia/Kuching base-sys-share share +./usr/share/zoneinfo/Asia/Kuwait base-sys-share share +./usr/share/zoneinfo/Asia/Macao base-sys-share share +./usr/share/zoneinfo/Asia/Macau base-sys-share share +./usr/share/zoneinfo/Asia/Magadan base-sys-share share +./usr/share/zoneinfo/Asia/Makassar base-sys-share share +./usr/share/zoneinfo/Asia/Manila base-sys-share share +./usr/share/zoneinfo/Asia/Muscat base-sys-share share +./usr/share/zoneinfo/Asia/Nicosia base-sys-share share +./usr/share/zoneinfo/Asia/Novokuznetsk base-sys-share share +./usr/share/zoneinfo/Asia/Novosibirsk base-sys-share share +./usr/share/zoneinfo/Asia/Omsk base-sys-share share +./usr/share/zoneinfo/Asia/Oral base-sys-share share +./usr/share/zoneinfo/Asia/Phnom_Penh base-sys-share share +./usr/share/zoneinfo/Asia/Pontianak base-sys-share share +./usr/share/zoneinfo/Asia/Pyongyang base-sys-share share +./usr/share/zoneinfo/Asia/Qatar base-sys-share share +./usr/share/zoneinfo/Asia/Qyzylorda base-sys-share share +./usr/share/zoneinfo/Asia/Rangoon base-sys-share share +./usr/share/zoneinfo/Asia/Riyadh base-sys-share share +./usr/share/zoneinfo/Asia/Riyadh87 base-sys-share share +./usr/share/zoneinfo/Asia/Riyadh88 base-sys-share share +./usr/share/zoneinfo/Asia/Riyadh89 base-sys-share share +./usr/share/zoneinfo/Asia/Saigon base-sys-share share +./usr/share/zoneinfo/Asia/Sakhalin base-sys-share share +./usr/share/zoneinfo/Asia/Samarkand base-sys-share share +./usr/share/zoneinfo/Asia/Seoul base-sys-share share +./usr/share/zoneinfo/Asia/Shanghai base-sys-share share +./usr/share/zoneinfo/Asia/Singapore base-sys-share share +./usr/share/zoneinfo/Asia/Taipei base-sys-share share +./usr/share/zoneinfo/Asia/Tashkent base-sys-share share +./usr/share/zoneinfo/Asia/Tbilisi base-sys-share share +./usr/share/zoneinfo/Asia/Tehran base-sys-share share +./usr/share/zoneinfo/Asia/Tel_Aviv base-sys-share share +./usr/share/zoneinfo/Asia/Thimbu base-sys-share share +./usr/share/zoneinfo/Asia/Thimphu base-sys-share share +./usr/share/zoneinfo/Asia/Tokyo base-sys-share share +./usr/share/zoneinfo/Asia/Tomsk base-obsolete obsolete +./usr/share/zoneinfo/Asia/Ujung_Pandang base-sys-share share +./usr/share/zoneinfo/Asia/Ulaanbaatar base-sys-share share +./usr/share/zoneinfo/Asia/Ulan_Bator base-sys-share share +./usr/share/zoneinfo/Asia/Urumqi base-sys-share share +./usr/share/zoneinfo/Asia/Vientiane base-sys-share share +./usr/share/zoneinfo/Asia/Vladivostok base-sys-share share +./usr/share/zoneinfo/Asia/Yakutsk base-sys-share share +./usr/share/zoneinfo/Asia/Yekaterinburg base-sys-share share +./usr/share/zoneinfo/Asia/Yerevan base-sys-share share +./usr/share/zoneinfo/Atlantic base-sys-share +./usr/share/zoneinfo/Atlantic/Azores base-sys-share share +./usr/share/zoneinfo/Atlantic/Bermuda base-sys-share share +./usr/share/zoneinfo/Atlantic/Canary base-sys-share share +./usr/share/zoneinfo/Atlantic/Cape_Verde base-sys-share share +./usr/share/zoneinfo/Atlantic/Faeroe base-sys-share share +./usr/share/zoneinfo/Atlantic/Faroe base-sys-share share +./usr/share/zoneinfo/Atlantic/Jan_Mayen base-sys-share share +./usr/share/zoneinfo/Atlantic/Madeira base-sys-share share +./usr/share/zoneinfo/Atlantic/Reykjavik base-sys-share share +./usr/share/zoneinfo/Atlantic/South_Georgia base-sys-share share +./usr/share/zoneinfo/Atlantic/St_Helena base-sys-share share +./usr/share/zoneinfo/Atlantic/Stanley base-sys-share share +./usr/share/zoneinfo/Australia base-sys-share +./usr/share/zoneinfo/Australia/ACT base-sys-share share +./usr/share/zoneinfo/Australia/Adelaide base-sys-share share +./usr/share/zoneinfo/Australia/Brisbane base-sys-share share +./usr/share/zoneinfo/Australia/Broken_Hill base-sys-share share +./usr/share/zoneinfo/Australia/Canberra base-sys-share share +./usr/share/zoneinfo/Australia/Currie base-sys-share share +./usr/share/zoneinfo/Australia/Darwin base-sys-share share +./usr/share/zoneinfo/Australia/Eucla base-sys-share share +./usr/share/zoneinfo/Australia/Hobart base-sys-share share +./usr/share/zoneinfo/Australia/LHI base-sys-share share +./usr/share/zoneinfo/Australia/Lindeman base-sys-share share +./usr/share/zoneinfo/Australia/Lord_Howe base-sys-share share +./usr/share/zoneinfo/Australia/Melbourne base-sys-share share +./usr/share/zoneinfo/Australia/NSW base-sys-share share +./usr/share/zoneinfo/Australia/North base-sys-share share +./usr/share/zoneinfo/Australia/Perth base-sys-share share +./usr/share/zoneinfo/Australia/Queensland base-sys-share share +./usr/share/zoneinfo/Australia/South base-sys-share share +./usr/share/zoneinfo/Australia/Sydney base-sys-share share +./usr/share/zoneinfo/Australia/Tasmania base-sys-share share +./usr/share/zoneinfo/Australia/Victoria base-sys-share share +./usr/share/zoneinfo/Australia/West base-sys-share share +./usr/share/zoneinfo/Australia/Yancowinna base-sys-share share +./usr/share/zoneinfo/Brazil base-sys-share +./usr/share/zoneinfo/Brazil/Acre base-sys-share share +./usr/share/zoneinfo/Brazil/DeNoronha base-sys-share share +./usr/share/zoneinfo/Brazil/East base-sys-share share +./usr/share/zoneinfo/Brazil/West base-sys-share share +./usr/share/zoneinfo/CET base-sys-share share +./usr/share/zoneinfo/CST6CDT base-sys-share share +./usr/share/zoneinfo/Canada base-sys-share +./usr/share/zoneinfo/Canada/Atlantic base-sys-share share +./usr/share/zoneinfo/Canada/Central base-sys-share share +./usr/share/zoneinfo/Canada/East-Saskatchewan base-sys-share share +./usr/share/zoneinfo/Canada/Eastern base-sys-share share +./usr/share/zoneinfo/Canada/Mountain base-sys-share share +./usr/share/zoneinfo/Canada/Newfoundland base-sys-share share +./usr/share/zoneinfo/Canada/Pacific base-sys-share share +./usr/share/zoneinfo/Canada/Saskatchewan base-sys-share share +./usr/share/zoneinfo/Canada/Yukon base-sys-share share +./usr/share/zoneinfo/Chile base-sys-share +./usr/share/zoneinfo/Chile/Continental base-sys-share share +./usr/share/zoneinfo/Chile/EasterIsland base-sys-share share +./usr/share/zoneinfo/Cuba base-sys-share share +./usr/share/zoneinfo/EET base-sys-share share +./usr/share/zoneinfo/EST base-sys-share share +./usr/share/zoneinfo/EST5EDT base-sys-share share +./usr/share/zoneinfo/Egypt base-sys-share share +./usr/share/zoneinfo/Eire base-sys-share share +./usr/share/zoneinfo/Etc base-sys-share +./usr/share/zoneinfo/Etc/GMT base-sys-share share +./usr/share/zoneinfo/Etc/GMT+0 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+1 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+10 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+11 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+12 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+2 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+3 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+4 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+5 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+6 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+7 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+8 base-sys-share share +./usr/share/zoneinfo/Etc/GMT+9 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-0 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-1 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-10 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-11 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-12 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-13 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-14 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-2 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-3 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-4 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-5 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-6 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-7 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-8 base-sys-share share +./usr/share/zoneinfo/Etc/GMT-9 base-sys-share share +./usr/share/zoneinfo/Etc/GMT0 base-sys-share share +./usr/share/zoneinfo/Etc/Greenwich base-sys-share share +./usr/share/zoneinfo/Etc/UCT base-sys-share share +./usr/share/zoneinfo/Etc/UTC base-sys-share share +./usr/share/zoneinfo/Etc/Universal base-sys-share share +./usr/share/zoneinfo/Etc/Zulu base-sys-share share +./usr/share/zoneinfo/Europe base-sys-share +./usr/share/zoneinfo/Europe/Amsterdam base-sys-share share +./usr/share/zoneinfo/Europe/Andorra base-sys-share share +./usr/share/zoneinfo/Europe/Athens base-sys-share share +./usr/share/zoneinfo/Europe/Belfast base-sys-share share +./usr/share/zoneinfo/Europe/Belgrade base-sys-share share +./usr/share/zoneinfo/Europe/Berlin base-sys-share share +./usr/share/zoneinfo/Europe/Bratislava base-sys-share share +./usr/share/zoneinfo/Europe/Brussels base-sys-share share +./usr/share/zoneinfo/Europe/Bucharest base-sys-share share +./usr/share/zoneinfo/Europe/Budapest base-sys-share share +./usr/share/zoneinfo/Europe/Chisinau base-sys-share share +./usr/share/zoneinfo/Europe/Copenhagen base-sys-share share +./usr/share/zoneinfo/Europe/Dublin base-sys-share share +./usr/share/zoneinfo/Europe/Gibraltar base-sys-share share +./usr/share/zoneinfo/Europe/Guernsey base-sys-share share +./usr/share/zoneinfo/Europe/Helsinki base-sys-share share +./usr/share/zoneinfo/Europe/Isle_of_Man base-sys-share share +./usr/share/zoneinfo/Europe/Istanbul base-sys-share share +./usr/share/zoneinfo/Europe/Jersey base-sys-share share +./usr/share/zoneinfo/Europe/Kaliningrad base-sys-share share +./usr/share/zoneinfo/Europe/Kiev base-sys-share share +./usr/share/zoneinfo/Europe/Kuybyshev base-obsolete obsolete +./usr/share/zoneinfo/Europe/Lisbon base-sys-share share +./usr/share/zoneinfo/Europe/Ljubljana base-sys-share share +./usr/share/zoneinfo/Europe/London base-sys-share share +./usr/share/zoneinfo/Europe/Luxembourg base-sys-share share +./usr/share/zoneinfo/Europe/Madrid base-sys-share share +./usr/share/zoneinfo/Europe/Malta base-sys-share share +./usr/share/zoneinfo/Europe/Mariehamn base-sys-share share +./usr/share/zoneinfo/Europe/Minsk base-sys-share share +./usr/share/zoneinfo/Europe/Monaco base-sys-share share +./usr/share/zoneinfo/Europe/Moscow base-sys-share share +./usr/share/zoneinfo/Europe/Nicosia base-sys-share share +./usr/share/zoneinfo/Europe/Oslo base-sys-share share +./usr/share/zoneinfo/Europe/Paris base-sys-share share +./usr/share/zoneinfo/Europe/Podgorica base-sys-share share +./usr/share/zoneinfo/Europe/Prague base-sys-share share +./usr/share/zoneinfo/Europe/Riga base-sys-share share +./usr/share/zoneinfo/Europe/Rome base-sys-share share +./usr/share/zoneinfo/Europe/Samara base-sys-share share +./usr/share/zoneinfo/Europe/San_Marino base-sys-share share +./usr/share/zoneinfo/Europe/Sarajevo base-sys-share share +./usr/share/zoneinfo/Europe/Simferopol base-sys-share share +./usr/share/zoneinfo/Europe/Skopje base-sys-share share +./usr/share/zoneinfo/Europe/Sofia base-sys-share share +./usr/share/zoneinfo/Europe/Stockholm base-sys-share share +./usr/share/zoneinfo/Europe/Tallinn base-sys-share share +./usr/share/zoneinfo/Europe/Tirane base-sys-share share +./usr/share/zoneinfo/Europe/Tiraspol base-sys-share share +./usr/share/zoneinfo/Europe/Uzhgorod base-sys-share share +./usr/share/zoneinfo/Europe/Vaduz base-sys-share share +./usr/share/zoneinfo/Europe/Vatican base-sys-share share +./usr/share/zoneinfo/Europe/Vienna base-sys-share share +./usr/share/zoneinfo/Europe/Vilnius base-sys-share share +./usr/share/zoneinfo/Europe/Volgograd base-sys-share share +./usr/share/zoneinfo/Europe/Warsaw base-sys-share share +./usr/share/zoneinfo/Europe/Zagreb base-sys-share share +./usr/share/zoneinfo/Europe/Zaporozhye base-sys-share share +./usr/share/zoneinfo/Europe/Zurich base-sys-share share +./usr/share/zoneinfo/Factory base-sys-share share +./usr/share/zoneinfo/GB base-sys-share share +./usr/share/zoneinfo/GB-Eire base-sys-share share +./usr/share/zoneinfo/GMT base-sys-share share +./usr/share/zoneinfo/GMT+0 base-sys-share share +./usr/share/zoneinfo/GMT+1 base-obsolete obsolete +./usr/share/zoneinfo/GMT+10 base-obsolete obsolete +./usr/share/zoneinfo/GMT+11 base-obsolete obsolete +./usr/share/zoneinfo/GMT+12 base-obsolete obsolete +./usr/share/zoneinfo/GMT+13 base-obsolete obsolete +./usr/share/zoneinfo/GMT+2 base-obsolete obsolete +./usr/share/zoneinfo/GMT+3 base-obsolete obsolete +./usr/share/zoneinfo/GMT+4 base-obsolete obsolete +./usr/share/zoneinfo/GMT+5 base-obsolete obsolete +./usr/share/zoneinfo/GMT+6 base-obsolete obsolete +./usr/share/zoneinfo/GMT+7 base-obsolete obsolete +./usr/share/zoneinfo/GMT+8 base-obsolete obsolete +./usr/share/zoneinfo/GMT+9 base-obsolete obsolete +./usr/share/zoneinfo/GMT-0 base-sys-share share +./usr/share/zoneinfo/GMT-1 base-obsolete obsolete +./usr/share/zoneinfo/GMT-10 base-obsolete obsolete +./usr/share/zoneinfo/GMT-11 base-obsolete obsolete +./usr/share/zoneinfo/GMT-12 base-obsolete obsolete +./usr/share/zoneinfo/GMT-2 base-obsolete obsolete +./usr/share/zoneinfo/GMT-3 base-obsolete obsolete +./usr/share/zoneinfo/GMT-4 base-obsolete obsolete +./usr/share/zoneinfo/GMT-5 base-obsolete obsolete +./usr/share/zoneinfo/GMT-6 base-obsolete obsolete +./usr/share/zoneinfo/GMT-7 base-obsolete obsolete +./usr/share/zoneinfo/GMT-8 base-obsolete obsolete +./usr/share/zoneinfo/GMT-9 base-obsolete obsolete +./usr/share/zoneinfo/GMT0 base-sys-share share +./usr/share/zoneinfo/GMT1 base-obsolete obsolete +./usr/share/zoneinfo/GMT10 base-obsolete obsolete +./usr/share/zoneinfo/GMT11 base-obsolete obsolete +./usr/share/zoneinfo/GMT12 base-obsolete obsolete +./usr/share/zoneinfo/GMT13 base-obsolete obsolete +./usr/share/zoneinfo/GMT2 base-obsolete obsolete +./usr/share/zoneinfo/GMT3 base-obsolete obsolete +./usr/share/zoneinfo/GMT4 base-obsolete obsolete +./usr/share/zoneinfo/GMT5 base-obsolete obsolete +./usr/share/zoneinfo/GMT6 base-obsolete obsolete +./usr/share/zoneinfo/GMT7 base-obsolete obsolete +./usr/share/zoneinfo/GMT8 base-obsolete obsolete +./usr/share/zoneinfo/GMT9 base-obsolete obsolete +./usr/share/zoneinfo/Greenwich base-sys-share share +./usr/share/zoneinfo/HST base-sys-share share +./usr/share/zoneinfo/Hongkong base-sys-share share +./usr/share/zoneinfo/Iceland base-sys-share share +./usr/share/zoneinfo/Indian base-sys-share +./usr/share/zoneinfo/Indian/Antananarivo base-sys-share share +./usr/share/zoneinfo/Indian/Chagos base-sys-share share +./usr/share/zoneinfo/Indian/Christmas base-sys-share share +./usr/share/zoneinfo/Indian/Cocos base-sys-share share +./usr/share/zoneinfo/Indian/Comoro base-sys-share share +./usr/share/zoneinfo/Indian/Kerguelen base-sys-share share +./usr/share/zoneinfo/Indian/Mahe base-sys-share share +./usr/share/zoneinfo/Indian/Maldives base-sys-share share +./usr/share/zoneinfo/Indian/Mauritius base-sys-share share +./usr/share/zoneinfo/Indian/Mayotte base-sys-share share +./usr/share/zoneinfo/Indian/Reunion base-sys-share share +./usr/share/zoneinfo/Iran base-sys-share share +./usr/share/zoneinfo/Israel base-sys-share share +./usr/share/zoneinfo/Jamaica base-sys-share share +./usr/share/zoneinfo/Japan base-sys-share share +./usr/share/zoneinfo/Kwajalein base-sys-share share +./usr/share/zoneinfo/Libya base-sys-share share +./usr/share/zoneinfo/MET base-sys-share share +./usr/share/zoneinfo/MST base-sys-share share +./usr/share/zoneinfo/MST7MDT base-sys-share share +./usr/share/zoneinfo/Mexico base-sys-share +./usr/share/zoneinfo/Mexico/BajaNorte base-sys-share share +./usr/share/zoneinfo/Mexico/BajaSur base-sys-share share +./usr/share/zoneinfo/Mexico/General base-sys-share share +./usr/share/zoneinfo/Mideast base-sys-share +./usr/share/zoneinfo/Mideast/Riyadh87 base-sys-share share +./usr/share/zoneinfo/Mideast/Riyadh88 base-sys-share share +./usr/share/zoneinfo/Mideast/Riyadh89 base-sys-share share +./usr/share/zoneinfo/Moscow base-obsolete obsolete +./usr/share/zoneinfo/NZ base-sys-share share +./usr/share/zoneinfo/NZ-CHAT base-sys-share share +./usr/share/zoneinfo/Navajo base-sys-share share +./usr/share/zoneinfo/PRC base-sys-share share +./usr/share/zoneinfo/PST8PDT base-sys-share share +./usr/share/zoneinfo/Pacific base-sys-share +./usr/share/zoneinfo/Pacific/Apia base-sys-share share +./usr/share/zoneinfo/Pacific/Auckland base-sys-share share +./usr/share/zoneinfo/Pacific/Chatham base-sys-share share +./usr/share/zoneinfo/Pacific/Chuuk base-sys-share share +./usr/share/zoneinfo/Pacific/Easter base-sys-share share +./usr/share/zoneinfo/Pacific/Efate base-sys-share share +./usr/share/zoneinfo/Pacific/Enderbury base-sys-share share +./usr/share/zoneinfo/Pacific/Fakaofo base-sys-share share +./usr/share/zoneinfo/Pacific/Fiji base-sys-share share +./usr/share/zoneinfo/Pacific/Funafuti base-sys-share share +./usr/share/zoneinfo/Pacific/Galapagos base-sys-share share +./usr/share/zoneinfo/Pacific/Gambier base-sys-share share +./usr/share/zoneinfo/Pacific/Guadalcanal base-sys-share share +./usr/share/zoneinfo/Pacific/Guam base-sys-share share +./usr/share/zoneinfo/Pacific/Honolulu base-sys-share share +./usr/share/zoneinfo/Pacific/Johnston base-sys-share share +./usr/share/zoneinfo/Pacific/Kiritimati base-sys-share share +./usr/share/zoneinfo/Pacific/Kosrae base-sys-share share +./usr/share/zoneinfo/Pacific/Kwajalein base-sys-share share +./usr/share/zoneinfo/Pacific/Majuro base-sys-share share +./usr/share/zoneinfo/Pacific/Marquesas base-sys-share share +./usr/share/zoneinfo/Pacific/Midway base-sys-share share +./usr/share/zoneinfo/Pacific/Nauru base-sys-share share +./usr/share/zoneinfo/Pacific/Niue base-sys-share share +./usr/share/zoneinfo/Pacific/Norfolk base-sys-share share +./usr/share/zoneinfo/Pacific/Noumea base-sys-share share +./usr/share/zoneinfo/Pacific/Pago_Pago base-sys-share share +./usr/share/zoneinfo/Pacific/Palau base-sys-share share +./usr/share/zoneinfo/Pacific/Pitcairn base-sys-share share +./usr/share/zoneinfo/Pacific/Pohnpei base-sys-share share +./usr/share/zoneinfo/Pacific/Ponape base-sys-share share +./usr/share/zoneinfo/Pacific/Port_Moresby base-sys-share share +./usr/share/zoneinfo/Pacific/Rarotonga base-sys-share share +./usr/share/zoneinfo/Pacific/Saipan base-sys-share share +./usr/share/zoneinfo/Pacific/Samoa base-sys-share share +./usr/share/zoneinfo/Pacific/Tahiti base-sys-share share +./usr/share/zoneinfo/Pacific/Tarawa base-sys-share share +./usr/share/zoneinfo/Pacific/Tongatapu base-sys-share share +./usr/share/zoneinfo/Pacific/Truk base-sys-share share +./usr/share/zoneinfo/Pacific/Wake base-sys-share share +./usr/share/zoneinfo/Pacific/Wallis base-sys-share share +./usr/share/zoneinfo/Pacific/Yap base-sys-share share +./usr/share/zoneinfo/Poland base-sys-share share +./usr/share/zoneinfo/Portugal base-sys-share share +./usr/share/zoneinfo/ROC base-sys-share share +./usr/share/zoneinfo/ROK base-sys-share share +./usr/share/zoneinfo/Singapore base-sys-share share +./usr/share/zoneinfo/SystemV base-obsolete obsolete +./usr/share/zoneinfo/SystemV/AST4 base-obsolete obsolete +./usr/share/zoneinfo/SystemV/AST4ADT base-obsolete obsolete +./usr/share/zoneinfo/SystemV/CST6 base-obsolete obsolete +./usr/share/zoneinfo/SystemV/CST6CDT base-obsolete obsolete +./usr/share/zoneinfo/SystemV/EST5 base-obsolete obsolete +./usr/share/zoneinfo/SystemV/EST5EDT base-obsolete obsolete +./usr/share/zoneinfo/SystemV/HST10 base-obsolete obsolete +./usr/share/zoneinfo/SystemV/MST7 base-obsolete obsolete +./usr/share/zoneinfo/SystemV/MST7MDT base-obsolete obsolete +./usr/share/zoneinfo/SystemV/PST8 base-obsolete obsolete +./usr/share/zoneinfo/SystemV/PST8PDT base-obsolete obsolete +./usr/share/zoneinfo/SystemV/YST9 base-obsolete obsolete +./usr/share/zoneinfo/SystemV/YST9YDT base-obsolete obsolete +./usr/share/zoneinfo/Turkey base-sys-share share +./usr/share/zoneinfo/UCT base-sys-share share +./usr/share/zoneinfo/US base-sys-share +./usr/share/zoneinfo/US/Alaska base-sys-share share +./usr/share/zoneinfo/US/Aleutian base-sys-share share +./usr/share/zoneinfo/US/Arizona base-sys-share share +./usr/share/zoneinfo/US/Central base-sys-share share +./usr/share/zoneinfo/US/East-Indiana base-sys-share share +./usr/share/zoneinfo/US/Eastern base-sys-share share +./usr/share/zoneinfo/US/Hawaii base-sys-share share +./usr/share/zoneinfo/US/Indiana-Starke base-sys-share share +./usr/share/zoneinfo/US/Michigan base-sys-share share +./usr/share/zoneinfo/US/Mountain base-sys-share share +./usr/share/zoneinfo/US/Pacific base-sys-share share +./usr/share/zoneinfo/US/Pacific-New base-sys-share share +./usr/share/zoneinfo/US/Samoa base-sys-share share +./usr/share/zoneinfo/UTC base-sys-share share +./usr/share/zoneinfo/Universal base-sys-share share +./usr/share/zoneinfo/W-SU base-sys-share share +./usr/share/zoneinfo/WET base-sys-share share +./usr/share/zoneinfo/Zulu base-sys-share share +./usr/share/zoneinfo/iso3166.tab base-sys-share share +./usr/share/zoneinfo/posixrules base-sys-share share +./usr/share/zoneinfo/zone.tab base-sys-share share +./var base-sys-root +./var/account base-sys-root +./var/at base-cron-root +./var/at/jobs base-cron-root +./var/at/spool base-cron-root +./var/backups base-sys-root +./var/chroot base-sys-root +./var/chroot/ftp-proxy base-sys-root +./var/chroot/named base-bind-root +./var/chroot/named/dev base-bind-root +./var/chroot/named/etc base-bind-root +./var/chroot/named/etc/namedb base-bind-root +./var/chroot/named/etc/namedb/cache base-bind-root +./var/chroot/named/etc/namedb/keys base-bind-root +./var/chroot/named/usr base-bind-root +./var/chroot/named/usr/libexec base-bind-root +./var/chroot/named/var base-bind-root +./var/chroot/named/var/run base-bind-root +./var/chroot/named/var/run/lwresd base-bind-root +./var/chroot/named/var/run/named base-bind-root +./var/chroot/named/var/tmp base-bind-root +./var/chroot/ntpd base-ntp-root +./var/chroot/ntpd/dev base-ntp-root +./var/chroot/ntpd/var base-ntp-root +./var/chroot/ntpd/var/db base-ntp-root +./var/chroot/ntpd/var/run base-ntp-root +./var/chroot/pflogd base-sys-root +./var/chroot/pfspamd base-obsolete obsolete +./var/chroot/spamd base-obsolete obsolete +./var/chroot/sshd base-sys-root +./var/chroot/tcpdump base-sys-root +./var/chroot/tcpdump/etc base-obsolete obsolete +./var/chroot/tcpdump/etc/protocols base-obsolete obsolete +./var/chroot/tftp-proxy base-sys-root +./var/crash base-sys-root +./var/cron base-cron-root +./var/cron/tabs base-cron-root +./var/db base-sys-root +./var/db/ns base-sys-root +./var/db/obsolete base-sys-root +./var/db/obsolete/base base-sys-root +./var/db/obsolete/comp base-sys-root +./var/db/obsolete/etc base-sys-root +./var/db/obsolete/games base-sys-root +./var/db/obsolete/man base-sys-root +./var/db/obsolete/misc base-sys-root +./var/db/obsolete/tests base-sys-root atf +./var/db/obsolete/text base-sys-root +./var/db/postfix base-postfix-root +./var/db/xdm base-sys-root +./var/db/xkb base-sys-root +./var/empty base-obsolete obsolete +./var/games base-games-root +./var/games/hackdir base-games-root +./var/games/hackdir/save base-games-root +./var/games/larn base-games-root +./var/games/phantasia base-games-root +./var/games/sail base-games-root +./var/games/save base-obsolete obsolete +./var/heimdal base-krb5-root +./var/lock base-sys-root obsolete +./var/lock/lvm base-sys-root obsolete +./var/log base-sys-root +./var/log/rdist base-netutil-root +./var/mail base-mail-root +./var/msgs base-util-root +./var/named base-obsolete obsolete +./var/named/dev base-obsolete obsolete +./var/named/etc base-obsolete obsolete +./var/named/etc/namedb base-obsolete obsolete +./var/named/etc/namedb/cache base-obsolete obsolete +./var/named/usr base-obsolete obsolete +./var/named/usr/libexec base-obsolete obsolete +./var/named/var base-obsolete obsolete +./var/named/var/run base-obsolete obsolete +./var/named/var/tmp base-obsolete obsolete +./var/preserve base-util-root +./var/quotas base-util-root +./var/run base-sys-root +./var/run/lwresd base-bind-root +./var/run/named base-bind-root +./var/rwho base-netutil-root +./var/spool base-sys-root +./var/spool/ftp base-netutil-root +./var/spool/ftp/bin base-netutil-root +./var/spool/ftp/etc base-netutil-root +./var/spool/ftp/hidden base-netutil-root +./var/spool/lock base-sys-root +./var/spool/output base-lpr-root +./var/spool/output/lpd base-lpr-root +./var/spool/postfix base-postfix-root +./var/spool/postfix/etc base-postfix-root +./var/spool/sockets base-sys-root +./var/spool/uucp base-obsolete obsolete +./var/spool/uucppublic base-obsolete obsolete +./var/tmp base-sys-root +./var/tmp/vi.recover base-util-root +./var/tpm base-sys-root +./var/www base-netutil-root +./var/yp base-nis-root +./var/yp/binding base-nis-root diff --git a/distrib/sets/lists/base/module.mi b/distrib/sets/lists/base/module.mi new file mode 100644 index 000000000..1a7e3eec5 --- /dev/null +++ b/distrib/sets/lists/base/module.mi @@ -0,0 +1,2 @@ +# $NetBSD: module.mi,v 1.13 2009/12/11 15:22:33 he Exp $ +./var/db/obsolete/modules base-sys-root diff --git a/distrib/sets/lists/base/rescue.ad.arm b/distrib/sets/lists/base/rescue.ad.arm new file mode 100644 index 000000000..9be02f254 --- /dev/null +++ b/distrib/sets/lists/base/rescue.ad.arm @@ -0,0 +1,2 @@ +# $NetBSD: rescue.ad.arm,v 1.2 2004/01/11 10:24:59 lukem Exp $ +./rescue/ldconfig base-rescue-root diff --git a/distrib/sets/lists/base/rescue.ad.armeb b/distrib/sets/lists/base/rescue.ad.armeb new file mode 100644 index 000000000..d06bf3f3e --- /dev/null +++ b/distrib/sets/lists/base/rescue.ad.armeb @@ -0,0 +1,3 @@ +# $NetBSD: rescue.ad.armeb,v 1.3 2004/03/03 16:41:17 thorpej Exp $ +# No armeb rescue files. DO NOT DELETE THIS EMPTY FILE! If you +# do, then armeb will incorrectly use the generic arm rescue files. diff --git a/distrib/sets/lists/base/rescue.ad.m68k b/distrib/sets/lists/base/rescue.ad.m68k new file mode 100644 index 000000000..72583781d --- /dev/null +++ b/distrib/sets/lists/base/rescue.ad.m68k @@ -0,0 +1,2 @@ +# $NetBSD: rescue.ad.m68k,v 1.3 2010/03/10 23:13:09 abs Exp $ +./rescue/edlabel base-rescue-root obsolete diff --git a/distrib/sets/lists/base/rescue.ad.m68k.shl b/distrib/sets/lists/base/rescue.ad.m68k.shl new file mode 100644 index 000000000..cbb8eafe5 --- /dev/null +++ b/distrib/sets/lists/base/rescue.ad.m68k.shl @@ -0,0 +1,2 @@ +# $NetBSD: rescue.ad.m68k.shl,v 1.2 2004/01/11 10:24:59 lukem Exp $ +./rescue/ldconfig base-rescue-root diff --git a/distrib/sets/lists/base/rescue.i386 b/distrib/sets/lists/base/rescue.i386 new file mode 100644 index 000000000..fa0ccfc86 --- /dev/null +++ b/distrib/sets/lists/base/rescue.i386 @@ -0,0 +1,2 @@ +# $NetBSD: rescue.i386,v 1.3 2005/05/22 03:45:30 lukem Exp $ +./rescue/ldconfig base-rescue-root diff --git a/distrib/sets/lists/base/rescue.mac68k b/distrib/sets/lists/base/rescue.mac68k new file mode 100644 index 000000000..5c4f7dd5b --- /dev/null +++ b/distrib/sets/lists/base/rescue.mac68k @@ -0,0 +1 @@ +# $NetBSD: rescue.mac68k,v 1.3 2012/04/07 05:55:00 christos Exp $ diff --git a/distrib/sets/lists/base/rescue.macppc b/distrib/sets/lists/base/rescue.macppc new file mode 100644 index 000000000..e68f6dfc3 --- /dev/null +++ b/distrib/sets/lists/base/rescue.macppc @@ -0,0 +1 @@ +# $NetBSD: rescue.macppc,v 1.4 2012/04/07 05:55:00 christos Exp $ diff --git a/distrib/sets/lists/base/rescue.mi b/distrib/sets/lists/base/rescue.mi new file mode 100644 index 000000000..8c07f3b50 --- /dev/null +++ b/distrib/sets/lists/base/rescue.mi @@ -0,0 +1,162 @@ +# $NetBSD: rescue.mi,v 1.34 2012/05/25 21:46:13 jnemeth Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./rescue/[ base-rescue-root +./rescue/atactl base-rescue-root +./rescue/badsect base-rescue-root +./rescue/brconfig base-rescue-root +./rescue/bunzip2 base-rescue-root +./rescue/bzcat base-rescue-root +./rescue/bzip2 base-rescue-root +./rescue/cat base-rescue-root +./rescue/ccdconfig base-rescue-root +./rescue/cgdconfig base-rescue-root crypto +./rescue/chgrp base-rescue-root +./rescue/chio base-rescue-root +./rescue/chmod base-rescue-root +./rescue/chown base-rescue-root +./rescue/chroot base-rescue-root +./rescue/clri base-rescue-root +./rescue/cp base-rescue-root +./rescue/csh base-rescue-root +./rescue/date base-rescue-root +./rescue/dd base-rescue-root +./rescue/df base-rescue-root +./rescue/disklabel base-rescue-root +./rescue/dkctl base-rescue-root +./rescue/dmesg base-rescue-root +./rescue/domainname base-rescue-root +./rescue/dump base-rescue-root +./rescue/dump_lfs base-rescue-root +./rescue/dumpfs base-rescue-root +./rescue/dumplfs base-rescue-root +./rescue/echo base-rescue-root +./rescue/ed base-rescue-root +./rescue/egrep base-rescue-root +./rescue/ex base-rescue-root +./rescue/expr base-rescue-root +./rescue/fdisk base-rescue-root +./rescue/fgrep base-rescue-root +./rescue/fsck base-rescue-root +./rescue/fsck_ext2fs base-rescue-root +./rescue/fsck_ffs base-rescue-root +./rescue/fsck_lfs base-rescue-root +./rescue/fsck_msdos base-rescue-root +./rescue/fsdb base-rescue-root +./rescue/fsirand base-rescue-root +./rescue/ftp base-rescue-root +./rescue/gpt base-rescue-root +./rescue/grep base-rescue-root +./rescue/gunzip base-rescue-root +./rescue/gzcat base-rescue-root +./rescue/gzip base-rescue-root +./rescue/halt base-rescue-root +./rescue/hostname base-rescue-root +./rescue/ifconfig base-rescue-root +./rescue/init base-rescue-root +./rescue/init.bak base-rescue-root +./rescue/installboot base-rescue-root +./rescue/ipppctl base-rescue-root +./rescue/kdump base-rescue-root +./rescue/kill base-rescue-root +./rescue/ksh base-rescue-root +./rescue/ktrace base-rescue-root +./rescue/ktruss base-rescue-root +./rescue/ldd base-rescue-root +./rescue/less base-rescue-root +./rescue/lfs_cleanerd base-rescue-root +./rescue/lmcctl base-obsolete obsolete +./rescue/lmcconfig base-rescue-root +./rescue/ln base-rescue-root +./rescue/ls base-rescue-root +./rescue/mbrlabel base-rescue-root +./rescue/mkdir base-rescue-root +./rescue/mknod base-rescue-root +./rescue/modload base-rescue-root +./rescue/modstat base-rescue-root +./rescue/modunload base-rescue-root +./rescue/more base-rescue-root +./rescue/mount base-rescue-root +./rescue/mount_ados base-rescue-root +./rescue/mount_cd9660 base-rescue-root +./rescue/mount_efs base-rescue-root +./rescue/mount_ext2fs base-rescue-root +./rescue/mount_fdesc base-rescue-root +./rescue/mount_ffs base-rescue-root +./rescue/mount_filecore base-rescue-root +./rescue/mount_kernfs base-rescue-root +./rescue/mount_lfs base-rescue-root +./rescue/mount_mfs base-rescue-root +./rescue/mount_msdos base-rescue-root +./rescue/mount_nfs base-rescue-root +./rescue/mount_ntfs base-rescue-root +./rescue/mount_null base-rescue-root +./rescue/mount_overlay base-rescue-root +./rescue/mount_portal base-obsolete obsolete +./rescue/mount_procfs base-rescue-root +./rescue/mount_smbfs base-rescue-root +./rescue/mount_tmpfs base-rescue-root +./rescue/mount_ufs base-rescue-root +./rescue/mount_umap base-rescue-root +./rescue/mount_union base-rescue-root +./rescue/mt base-rescue-root +./rescue/mv base-rescue-root +./rescue/newfs base-rescue-root +./rescue/newfs_lfs base-rescue-root +./rescue/newfs_msdos base-rescue-root +./rescue/pax base-rescue-root +./rescue/pdisk base-rescue-root +./rescue/ping base-rescue-root +./rescue/ping6 base-rescue-root use_inet6 +./rescue/pppoectl base-rescue-root +./rescue/ps base-rescue-root +./rescue/pwd base-rescue-root +./rescue/raidctl base-rescue-root +./rescue/rcmd base-rescue-root +./rescue/rcorder base-rescue-root +./rescue/rcp base-rescue-root +./rescue/rdump base-rescue-root +./rescue/rdump_lfs base-rescue-root +./rescue/reboot base-rescue-root +./rescue/restore base-rescue-root +./rescue/rm base-rescue-root +./rescue/rmdir base-rescue-root +./rescue/rndctl base-rescue-root +./rescue/route base-rescue-root +./rescue/routed base-rescue-root +./rescue/rrestore base-rescue-root +./rescue/rtsol base-rescue-root use_inet6 +./rescue/savecore base-rescue-root +./rescue/scan_ffs base-rescue-root +./rescue/scp base-rescue-root crypto +./rescue/scsictl base-rescue-root +./rescue/setkey base-rescue-root +./rescue/sh base-rescue-root +./rescue/shutdown base-rescue-root +./rescue/slattach base-rescue-root +./rescue/sleep base-rescue-root +./rescue/slogin base-rescue-root crypto +./rescue/ssh base-rescue-root crypto +./rescue/stty base-rescue-root +./rescue/swapctl base-rescue-root +./rescue/swapon base-rescue-root +./rescue/sync base-rescue-root +./rescue/sysctl base-rescue-root +./rescue/systrace base-obsolete obsolete +./rescue/tar base-rescue-root +./rescue/terminfo.db base-obsolete obsolete +./rescue/test base-rescue-root +./rescue/tetris base-rescue-root +./rescue/ttyflags base-rescue-root +./rescue/tunefs base-rescue-root +./rescue/umount base-rescue-root +./rescue/veriexecctl base-rescue-root +./rescue/vnconfig base-rescue-root +./rescue/vi base-rescue-root +./rescue/wdogctl base-rescue-root +./rescue/wsconsctl base-rescue-root +./rescue/zcat base-rescue-root +./rescue/zegrep base-rescue-root +./rescue/zfgrep base-rescue-root +./rescue/zgrep base-rescue-root diff --git a/distrib/sets/lists/base/rescue.shark b/distrib/sets/lists/base/rescue.shark new file mode 100644 index 000000000..f3656286b --- /dev/null +++ b/distrib/sets/lists/base/rescue.shark @@ -0,0 +1,2 @@ +# $NetBSD: rescue.shark,v 1.2 2004/01/11 10:24:59 lukem Exp $ +./rescue/ldconfig base-rescue-root diff --git a/distrib/sets/lists/base/rescue.sparc b/distrib/sets/lists/base/rescue.sparc new file mode 100644 index 000000000..739b71f8f --- /dev/null +++ b/distrib/sets/lists/base/rescue.sparc @@ -0,0 +1,3 @@ +# $NetBSD: rescue.sparc,v 1.3 2010/03/10 23:13:09 abs Exp $ +./rescue/edlabel base-rescue-root obsolete +./rescue/ldconfig base-rescue-root diff --git a/distrib/sets/lists/base/rescue.sparc64 b/distrib/sets/lists/base/rescue.sparc64 new file mode 100644 index 000000000..80ae5a924 --- /dev/null +++ b/distrib/sets/lists/base/rescue.sparc64 @@ -0,0 +1,2 @@ +# $NetBSD: rescue.sparc64,v 1.3 2010/03/10 23:13:09 abs Exp $ +./rescue/edlabel base-rescue-root obsolete diff --git a/distrib/sets/lists/base/rescue.sun2 b/distrib/sets/lists/base/rescue.sun2 new file mode 100644 index 000000000..1fe20c255 --- /dev/null +++ b/distrib/sets/lists/base/rescue.sun2 @@ -0,0 +1,2 @@ +# $NetBSD: rescue.sun2,v 1.3 2010/03/10 23:13:09 abs Exp $ +./rescue/edlabel base-rescue-root obsolete diff --git a/distrib/sets/lists/base/rescue.vax b/distrib/sets/lists/base/rescue.vax new file mode 100644 index 000000000..ba904c38c --- /dev/null +++ b/distrib/sets/lists/base/rescue.vax @@ -0,0 +1,2 @@ +# $NetBSD: rescue.vax,v 1.2 2004/01/11 10:24:59 lukem Exp $ +./rescue/ldconfig base-rescue-root diff --git a/distrib/sets/lists/base/shl.mi b/distrib/sets/lists/base/shl.mi new file mode 100644 index 000000000..878b074ea --- /dev/null +++ b/distrib/sets/lists/base/shl.mi @@ -0,0 +1,760 @@ +# $NetBSD: shl.mi,v 1.637 2012/09/16 18:59:25 tls Exp $ +# +# Note: Don't delete entries from here - mark them as "obsolete" instead, +# unless otherwise stated below. +# +# Note: Do not mark "old" major and major.minor shared libraries as +# "obsolete"; just remove the entry, as third-party applications +# may be linked against the old major shared library, and +# that is a symlink to the old major.minor shared library. +# e.g., "lib.so." and "lib.so.." +# Exceptions to this rule may include shared libraries that +# are dlopen()ed at run-time, such as extra locales, etc. +# +# Note: libtermcap and libtermlib are hardlinked and share the same version. +# +./lib/libc.so base-sys-shlib dynamicroot +./lib/libc.so.12 base-sys-shlib dynamicroot +./lib/libc.so.12.185 base-sys-shlib dynamicroot +./lib/libcrypt.so base-sys-shlib dynamicroot +./lib/libcrypt.so.1 base-sys-shlib dynamicroot +./lib/libcrypt.so.1.0 base-sys-shlib dynamicroot +./lib/libcrypto.so base-crypto-shlib crypto,dynamicroot +./lib/libcrypto.so.8 base-crypto-shlib crypto,dynamicroot +./lib/libcrypto.so.8.0 base-crypto-shlib crypto,dynamicroot +./lib/libdevmapper.so base-lvm-shlib lvm,dynamicroot +./lib/libdevmapper.so.1 base-lvm-shlib lvm,dynamicroot +./lib/libdevmapper.so.1.0 base-lvm-shlib lvm,dynamicroot +./lib/libedit.so base-sys-shlib dynamicroot +./lib/libedit.so.3 base-sys-shlib dynamicroot +./lib/libedit.so.3.0 base-sys-shlib dynamicroot +./lib/libevent.so base-sys-shlib dynamicroot +./lib/libevent.so.3 base-sys-shlib dynamicroot +./lib/libevent.so.3.2 base-sys-shlib dynamicroot +./lib/libgcc_s.so base-sys-shlib gcc +./lib/libgcc_s.so.1 base-sys-shlib gcc +./lib/libgcc_s.so.1.0 base-sys-shlib gcc +./lib/libipsec.so base-net-shlib dynamicroot +./lib/libipsec.so.3 base-net-shlib dynamicroot +./lib/libipsec.so.3.0 base-net-shlib dynamicroot +./lib/libkvm.so base-sys-shlib dynamicroot +./lib/libkvm.so.6 base-sys-shlib dynamicroot +./lib/libkvm.so.6.0 base-sys-shlib dynamicroot +./lib/liblzf.so base-sys-shlib dynamicroot +./lib/liblzf.so.1 base-sys-shlib dynamicroot +./lib/liblzf.so.1.0 base-sys-shlib dynamicroot +./lib/liblzma.so base-sys-shlib dynamicroot +./lib/liblzma.so.1 base-sys-shlib dynamicroot +./lib/liblzma.so.1.1 base-sys-shlib dynamicroot +./lib/libm.so base-sys-shlib dynamicroot +./lib/libm.so.0 base-sys-shlib dynamicroot +./lib/libm.so.0.10 base-sys-shlib dynamicroot +./lib/libppath.so base-sys-shlib dynamicroot +./lib/libppath.so.0 base-sys-shlib dynamicroot +./lib/libppath.so.0.0 base-sys-shlib dynamicroot +./lib/libprop.so base-sys-shlib dynamicroot +./lib/libprop.so.1 base-sys-shlib dynamicroot +./lib/libprop.so.1.1 base-sys-shlib dynamicroot +./lib/libradius.so base-sys-shlib dynamicroot +./lib/libradius.so.4 base-sys-shlib dynamicroot +./lib/libradius.so.4.0 base-sys-shlib dynamicroot +./lib/librumpclient.so base-sys-shlib dynamicroot,rump +./lib/librumpclient.so.0 base-sys-shlib dynamicroot,rump +./lib/librumpclient.so.0.0 base-sys-shlib dynamicroot,rump +./lib/libtermcap.so base-sys-shlib dynamicroot +./lib/libtermcap.so.0 base-sys-shlib dynamicroot +./lib/libtermcap.so.0.6 base-sys-shlib dynamicroot +./lib/libterminfo.so base-sys-shlib dynamicroot +./lib/libterminfo.so.1 base-sys-shlib dynamicroot +./lib/libterminfo.so.1.0 base-sys-shlib dynamicroot +./lib/libtermlib.so base-sys-shlib dynamicroot +./lib/libtermlib.so.0 base-sys-shlib dynamicroot +./lib/libtermlib.so.0.6 base-sys-shlib dynamicroot +./lib/libutil.so base-sys-shlib dynamicroot +./lib/libutil.so.7 base-sys-shlib dynamicroot +./lib/libutil.so.7.21 base-sys-shlib dynamicroot +./lib/libz.so base-sys-shlib dynamicroot +./lib/libz.so.1 base-sys-shlib dynamicroot +./lib/libz.so.1.0 base-sys-shlib dynamicroot +./libexec/ld.elf_so base-sys-shlib dynamicroot +./usr/lib/i18n/libBIG5.so base-i18n-shlib +./usr/lib/i18n/libBIG5.so.5 base-i18n-shlib +./usr/lib/i18n/libBIG5.so.5.0 base-i18n-shlib +./usr/lib/i18n/libDECHanyu.so base-i18n-shlib +./usr/lib/i18n/libDECHanyu.so.5 base-i18n-shlib +./usr/lib/i18n/libDECHanyu.so.5.0 base-i18n-shlib +./usr/lib/i18n/libEUC.so base-i18n-shlib +./usr/lib/i18n/libEUC.so.5 base-i18n-shlib +./usr/lib/i18n/libEUC.so.5.0 base-i18n-shlib +./usr/lib/i18n/libEUCTW.so base-i18n-shlib +./usr/lib/i18n/libEUCTW.so.5 base-i18n-shlib +./usr/lib/i18n/libEUCTW.so.5.0 base-i18n-shlib +./usr/lib/i18n/libGBK2K.so base-i18n-shlib +./usr/lib/i18n/libGBK2K.so.5 base-i18n-shlib +./usr/lib/i18n/libGBK2K.so.5.0 base-i18n-shlib +./usr/lib/i18n/libHZ.so base-i18n-shlib +./usr/lib/i18n/libHZ.so.5 base-i18n-shlib +./usr/lib/i18n/libHZ.so.5.0 base-i18n-shlib +./usr/lib/i18n/libISO2022.so base-i18n-shlib +./usr/lib/i18n/libISO2022.so.5 base-i18n-shlib +./usr/lib/i18n/libISO2022.so.5.0 base-i18n-shlib +./usr/lib/i18n/libJOHAB.so base-i18n-shlib +./usr/lib/i18n/libJOHAB.so.5 base-i18n-shlib +./usr/lib/i18n/libJOHAB.so.5.0 base-i18n-shlib +./usr/lib/i18n/libMSKanji.so base-i18n-shlib +./usr/lib/i18n/libMSKanji.so.5 base-i18n-shlib +./usr/lib/i18n/libMSKanji.so.5.0 base-i18n-shlib +./usr/lib/i18n/libUES.so base-i18n-shlib +./usr/lib/i18n/libUES.so.5 base-i18n-shlib +./usr/lib/i18n/libUES.so.5.0 base-i18n-shlib +./usr/lib/i18n/libUTF1632.so base-i18n-shlib +./usr/lib/i18n/libUTF1632.so.5 base-i18n-shlib +./usr/lib/i18n/libUTF1632.so.5.0 base-i18n-shlib +./usr/lib/i18n/libUTF7.so base-i18n-shlib +./usr/lib/i18n/libUTF7.so.5 base-i18n-shlib +./usr/lib/i18n/libUTF7.so.5.0 base-i18n-shlib +./usr/lib/i18n/libUTF8.so base-i18n-shlib +./usr/lib/i18n/libUTF8.so.5 base-i18n-shlib +./usr/lib/i18n/libUTF8.so.5.0 base-i18n-shlib +./usr/lib/i18n/libVIQR.so base-i18n-shlib +./usr/lib/i18n/libVIQR.so.5 base-i18n-shlib +./usr/lib/i18n/libVIQR.so.5.0 base-i18n-shlib +./usr/lib/i18n/libZW.so base-i18n-shlib +./usr/lib/i18n/libZW.so.5 base-i18n-shlib +./usr/lib/i18n/libZW.so.5.0 base-i18n-shlib +./usr/lib/i18n/libiconv_none.so base-i18n-shlib +./usr/lib/i18n/libiconv_none.so.5 base-i18n-shlib +./usr/lib/i18n/libiconv_none.so.5.0 base-i18n-shlib +./usr/lib/i18n/libiconv_std.so base-i18n-shlib +./usr/lib/i18n/libiconv_std.so.5 base-i18n-shlib +./usr/lib/i18n/libiconv_std.so.5.0 base-i18n-shlib +./usr/lib/i18n/libmapper_646.so base-i18n-shlib +./usr/lib/i18n/libmapper_646.so.5 base-i18n-shlib +./usr/lib/i18n/libmapper_646.so.5.0 base-i18n-shlib +./usr/lib/i18n/libmapper_none.so base-i18n-shlib +./usr/lib/i18n/libmapper_none.so.5 base-i18n-shlib +./usr/lib/i18n/libmapper_none.so.5.0 base-i18n-shlib +./usr/lib/i18n/libmapper_parallel.so base-i18n-shlib +./usr/lib/i18n/libmapper_parallel.so.5 base-i18n-shlib +./usr/lib/i18n/libmapper_parallel.so.5.0 base-i18n-shlib +./usr/lib/i18n/libmapper_serial.so base-i18n-shlib +./usr/lib/i18n/libmapper_serial.so.5 base-i18n-shlib +./usr/lib/i18n/libmapper_serial.so.5.0 base-i18n-shlib +./usr/lib/i18n/libmapper_std.so base-i18n-shlib +./usr/lib/i18n/libmapper_std.so.5 base-i18n-shlib +./usr/lib/i18n/libmapper_std.so.5.0 base-i18n-shlib +./usr/lib/i18n/libmapper_zone.so base-i18n-shlib +./usr/lib/i18n/libmapper_zone.so.5 base-i18n-shlib +./usr/lib/i18n/libmapper_zone.so.5.0 base-i18n-shlib +./usr/lib/libamu.so.4 base-amd-shlib +./usr/lib/libamu.so.4.0 base-amd-shlib +./usr/lib/libarchive.so base-sys-shlib +./usr/lib/libarchive.so.3 base-sys-shlib +./usr/lib/libarchive.so.3.1 base-sys-shlib +./usr/lib/libasn1.so base-krb5-shlib kerberos +./usr/lib/libasn1.so.9 base-krb5-shlib kerberos +./usr/lib/libasn1.so.9.0 base-krb5-shlib kerberos +./usr/lib/libatf-c.so base-atf-shlib atf +./usr/lib/libatf-c.so.0 base-atf-shlib atf +./usr/lib/libatf-c.so.0.0 base-atf-shlib atf +./usr/lib/libatf-c++.so base-atf-shlib atf +./usr/lib/libatf-c++.so.0 base-atf-shlib atf +./usr/lib/libatf-c++.so.0.0 base-atf-shlib atf +./usr/lib/libavl.so base-zfs-shlib dynamicroot,zfs +./usr/lib/libavl.so.0 base-zfs-shlib dynamicroot,zfs +./usr/lib/libavl.so.0.0 base-zfs-shlib zfs,dynamicroot +./usr/lib/libbfd.so.12 base-sys-shlib binutils +./usr/lib/libbfd.so.12.0 base-sys-shlib binutils +./usr/lib/libbind9.so base-bind-shlib +./usr/lib/libbind9.so.5 base-bind-shlib +./usr/lib/libbind9.so.5.7 base-bind-shlib +./usr/lib/libbluetooth.so base-sys-shlib +./usr/lib/libbluetooth.so.4 base-sys-shlib +./usr/lib/libbluetooth.so.4.2 base-sys-shlib +./usr/lib/libbsdmalloc.so base-sys-shlib +./usr/lib/libbsdmalloc.so.0 base-sys-shlib +./usr/lib/libbsdmalloc.so.0.0 base-sys-shlib +./usr/lib/libbz2.so base-sys-shlib +./usr/lib/libbz2.so.1 base-sys-shlib +./usr/lib/libbz2.so.1.1 base-sys-shlib +./usr/lib/libc.so base-sys-shlib +./usr/lib/libc.so.12 base-sys-shlib +./usr/lib/libc.so.12.185 base-sys-shlib +./usr/lib/libcdk.so base-obsolete obsolete +./usr/lib/libcom_err.so base-krb5-shlib kerberos +./usr/lib/libcom_err.so.7 base-krb5-shlib kerberos +./usr/lib/libcom_err.so.7.0 base-krb5-shlib kerberos +./usr/lib/libcrypt.so base-sys-shlib +./usr/lib/libcrypt.so.1 base-sys-shlib +./usr/lib/libcrypt.so.1.0 base-sys-shlib +./usr/lib/libcrypto.so base-crypto-shlib crypto +./usr/lib/libcrypto.so.8 base-crypto-shlib crypto +./usr/lib/libcrypto.so.8.0 base-crypto-shlib crypto +./usr/lib/libcrypto_idea.so.7 base-obsolete obsolete +./usr/lib/libcrypto_idea.so.7.0 base-obsolete obsolete +./usr/lib/libcrypto_mdc2.so.7 base-obsolete obsolete +./usr/lib/libcrypto_mdc2.so.7.0 base-obsolete obsolete +./usr/lib/libcrypto_rc5.so base-crypto-shlib crypto,crypto_rc5 +./usr/lib/libcrypto_rc5.so.7 base-crypto-shlib crypto,crypto_rc5 +./usr/lib/libcrypto_rc5.so.7.0 base-crypto-shlib crypto,crypto_rc5 +./usr/lib/libcrypto_rc5_pic.a base-crypto-shlib crypto,crypto_rc5 +./usr/lib/libctf.so base-sys-shlib dtrace +./usr/lib/libctf.so.2 base-sys-shlib dtrace +./usr/lib/libctf.so.2.0 base-sys-shlib dtrace +./usr/lib/libcurses.so base-sys-shlib +./usr/lib/libcurses.so.7 base-sys-shlib +./usr/lib/libcurses.so.7.0 base-sys-shlib +./usr/lib/libdes.so base-crypto-shlib crypto +./usr/lib/libdes.so.8 base-crypto-shlib crypto +./usr/lib/libdes.so.8.1 base-crypto-shlib crypto +./usr/lib/libdevmapper.so base-lvm-shlib lvm +./usr/lib/libdevmapper.so.1 base-lvm-shlib lvm +./usr/lib/libdevmapper.so.1.0 base-lvm-shlib lvm +./usr/lib/libdm.so base-sys-shlib +./usr/lib/libdm.so.0 base-sys-shlib +./usr/lib/libdm.so.0.0 base-sys-shlib +./usr/lib/libdns.so base-bind-shlib +./usr/lib/libdns.so.5 base-bind-shlib +./usr/lib/libdns.so.5.7 base-bind-shlib +./usr/lib/libdns_sd.so base-mdns-shlib mdns +./usr/lib/libdns_sd.so.0 base-mdns-shlib mdns +./usr/lib/libdns_sd.so.0.0 base-mdns-shlib mdns +./usr/lib/libdtrace.so base-sys-shlib dtrace +./usr/lib/libdtrace.so.2 base-sys-shlib dtrace +./usr/lib/libdtrace.so.2.0 base-sys-shlib dtrace +./usr/lib/libdwarf.so base-sys-shlib +./usr/lib/libdwarf.so.0 base-sys-shlib +./usr/lib/libdwarf.so.0.0 base-sys-shlib +./usr/lib/libedit.so base-sys-shlib +./usr/lib/libedit.so.3 base-sys-shlib +./usr/lib/libedit.so.3.0 base-sys-shlib +./usr/lib/libelf.so base-sys-shlib +./usr/lib/libelf.so.0 base-sys-shlib +./usr/lib/libelf.so.0.0 base-sys-shlib +./usr/lib/libevent.so base-sys-shlib +./usr/lib/libevent.so.3 base-sys-shlib +./usr/lib/libevent.so.3.2 base-sys-shlib +./usr/lib/libexecinfo.so base-sys-shlib +./usr/lib/libexecinfo.so.0 base-sys-shlib +./usr/lib/libexecinfo.so.0.0 base-sys-shlib +./usr/lib/libexpat.so base-sys-shlib +./usr/lib/libexpat.so.2 base-sys-shlib +./usr/lib/libexpat.so.2.1 base-sys-shlib +./usr/lib/libfetch.so base-sys-shlib +./usr/lib/libfetch.so.3 base-sys-shlib +./usr/lib/libfetch.so.3.0 base-sys-shlib +./usr/lib/libform.so base-sys-shlib +./usr/lib/libform.so.6 base-sys-shlib +./usr/lib/libform.so.6.0 base-sys-shlib +./usr/lib/libg2c.so base-sys-shlib gcc=3 +./usr/lib/libg2c.so.2 base-sys-shlib gcc=3 +./usr/lib/libg2c.so.2.0 base-sys-shlib gcc=3 +./usr/lib/libgcc_s.so base-sys-shlib gcc +./usr/lib/libgcc_s.so.1 base-sys-shlib gcc +./usr/lib/libgcc_s.so.1.0 base-sys-shlib gcc +./usr/lib/libgnumalloc.so base-sys-shlib +./usr/lib/libgnumalloc.so.1 base-sys-shlib +./usr/lib/libgnumalloc.so.1.0 base-sys-shlib +./usr/lib/libgomp.so base-sys-shlib gcc=45 +./usr/lib/libgomp.so.1 base-sys-shlib gcc=45 +./usr/lib/libgomp.so.1.0 base-sys-shlib gcc=45 +./usr/lib/libgssapi.so base-krb5-shlib kerberos +./usr/lib/libgssapi.so.10 base-krb5-shlib kerberos +./usr/lib/libgssapi.so.10.0 base-krb5-shlib kerberos +./usr/lib/libhdb.so base-krb5-shlib kerberos +./usr/lib/libhdb.so.14 base-krb5-shlib kerberos +./usr/lib/libhdb.so.14.0 base-krb5-shlib kerberos +./usr/lib/libheimbase.so base-krb5-shlib kerberos +./usr/lib/libheimbase.so.1 base-krb5-shlib kerberos +./usr/lib/libheimbase.so.1.0 base-krb5-shlib kerberos +./usr/lib/libheimntlm.so base-krb5-shlib kerberos +./usr/lib/libheimntlm.so.4 base-krb5-shlib kerberos +./usr/lib/libheimntlm.so.4.0 base-krb5-shlib kerberos +./usr/lib/libhx509.so base-krb5-shlib kerberos +./usr/lib/libhx509.so.5 base-krb5-shlib kerberos +./usr/lib/libhx509.so.5.0 base-krb5-shlib kerberos +./usr/lib/libintl.so base-sys-shlib +./usr/lib/libintl.so.1 base-sys-shlib +./usr/lib/libintl.so.1.0 base-sys-shlib +./usr/lib/libipsec.so base-net-shlib +./usr/lib/libipsec.so.3 base-net-shlib +./usr/lib/libipsec.so.3.0 base-net-shlib +./usr/lib/libisc.so base-bind-shlib +./usr/lib/libisc.so.5 base-bind-shlib +./usr/lib/libisc.so.5.7 base-bind-shlib +./usr/lib/libisccc.so base-bind-shlib +./usr/lib/libisccc.so.5 base-bind-shlib +./usr/lib/libisccc.so.5.7 base-bind-shlib +./usr/lib/libisccfg.so base-bind-shlib +./usr/lib/libisccfg.so.5 base-bind-shlib +./usr/lib/libisccfg.so.5.7 base-bind-shlib +./usr/lib/libiscsi.so base-iscsi-shlib iscsi +./usr/lib/libiscsi.so.2 base-iscsi-shlib iscsi +./usr/lib/libiscsi.so.2.0 base-iscsi-shlib iscsi +./usr/lib/libisns.so base-isns-shlib +./usr/lib/libisns.so.0 base-isns-shlib +./usr/lib/libisns.so.0.0 base-isns-shlib +./usr/lib/libkadm.so base-obsolete obsolete +./usr/lib/libkadm5clnt.so base-krb5-shlib kerberos +./usr/lib/libkadm5clnt.so.13 base-krb5-shlib kerberos +./usr/lib/libkadm5clnt.so.13.0 base-krb5-shlib kerberos +./usr/lib/libkadm5srv.so base-krb5-shlib kerberos +./usr/lib/libkadm5srv.so.14 base-krb5-shlib kerberos +./usr/lib/libkadm5srv.so.14.0 base-krb5-shlib kerberos +./usr/lib/libkafs.so base-krb5-shlib kerberos +./usr/lib/libkafs.so.12 base-krb5-shlib kerberos +./usr/lib/libkafs.so.12.0 base-krb5-shlib kerberos +./usr/lib/libkdc.so base-krb5-shlib kerberos +./usr/lib/libkdc.so.2 base-krb5-shlib kerberos +./usr/lib/libkdc.so.2.0 base-krb5-shlib kerberos +./usr/lib/libkdb.so base-obsolete obsolete +./usr/lib/libkrb.so base-obsolete obsolete +./usr/lib/libkrb5.so base-krb5-shlib kerberos +./usr/lib/libkrb5.so.26 base-krb5-shlib kerberos +./usr/lib/libkrb5.so.26.0 base-krb5-shlib kerberos +./usr/lib/libkstream.so base-obsolete obsolete +./usr/lib/libkvm.so base-sys-shlib +./usr/lib/libkvm.so.6 base-sys-shlib +./usr/lib/libkvm.so.6.0 base-sys-shlib +./usr/lib/liblber.so base-ldap-shlib ldap +./usr/lib/liblber.so.3 base-ldap-shlib ldap +./usr/lib/liblber.so.3.2 base-ldap-shlib ldap +./usr/lib/libldap.so base-ldap-shlib ldap +./usr/lib/libldap.so.4 base-ldap-shlib ldap +./usr/lib/libldap.so.4.2 base-ldap-shlib ldap +./usr/lib/libldap_r.so base-ldap-shlib ldap +./usr/lib/libldap_r.so.4 base-ldap-shlib ldap +./usr/lib/libldap_r.so.4.2 base-ldap-shlib ldap +./usr/lib/liblua.so base-sys-shlib +./usr/lib/liblua.so.1 base-sys-shlib +./usr/lib/liblua.so.1.0 base-sys-shlib +./usr/lib/liblwres.so base-bind-shlib +./usr/lib/liblwres.so.5 base-bind-shlib +./usr/lib/liblwres.so.5.7 base-bind-shlib +./usr/lib/liblzma.so base-sys-shlib +./usr/lib/liblzma.so.1 base-sys-shlib +./usr/lib/liblzma.so.1.1 base-sys-shlib +./usr/lib/liblzf.so base-sys-shlib +./usr/lib/liblzf.so.1 base-sys-shlib +./usr/lib/liblzf.so.1.0 base-sys-shlib +./usr/lib/libm.so base-sys-shlib +./usr/lib/libm.so.0 base-sys-shlib +./usr/lib/libm.so.0.10 base-sys-shlib +./usr/lib/libmagic.so base-sys-shlib +./usr/lib/libmagic.so.3 base-sys-shlib +./usr/lib/libmagic.so.3.1 base-sys-shlib +./usr/lib/libmenu.so base-sys-shlib +./usr/lib/libmenu.so.6 base-sys-shlib +./usr/lib/libmenu.so.6.0 base-sys-shlib +./usr/lib/libmj.so base-crypto-shlib crypto +./usr/lib/libmj.so.1 base-crypto-shlib crypto +./usr/lib/libmj.so.1.0 base-crypto-shlib crypto +./usr/lib/libnetpgp.so base-crypto-shlib crypto +./usr/lib/libnetpgp.so.3 base-crypto-shlib crypto +./usr/lib/libnetpgp.so.3.0 base-crypto-shlib crypto +./usr/lib/libnpf.so base-npf-shlib npf +./usr/lib/libnpf.so.0 base-npf-shlib npf +./usr/lib/libnpf.so.0.0 base-npf-shlib npf +./usr/lib/libnvpair.so base-zfs-shlib dynamicroot,zfs +./usr/lib/libnvpair.so.0 base-zfs-shlib dynamicroot,zfs +./usr/lib/libnvpair.so.0.0 base-zfs-shlib zfs,dynamicroot +./usr/lib/libobjc.so base-sys-shlib gcc +./usr/lib/libobjc.so.3 base-sys-shlib gcc=4 +./usr/lib/libobjc.so.3.0 base-sys-shlib gcc=4 +./usr/lib/libobjc.so.3 base-sys-shlib gcc=45 +./usr/lib/libobjc.so.3.0 base-sys-shlib gcc=45 +./usr/lib/libopenpgpsdk.so base-obsolete obsolete +./usr/lib/libopenpgpsdk.so.0 base-obsolete obsolete +./usr/lib/libopenpgpsdk.so.0.9 base-obsolete obsolete +./usr/lib/libossaudio.so base-sys-shlib +./usr/lib/libossaudio.so.1 base-sys-shlib +./usr/lib/libossaudio.so.1.0 base-sys-shlib +./usr/lib/libperfuse.so base-perfuse-shlib +./usr/lib/libperfuse.so.0 base-perfuse-shlib +./usr/lib/libperfuse.so.0.0 base-perfuse-shlib +./usr/lib/libp2k.so base-puffs-shlib rump +./usr/lib/libp2k.so.2 base-puffs-shlib rump +./usr/lib/libp2k.so.2.0 base-puffs-shlib rump +./usr/lib/libpam.so base-sys-shlib pam +./usr/lib/libpam.so.3 base-sys-shlib pam +./usr/lib/libpam.so.3.0 base-sys-shlib pam +./usr/lib/libpcap.so base-net-shlib +./usr/lib/libpcap.so.4 base-net-shlib +./usr/lib/libpcap.so.4.0 base-net-shlib +./usr/lib/libpci.so base-sys-shlib +./usr/lib/libpci.so.2 base-sys-shlib +./usr/lib/libpci.so.2.0 base-sys-shlib +./usr/lib/libposix.so base-sys-shlib +./usr/lib/libposix.so.0 base-sys-shlib +./usr/lib/libposix.so.0.1 base-sys-shlib +./usr/lib/libppath.so base-sys-shlib +./usr/lib/libppath.so.0 base-sys-shlib +./usr/lib/libppath.so.0.0 base-sys-shlib +./usr/lib/libprop.so base-sys-shlib +./usr/lib/libprop.so.1 base-sys-shlib +./usr/lib/libprop.so.1.1 base-sys-shlib +./usr/lib/libpthread.so base-sys-shlib +./usr/lib/libpthread.so.1 base-sys-shlib +./usr/lib/libpthread.so.1.1 base-sys-shlib +./usr/lib/libpthread_dbg.so base-sys-shlib +./usr/lib/libpthread_dbg.so.2 base-sys-shlib +./usr/lib/libpthread_dbg.so.2.0 base-sys-shlib +./usr/lib/libpuffs.so base-puffs-shlib +./usr/lib/libpuffs.so.2 base-puffs-shlib +./usr/lib/libpuffs.so.2.0 base-puffs-shlib +./usr/lib/libquota.so base-sys-shlib +./usr/lib/libquota.so.1 base-sys-shlib +./usr/lib/libquota.so.1.0 base-sys-shlib +./usr/lib/libradius.so base-net-shlib +./usr/lib/libradius.so.4 base-net-shlib +./usr/lib/libradius.so.4.0 base-net-shlib +./usr/lib/librefuse.so base-refuse-shlib +./usr/lib/librefuse.so.2 base-refuse-shlib +./usr/lib/librefuse.so.2.0 base-refuse-shlib +./usr/lib/libresolv.so base-net-shlib +./usr/lib/libresolv.so.2 base-net-shlib +./usr/lib/libresolv.so.2.0 base-net-shlib +./usr/lib/libroken.so base-krb5-shlib kerberos +./usr/lib/libroken.so.19 base-krb5-shlib kerberos +./usr/lib/libroken.so.19.0 base-krb5-shlib kerberos +./usr/lib/librpcsvc.so base-net-shlib +./usr/lib/librpcsvc.so.1 base-net-shlib +./usr/lib/librpcsvc.so.1.0 base-net-shlib +./usr/lib/librt.so base-sys-shlib +./usr/lib/librt.so.1 base-sys-shlib +./usr/lib/librt.so.1.1 base-sys-shlib +./usr/lib/librump.so base-rump-shlib rump +./usr/lib/librump.so.0 base-rump-shlib rump +./usr/lib/librump.so.0.0 base-rump-shlib rump +./usr/lib/librumpclient.so base-rumpclient-shlib rump +./usr/lib/librumpclient.so.0 base-rumpclient-shlib rump +./usr/lib/librumpclient.so.0.0 base-rumpclient-shlib rump +./usr/lib/librumpcrypto.so base-obsolete obsolete +./usr/lib/librumpcrypto.so.0 base-obsolete obsolete +./usr/lib/librumpcrypto.so.0.0 base-obsolete obsolete +./usr/lib/librumpdev.so base-rump-shlib rump +./usr/lib/librumpdev.so.0 base-rump-shlib rump +./usr/lib/librumpdev.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_audio.so base-rump-shlib rump +./usr/lib/librumpdev_audio.so.0 base-rump-shlib rump +./usr/lib/librumpdev_audio.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_bpf.so base-rump-shlib rump +./usr/lib/librumpdev_bpf.so.0 base-rump-shlib rump +./usr/lib/librumpdev_bpf.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_cgd.so base-rump-shlib rump +./usr/lib/librumpdev_cgd.so.0 base-rump-shlib rump +./usr/lib/librumpdev_cgd.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_disk.so base-rump-shlib rump +./usr/lib/librumpdev_disk.so.0 base-rump-shlib rump +./usr/lib/librumpdev_disk.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_dm.so base-rump-shlib rump +./usr/lib/librumpdev_dm.so.0 base-rump-shlib rump +./usr/lib/librumpdev_dm.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_drvctl.so base-rump-shlib rump +./usr/lib/librumpdev_drvctl.so.0 base-rump-shlib rump +./usr/lib/librumpdev_drvctl.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_fss.so base-rump-shlib rump +./usr/lib/librumpdev_fss.so.0 base-rump-shlib rump +./usr/lib/librumpdev_fss.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_md.so base-rump-shlib rump +./usr/lib/librumpdev_md.so.0 base-rump-shlib rump +./usr/lib/librumpdev_md.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_netsmb.so base-rump-shlib rump +./usr/lib/librumpdev_netsmb.so.0 base-rump-shlib rump +./usr/lib/librumpdev_netsmb.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_pad.so base-rump-shlib rump +./usr/lib/librumpdev_pad.so.0 base-rump-shlib rump +./usr/lib/librumpdev_pad.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_pud.so base-rump-shlib rump +./usr/lib/librumpdev_pud.so.0 base-rump-shlib rump +./usr/lib/librumpdev_pud.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_putter.so base-rump-shlib rump +./usr/lib/librumpdev_putter.so.0 base-rump-shlib rump +./usr/lib/librumpdev_putter.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_raidframe.so base-rump-shlib rump +./usr/lib/librumpdev_raidframe.so.0 base-rump-shlib rump +./usr/lib/librumpdev_raidframe.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_rnd.so base-rump-shlib rump +./usr/lib/librumpdev_rnd.so.0 base-rump-shlib rump +./usr/lib/librumpdev_rnd.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_scsipi.so base-rump-shlib rump +./usr/lib/librumpdev_scsipi.so.0 base-rump-shlib rump +./usr/lib/librumpdev_scsipi.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_scsitest.so base-rump-shlib rump +./usr/lib/librumpdev_scsitest.so.0 base-rump-shlib rump +./usr/lib/librumpdev_scsitest.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_sysmon.so base-rump-shlib rump +./usr/lib/librumpdev_sysmon.so.0 base-rump-shlib rump +./usr/lib/librumpdev_sysmon.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_ubt.so base-rump-shlib rump +./usr/lib/librumpdev_ubt.so.0 base-rump-shlib rump +./usr/lib/librumpdev_ubt.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_ucom.so base-rump-shlib rump +./usr/lib/librumpdev_ucom.so.0 base-rump-shlib rump +./usr/lib/librumpdev_ucom.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_ugenhc.so base-rump-shlib rump +./usr/lib/librumpdev_ugenhc.so.0 base-rump-shlib rump +./usr/lib/librumpdev_ugenhc.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_ulpt.so base-rump-shlib rump +./usr/lib/librumpdev_ulpt.so.0 base-rump-shlib rump +./usr/lib/librumpdev_ulpt.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_umass.so base-rump-shlib rump +./usr/lib/librumpdev_umass.so.0 base-rump-shlib rump +./usr/lib/librumpdev_umass.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_usb.so base-rump-shlib rump +./usr/lib/librumpdev_usb.so.0 base-rump-shlib rump +./usr/lib/librumpdev_usb.so.0.0 base-rump-shlib rump +./usr/lib/librumpdev_wscons.so base-rump-shlib rump +./usr/lib/librumpdev_wscons.so.0 base-rump-shlib rump +./usr/lib/librumpdev_wscons.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_cd9660.so base-rump-shlib rump +./usr/lib/librumpfs_cd9660.so.0 base-rump-shlib rump +./usr/lib/librumpfs_cd9660.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_efs.so base-rump-shlib rump +./usr/lib/librumpfs_efs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_efs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_ext2fs.so base-rump-shlib rump +./usr/lib/librumpfs_ext2fs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_ext2fs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_fdesc.so base-rump-shlib rump +./usr/lib/librumpfs_fdesc.so.0 base-rump-shlib rump +./usr/lib/librumpfs_fdesc.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_ffs.so base-rump-shlib rump +./usr/lib/librumpfs_ffs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_ffs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_hfs.so base-rump-shlib rump +./usr/lib/librumpfs_hfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_hfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_kernfs.so base-rump-shlib rump +./usr/lib/librumpfs_kernfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_kernfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_lfs.so base-rump-shlib rump +./usr/lib/librumpfs_lfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_lfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_mfs.so base-rump-shlib rump +./usr/lib/librumpfs_mfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_mfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_msdos.so base-rump-shlib rump +./usr/lib/librumpfs_msdos.so.0 base-rump-shlib rump +./usr/lib/librumpfs_msdos.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_nfs.so base-rump-shlib rump +./usr/lib/librumpfs_nfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_nfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_nfsserver.so base-rump-shlib rump +./usr/lib/librumpfs_nfsserver.so.0 base-rump-shlib rump +./usr/lib/librumpfs_nfsserver.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_nilfs.so base-rump-shlib rump +./usr/lib/librumpfs_nilfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_nilfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_ntfs.so base-rump-shlib rump +./usr/lib/librumpfs_ntfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_ntfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_null.so base-rump-shlib rump +./usr/lib/librumpfs_null.so.0 base-rump-shlib rump +./usr/lib/librumpfs_null.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_nullfs.so base-obsolete obsolete +./usr/lib/librumpfs_nullfs.so.0 base-obsolete obsolete +./usr/lib/librumpfs_nullfs.so.0.0 base-obsolete obsolete +./usr/lib/librumpfs_ptyfs.so base-rump-shlib rump +./usr/lib/librumpfs_ptyfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_ptyfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_smbfs.so base-rump-shlib rump +./usr/lib/librumpfs_smbfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_smbfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_syspuffs.so base-rump-shlib rump +./usr/lib/librumpfs_syspuffs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_syspuffs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_sysvbfs.so base-rump-shlib rump +./usr/lib/librumpfs_sysvbfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_sysvbfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_tmpfs.so base-rump-shlib rump +./usr/lib/librumpfs_tmpfs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_tmpfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_udf.so base-rump-shlib rump +./usr/lib/librumpfs_udf.so.0 base-rump-shlib rump +./usr/lib/librumpfs_udf.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_ufs.so base-obsolete obsolete +./usr/lib/librumpfs_ufs.so.0 base-obsolete obsolete +./usr/lib/librumpfs_ufs.so.0.0 base-obsolete obsolete +./usr/lib/librumpfs_umap.so base-rump-shlib rump +./usr/lib/librumpfs_umap.so.0 base-rump-shlib rump +./usr/lib/librumpfs_umap.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_umapfs.so base-obsolete obsolete +./usr/lib/librumpfs_umapfs.so.0 base-obsolete obsolete +./usr/lib/librumpfs_umapfs.so.0.0 base-obsolete obsolete +./usr/lib/librumpfs_union.so base-rump-shlib rump +./usr/lib/librumpfs_union.so.0 base-rump-shlib rump +./usr/lib/librumpfs_union.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_v7fs.so base-rump-shlib rump +./usr/lib/librumpfs_v7fs.so.0 base-rump-shlib rump +./usr/lib/librumpfs_v7fs.so.0.0 base-rump-shlib rump +./usr/lib/librumpfs_zfs.so base-rump-shlib zfs,rump +./usr/lib/librumpfs_zfs.so.0 base-rump-shlib zfs,rump +./usr/lib/librumpfs_zfs.so.0.0 base-rump-shlib zfs,rump +./usr/lib/librumpkern_crypto.so base-rump-shlib rump +./usr/lib/librumpkern_crypto.so.0 base-rump-shlib rump +./usr/lib/librumpkern_crypto.so.0.0 base-rump-shlib rump +./usr/lib/librumpkern_ksem.so base-obsolete obsolete +./usr/lib/librumpkern_ksem.so.0 base-obsolete obsolete +./usr/lib/librumpkern_ksem.so.0.0 base-obsolete obsolete +./usr/lib/librumpkern_solaris.so base-rump-shlib zfs,rump +./usr/lib/librumpkern_solaris.so.0 base-rump-shlib zfs,rump +./usr/lib/librumpkern_solaris.so.0.0 base-rump-shlib zfs,rump +./usr/lib/librumpkern_tty.so base-rump-shlib rump +./usr/lib/librumpkern_tty.so.0 base-rump-shlib rump +./usr/lib/librumpkern_tty.so.0.0 base-rump-shlib rump +./usr/lib/librumpkern_z.so base-rump-shlib rump +./usr/lib/librumpkern_z.so.0 base-rump-shlib rump +./usr/lib/librumpkern_z.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet.so base-rump-shlib rump +./usr/lib/librumpnet.so.0 base-rump-shlib rump +./usr/lib/librumpnet.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_agr.so base-rump-shlib rump +./usr/lib/librumpnet_agr.so.0 base-rump-shlib rump +./usr/lib/librumpnet_agr.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_bridge.so base-rump-shlib rump +./usr/lib/librumpnet_bridge.so.0 base-rump-shlib rump +./usr/lib/librumpnet_bridge.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_local.so base-rump-shlib rump +./usr/lib/librumpnet_local.so.0 base-rump-shlib rump +./usr/lib/librumpnet_local.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_net.so base-rump-shlib rump +./usr/lib/librumpnet_net.so.0 base-rump-shlib rump +./usr/lib/librumpnet_net.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_net80211.so base-rump-shlib rump +./usr/lib/librumpnet_net80211.so.0 base-rump-shlib rump +./usr/lib/librumpnet_net80211.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_netbt.so base-rump-shlib rump +./usr/lib/librumpnet_netbt.so.0 base-rump-shlib rump +./usr/lib/librumpnet_netbt.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_netinet.so base-rump-shlib rump +./usr/lib/librumpnet_netinet.so.0 base-rump-shlib rump +./usr/lib/librumpnet_netinet.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_shmif.so base-rump-shlib rump +./usr/lib/librumpnet_shmif.so.0 base-rump-shlib rump +./usr/lib/librumpnet_shmif.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_sockin.so base-rump-shlib rump +./usr/lib/librumpnet_sockin.so.0 base-rump-shlib rump +./usr/lib/librumpnet_sockin.so.0.0 base-rump-shlib rump +./usr/lib/librumpnet_virtif.so base-rump-shlib rump +./usr/lib/librumpnet_virtif.so.0 base-rump-shlib rump +./usr/lib/librumpnet_virtif.so.0.0 base-rump-shlib rump +./usr/lib/librumpuser.so base-rump-shlib rump +./usr/lib/librumpuser.so.0 base-rump-shlib rump +./usr/lib/librumpuser.so.0.0 base-rump-shlib rump +./usr/lib/librumphijack.so base-rump-shlib rump +./usr/lib/librumphijack.so.0 base-rump-shlib rump +./usr/lib/librumphijack.so.0.0 base-rump-shlib rump +./usr/lib/librumpvfs.so base-rump-shlib rump +./usr/lib/librumpvfs.so.0 base-rump-shlib rump +./usr/lib/librumpvfs.so.0.0 base-rump-shlib rump +./usr/lib/librumpvfs_fifofs.so base-rump-shlib rump +./usr/lib/librumpvfs_fifofs.so.0 base-rump-shlib rump +./usr/lib/librumpvfs_fifofs.so.0.0 base-rump-shlib rump +./usr/lib/librumpvfs_layerfs.so base-rump-shlib rump +./usr/lib/librumpvfs_layerfs.so.0 base-rump-shlib rump +./usr/lib/librumpvfs_layerfs.so.0.0 base-rump-shlib rump +./usr/lib/libsaslc.so base-sys-shlib crypto +./usr/lib/libsaslc.so.0 base-sys-shlib crypto +./usr/lib/libsaslc.so.0.0 base-sys-shlib crypto +./usr/lib/libsdp.so base-obsolete obsolete +./usr/lib/libskey.so base-sys-shlib skey +./usr/lib/libskey.so.2 base-sys-shlib skey +./usr/lib/libskey.so.2.0 base-sys-shlib skey +./usr/lib/libsl.so base-krb5-shlib kerberos +./usr/lib/libsl.so.5 base-krb5-shlib kerberos +./usr/lib/libsl.so.5.0 base-krb5-shlib kerberos +./usr/lib/libsqlite3.so base-sys-shlib +./usr/lib/libsqlite3.so.1 base-sys-shlib +./usr/lib/libsqlite3.so.1.1 base-sys-shlib +./usr/lib/libss.so base-obsolete obsolete +./usr/lib/libssh.so base-secsh-shlib crypto +./usr/lib/libssh.so.19 base-secsh-shlib crypto +./usr/lib/libssh.so.19.0 base-secsh-shlib crypto +./usr/lib/libssl.so base-crypto-shlib crypto +./usr/lib/libssl.so.10 base-crypto-shlib crypto +./usr/lib/libssl.so.10.0 base-crypto-shlib crypto +./usr/lib/libstdc++.so base-sys-shlib gcc,cxx +./usr/lib/libstdc++.so.5 base-sys-shlib gcc=3 +./usr/lib/libstdc++.so.5.0 base-sys-shlib gcc=3,cxx +./usr/lib/libstdc++.so.7 base-sys-shlib gcc=4,cxx +./usr/lib/libstdc++.so.7 base-sys-shlib gcc=45,cxx +./usr/lib/libstdc++.so.7.0 base-sys-shlib gcc=4,cxx +./usr/lib/libstdc++.so.7.1 base-sys-shlib gcc=45,cxx +./usr/lib/libtermcap.so base-sys-shlib +./usr/lib/libtermcap.so.0 base-sys-shlib +./usr/lib/libtermcap.so.0.6 base-sys-shlib +./usr/lib/libterminfo.so base-sys-shlib +./usr/lib/libterminfo.so.1 base-sys-shlib +./usr/lib/libterminfo.so.1.0 base-sys-shlib +./usr/lib/libtermlib.so base-sys-shlib +./usr/lib/libtermlib.so.0 base-sys-shlib +./usr/lib/libtermlib.so.0.6 base-sys-shlib +./usr/lib/libtre.so base-sys-shlib +./usr/lib/libtre.so.0 base-sys-shlib +./usr/lib/libtre.so.0.8 base-sys-shlib +./usr/lib/libukfs.so base-sys-shlib rump +./usr/lib/libukfs.so.1 base-sys-shlib rump +./usr/lib/libukfs.so.1.0 base-sys-shlib rump +./usr/lib/libumem.so base-zfs-shlib dynamicroot,zfs +./usr/lib/libumem.so.0 base-zfs-shlib dynamicroot,zfs +./usr/lib/libumem.so.0.0 base-zfs-shlib zfs,dynamicroot +./usr/lib/libusbhid.so base-sys-shlib +./usr/lib/libusbhid.so.1 base-sys-shlib +./usr/lib/libusbhid.so.1.0 base-sys-shlib +./usr/lib/libutil.so base-sys-shlib +./usr/lib/libutil.so.7 base-sys-shlib +./usr/lib/libutil.so.7.21 base-sys-shlib +./usr/lib/libuutil.so base-zfs-shlib dynamicroot,zfs +./usr/lib/libuutil.so.0 base-zfs-shlib dynamicroot,zfs +./usr/lib/libuutil.so.0.0 base-zfs-shlib zfs,dynamicroot +./usr/lib/libwind.so base-krb5-shlib kerberos +./usr/lib/libwind.so.0 base-krb5-shlib kerberos +./usr/lib/libwind.so.0.0 base-krb5-shlib kerberos +./usr/lib/libwrap.so base-net-shlib +./usr/lib/libwrap.so.1 base-net-shlib +./usr/lib/libwrap.so.1.0 base-net-shlib +./usr/lib/libz.so base-sys-shlib +./usr/lib/libz.so.1 base-sys-shlib +./usr/lib/libz.so.1.0 base-sys-shlib +./usr/lib/libzfs.so base-zfs-shlib dynamicroot,zfs +./usr/lib/libzfs.so.0 base-zfs-shlib dynamicroot,zfs +./usr/lib/libzfs.so.0.0 base-zfs-shlib zfs,dynamicroot +./usr/lib/libzpool.so base-zfs-shlib dynamicroot,zfs +./usr/lib/libzpool.so.0 base-zfs-shlib dynamicroot,zfs +./usr/lib/libzpool.so.0.0 base-zfs-shlib zfs,dynamicroot +./usr/lib/libzpool_pic.a base-zfs-shlib zfs,dynamicroot +./usr/lib/lua/5.1/gpio.so base-sys-shlib +./usr/lib/lua/5.1/sqlite.so base-sys-shlib +./usr/lib/npf/ext_log.so base-npf-shlib npf +./usr/lib/npf/ext_log.so.0 base-npf-shlib npf +./usr/lib/npf/ext_log.so.0.0 base-npf-shlib npf +./usr/lib/npf/ext_normalise.so base-npf-shlib npf +./usr/lib/npf/ext_normalise.so.0 base-npf-shlib npf +./usr/lib/npf/ext_normalise.so.0.0 base-npf-shlib npf +./usr/lib/nss_mdns.so.0 base-obsolete obsolete +./usr/lib/nss_mdnsd.so.0 base-mdns-shlib mdns +./usr/lib/nss_multicast_dns.so.0 base-mdns-shlib mdns +./usr/lib/security/pam_afslog.so.3 base-sys-shlib kerberos,pam +./usr/lib/security/pam_chroot.so.3 base-sys-shlib pam +./usr/lib/security/pam_deny.so.3 base-sys-shlib pam +./usr/lib/security/pam_echo.so.3 base-sys-shlib pam +./usr/lib/security/pam_exec.so.3 base-sys-shlib pam +./usr/lib/security/pam_ftpusers.so.3 base-sys-shlib pam +./usr/lib/security/pam_group.so.3 base-sys-shlib pam +./usr/lib/security/pam_guest.so.3 base-sys-shlib pam +./usr/lib/security/pam_krb5.so.3 base-sys-shlib kerberos,pam +./usr/lib/security/pam_ksu.so.3 base-sys-shlib kerberos,pam +./usr/lib/security/pam_lastlog.so.3 base-sys-shlib pam +./usr/lib/security/pam_login_access.so.3 base-sys-shlib pam +./usr/lib/security/pam_nologin.so.3 base-sys-shlib pam +./usr/lib/security/pam_permit.so.3 base-sys-shlib pam +./usr/lib/security/pam_radius.so.3 base-sys-shlib pam +./usr/lib/security/pam_rhosts.so.3 base-sys-shlib pam +./usr/lib/security/pam_rootok.so.3 base-sys-shlib pam +./usr/lib/security/pam_securetty.so.3 base-sys-shlib pam +./usr/lib/security/pam_self.so.3 base-sys-shlib pam +./usr/lib/security/pam_skey.so.3 base-sys-shlib skey,pam +./usr/lib/security/pam_ssh.so.3 base-sys-shlib crypto,pam +./usr/lib/security/pam_unix.so.3 base-sys-shlib pam +./usr/libexec/ld.elf_so base-sys-shlib diff --git a/distrib/sets/lists/comp/ad.arm b/distrib/sets/lists/comp/ad.arm new file mode 100644 index 000000000..ba29e5039 --- /dev/null +++ b/distrib/sets/lists/comp/ad.arm @@ -0,0 +1,105 @@ +# $NetBSD: ad.arm,v 1.41 2012/08/15 20:38:50 matt Exp $ +./usr/include/gcc-4.5/arm_neon.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/mmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/arm comp-c-include +./usr/include/arm/aeabi.h comp-c-include +./usr/include/arm/ansi.h comp-c-include +./usr/include/arm/aout_machdep.h comp-c-include +./usr/include/arm/arm26 comp-c-include +./usr/include/arm/arm26/types.h comp-c-include +./usr/include/arm/arm32 comp-c-include +./usr/include/arm/arm32/bus.h comp-obsolete obsolete +./usr/include/arm/arm32/frame.h comp-c-include +./usr/include/arm/arm32/katelib.h comp-c-include +./usr/include/arm/arm32/param.h comp-c-include +./usr/include/arm/arm32/pmap.h comp-c-include +./usr/include/arm/arm32/psl.h comp-c-include +./usr/include/arm/arm32/pte.h comp-c-include +./usr/include/arm/arm32/rtc.h comp-c-include +./usr/include/arm/arm32/sysarch.h comp-obsolete obsolete +./usr/include/arm/arm32/types.h comp-c-include +./usr/include/arm/arm32/vmparam.h comp-c-include +./usr/include/arm/armreg.h comp-c-include +./usr/include/arm/asm.h comp-c-include +./usr/include/arm/atomic.h comp-c-include +./usr/include/arm/bswap.h comp-c-include +./usr/include/arm/bus.h comp-obsolete obsolete +./usr/include/arm/byte_swap.h comp-c-include +./usr/include/arm/cdefs.h comp-c-include +./usr/include/arm/cpu.h comp-c-include +./usr/include/arm/cpuconf.h comp-c-include +./usr/include/arm/db_machdep.h comp-obsolete obsolete +./usr/include/arm/disklabel.h comp-c-include +./usr/include/arm/disklabel_acorn.h comp-obsolete obsolete +./usr/include/arm/elf_machdep.h comp-c-include +./usr/include/arm/endian.h comp-c-include +./usr/include/arm/endian_machdep.h comp-c-include +./usr/include/arm/float.h comp-c-include +./usr/include/arm/footbridge comp-c-include +./usr/include/arm/footbridge/footbridge_intr.h comp-c-include +./usr/include/arm/fp.h comp-c-include +./usr/include/arm/frame.h comp-c-include +./usr/include/arm/ieee.h comp-c-include +./usr/include/arm/ieeefp.h comp-c-include +./usr/include/arm/int_const.h comp-c-include +./usr/include/arm/int_fmtio.h comp-c-include +./usr/include/arm/int_limits.h comp-c-include +./usr/include/arm/int_mwgwtypes.h comp-c-include +./usr/include/arm/int_types.h comp-c-include +./usr/include/arm/iomd comp-obsolete obsolete +./usr/include/arm/iomd/vidc.h comp-obsolete obsolete +./usr/include/arm/ipkdb.h comp-obsolete obsolete +./usr/include/arm/kcore.h comp-c-include +./usr/include/arm/limits.h comp-c-include +./usr/include/arm/lock.h comp-c-include +./usr/include/arm/math.h comp-c-include +./usr/include/arm/mcontext.h comp-c-include +./usr/include/arm/mutex.h comp-c-include +./usr/include/arm/param.h comp-c-include +./usr/include/arm/pcb.h comp-c-include +./usr/include/arm/pmc.h comp-c-include +./usr/include/arm/proc.h comp-c-include +./usr/include/arm/profile.h comp-c-include +./usr/include/arm/ptrace.h comp-c-include +./usr/include/arm/reg.h comp-c-include +./usr/include/arm/rwlock.h comp-c-include +./usr/include/arm/setjmp.h comp-c-include +./usr/include/arm/signal.h comp-c-include +./usr/include/arm/stdarg.h comp-obsolete obsolete +./usr/include/arm/swi.h comp-c-include +./usr/include/arm/sysarch.h comp-c-include +./usr/include/arm/trap.h comp-c-include +./usr/include/arm/types.h comp-c-include +./usr/include/arm/vfpreg.h comp-c-include +./usr/include/arm/varargs.h comp-obsolete obsolete +./usr/include/arm/wchar_limits.h comp-c-include +./usr/include/arm32/bootconfig.h comp-obsolete obsolete +./usr/include/arm32/cpufunc.h comp-obsolete obsolete +./usr/include/arm32/cpus.h comp-obsolete obsolete +./usr/include/arm32/disklabel_acorn.h comp-obsolete obsolete +./usr/include/arm32/irqhandler.h comp-obsolete obsolete +./usr/include/arm32/katelib.h comp-obsolete obsolete +./usr/include/arm32/psl.h comp-obsolete obsolete +./usr/include/arm32/pte.h comp-obsolete obsolete +./usr/include/arm32/undefined.h comp-obsolete obsolete +./usr/include/ieeefp.h comp-c-include +./usr/include/pmc.h comp-c-include +./usr/lib/libarm.a comp-c-lib +./usr/lib/libarm_g.a -unknown- debuglib +./usr/lib/libarm32.a comp-obsolete obsolete +./usr/lib/libarm32_p.a comp-obsolete obsolete +./usr/lib/libarm32_pic.a comp-obsolete obsolete +./usr/lib/libarm_p.a comp-c-lib profile +./usr/lib/libarm_pic.a comp-c-piclib +./usr/lib/libpmc.a comp-c-lib +./usr/lib/libpmc_g.a -unknown- debuglib +./usr/lib/libpmc_p.a comp-c-proflib profile +./usr/lib/libpmc_pic.a comp-c-piclib +./usr/libdata/debug/sbin/ldconfig.debug comp-sysutil-debug debug,pic +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/lib/libarm.so.0.0.debug comp-sys-debug debug,pic +./usr/libdata/debug/usr/lib/libpmc.so.1.0.debug comp-sys-debug debug,pic +./usr/libdata/lint/llib-larm.ln comp-c-lintlib lint +./usr/libdata/lint/llib-larm32.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lpmc.ln comp-c-lintlib lint diff --git a/distrib/sets/lists/comp/ad.armeb b/distrib/sets/lists/comp/ad.armeb new file mode 100644 index 000000000..44fc98051 --- /dev/null +++ b/distrib/sets/lists/comp/ad.armeb @@ -0,0 +1,108 @@ +# $NetBSD: ad.armeb,v 1.8 2012/10/14 12:36:58 msaitoh Exp $ +# +# The armeb MACHINE_ARCH never existed in NetBSD as a.out, so we +# skip the old a.out compatibility tools. +# +./usr/include/gcc-4.5/arm_neon.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/mmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/arm comp-c-include +./usr/include/arm/aeabi.h comp-c-include +./usr/include/arm/ansi.h comp-c-include +./usr/include/arm/aout_machdep.h comp-c-include +./usr/include/arm/arm26 comp-c-include +./usr/include/arm/arm26/types.h comp-c-include +./usr/include/arm/arm32 comp-c-include +./usr/include/arm/arm32/bus.h comp-obsolete obsolete +./usr/include/arm/arm32/frame.h comp-c-include +./usr/include/arm/arm32/katelib.h comp-c-include +./usr/include/arm/arm32/param.h comp-c-include +./usr/include/arm/arm32/pmap.h comp-c-include +./usr/include/arm/arm32/psl.h comp-c-include +./usr/include/arm/arm32/pte.h comp-c-include +./usr/include/arm/arm32/rtc.h comp-c-include +./usr/include/arm/arm32/sysarch.h comp-obsolete obsolete +./usr/include/arm/arm32/types.h comp-c-include +./usr/include/arm/arm32/vmparam.h comp-c-include +./usr/include/arm/armreg.h comp-c-include +./usr/include/arm/asm.h comp-c-include +./usr/include/arm/atomic.h comp-c-include +./usr/include/arm/bswap.h comp-c-include +./usr/include/arm/bus.h comp-obsolete obsolete +./usr/include/arm/byte_swap.h comp-c-include +./usr/include/arm/cdefs.h comp-c-include +./usr/include/arm/cpu.h comp-c-include +./usr/include/arm/cpuconf.h comp-c-include +./usr/include/arm/db_machdep.h comp-obsolete obsolete +./usr/include/arm/disklabel.h comp-c-include +./usr/include/arm/disklabel_acorn.h comp-obsolete obsolete +./usr/include/arm/elf_machdep.h comp-c-include +./usr/include/arm/endian.h comp-c-include +./usr/include/arm/endian_machdep.h comp-c-include +./usr/include/arm/float.h comp-c-include +./usr/include/arm/footbridge comp-c-include +./usr/include/arm/footbridge/footbridge_intr.h comp-c-include +./usr/include/arm/fp.h comp-c-include +./usr/include/arm/frame.h comp-c-include +./usr/include/arm/ieee.h comp-c-include +./usr/include/arm/ieeefp.h comp-c-include +./usr/include/arm/int_const.h comp-c-include +./usr/include/arm/int_fmtio.h comp-c-include +./usr/include/arm/int_limits.h comp-c-include +./usr/include/arm/int_mwgwtypes.h comp-c-include +./usr/include/arm/int_types.h comp-c-include +./usr/include/arm/iomd comp-obsolete obsolete +./usr/include/arm/iomd/vidc.h comp-obsolete obsolete +./usr/include/arm/ipkdb.h comp-obsolete obsolete +./usr/include/arm/kcore.h comp-c-include +./usr/include/arm/limits.h comp-c-include +./usr/include/arm/lock.h comp-c-include +./usr/include/arm/math.h comp-c-include +./usr/include/arm/mcontext.h comp-c-include +./usr/include/arm/mutex.h comp-c-include +./usr/include/arm/param.h comp-c-include +./usr/include/arm/pcb.h comp-c-include +./usr/include/arm/pmc.h comp-c-include +./usr/include/arm/proc.h comp-c-include +./usr/include/arm/profile.h comp-c-include +./usr/include/arm/ptrace.h comp-c-include +./usr/include/arm/reg.h comp-c-include +./usr/include/arm/rwlock.h comp-c-include +./usr/include/arm/setjmp.h comp-c-include +./usr/include/arm/signal.h comp-c-include +./usr/include/arm/stdarg.h comp-obsolete obsolete +./usr/include/arm/swi.h comp-c-include +./usr/include/arm/sysarch.h comp-c-include +./usr/include/arm/trap.h comp-c-include +./usr/include/arm/types.h comp-c-include +./usr/include/arm/vfpreg.h comp-c-include +./usr/include/arm/varargs.h comp-obsolete obsolete +./usr/include/arm/wchar_limits.h comp-c-include +./usr/include/arm32/bootconfig.h comp-obsolete obsolete +./usr/include/arm32/cpufunc.h comp-obsolete obsolete +./usr/include/arm32/cpus.h comp-obsolete obsolete +./usr/include/arm32/disklabel_acorn.h comp-obsolete obsolete +./usr/include/arm32/irqhandler.h comp-obsolete obsolete +./usr/include/arm32/katelib.h comp-obsolete obsolete +./usr/include/arm32/psl.h comp-obsolete obsolete +./usr/include/arm32/pte.h comp-obsolete obsolete +./usr/include/arm32/undefined.h comp-obsolete obsolete +./usr/include/ieeefp.h comp-c-include +./usr/include/pmc.h comp-c-include +./usr/lib/libarm.a comp-c-lib +./usr/lib/libarm_g.a -unknown- debuglib +./usr/lib/libarm32.a comp-obsolete obsolete +./usr/lib/libarm32_p.a comp-obsolete obsolete +./usr/lib/libarm32_pic.a comp-obsolete obsolete +./usr/lib/libarm_p.a comp-c-lib profile +./usr/lib/libarm_pic.a comp-c-piclib +./usr/lib/libpmc.a comp-c-lib +./usr/lib/libpmc_g.a -unknown- debuglib +./usr/lib/libpmc_p.a comp-c-proflib profile +./usr/lib/libpmc_pic.a comp-c-piclib +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/lib/libarm.so.0.0.debug comp-sys-debug debug,pic +./usr/libdata/debug/usr/lib/libpmc.so.1.0.debug comp-sys-debug debug,pic +./usr/libdata/lint/llib-larm.ln comp-c-lintlib lint +./usr/libdata/lint/llib-larm32.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lpmc.ln comp-c-lintlib lint diff --git a/distrib/sets/lists/comp/ad.hppa b/distrib/sets/lists/comp/ad.hppa new file mode 100644 index 000000000..283700736 --- /dev/null +++ b/distrib/sets/lists/comp/ad.hppa @@ -0,0 +1,52 @@ +# $NetBSD: ad.hppa,v 1.6 2011/08/07 01:49:12 mrg Exp $ +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/hppa comp-c-include +./usr/include/hppa/ansi.h comp-c-include +./usr/include/hppa/aout_machdep.h comp-c-include +./usr/include/hppa/asm.h comp-c-include +./usr/include/hppa/bswap.h comp-c-include +./usr/include/hppa/byte_swap.h comp-c-include +./usr/include/hppa/cdefs.h comp-c-include +./usr/include/hppa/cpufunc.h comp-c-include +./usr/include/hppa/db_machdep.h comp-obsolete obsolete +./usr/include/hppa/elf_machdep.h comp-c-include +./usr/include/hppa/endian_machdep.h comp-c-include +./usr/include/hppa/exec.h comp-c-include +./usr/include/hppa/float.h comp-c-include +./usr/include/hppa/frame.h comp-c-include +./usr/include/hppa/ieee.h comp-c-include +./usr/include/hppa/ieeefp.h comp-c-include +./usr/include/hppa/int_const.h comp-c-include +./usr/include/hppa/int_fmtio.h comp-c-include +./usr/include/hppa/int_limits.h comp-c-include +./usr/include/hppa/int_mwgwtypes.h comp-c-include +./usr/include/hppa/int_types.h comp-c-include +./usr/include/hppa/kcore.h comp-c-include +./usr/include/hppa/limits.h comp-c-include +./usr/include/hppa/lock.h comp-c-include +./usr/include/hppa/math.h comp-c-include +./usr/include/hppa/mcontext.h comp-c-include +./usr/include/hppa/mutex.h comp-c-include +./usr/include/hppa/param.h comp-c-include +./usr/include/hppa/pcb.h comp-c-include +./usr/include/hppa/pmap.h comp-c-include +./usr/include/hppa/pmc.h comp-c-include +./usr/include/hppa/proc.h comp-c-include +./usr/include/hppa/profile.h comp-c-include +./usr/include/hppa/psl.h comp-c-include +./usr/include/hppa/pte.h comp-c-include +./usr/include/hppa/ptrace.h comp-c-include +./usr/include/hppa/reg.h comp-c-include +./usr/include/hppa/reloc.h comp-c-include +./usr/include/hppa/rwlock.h comp-c-include +./usr/include/hppa/setjmp.h comp-c-include +./usr/include/hppa/signal.h comp-c-include +./usr/include/hppa/som.h comp-c-include +./usr/include/hppa/spinlock.h comp-obsolete obsolete +./usr/include/hppa/stdarg.h comp-obsolete obsolete +./usr/include/hppa/trap.h comp-c-include +./usr/include/hppa/types.h comp-c-include +./usr/include/hppa/varargs.h comp-obsolete obsolete +./usr/include/hppa/vmparam.h comp-c-include +./usr/include/hppa/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include diff --git a/distrib/sets/lists/comp/ad.m68k b/distrib/sets/lists/comp/ad.m68k new file mode 100644 index 000000000..1e12a2f6b --- /dev/null +++ b/distrib/sets/lists/comp/ad.m68k @@ -0,0 +1,66 @@ +# $NetBSD: ad.m68k,v 1.45 2011/07/17 20:54:30 joerg Exp $ +./usr/bin/elf2aout comp-sysutil-bin +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/math-68881.h comp-c-include gcccmds,gcc=45 +./usr/include/m68k comp-c-include +./usr/include/m68k/ansi.h comp-c-include +./usr/include/m68k/aout_machdep.h comp-c-include +./usr/include/m68k/asm.h comp-c-include +./usr/include/m68k/asm_single.h comp-c-include +./usr/include/m68k/bswap.h comp-c-include +./usr/include/m68k/bus_dma.h comp-c-include +./usr/include/m68k/byte_swap.h comp-c-include +./usr/include/m68k/cacheops.h comp-c-include +./usr/include/m68k/cacheops_20.h comp-c-include +./usr/include/m68k/cacheops_30.h comp-c-include +./usr/include/m68k/cacheops_40.h comp-c-include +./usr/include/m68k/cacheops_60.h comp-c-include +./usr/include/m68k/cdefs.h comp-c-include +./usr/include/m68k/cpu.h comp-c-include +./usr/include/m68k/cpuframe.h comp-c-include +./usr/include/m68k/db_machdep.h comp-obsolete obsolete +./usr/include/m68k/elf_machdep.h comp-c-include +./usr/include/m68k/endian.h comp-c-include +./usr/include/m68k/endian_machdep.h comp-c-include +./usr/include/m68k/float.h comp-c-include +./usr/include/m68k/frame.h comp-c-include +./usr/include/m68k/ieee.h comp-c-include +./usr/include/m68k/ieeefp.h comp-c-include +./usr/include/m68k/int_const.h comp-c-include +./usr/include/m68k/int_fmtio.h comp-c-include +./usr/include/m68k/int_limits.h comp-c-include +./usr/include/m68k/int_mwgwtypes.h comp-c-include +./usr/include/m68k/int_types.h comp-c-include +./usr/include/m68k/kcore.h comp-c-include +./usr/include/m68k/limits.h comp-c-include +./usr/include/m68k/lock.h comp-c-include +./usr/include/m68k/m68k.h comp-c-include +./usr/include/m68k/math.h comp-c-include +./usr/include/m68k/mcontext.h comp-c-include +./usr/include/m68k/mutex.h comp-c-include +./usr/include/m68k/param.h comp-c-include +./usr/include/m68k/pcb.h comp-c-include +./usr/include/m68k/pmap_motorola.h comp-c-include +./usr/include/m68k/pmc.h comp-c-include +./usr/include/m68k/proc.h comp-c-include +./usr/include/m68k/profile.h comp-c-include +./usr/include/m68k/psl.h comp-c-include +./usr/include/m68k/pte_motorola.h comp-c-include +./usr/include/m68k/ptrace.h comp-c-include +./usr/include/m68k/reg.h comp-c-include +./usr/include/m68k/rwlock.h comp-c-include +./usr/include/m68k/setjmp.h comp-c-include +./usr/include/m68k/signal.h comp-c-include +./usr/include/m68k/stdarg.h comp-obsolete obsolete +./usr/include/m68k/svr4_machdep.h comp-obsolete obsolete +./usr/include/m68k/sync_icache.h comp-c-include +./usr/include/m68k/sysctl.h comp-c-include +./usr/include/m68k/trap.h comp-c-include +./usr/include/m68k/types.h comp-c-include +./usr/include/m68k/varargs.h comp-obsolete obsolete +./usr/include/m68k/wchar_limits.h comp-c-include +./usr/lib/libm68k.a comp-c-lib +./usr/lib/libm68k_p.a comp-c-lib profile +./usr/lib/libm68k_g.a -unknown- debuglib +./usr/libdata/debug/usr/bin/elf2aout.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug diff --git a/distrib/sets/lists/comp/ad.m68k.shl b/distrib/sets/lists/comp/ad.m68k.shl new file mode 100644 index 000000000..a032cafcb --- /dev/null +++ b/distrib/sets/lists/comp/ad.m68k.shl @@ -0,0 +1,4 @@ +# $NetBSD: ad.m68k.shl,v 1.8 2010/05/09 11:58:15 lukem Exp $ +./usr/lib/libm68k_pic.a comp-c-piclib +./usr/libdata/debug/sbin/ldconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/lib/libm68k.so.0.0.debug comp-sys-debug debug diff --git a/distrib/sets/lists/comp/ad.mips b/distrib/sets/lists/comp/ad.mips new file mode 100644 index 000000000..ab74c9f05 --- /dev/null +++ b/distrib/sets/lists/comp/ad.mips @@ -0,0 +1,65 @@ +# $NetBSD: ad.mips,v 1.38 2011/07/17 20:54:30 joerg Exp $ +./usr/bin/elf2aout comp-obsolete obsolete +./usr/bin/elf2ecoff comp-sysutil-bin +./usr/include/gcc-4.5/loongson.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/mips comp-c-include +./usr/include/mips/ansi.h comp-c-include +./usr/include/mips/aout_machdep.h comp-obsolete obsolete +./usr/include/mips/asm.h comp-c-include +./usr/include/mips/bsd-aout.h comp-obsolete obsolete +./usr/include/mips/bswap.h comp-c-include +./usr/include/mips/cachectl.h comp-c-include +./usr/include/mips/cdefs.h comp-c-include +./usr/include/mips/cpu.h comp-c-include +./usr/include/mips/cpuregs.h comp-c-include +./usr/include/mips/db_machdep.h comp-obsolete obsolete +./usr/include/mips/ecoff_machdep.h comp-c-include +./usr/include/mips/elf.h comp-obsolete obsolete +./usr/include/mips/elf_machdep.h comp-c-include +./usr/include/mips/endian.h comp-c-include +./usr/include/mips/endian_machdep.h comp-c-include +./usr/include/mips/float.h comp-c-include +./usr/include/mips/ieee.h comp-c-include +./usr/include/mips/ieeefp.h comp-c-include +./usr/include/mips/int_const.h comp-c-include +./usr/include/mips/int_fmtio.h comp-c-include +./usr/include/mips/int_limits.h comp-c-include +./usr/include/mips/int_mwgwtypes.h comp-c-include +./usr/include/mips/int_types.h comp-c-include +./usr/include/mips/kcore.h comp-c-include +./usr/include/mips/kdbparam.h comp-c-include +./usr/include/mips/limits.h comp-c-include +./usr/include/mips/lock.h comp-c-include +./usr/include/mips/locore.h comp-c-include +./usr/include/mips/math.h comp-c-include +./usr/include/mips/mcontext.h comp-c-include +./usr/include/mips/mips1_pte.h comp-c-include +./usr/include/mips/mips3_pte.h comp-c-include +./usr/include/mips/mips_opcode.h comp-c-include +./usr/include/mips/mips_param.h comp-c-include +./usr/include/mips/mutex.h comp-c-include +./usr/include/mips/pcb.h comp-c-include +./usr/include/mips/pmap.h comp-c-include +./usr/include/mips/pmc.h comp-c-include +./usr/include/mips/proc.h comp-c-include +./usr/include/mips/profile.h comp-c-include +./usr/include/mips/psl.h comp-c-include +./usr/include/mips/pte.h comp-c-include +./usr/include/mips/ptrace.h comp-c-include +./usr/include/mips/reg.h comp-c-include +./usr/include/mips/regdef.h comp-c-include +./usr/include/mips/regnum.h comp-c-include +./usr/include/mips/reloc.h comp-c-include +./usr/include/mips/rwlock.h comp-c-include +./usr/include/mips/setjmp.h comp-c-include +./usr/include/mips/signal.h comp-c-include +./usr/include/mips/stdarg.h comp-obsolete obsolete +./usr/include/mips/sysarch.h comp-c-include +./usr/include/mips/trap.h comp-c-include +./usr/include/mips/types.h comp-c-include +./usr/include/mips/varargs.h comp-obsolete obsolete +./usr/include/mips/vmparam.h comp-c-include +./usr/include/mips/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/bin/elf2aout.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/elf2ecoff.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/ad.mips64eb b/distrib/sets/lists/comp/ad.mips64eb new file mode 100644 index 000000000..4ea4e6b6b --- /dev/null +++ b/distrib/sets/lists/comp/ad.mips64eb @@ -0,0 +1,1637 @@ +# $NetBSD: ad.mips64eb,v 1.90 2012/09/16 18:59:25 tls Exp $ +./usr/bin/elf2aout comp-obsolete obsolete +./usr/bin/elf2ecoff comp-sysutil-bin +./usr/include/gcc-4.5/loongson.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/mips comp-c-include +./usr/include/mips/ansi.h comp-c-include +./usr/include/mips/aout_machdep.h comp-obsolete obsolete +./usr/include/mips/asm.h comp-c-include +./usr/include/mips/bsd-aout.h comp-obsolete obsolete +./usr/include/mips/bswap.h comp-c-include +./usr/include/mips/cachectl.h comp-c-include +./usr/include/mips/cdefs.h comp-c-include +./usr/include/mips/cpu.h comp-c-include +./usr/include/mips/cpuregs.h comp-c-include +./usr/include/mips/db_machdep.h comp-obsolete obsolete +./usr/include/mips/ecoff_machdep.h comp-c-include +./usr/include/mips/elf.h comp-obsolete obsolete +./usr/include/mips/elf_machdep.h comp-c-include +./usr/include/mips/endian.h comp-c-include +./usr/include/mips/endian_machdep.h comp-c-include +./usr/include/mips/float.h comp-c-include +./usr/include/mips/ieee.h comp-c-include +./usr/include/mips/ieeefp.h comp-c-include +./usr/include/mips/int_const.h comp-c-include +./usr/include/mips/int_fmtio.h comp-c-include +./usr/include/mips/int_limits.h comp-c-include +./usr/include/mips/int_mwgwtypes.h comp-c-include +./usr/include/mips/int_types.h comp-c-include +./usr/include/mips/kcore.h comp-c-include +./usr/include/mips/kdbparam.h comp-c-include +./usr/include/mips/limits.h comp-c-include +./usr/include/mips/lock.h comp-c-include +./usr/include/mips/locore.h comp-c-include +./usr/include/mips/math.h comp-c-include +./usr/include/mips/mcontext.h comp-c-include +./usr/include/mips/mips1_pte.h comp-c-include +./usr/include/mips/mips3_pte.h comp-c-include +./usr/include/mips/mips_opcode.h comp-c-include +./usr/include/mips/mips_param.h comp-c-include +./usr/include/mips/mutex.h comp-c-include +./usr/include/mips/pcb.h comp-c-include +./usr/include/mips/pmap.h comp-c-include +./usr/include/mips/pmc.h comp-c-include +./usr/include/mips/proc.h comp-c-include +./usr/include/mips/profile.h comp-c-include +./usr/include/mips/psl.h comp-c-include +./usr/include/mips/pte.h comp-c-include +./usr/include/mips/ptrace.h comp-c-include +./usr/include/mips/reg.h comp-c-include +./usr/include/mips/regdef.h comp-c-include +./usr/include/mips/regnum.h comp-c-include +./usr/include/mips/reloc.h comp-c-include +./usr/include/mips/rwlock.h comp-c-include +./usr/include/mips/setjmp.h comp-c-include +./usr/include/mips/signal.h comp-c-include +./usr/include/mips/stdarg.h comp-obsolete obsolete +./usr/include/mips/sysarch.h comp-c-include +./usr/include/mips/trap.h comp-c-include +./usr/include/mips/types.h comp-c-include +./usr/include/mips/varargs.h comp-obsolete obsolete +./usr/include/mips/vmparam.h comp-c-include +./usr/include/mips/wchar_limits.h comp-c-include +./usr/lib/64/crt0.o comp-c-lib compat +./usr/lib/64/crtbegin.o comp-c-lib compat +./usr/lib/64/crtbeginS.o comp-c-lib compat,pic +./usr/lib/64/crtbeginT.o comp-c-lib compat,pic +./usr/lib/64/crtend.o comp-c-lib compat +./usr/lib/64/crtendS.o comp-c-lib compat,pic +./usr/lib/64/crti.o comp-c-lib compat +./usr/lib/64/crtn.o comp-c-lib compat +./usr/lib/64/gcrt0.o comp-c-lib compat +./usr/lib/64/i18n/libBIG5.a comp-c-lib compat +./usr/lib/64/i18n/libBIG5.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libBIG5_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libBIG5_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libDECHanyu.a comp-c-lib compat +./usr/lib/64/i18n/libDECHanyu.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libDECHanyu_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libDECHanyu_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libEUC.a comp-c-lib compat +./usr/lib/64/i18n/libEUC.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libEUCTW.a comp-c-lib compat +./usr/lib/64/i18n/libEUCTW.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libEUCTW_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libEUCTW_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libEUC_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libEUC_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libGBK2K.a comp-c-lib compat +./usr/lib/64/i18n/libGBK2K.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libGBK2K_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libGBK2K_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libHZ.a comp-c-lib compat +./usr/lib/64/i18n/libHZ.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libHZ_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libHZ_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libISO2022.a comp-c-lib compat +./usr/lib/64/i18n/libISO2022.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libISO2022_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libISO2022_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libJOHAB.a comp-c-lib compat +./usr/lib/64/i18n/libJOHAB.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libJOHAB_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libJOHAB_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libMSKanji.a comp-c-lib compat +./usr/lib/64/i18n/libMSKanji.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libMSKanji_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libMSKanji_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libUES.a comp-c-lib compat +./usr/lib/64/i18n/libUES.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libUES_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libUES_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF1632.a comp-c-lib compat +./usr/lib/64/i18n/libUTF1632.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libUTF1632_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF1632_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF7.a comp-c-lib compat +./usr/lib/64/i18n/libUTF7.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libUTF7_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF7_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF8.a comp-c-lib compat +./usr/lib/64/i18n/libUTF8.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libUTF8_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF8_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libVIQR.a comp-c-lib compat +./usr/lib/64/i18n/libVIQR.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libVIQR_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libVIQR_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libZW.a comp-c-lib compat +./usr/lib/64/i18n/libZW.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libZW_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libZW_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libiconv_none.a comp-c-lib compat +./usr/lib/64/i18n/libiconv_none.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libiconv_none_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libiconv_none_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libiconv_std.a comp-c-lib compat +./usr/lib/64/i18n/libiconv_std.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libiconv_std_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libiconv_std_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_646.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_646.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_646_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_646_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_none.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_none.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_none_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_none_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_parallel.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_parallel.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_parallel_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_parallel_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_serial.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_serial.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_serial_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_serial_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_std.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_std.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_std_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_std_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_zone.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_zone.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_zone_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_zone_pic.a comp-obsolete obsolete +./usr/lib/64/libarchive.a comp-c-lib compat +./usr/lib/64/libarchive.so base-sys-shlib compat,pic +./usr/lib/64/libarchive_p.a comp-c-proflib compat,profile +./usr/lib/64/libarchive_pic.a comp-c-piclib compat,pic +./usr/lib/64/libasn1.a comp-c-lib compat,kerberos +./usr/lib/64/libasn1.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libasn1_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libasn1_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libatf-c++.a comp-c-lib compat,atf +./usr/lib/64/libatf-c++.so base-sys-lib compat,pic,atf +./usr/lib/64/libatf-c++_p.a comp-c-proflib compat,profile,atf +./usr/lib/64/libatf-c++_pic.a comp-c-piclib compat,pic,atf +./usr/lib/64/libatf-c.a comp-c-lib compat,atf +./usr/lib/64/libatf-c.so base-sys-lib compat,pic,atf +./usr/lib/64/libatf-c_p.a comp-c-proflib compat,profile,atf +./usr/lib/64/libatf-c_pic.a comp-c-piclib compat,pic,atf +./usr/lib/64/libbfd.a comp-obsolete obsolete +./usr/lib/64/libbfd.so base-obsolete obsolete +./usr/lib/64/libbfd_p.a comp-obsolete obsolete +./usr/lib/64/libbfd_pic.a comp-obsolete obsolete +./usr/lib/64/libbind9.a comp-c-lib compat +./usr/lib/64/libbind9.so base-sys-shlib compat,pic +./usr/lib/64/libbind9_p.a comp-c-proflib compat,profile +./usr/lib/64/libbind9_pic.a comp-c-piclib compat,pic +./usr/lib/64/libbluetooth.a comp-c-lib compat +./usr/lib/64/libbluetooth.so base-sys-shlib compat,pic +./usr/lib/64/libbluetooth_p.a comp-c-proflib compat,profile +./usr/lib/64/libbluetooth_pic.a comp-c-piclib compat,pic +./usr/lib/64/libbsdmalloc.a comp-c-lib compat +./usr/lib/64/libbsdmalloc.so base-sys-shlib compat,pic +./usr/lib/64/libbsdmalloc_p.a comp-c-proflib compat,profile +./usr/lib/64/libbsdmalloc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libbz2.a comp-c-lib compat +./usr/lib/64/libbz2.so base-sys-shlib compat,pic +./usr/lib/64/libbz2_p.a comp-c-proflib compat,profile +./usr/lib/64/libbz2_pic.a comp-c-piclib compat,pic +./usr/lib/64/libc.a comp-c-lib compat +./usr/lib/64/libc.so base-sys-shlib compat,pic +./usr/lib/64/libc_p.a comp-c-proflib compat,profile +./usr/lib/64/libc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libcom_err.a comp-c-lib compat,kerberos +./usr/lib/64/libcom_err.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libcom_err_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libcom_err_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libcompat.a comp-c-lib compat +./usr/lib/64/libcompat_p.a comp-c-proflib compat,profile +./usr/lib/64/libcompat_pic.a comp-c-piclib compat,pic +./usr/lib/64/libcrypt.a comp-c-lib compat +./usr/lib/64/libcrypt.so base-sys-shlib compat,pic +./usr/lib/64/libcrypt_p.a comp-c-proflib compat,profile +./usr/lib/64/libcrypt_pic.a comp-c-piclib compat,pic +./usr/lib/64/libcrypto.a comp-c-lib compat,crypto +./usr/lib/64/libcrypto_g.a comp-c-proflib compat,crypto,debuglib +./usr/lib/64/libcrypto.so base-sys-shlib compat,crypto,pic +./usr/lib/64/libcrypto_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libcrypto_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libcrypto_idea.a comp-obsolete obsolete +./usr/lib/64/libcrypto_idea.so base-obsolete obsolete +./usr/lib/64/libcrypto_idea_g.a comp-obsolete obsolete +./usr/lib/64/libcrypto_idea_p.a comp-obsolete obsolete +./usr/lib/64/libcrypto_idea_pic.a comp-obsolete obsolete +./usr/lib/64/libcrypto_mdc2.a comp-obsolete obsolete +./usr/lib/64/libcrypto_mdc2.so base-obsolete obsolete +./usr/lib/64/libcrypto_mdc2_g.a comp-obsolete obsolete +./usr/lib/64/libcrypto_mdc2_p.a comp-obsolete obsolete +./usr/lib/64/libcrypto_mdc2_pic.a comp-obsolete obsolete +./usr/lib/64/libcrypto_rc5.a comp-c-lib crypto_rc5,compat +./usr/lib/64/libcrypto_rc5.so base-sys-shlib compat,crypto,crypto_rc5,pic +./usr/lib/64/libcrypto_rc5_g.a comp-c-proflib compat,crypto,crypto_rc5,debuglib +./usr/lib/64/libcrypto_rc5_p.a comp-c-proflib crypto_rc5,compat,profile +./usr/lib/64/libcrypto_rc5_pic.a comp-c-piclib compat,crypto,crypto_rc5,pic +./usr/lib/64/libcurses.a comp-c-lib compat +./usr/lib/64/libcurses.so base-sys-shlib compat,pic +./usr/lib/64/libcurses_p.a comp-c-proflib compat,profile +./usr/lib/64/libcurses_pic.a comp-c-piclib compat,pic +./usr/lib/64/libdes.a comp-c-lib compat,crypto +./usr/lib/64/libdes.so base-sys-shlib compat,crypto,pic +./usr/lib/64/libdes_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libdes_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libdevmapper.a comp-lvm-lib compat,lvm +./usr/lib/64/libdevmapper.so base-lvm-shlib compat,lvm,pic +./usr/lib/64/libdevmapper_g.a -unknown- compat,debuglib,lvm +./usr/lib/64/libdevmapper_p.a comp-lvm-proflib compat,profile,lvm +./usr/lib/64/libdevmapper_pic.a comp-lvm-piclib compat,pic,lvm +./usr/lib/64/libdm.a comp-c-lib compat +./usr/lib/64/libdm.so base-sys-shlib compat,pic +./usr/lib/64/libdm_g.a -unknown- compat,debuglib +./usr/lib/64/libdm_p.a comp-c-proflib compat,profile +./usr/lib/64/libdm_pic.a comp-c-piclib compat,pic +./usr/lib/64/libdns.a comp-c-lib compat +./usr/lib/64/libdns.so base-sys-shlib compat,pic +./usr/lib/64/libdns_p.a comp-c-proflib compat,profile +./usr/lib/64/libdns_pic.a comp-c-piclib compat,pic +./usr/lib/64/libdns_sd.a comp-c-lib compat,mdns +./usr/lib/64/libdns_sd.so base-mdns-shlib compat,pic,mdns +./usr/lib/64/libdns_sd_p.a comp-c-proflib compat,profile,mdns +./usr/lib/64/libdns_sd_pic.a comp-c-piclib compat,pic,mdns +./usr/lib/64/libdwarf.a comp-c-lib compat +./usr/lib/64/libdwarf.so base-sys-shlib compat,pic +./usr/lib/64/libdwarf_p.a comp-c-proflib compat,profile +./usr/lib/64/libdwarf_pic.a comp-c-piclib compat,pic +./usr/lib/64/libedit.a comp-c-lib compat +./usr/lib/64/libedit.so base-sys-shlib compat,pic +./usr/lib/64/libedit_p.a comp-c-proflib compat,profile +./usr/lib/64/libedit_pic.a comp-c-piclib compat,pic +./usr/lib/64/libelf.a comp-c-lib compat +./usr/lib/64/libelf.so base-sys-shlib compat,pic +./usr/lib/64/libelf_p.a comp-c-proflib compat,profile +./usr/lib/64/libelf_pic.a comp-c-piclib compat,pic +./usr/lib/64/libevent.a comp-c-lib compat +./usr/lib/64/libevent.so base-sys-shlib compat,pic +./usr/lib/64/libevent_p.a comp-c-proflib compat,profile +./usr/lib/64/libevent_pic.a comp-c-piclib compat,pic +./usr/lib/64/libexecinfo.a comp-c-lib compat +./usr/lib/64/libexecinfo.so base-sys-shlib compat,pic +./usr/lib/64/libexecinfo_p.a comp-c-proflib compat,profile +./usr/lib/64/libexecinfo_pic.a comp-c-piclib compat,pic +./usr/lib/64/libexpat.a comp-c-lib compat +./usr/lib/64/libexpat.so base-sys-shlib compat,pic +./usr/lib/64/libexpat_p.a comp-c-proflib compat,profile +./usr/lib/64/libexpat_pic.a comp-c-piclib compat,pic +./usr/lib/64/libfetch.a comp-c-lib compat +./usr/lib/64/libfetch.so base-sys-shlib compat,pic +./usr/lib/64/libfetch_p.a comp-c-proflib compat,profile +./usr/lib/64/libfetch_pic.a comp-c-piclib compat,pic +./usr/lib/64/libfl.a comp-c-lib compat +./usr/lib/64/libfl_p.a comp-c-proflib compat,profile +./usr/lib/64/libform.a comp-c-lib compat +./usr/lib/64/libform.so base-sys-shlib compat,pic +./usr/lib/64/libform_p.a comp-c-proflib compat,profile +./usr/lib/64/libform_pic.a comp-c-piclib compat,pic +./usr/lib/64/libgcc.a comp-c-lib compat,gcccmds +./usr/lib/64/libgcc_eh.a comp-c-lib compat,pic,gcccmds +./usr/lib/64/libgcc_eh_p.a comp-c-proflib obsolete +./usr/lib/64/libgcc_eh_pic.a comp-c-piclib obsolete +./usr/lib/64/libgcc_p.a comp-c-proflib obsolete +./usr/lib/64/libgcc_pic.a comp-c-piclib obsolete +./usr/lib/64/libgcc_s.a comp-obsolete obsolete +./usr/lib/64/libgcc_s.so base-sys-shlib compat,pic,gcccmds +./usr/lib/64/libgcc_s_p.a comp-obsolete obsolete +./usr/lib/64/libgcc_s_pic.a comp-obsolete obsolete +./usr/lib/64/libgcov.a comp-c-lib compat,gcccmds +./usr/lib/64/libgcov_p.a comp-obsolete obsolete +./usr/lib/64/libgcov_pic.a comp-obsolete obsolete +./usr/lib/64/libgmp.a comp-c-lib obsolete +./usr/lib/64/libgmp.so base-sys-shlib obsolete +./usr/lib/64/libgmp_g.a -unknown- obsolete +./usr/lib/64/libgmp_p.a comp-c-proflib obsolete +./usr/lib/64/libgmp_pic.a comp-c-piclib obsolete +./usr/lib/64/libgnumalloc.a comp-c-lib compat +./usr/lib/64/libgnumalloc.so base-sys-shlib compat,pic +./usr/lib/64/libgnumalloc_p.a comp-c-proflib compat,profile +./usr/lib/64/libgnumalloc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libgomp.a comp-c-lib compat,gcc=45,notyet +./usr/lib/64/libgomp.so base-sys-shlib compat,pic,gcc=45,notyet +./usr/lib/64/libgomp_p.a comp-c-proflib compat,profile,gcc=45,notyet +./usr/lib/64/libgomp_pic.a comp-c-piclib compat,pic,gcc=45,notyet +./usr/lib/64/libgssapi.a comp-c-lib compat,kerberos +./usr/lib/64/libgssapi.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libgssapi_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libgssapi_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libhdb.a comp-c-lib compat,kerberos +./usr/lib/64/libhdb.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libhdb_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libhdb_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libheimbase.a comp-c-lib compat,kerberos +./usr/lib/64/libheimbase.so comp-sys-shlib compat,pic,kerberos +./usr/lib/64/libheimbase_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/64/libheimbase_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libheimbase_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/64/libheimntlm.a comp-c-lib compat,kerberos +./usr/lib/64/libheimntlm.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libheimntlm_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libheimntlm_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libhx509.a comp-c-lib compat,kerberos +./usr/lib/64/libhx509.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libhx509_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libhx509_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libiberty.a comp-obsolete obsolete +./usr/lib/64/libiberty_p.a comp-obsolete obsolete +./usr/lib/64/libiberty_pic.a comp-obsolete obsolete +./usr/lib/64/libintl.a comp-c-lib compat +./usr/lib/64/libintl.so base-sys-shlib compat,pic +./usr/lib/64/libintl_p.a comp-c-proflib compat,profile +./usr/lib/64/libintl_pic.a comp-c-piclib compat,pic +./usr/lib/64/libipsec.a comp-c-lib compat +./usr/lib/64/libipsec.so base-sys-shlib compat,pic +./usr/lib/64/libipsec_p.a comp-c-proflib compat,profile +./usr/lib/64/libipsec_pic.a comp-c-piclib compat,pic +./usr/lib/64/libisc.a comp-c-lib compat +./usr/lib/64/libisc.so base-sys-shlib compat,pic +./usr/lib/64/libisc_p.a comp-c-proflib compat,profile +./usr/lib/64/libisc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libisccc.a comp-c-lib compat +./usr/lib/64/libisccc.so base-sys-shlib compat,pic +./usr/lib/64/libisccc_p.a comp-c-proflib compat,profile +./usr/lib/64/libisccc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libisccfg.a comp-c-lib compat +./usr/lib/64/libisccfg.so base-sys-shlib compat,pic +./usr/lib/64/libisccfg_p.a comp-c-proflib compat,profile +./usr/lib/64/libisccfg_pic.a comp-c-piclib compat,pic +./usr/lib/64/libiscsi.a comp-c-lib compat,iscsi +./usr/lib/64/libiscsi.so base-sys-shlib compat,pic,iscsi +./usr/lib/64/libiscsi_p.a comp-c-proflib compat,profile,iscsi +./usr/lib/64/libiscsi_pic.a comp-c-piclib compat,pic,iscsi +./usr/lib/64/libisns.a comp-c-lib compat +./usr/lib/64/libisns.so comp-sys-shlib compat +./usr/lib/64/libisns_p.a comp-c-proflib compat,profile +./usr/lib/64/libisns_pic.a comp-c-piclib compat,pic +./usr/lib/64/libkadm5clnt.a comp-c-lib compat,kerberos +./usr/lib/64/libkadm5clnt.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libkadm5clnt_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkadm5clnt_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libkadm5srv.a comp-c-lib compat,kerberos +./usr/lib/64/libkadm5srv.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libkadm5srv_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkadm5srv_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libkafs.a comp-c-lib compat,kerberos +./usr/lib/64/libkafs.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libkafs_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkafs_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libkdc.a comp-c-lib compat,kerberos +./usr/lib/64/libkdc.so comp-sys-shlib compat,pic,kerberos +./usr/lib/64/libkdc_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/64/libkdc_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkdc_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/64/libkrb5.a comp-c-lib compat,kerberos +./usr/lib/64/libkrb5.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libkrb5_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkrb5_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libkvm.a comp-c-lib compat +./usr/lib/64/libkvm.so base-sys-shlib compat,pic +./usr/lib/64/libkvm_p.a comp-c-proflib compat,profile +./usr/lib/64/libkvm_pic.a comp-c-piclib compat,pic +./usr/lib/64/libl.a comp-c-lib compat +./usr/lib/64/libl_p.a comp-c-proflib compat,profile +./usr/lib/64/libl_pic.a comp-obsolete obsolete +./usr/lib/64/liblber.a comp-c-lib compat,ldap +./usr/lib/64/liblber.so base-sys-shlib compat,pic,ldap +./usr/lib/64/liblber_p.a comp-c-proflib compat,profile,ldap +./usr/lib/64/liblber_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/64/libldap.a comp-c-lib compat,ldap +./usr/lib/64/libldap.so base-sys-shlib compat,pic,ldap +./usr/lib/64/libldap_p.a comp-c-proflib compat,profile,ldap +./usr/lib/64/libldap_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/64/libldap_r.a comp-c-lib compat,ldap +./usr/lib/64/libldap_r.so base-sys-shlib compat,pic,ldap +./usr/lib/64/libldap_r_p.a comp-c-proflib compat,profile,ldap +./usr/lib/64/libldap_r_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/64/liblua.a comp-c-lib compat +./usr/lib/64/liblua.so base-sys-shlib compat,pic +./usr/lib/64/liblua_p.a comp-c-proflib compat,profile +./usr/lib/64/liblua_pic.a comp-c-piclib compat,pic +./usr/lib/64/liblwres.a comp-c-lib compat +./usr/lib/64/liblwres.so base-sys-shlib compat,pic +./usr/lib/64/liblwres_p.a comp-c-proflib compat,profile +./usr/lib/64/liblwres_pic.a comp-c-piclib compat,pic +./usr/lib/64/liblzf.a comp-c-lib compat +./usr/lib/64/liblzf.so base-sys-shlib compat,pic +./usr/lib/64/liblzf_g.a -unknown- compat,debuglib +./usr/lib/64/liblzf_p.a comp-c-proflib compat,profile +./usr/lib/64/liblzf_pic.a comp-c-piclib compat,pic +./usr/lib/64/liblzma.a comp-c-lib compat +./usr/lib/64/liblzma.so base-sys-shlib compat,pic +./usr/lib/64/liblzma_p.a comp-c-proflib compat,profile +./usr/lib/64/liblzma_pic.a comp-c-piclib compat,pic +./usr/lib/64/libm.a comp-c-lib compat +./usr/lib/64/libm.so base-sys-shlib compat,pic +./usr/lib/64/libm_p.a comp-c-proflib compat,profile +./usr/lib/64/libm_pic.a comp-c-piclib compat,pic +./usr/lib/64/libmagic.a comp-c-lib compat +./usr/lib/64/libmagic.so base-sys-shlib compat,pic +./usr/lib/64/libmagic_p.a comp-c-proflib compat,profile +./usr/lib/64/libmagic_pic.a comp-c-piclib compat,pic +./usr/lib/64/libmenu.a comp-c-lib compat +./usr/lib/64/libmenu.so base-sys-shlib compat,pic +./usr/lib/64/libmenu_p.a comp-c-proflib compat,profile +./usr/lib/64/libmenu_pic.a comp-c-piclib compat,pic +./usr/lib/64/libmj.a comp-c-lib compat,crypto +./usr/lib/64/libmj.so comp-sys-shlib compat,crypto,pic +./usr/lib/64/libmj_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libmj_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libmpc.a comp-c-lib obsolete +./usr/lib/64/libmpc.so base-sys-shlib obsolete +./usr/lib/64/libmpc_g.a -unknown- obsolete +./usr/lib/64/libmpc_p.a comp-c-proflib obsolete +./usr/lib/64/libmpc_pic.a comp-c-piclib obsolete +./usr/lib/64/libmpfr.a comp-c-lib obsolete +./usr/lib/64/libmpfr.so base-sys-shlib obsolete +./usr/lib/64/libmpfr_g.a -unknown- obsolete +./usr/lib/64/libmpfr_p.a comp-c-proflib obsolete +./usr/lib/64/libmpfr_pic.a comp-c-piclib obsolete +./usr/lib/64/libnetpgp.a comp-c-lib compat,crypto +./usr/lib/64/libnetpgp.so comp-sys-shlib compat,crypto,pic +./usr/lib/64/libnetpgp_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libnetpgp_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libnpf.a comp-c-lib compat,npf +./usr/lib/64/libnpf.so comp-sys-shlib compat,npf,pic +./usr/lib/64/libnpf_p.a comp-c-proflib compat,npf,profile +./usr/lib/64/libnpf_pic.a comp-c-piclib compat,npf,pic +./usr/lib/64/libobjc.a comp-c-lib compat,gcccmds +./usr/lib/64/libobjc.so base-sys-shlib compat,pic,gcccmds +./usr/lib/64/libobjc_p.a comp-c-proflib compat,profile,gcccmds +./usr/lib/64/libobjc_pic.a comp-c-piclib compat,pic,gcccmds +./usr/lib/64/libopcodes.a comp-obsolete obsolete +./usr/lib/64/libopcodes.so base-obsolete obsolete +./usr/lib/64/libopcodes_p.a comp-obsolete obsolete +./usr/lib/64/libopcodes_pic.a comp-obsolete obsolete +./usr/lib/64/libossaudio.a comp-c-lib compat +./usr/lib/64/libossaudio.so base-sys-shlib compat,pic +./usr/lib/64/libossaudio_p.a comp-c-proflib compat,profile +./usr/lib/64/libossaudio_pic.a comp-c-piclib compat,pic +./usr/lib/64/libp2k.a comp-c-lib compat,rump +./usr/lib/64/libp2k.so base-sys-shlib compat,pic,rump +./usr/lib/64/libp2k_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/libp2k_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/libpam.a comp-c-lib compat +./usr/lib/64/libpam.so base-sys-shlib compat,pic +./usr/lib/64/libpam_p.a comp-obsolete obsolete +./usr/lib/64/libpam_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpcap.a comp-c-lib compat +./usr/lib/64/libpcap.so base-sys-shlib compat,pic +./usr/lib/64/libpcap_p.a comp-c-proflib compat,profile +./usr/lib/64/libpcap_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpci.a comp-c-lib compat +./usr/lib/64/libpci.so base-sys-shlib compat,pic +./usr/lib/64/libpci_p.a comp-c-proflib compat,profile +./usr/lib/64/libpci_pic.a comp-c-piclib compat,pic +./usr/lib/64/libperfuse.a comp-c-lib compat +./usr/lib/64/libperfuse.so base-sys-shlib compat,pic +./usr/lib/64/libperfuse_g.a comp-c-proflib compat,debuglib +./usr/lib/64/libperfuse_p.a comp-c-proflib compat,profile +./usr/lib/64/libperfuse_pic.a comp-c-piclib compat,pic +./usr/lib/64/libposix.a comp-c-lib compat +./usr/lib/64/libposix.so base-sys-shlib compat,pic +./usr/lib/64/libposix_p.a comp-c-proflib compat,profile +./usr/lib/64/libposix_pic.a comp-c-piclib compat,pic +./usr/lib/64/libppath.a comp-c-lib compat +./usr/lib/64/libppath.so base-sys-shlib compat,pic +./usr/lib/64/libppath_p.a comp-c-proflib compat,profile +./usr/lib/64/libppath_pic.a comp-c-piclib compat,pic +./usr/lib/64/libprop.a comp-c-lib compat +./usr/lib/64/libprop.so base-sys-shlib compat,pic +./usr/lib/64/libprop_p.a comp-c-proflib compat,profile +./usr/lib/64/libprop_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpthread.a comp-c-lib compat +./usr/lib/64/libpthread.so base-sys-shlib compat,pic +./usr/lib/64/libpthread_dbg.a comp-c-lib compat +./usr/lib/64/libpthread_dbg.so base-sys-shlib compat,pic +./usr/lib/64/libpthread_dbg_p.a comp-c-proflib compat,profile +./usr/lib/64/libpthread_dbg_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpthread_p.a comp-c-proflib compat,profile +./usr/lib/64/libpthread_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpuffs.a comp-c-lib compat +./usr/lib/64/libpuffs.so base-sys-shlib compat,pic +./usr/lib/64/libpuffs_p.a comp-c-proflib compat,profile +./usr/lib/64/libpuffs_pic.a comp-c-piclib compat,pic +./usr/lib/64/libquota.a comp-c-lib compat +./usr/lib/64/libquota.so base-sys-shlib compat,pic +./usr/lib/64/libquota_p.a comp-c-proflib compat,profile +./usr/lib/64/libquota_pic.a comp-c-piclib compat,pic +./usr/lib/64/libradius.a comp-c-lib compat +./usr/lib/64/libradius.so base-sys-shlib compat,pic +./usr/lib/64/libradius_p.a comp-c-proflib compat,profile +./usr/lib/64/libradius_pic.a comp-c-piclib compat,pic +./usr/lib/64/librefuse.a comp-c-lib compat +./usr/lib/64/librefuse.so base-sys-shlib compat,pic +./usr/lib/64/librefuse_p.a comp-c-proflib compat,profile +./usr/lib/64/librefuse_pic.a comp-c-piclib compat,pic +./usr/lib/64/libresolv.a comp-c-lib compat +./usr/lib/64/libresolv.so base-sys-shlib compat,pic +./usr/lib/64/libresolv_p.a comp-c-proflib compat,profile +./usr/lib/64/libresolv_pic.a comp-c-piclib compat,pic +./usr/lib/64/librmt.a comp-c-lib compat +./usr/lib/64/librmt_p.a comp-obsolete obsolete +./usr/lib/64/librmt_pic.a comp-obsolete obsolete +./usr/lib/64/libroken.a comp-c-lib compat,kerberos +./usr/lib/64/libroken.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libroken_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libroken_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/librpcsvc.a comp-c-lib compat +./usr/lib/64/librpcsvc.so base-sys-shlib compat,pic +./usr/lib/64/librpcsvc_p.a comp-c-proflib compat,profile +./usr/lib/64/librpcsvc_pic.a comp-c-piclib compat,pic +./usr/lib/64/librt.a comp-c-lib compat +./usr/lib/64/librt.so base-sys-shlib compat,pic +./usr/lib/64/librt_p.a comp-c-proflib compat,profile +./usr/lib/64/librt_pic.a comp-c-piclib compat,pic +./usr/lib/64/librump.a comp-c-lib compat,rump +./usr/lib/64/librump.so base-sys-shlib compat,pic,rump +./usr/lib/64/librump_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librump_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpclient.a comp-c-lib compat,rump +./usr/lib/64/librumpclient.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpclient_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpclient_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpcrypto.a comp-obsolete obsolete +./usr/lib/64/librumpcrypto.so base-obsolete obsolete +./usr/lib/64/librumpcrypto_p.a comp-obsolete obsolete +./usr/lib/64/librumpcrypto_pic.a comp-obsolete obsolete +./usr/lib/64/librumpdev.a comp-c-lib compat,rump +./usr/lib/64/librumpdev.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpdev_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpdev_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumphijack.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumphijack_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpnet.a comp-c-lib compat,rump +./usr/lib/64/librumpnet.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpnet_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpnet_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpuser.a comp-c-lib compat,rump +./usr/lib/64/librumpuser.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpuser_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpuser_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpvfs.a comp-c-lib compat,rump +./usr/lib/64/librumpvfs.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpvfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpvfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/libsaslc.a comp-c-lib compat,crypto +./usr/lib/64/libsaslc.so base-sys-shlib compat,pic,crypto +./usr/lib/64/libsaslc_p.a comp-c-proflib compat,profile,crypto +./usr/lib/64/libsaslc_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/64/libsdp.a comp-obsolete obsolete +./usr/lib/64/libsdp.so base-obsolete obsolete +./usr/lib/64/libsdp_p.a comp-obsolete obsolete +./usr/lib/64/libsdp_pic.a comp-obsolete obsolete +./usr/lib/64/libskey.a comp-c-lib compat,skey +./usr/lib/64/libskey.so base-sys-shlib compat,pic,skey +./usr/lib/64/libskey_p.a comp-c-proflib compat,profile,skey +./usr/lib/64/libskey_pic.a comp-c-piclib compat,pic,skey +./usr/lib/64/libsl.a comp-c-lib compat,kerberos +./usr/lib/64/libsl.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libsl_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libsl_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libsqlite3.a comp-c-lib compat +./usr/lib/64/libsqlite3.so base-sys-shlib compat,pic +./usr/lib/64/libsqlite3_p.a comp-c-proflib compat,profile +./usr/lib/64/libsqlite3_pic.a comp-c-piclib compat,pic +./usr/lib/64/libss.a comp-c-lib obsolete +./usr/lib/64/libss.so base-sys-shlib obsolete +./usr/lib/64/libss_p.a comp-c-proflib obsolete +./usr/lib/64/libss_pic.a comp-c-piclib obsolete +./usr/lib/64/libssh.a comp-c-lib compat,crypto +./usr/lib/64/libssh.so base-sys-shlib compat,crypto,pic +./usr/lib/64/libssh_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libssh_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libssl.a comp-c-lib compat,crypto +./usr/lib/64/libssl.so base-sys-shlib compat,crypto,pic +./usr/lib/64/libssl_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libssl_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libstdc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/64/libstdc++.so base-sys-shlib compat,pic,cxx,gcccmds +./usr/lib/64/libstdc++_p.a comp-c-proflib compat,profile,cxx,gcccmds +./usr/lib/64/libstdc++_pic.a comp-c-piclib compat,pic,cxx,gcccmds +./usr/lib/64/libsupc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/64/libsupc++.so base-obsolete obsolete +./usr/lib/64/libsupc++_pic.a comp-obsolete obsolete +./usr/lib/64/libtermcap.a comp-c-lib compat +./usr/lib/64/libtermcap.so base-sys-shlib compat,pic +./usr/lib/64/libtermcap_p.a comp-c-proflib compat,profile +./usr/lib/64/libtermcap_pic.a comp-c-piclib compat,pic +./usr/lib/64/libterminfo.a comp-c-lib compat +./usr/lib/64/libterminfo.so base-sys-shlib compat,pic +./usr/lib/64/libterminfo_p.a comp-c-proflib compat,profile +./usr/lib/64/libterminfo_pic.a comp-c-piclib compat,pic +./usr/lib/64/libtermlib.a comp-c-lib compat +./usr/lib/64/libtermlib.so base-sys-shlib compat,pic +./usr/lib/64/libtermlib_p.a comp-c-proflib compat,profile +./usr/lib/64/libtermlib_pic.a comp-c-piclib compat,pic +./usr/lib/64/libtre.a comp-c-lib compat +./usr/lib/64/libtre.so base-sys-shlib compat,pic +./usr/lib/64/libtre_p.a comp-c-proflib compat,profile +./usr/lib/64/libtre_pic.a comp-c-piclib compat,pic +./usr/lib/64/libukfs.a comp-c-lib compat,rump +./usr/lib/64/libukfs.so base-sys-shlib compat,pic,rump +./usr/lib/64/libukfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/libukfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/libusbhid.a comp-c-lib compat +./usr/lib/64/libusbhid.so base-sys-shlib compat,pic +./usr/lib/64/libusbhid_p.a comp-c-proflib compat,profile +./usr/lib/64/libusbhid_pic.a comp-c-piclib compat,pic +./usr/lib/64/libutil.a comp-c-lib compat +./usr/lib/64/libutil.so base-sys-shlib compat,pic +./usr/lib/64/libutil_p.a comp-c-proflib compat,profile +./usr/lib/64/libutil_pic.a comp-c-piclib compat,pic +./usr/lib/64/libvers.a comp-obsolete obsolete +./usr/lib/64/libvers_p.a comp-obsolete obsolete +./usr/lib/64/libvers_pic.a comp-obsolete obsolete +./usr/lib/64/libwind.a comp-c-lib compat,kerberos +./usr/lib/64/libwind.so comp-sys-shlib compat,pic,kerberos +./usr/lib/64/libwind_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/64/libwind_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libwind_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libwrap.a comp-c-lib compat +./usr/lib/64/libwrap.so base-sys-shlib compat,pic +./usr/lib/64/libwrap_p.a comp-c-proflib compat,profile +./usr/lib/64/libwrap_pic.a comp-c-piclib compat,pic +./usr/lib/64/liby.a comp-c-lib compat +./usr/lib/64/liby_p.a comp-c-proflib compat,profile +./usr/lib/64/liby_pic.a comp-obsolete obsolete +./usr/lib/64/libz.a comp-c-lib compat +./usr/lib/64/libz.so base-sys-shlib compat,pic +./usr/lib/64/libz_p.a comp-c-proflib compat,profile +./usr/lib/64/libz_pic.a comp-c-piclib compat,pic +./usr/lib/o32/crt0.o comp-c-lib compat +./usr/lib/o32/crtbegin.o comp-c-lib compat +./usr/lib/o32/crtbeginS.o comp-c-lib compat,pic +./usr/lib/o32/crtbeginT.o comp-c-lib compat,pic +./usr/lib/o32/crtend.o comp-c-lib compat +./usr/lib/o32/crtendS.o comp-c-lib compat,pic +./usr/lib/o32/crti.o comp-c-lib compat +./usr/lib/o32/crtn.o comp-c-lib compat +./usr/lib/o32/gcrt0.o comp-c-lib compat +./usr/lib/o32/i18n/libBIG5.a comp-c-lib compat +./usr/lib/o32/i18n/libBIG5.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libBIG5_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libBIG5_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libDECHanyu.a comp-c-lib compat +./usr/lib/o32/i18n/libDECHanyu.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libDECHanyu_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libDECHanyu_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libEUC.a comp-c-lib compat +./usr/lib/o32/i18n/libEUC.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libEUCTW.a comp-c-lib compat +./usr/lib/o32/i18n/libEUCTW.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libEUCTW_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libEUCTW_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libEUC_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libEUC_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libGBK2K.a comp-c-lib compat +./usr/lib/o32/i18n/libGBK2K.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libGBK2K_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libGBK2K_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libHZ.a comp-c-lib compat +./usr/lib/o32/i18n/libHZ.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libHZ_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libHZ_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libISO2022.a comp-c-lib compat +./usr/lib/o32/i18n/libISO2022.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libISO2022_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libISO2022_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libJOHAB.a comp-c-lib compat +./usr/lib/o32/i18n/libJOHAB.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libJOHAB_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libJOHAB_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libMSKanji.a comp-c-lib compat +./usr/lib/o32/i18n/libMSKanji.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libMSKanji_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libMSKanji_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUES.a comp-c-lib compat +./usr/lib/o32/i18n/libUES.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libUES_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUES_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF1632.a comp-c-lib compat +./usr/lib/o32/i18n/libUTF1632.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libUTF1632_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF1632_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF7.a comp-c-lib compat +./usr/lib/o32/i18n/libUTF7.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libUTF7_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF7_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF8.a comp-c-lib compat +./usr/lib/o32/i18n/libUTF8.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libUTF8_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF8_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libVIQR.a comp-c-lib compat +./usr/lib/o32/i18n/libVIQR.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libVIQR_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libVIQR_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libZW.a comp-c-lib compat +./usr/lib/o32/i18n/libZW.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libZW_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libZW_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libiconv_none.a comp-c-lib compat +./usr/lib/o32/i18n/libiconv_none.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libiconv_none_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libiconv_none_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libiconv_std.a comp-c-lib compat +./usr/lib/o32/i18n/libiconv_std.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libiconv_std_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libiconv_std_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_646.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_646.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_646_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_646_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_none.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_none.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_none_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_none_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_parallel.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_parallel.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_parallel_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_parallel_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_serial.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_serial.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_serial_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_serial_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_std.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_std.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_std_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_std_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_zone.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_zone.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_zone_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_zone_pic.a comp-obsolete obsolete +./usr/lib/o32/libarchive.a comp-c-lib compat +./usr/lib/o32/libarchive.so base-sys-shlib compat,pic +./usr/lib/o32/libarchive_p.a comp-c-proflib compat,profile +./usr/lib/o32/libarchive_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libasn1.a comp-c-lib compat,kerberos +./usr/lib/o32/libasn1.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libasn1_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libasn1_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libatf-c++.a comp-c-lib compat,atf +./usr/lib/o32/libatf-c++.so base-sys-lib compat,pic,atf +./usr/lib/o32/libatf-c++_p.a comp-c-proflib compat,profile,atf +./usr/lib/o32/libatf-c++_pic.a comp-c-piclib compat,pic,atf +./usr/lib/o32/libatf-c.a comp-c-lib compat,atf +./usr/lib/o32/libatf-c.so base-sys-lib compat,pic,atf +./usr/lib/o32/libatf-c_p.a comp-c-proflib compat,profile,atf +./usr/lib/o32/libatf-c_pic.a comp-c-piclib compat,pic,atf +./usr/lib/o32/libbfd.a comp-obsolete obsolete +./usr/lib/o32/libbfd.so base-obsolete obsolete +./usr/lib/o32/libbfd_p.a comp-obsolete obsolete +./usr/lib/o32/libbfd_pic.a comp-obsolete obsolete +./usr/lib/o32/libbind9.a comp-c-lib compat +./usr/lib/o32/libbind9.so base-sys-shlib compat,pic +./usr/lib/o32/libbind9_p.a comp-c-proflib compat,profile +./usr/lib/o32/libbind9_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libbluetooth.a comp-c-lib compat +./usr/lib/o32/libbluetooth.so base-sys-shlib compat,pic +./usr/lib/o32/libbluetooth_p.a comp-c-proflib compat,profile +./usr/lib/o32/libbluetooth_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libbsdmalloc.a comp-c-lib compat +./usr/lib/o32/libbsdmalloc.so base-sys-shlib compat,pic +./usr/lib/o32/libbsdmalloc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libbsdmalloc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libbz2.a comp-c-lib compat +./usr/lib/o32/libbz2.so base-sys-shlib compat,pic +./usr/lib/o32/libbz2_p.a comp-c-proflib compat,profile +./usr/lib/o32/libbz2_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libc.a comp-c-lib compat +./usr/lib/o32/libc.so base-sys-shlib compat,pic +./usr/lib/o32/libc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libcom_err.a comp-c-lib compat,kerberos +./usr/lib/o32/libcom_err.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libcom_err_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libcom_err_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libcompat.a comp-c-lib compat +./usr/lib/o32/libcompat_p.a comp-c-proflib compat,profile +./usr/lib/o32/libcompat_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libcrypt.a comp-c-lib compat +./usr/lib/o32/libcrypt.so base-sys-shlib compat,pic +./usr/lib/o32/libcrypt_p.a comp-c-proflib compat,profile +./usr/lib/o32/libcrypt_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libcrypto.a comp-c-lib compat,crypto +./usr/lib/o32/libcrypto.so base-sys-shlib compat,crypto,pic +./usr/lib/o32/libcrypto_idea.a comp-obsolete obsolete +./usr/lib/o32/libcrypto_idea_p.a comp-obsolete obsolete +./usr/lib/o32/libcrypto_mdc2.a comp-obsolete obsolete +./usr/lib/o32/libcrypto_mdc2_p.a comp-obsolete obsolete +./usr/lib/o32/libcrypto_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libcrypto_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libcrypto_rc5.a comp-c-lib crypto_rc5,compat +./usr/lib/o32/libcrypto_rc5_p.a comp-c-proflib crypto_rc5,compat,profile +./usr/lib/o32/libcurses.a comp-c-lib compat +./usr/lib/o32/libcurses.so base-sys-shlib compat,pic +./usr/lib/o32/libcurses_p.a comp-c-proflib compat,profile +./usr/lib/o32/libcurses_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libdes.a comp-c-lib compat,crypto +./usr/lib/o32/libdes.so base-sys-shlib compat,crypto,pic +./usr/lib/o32/libdes_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libdes_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libdevmapper.a comp-lvm-lib compat,lvm +./usr/lib/o32/libdevmapper.so base-lvm-shlib compat,lvm,pic +./usr/lib/o32/libdevmapper_g.a -unknown- compat,debuglib,lvm +./usr/lib/o32/libdevmapper_p.a comp-lvm-proflib compat,profile,lvm +./usr/lib/o32/libdevmapper_pic.a comp-lvm-piclib compat,pic,lvm +./usr/lib/o32/libdm.a comp-c-lib compat +./usr/lib/o32/libdm.so base-sys-shlib compat,pic +./usr/lib/o32/libdm_g.a -unknown- compat,debuglib +./usr/lib/o32/libdm_p.a comp-c-proflib compat,profile +./usr/lib/o32/libdm_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libdns.a comp-c-lib compat +./usr/lib/o32/libdns.so base-sys-shlib compat,pic +./usr/lib/o32/libdns_p.a comp-c-proflib compat,profile +./usr/lib/o32/libdns_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libdns_sd.a comp-c-lib compat,mdns +./usr/lib/o32/libdns_sd.so base-mdns-shlib compat,pic,mdns +./usr/lib/o32/libdns_sd_p.a comp-c-proflib compat,profile,mdns +./usr/lib/o32/libdns_sd_pic.a comp-c-piclib compat,pic,mdns +./usr/lib/o32/libdwarf.a comp-c-lib compat +./usr/lib/o32/libdwarf.so base-sys-shlib compat,pic +./usr/lib/o32/libdwarf_p.a comp-c-proflib compat,profile +./usr/lib/o32/libdwarf_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libedit.a comp-c-lib compat +./usr/lib/o32/libedit.so base-sys-shlib compat,pic +./usr/lib/o32/libedit_p.a comp-c-proflib compat,profile +./usr/lib/o32/libedit_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libelf.a comp-c-lib compat +./usr/lib/o32/libelf.so base-sys-shlib compat,pic +./usr/lib/o32/libelf_p.a comp-c-proflib compat,profile +./usr/lib/o32/libelf_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libevent.a comp-c-lib compat +./usr/lib/o32/libevent.so base-sys-shlib compat,pic +./usr/lib/o32/libevent_p.a comp-c-proflib compat,profile +./usr/lib/o32/libevent_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libexecinfo.a comp-c-lib compat +./usr/lib/o32/libexecinfo.so base-sys-shlib compat,pic +./usr/lib/o32/libexecinfo_p.a comp-c-proflib compat,profile +./usr/lib/o32/libexecinfo_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libexpat.a comp-c-lib compat +./usr/lib/o32/libexpat.so base-sys-shlib compat,pic +./usr/lib/o32/libexpat_p.a comp-c-proflib compat,profile +./usr/lib/o32/libexpat_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libfetch.a comp-c-lib compat +./usr/lib/o32/libfetch.so base-sys-shlib compat,pic +./usr/lib/o32/libfetch_p.a comp-c-proflib compat,profile +./usr/lib/o32/libfetch_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libfl.a comp-c-lib compat +./usr/lib/o32/libfl_p.a comp-c-proflib compat,profile +./usr/lib/o32/libform.a comp-c-lib compat +./usr/lib/o32/libform.so base-sys-shlib compat,pic +./usr/lib/o32/libform_p.a comp-c-proflib compat,profile +./usr/lib/o32/libform_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libgcc.a comp-c-lib compat +./usr/lib/o32/libgcc_eh.a comp-c-lib compat,pic +./usr/lib/o32/libgcc_eh_p.a comp-c-proflib obsolete +./usr/lib/o32/libgcc_eh_pic.a comp-c-piclib obsolete +./usr/lib/o32/libgcc_p.a comp-c-proflib obsolete +./usr/lib/o32/libgcc_pic.a comp-c-piclib obsolete +./usr/lib/o32/libgcc_s.a comp-obsolete obsolete +./usr/lib/o32/libgcc_s.so base-sys-shlib compat,pic +./usr/lib/o32/libgcc_s_p.a comp-obsolete obsolete +./usr/lib/o32/libgcc_s_pic.a comp-obsolete obsolete +./usr/lib/o32/libgcov.a comp-c-lib compat,gcccmds +./usr/lib/o32/libgcov_p.a comp-obsolete obsolete +./usr/lib/o32/libgcov_pic.a comp-obsolete obsolete +./usr/lib/o32/libgmp.a comp-c-lib obsolete +./usr/lib/o32/libgmp.so base-sys-shlib obsolete +./usr/lib/o32/libgmp_g.a -unknown- obsolete +./usr/lib/o32/libgmp_p.a comp-c-proflib obsolete +./usr/lib/o32/libgmp_pic.a comp-c-piclib obsolete +./usr/lib/o32/libgnumalloc.a comp-c-lib compat +./usr/lib/o32/libgnumalloc.so base-sys-shlib compat,pic +./usr/lib/o32/libgnumalloc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libgnumalloc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libgomp.a comp-c-lib compat,gcc=45 +./usr/lib/o32/libgomp.so base-sys-shlib compat,pic,gcc=45 +./usr/lib/o32/libgomp_p.a comp-c-proflib compat,profile,gcc=45 +./usr/lib/o32/libgomp_pic.a comp-c-piclib compat,pic,gcc=45 +./usr/lib/o32/libgssapi.a comp-c-lib compat,kerberos +./usr/lib/o32/libgssapi.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libgssapi_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libgssapi_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libhdb.a comp-c-lib compat,kerberos +./usr/lib/o32/libhdb.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libhdb_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libhdb_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libheimbase.a comp-c-lib compat,kerberos +./usr/lib/o32/libheimbase.so comp-sys-shlib compat,pic,kerberos +./usr/lib/o32/libheimbase_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/o32/libheimbase_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libheimbase_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/o32/libheimntlm.a comp-c-lib compat,kerberos +./usr/lib/o32/libheimntlm.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libheimntlm_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libheimntlm_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libhx509.a comp-c-lib compat,kerberos +./usr/lib/o32/libhx509.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libhx509_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libhx509_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libiberty.a comp-obsolete obsolete +./usr/lib/o32/libiberty_p.a comp-obsolete obsolete +./usr/lib/o32/libiberty_pic.a comp-obsolete obsolete +./usr/lib/o32/libintl.a comp-c-lib compat +./usr/lib/o32/libintl.so base-sys-shlib compat,pic +./usr/lib/o32/libintl_p.a comp-c-proflib compat,profile +./usr/lib/o32/libintl_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libipsec.a comp-c-lib compat +./usr/lib/o32/libipsec.so base-sys-shlib compat,pic +./usr/lib/o32/libipsec_p.a comp-c-proflib compat,profile +./usr/lib/o32/libipsec_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libisc.a comp-c-lib compat +./usr/lib/o32/libisc.so base-sys-shlib compat,pic +./usr/lib/o32/libisc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libisc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libisccc.a comp-c-lib compat +./usr/lib/o32/libisccc.so base-sys-shlib compat,pic +./usr/lib/o32/libisccc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libisccc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libisccfg.a comp-c-lib compat +./usr/lib/o32/libisccfg.so base-sys-shlib compat,pic +./usr/lib/o32/libisccfg_p.a comp-c-proflib compat,profile +./usr/lib/o32/libisccfg_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libiscsi.a comp-c-lib compat,iscsi +./usr/lib/o32/libiscsi.so base-sys-shlib compat,pic,iscsi +./usr/lib/o32/libiscsi_p.a comp-c-proflib compat,profile,iscsi +./usr/lib/o32/libiscsi_pic.a comp-c-piclib compat,pic,iscsi +./usr/lib/o32/libisns.a comp-c-lib compat +./usr/lib/o32/libisns.so comp-sys-shlib compat +./usr/lib/o32/libisns_p.a comp-c-proflib compat,profile +./usr/lib/o32/libisns_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libkadm5clnt.a comp-c-lib compat,kerberos +./usr/lib/o32/libkadm5clnt.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkadm5clnt_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkadm5clnt_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libkadm5srv.a comp-c-lib compat,kerberos +./usr/lib/o32/libkadm5srv.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkadm5srv_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkadm5srv_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libkafs.a comp-c-lib compat,kerberos +./usr/lib/o32/libkafs.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkafs_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkafs_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libkdc.a comp-c-lib compat,kerberos +./usr/lib/o32/libkdc.so comp-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkdc_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/o32/libkdc_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkdc_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/o32/libkrb5.a comp-c-lib compat,kerberos +./usr/lib/o32/libkrb5.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkrb5_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkrb5_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libkvm.a comp-c-lib compat +./usr/lib/o32/libkvm.so base-sys-shlib compat,pic +./usr/lib/o32/libkvm_p.a comp-c-proflib compat,profile +./usr/lib/o32/libkvm_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libl.a comp-c-lib compat +./usr/lib/o32/libl_p.a comp-c-proflib compat,profile +./usr/lib/o32/libl_pic.a comp-obsolete obsolete +./usr/lib/o32/liblber.a comp-c-lib compat,ldap +./usr/lib/o32/liblber.so base-sys-shlib compat,pic,ldap +./usr/lib/o32/liblber_p.a comp-c-proflib compat,profile,ldap +./usr/lib/o32/liblber_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/o32/libldap.a comp-c-lib compat,ldap +./usr/lib/o32/libldap.so base-sys-shlib compat,pic,ldap +./usr/lib/o32/libldap_p.a comp-c-proflib compat,profile,ldap +./usr/lib/o32/libldap_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/o32/libldap_r.a comp-c-lib compat,ldap +./usr/lib/o32/libldap_r.so base-sys-shlib compat,pic,ldap +./usr/lib/o32/libldap_r_p.a comp-c-proflib compat,profile,ldap +./usr/lib/o32/libldap_r_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/o32/liblua.a comp-c-lib compat +./usr/lib/o32/liblua.so base-sys-shlib compat,pic +./usr/lib/o32/liblua_p.a comp-c-proflib compat,profile +./usr/lib/o32/liblua_pic.a comp-c-piclib compat,pic +./usr/lib/o32/liblwres.a comp-c-lib compat +./usr/lib/o32/liblwres.so base-sys-shlib compat,pic +./usr/lib/o32/liblwres_p.a comp-c-proflib compat,profile +./usr/lib/o32/liblwres_pic.a comp-c-piclib compat,pic +./usr/lib/o32/liblzf.a comp-c-lib compat +./usr/lib/o32/liblzf.so base-sys-shlib compat,pic +./usr/lib/o32/liblzf_g.a -unknown- compat,debuglib +./usr/lib/o32/liblzf_p.a comp-c-proflib compat,profile +./usr/lib/o32/liblzf_pic.a comp-c-piclib compat,pic +./usr/lib/o32/liblzma.a comp-c-lib compat +./usr/lib/o32/liblzma.so base-sys-shlib compat,pic +./usr/lib/o32/liblzma_p.a comp-c-proflib compat,profile +./usr/lib/o32/liblzma_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libm.a comp-c-lib compat +./usr/lib/o32/libm.so base-sys-shlib compat,pic +./usr/lib/o32/libm_p.a comp-c-proflib compat,profile +./usr/lib/o32/libm_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libmagic.a comp-c-lib compat +./usr/lib/o32/libmagic.so base-sys-shlib compat,pic +./usr/lib/o32/libmagic_p.a comp-c-proflib compat,profile +./usr/lib/o32/libmagic_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libmenu.a comp-c-lib compat +./usr/lib/o32/libmenu.so base-sys-shlib compat,pic +./usr/lib/o32/libmenu_p.a comp-c-proflib compat,profile +./usr/lib/o32/libmenu_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libmj.a comp-c-lib compat,crypto +./usr/lib/o32/libmj.so comp-sys-shlib compat,crypto,pic +./usr/lib/o32/libmj_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libmj_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libmpc.a comp-c-lib obsolete +./usr/lib/o32/libmpc.so base-sys-shlib obsolete +./usr/lib/o32/libmpc_g.a -unknown- obsolete +./usr/lib/o32/libmpc_p.a comp-c-proflib obsolete +./usr/lib/o32/libmpc_pic.a comp-c-piclib obsolete +./usr/lib/o32/libmpfr.a comp-c-lib obsolete +./usr/lib/o32/libmpfr.so base-sys-shlib obsolete +./usr/lib/o32/libmpfr_g.a -unknown- obsolete +./usr/lib/o32/libmpfr_p.a comp-c-proflib obsolete +./usr/lib/o32/libmpfr_pic.a comp-c-piclib obsolete +./usr/lib/o32/libnetpgp.a comp-c-lib compat,crypto +./usr/lib/o32/libnetpgp.so comp-sys-shlib compat,crypto,pic +./usr/lib/o32/libnetpgp_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libnetpgp_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libnpf.a comp-c-lib compat,npf +./usr/lib/o32/libnpf.so comp-sys-shlib compat,npf,pic +./usr/lib/o32/libnpf_p.a comp-c-proflib compat,npf,profile +./usr/lib/o32/libnpf_pic.a comp-c-piclib compat,npf,pic +./usr/lib/o32/libobjc.a comp-c-lib compat,gcccmds +./usr/lib/o32/libobjc.so base-sys-shlib compat,pic,gcccmds +./usr/lib/o32/libobjc_p.a comp-c-proflib compat,profile,gcccmds +./usr/lib/o32/libobjc_pic.a comp-c-piclib compat,pic,gcccmds +./usr/lib/o32/libopcodes.a comp-obsolete obsolete +./usr/lib/o32/libopcodes.so base-obsolete obsolete +./usr/lib/o32/libopcodes_p.a comp-obsolete obsolete +./usr/lib/o32/libopcodes_pic.a comp-obsolete obsolete +./usr/lib/o32/libossaudio.a comp-c-lib compat +./usr/lib/o32/libossaudio.so base-sys-shlib compat,pic +./usr/lib/o32/libossaudio_p.a comp-c-proflib compat,profile +./usr/lib/o32/libossaudio_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libp2k.a comp-c-lib compat,rump +./usr/lib/o32/libp2k.so base-sys-shlib compat,pic,rump +./usr/lib/o32/libp2k_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/libp2k_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/libpam.a comp-c-lib compat +./usr/lib/o32/libpam.so base-sys-shlib compat,pic +./usr/lib/o32/libpam_p.a comp-obsolete obsolete +./usr/lib/o32/libpam_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpcap.a comp-c-lib compat +./usr/lib/o32/libpcap.so base-sys-shlib compat,pic +./usr/lib/o32/libpcap_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpcap_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpci.a comp-c-lib compat +./usr/lib/o32/libpci.so base-sys-shlib compat,pic +./usr/lib/o32/libpci_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpci_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libperfuse.a comp-c-lib compat +./usr/lib/o32/libperfuse.so base-sys-shlib compat,pic +./usr/lib/o32/libperfuse_g.a comp-c-proflib compat,debuglib +./usr/lib/o32/libperfuse_p.a comp-c-proflib compat,profile +./usr/lib/o32/libperfuse_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libposix.a comp-c-lib compat +./usr/lib/o32/libposix.so base-sys-shlib compat,pic +./usr/lib/o32/libposix_p.a comp-c-proflib compat,profile +./usr/lib/o32/libposix_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libppath.a comp-c-lib compat +./usr/lib/o32/libppath.so base-sys-shlib compat,pic +./usr/lib/o32/libppath_p.a comp-c-proflib compat,profile +./usr/lib/o32/libppath_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libprop.a comp-c-lib compat +./usr/lib/o32/libprop.so base-sys-shlib compat,pic +./usr/lib/o32/libprop_p.a comp-c-proflib compat,profile +./usr/lib/o32/libprop_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpthread.a comp-c-lib compat +./usr/lib/o32/libpthread.so base-sys-shlib compat,pic +./usr/lib/o32/libpthread_dbg.a comp-c-lib compat +./usr/lib/o32/libpthread_dbg.so base-sys-shlib compat,pic +./usr/lib/o32/libpthread_dbg_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpthread_dbg_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpthread_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpthread_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpuffs.a comp-c-lib compat +./usr/lib/o32/libpuffs.so base-sys-shlib compat,pic +./usr/lib/o32/libpuffs_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpuffs_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libquota.a comp-c-lib compat +./usr/lib/o32/libquota.so base-sys-shlib compat,pic +./usr/lib/o32/libquota_p.a comp-c-proflib compat,profile +./usr/lib/o32/libquota_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libradius.a comp-c-lib compat +./usr/lib/o32/libradius.so base-sys-shlib compat,pic +./usr/lib/o32/libradius_p.a comp-c-proflib compat,profile +./usr/lib/o32/libradius_pic.a comp-c-piclib compat,pic +./usr/lib/o32/librefuse.a comp-c-lib compat +./usr/lib/o32/librefuse.so base-sys-shlib compat,pic +./usr/lib/o32/librefuse_p.a comp-c-proflib compat,profile +./usr/lib/o32/librefuse_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libresolv.a comp-c-lib compat +./usr/lib/o32/libresolv.so base-sys-shlib compat,pic +./usr/lib/o32/libresolv_p.a comp-c-proflib compat,profile +./usr/lib/o32/libresolv_pic.a comp-c-piclib compat,pic +./usr/lib/o32/librmt.a comp-c-lib compat +./usr/lib/o32/librmt_p.a comp-obsolete obsolete +./usr/lib/o32/librmt_pic.a comp-obsolete obsolete +./usr/lib/o32/libroken.a comp-c-lib compat,kerberos +./usr/lib/o32/libroken.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libroken_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libroken_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/librpcsvc.a comp-c-lib compat +./usr/lib/o32/librpcsvc.so base-sys-shlib compat,pic +./usr/lib/o32/librpcsvc_p.a comp-c-proflib compat,profile +./usr/lib/o32/librpcsvc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/librt.a comp-c-lib compat +./usr/lib/o32/librt.so base-sys-shlib compat,pic +./usr/lib/o32/librt_p.a comp-c-proflib compat,profile +./usr/lib/o32/librt_pic.a comp-c-piclib compat,pic +./usr/lib/o32/librump.a comp-c-lib compat,rump +./usr/lib/o32/librump.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librump_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librump_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpclient.a comp-c-lib compat,rump +./usr/lib/o32/librumpclient.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpclient_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpclient_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpcrypto.a comp-obsolete obsolete +./usr/lib/o32/librumpcrypto.so base-obsolete obsolete +./usr/lib/o32/librumpcrypto_p.a comp-obsolete obsolete +./usr/lib/o32/librumpcrypto_pic.a comp-obsolete obsolete +./usr/lib/o32/librumpdev.a comp-c-lib compat,rump +./usr/lib/o32/librumpdev.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpdev_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpdev_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumphijack.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumphijack_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpnet.a comp-c-lib compat,rump +./usr/lib/o32/librumpnet.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpnet_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpnet_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpuser.a comp-c-lib compat,rump +./usr/lib/o32/librumpuser.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpuser_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpuser_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpvfs.a comp-c-lib compat,rump +./usr/lib/o32/librumpvfs.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpvfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpvfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/libsaslc.a comp-c-lib compat,crypto +./usr/lib/o32/libsaslc.so base-sys-shlib compat,pic,crypto +./usr/lib/o32/libsaslc_p.a comp-c-proflib compat,profile,crypto +./usr/lib/o32/libsaslc_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/o32/libsdp.a comp-obsolete obsolete +./usr/lib/o32/libsdp.so base-obsolete obsolete +./usr/lib/o32/libsdp_p.a comp-obsolete obsolete +./usr/lib/o32/libsdp_pic.a comp-obsolete obsolete +./usr/lib/o32/libskey.a comp-c-lib compat,skey +./usr/lib/o32/libskey.so base-sys-shlib compat,pic,skey +./usr/lib/o32/libskey_p.a comp-c-proflib compat,profile,skey +./usr/lib/o32/libskey_pic.a comp-c-piclib compat,pic,skey +./usr/lib/o32/libsl.a comp-c-lib compat,kerberos +./usr/lib/o32/libsl.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libsl_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libsl_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libsqlite3.a comp-c-lib compat +./usr/lib/o32/libsqlite3.so base-sys-shlib compat,pic +./usr/lib/o32/libsqlite3_p.a comp-c-proflib compat,profile +./usr/lib/o32/libsqlite3_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libss.a comp-c-lib obsolete +./usr/lib/o32/libss.so base-sys-shlib obsolete +./usr/lib/o32/libss_p.a comp-c-proflib obsolete +./usr/lib/o32/libss_pic.a comp-c-piclib obsolete +./usr/lib/o32/libssh.a comp-c-lib compat,crypto +./usr/lib/o32/libssh.so base-sys-shlib compat,crypto,pic +./usr/lib/o32/libssh_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libssh_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libssl.a comp-c-lib compat,crypto +./usr/lib/o32/libssl.so base-sys-shlib compat,crypto,pic +./usr/lib/o32/libssl_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libssl_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libstdc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/o32/libstdc++.so base-sys-shlib compat,pic,cxx,gcccmds +./usr/lib/o32/libstdc++_p.a comp-c-proflib compat,profile,cxx,gcccmds +./usr/lib/o32/libstdc++_pic.a comp-c-piclib compat,pic,cxx,gcccmds +./usr/lib/o32/libsupc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/o32/libsupc++.so base-obsolete obsolete +./usr/lib/o32/libsupc++_pic.a comp-obsolete obsolete +./usr/lib/o32/libtermcap.a comp-c-lib compat +./usr/lib/o32/libtermcap.so base-sys-shlib compat,pic +./usr/lib/o32/libtermcap_p.a comp-c-proflib compat,profile +./usr/lib/o32/libtermcap_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libterminfo.a comp-c-lib compat +./usr/lib/o32/libterminfo.so base-sys-shlib compat,pic +./usr/lib/o32/libterminfo_p.a comp-c-proflib compat,profile +./usr/lib/o32/libterminfo_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libtermlib.a comp-c-lib compat +./usr/lib/o32/libtermlib.so base-sys-shlib compat,pic +./usr/lib/o32/libtermlib_p.a comp-c-proflib compat,profile +./usr/lib/o32/libtermlib_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libtre.a comp-c-lib compat +./usr/lib/o32/libtre.so base-sys-shlib compat,pic +./usr/lib/o32/libtre_p.a comp-c-proflib compat,profile +./usr/lib/o32/libtre_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libukfs.a comp-c-lib compat,rump +./usr/lib/o32/libukfs.so base-sys-shlib compat,pic,rump +./usr/lib/o32/libukfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/libukfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/libusbhid.a comp-c-lib compat +./usr/lib/o32/libusbhid.so base-sys-shlib compat,pic +./usr/lib/o32/libusbhid_p.a comp-c-proflib compat,profile +./usr/lib/o32/libusbhid_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libutil.a comp-c-lib compat +./usr/lib/o32/libutil.so base-sys-shlib compat,pic +./usr/lib/o32/libutil_p.a comp-c-proflib compat,profile +./usr/lib/o32/libutil_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libvers.a comp-obsolete obsolete +./usr/lib/o32/libvers_p.a comp-obsolete obsolete +./usr/lib/o32/libvers_pic.a comp-obsolete obsolete +./usr/lib/o32/libwind.a comp-c-lib compat,kerberos +./usr/lib/o32/libwind.so comp-sys-shlib compat,pic,kerberos +./usr/lib/o32/libwind_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/o32/libwind_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libwind_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libwrap.a comp-c-lib compat +./usr/lib/o32/libwrap.so base-sys-shlib compat,pic +./usr/lib/o32/libwrap_p.a comp-c-proflib compat,profile +./usr/lib/o32/libwrap_pic.a comp-c-piclib compat,pic +./usr/lib/o32/liby.a comp-c-lib compat +./usr/lib/o32/liby_p.a comp-c-proflib compat,profile +./usr/lib/o32/liby_pic.a comp-obsolete obsolete +./usr/lib/o32/libz.a comp-c-lib compat +./usr/lib/o32/libz.so base-sys-shlib compat,pic +./usr/lib/o32/libz_p.a comp-c-proflib compat,profile +./usr/lib/o32/libz_pic.a comp-c-piclib compat,pic +./usr/libdata/debug/usr/bin/elf2aout.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/elf2ecoff.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/lib/64/i18n/libBIG5.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libDECHanyu.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libEUC.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libEUCTW.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libGBK2K.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libHZ.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libISO2022.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libJOHAB.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libMSKanji.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libUES.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libUTF1632.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libUTF7.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libUTF8.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libVIQR.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libZW.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libiconv_none.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libiconv_std.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_646.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_none.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_parallel.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_serial.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_std.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_zone.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/libamu.so.4.0.debug comp-amd-debug debug,compat +./usr/libdata/debug/usr/lib/64/libarchive.so.3.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libasn1.so.8.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libasn1.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libatf-c.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/64/libatf-c++.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/64/libavl.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libbfd.so.12.0.debug comp-sys-debug binutils,debug,compat +./usr/libdata/debug/usr/lib/64/libbind9.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libbluetooth.so.4.2.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libbsdmalloc.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libbz2.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libc.so.12.185.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libcom_err.so.6.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libcom_err.so.7.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libcrypt.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libcrypto.so.8.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libctf.so.2.0.debug comp-sys-debug dtrace,debug,compat +./usr/libdata/debug/usr/lib/64/libcurses.so.7.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libdes.so.8.1.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libdevmapper.so.1.0.debug comp-lvm-debug lvm,debug,compat +./usr/libdata/debug/usr/lib/64/libdm.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libdns.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libdns_sd.so.0.0.debug comp-mdns-debug mdns,debug,compat +./usr/libdata/debug/usr/lib/64/libdtrace.so.2.0.debug comp-sys-debug dtrace,debug,compat +./usr/libdata/debug/usr/lib/64/libdwarf.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libedit.so.3.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libelf.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libevent.so.3.2.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libexecinfo.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libexpat.so.2.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libfetch.so.3.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libform.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libg2c.so.2.0.debug comp-sys-debug gcc=3,debug,compat +./usr/libdata/debug/usr/lib/64/libgcc_s.so.1.0.debug comp-sys-debug gcc,debug,compat +./usr/libdata/debug/usr/lib/64/libgmp.so.10.2.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/64/libgnumalloc.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libgomp.so.1.0.debug comp-sys-debug debug,compat,gcc=45,notyet +./usr/libdata/debug/usr/lib/64/libgssapi.so.10.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libgssapi.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libhdb.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libhdb.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libheimbase.so.1.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libheimntlm.so.3.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libheimntlm.so.4.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libhx509.so.5.0.debug comp-krb5-debug kerberos,debug,compat +./usr/libdata/debug/usr/lib/64/libintl.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libipsec.so.3.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/libisc.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libisccc.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libisccfg.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libiscsi.so.2.0.debug comp-iscsi-debug iscsi,debug,compat +./usr/libdata/debug/usr/lib/64/libisns.so.0.0.debug comp-isns-debug debug,compat +./usr/libdata/debug/usr/lib/64/libkadm5clnt.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libkadm5clnt.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkadm5srv.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libkadm5srv.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkafs.so.11.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libkafs.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkdc.so.2.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkrb5.so.24.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libkrb5.so.26.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkvm.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/liblber.so.3.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/64/libldap.so.4.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/64/libldap_r.so.4.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/64/liblua.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/liblwres.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/liblzf.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/liblzma.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libm.so.0.10.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libmagic.so.3.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libmenu.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libmj.so.1.0.debug comp-crypto-debug debug,compat +./usr/libdata/debug/usr/lib/64/libmpc.so.2.0.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/64/libmpfr.so.4.1.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/64/libnetpgp.so.3.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libnpf.so.0.0.debug comp-npf-debug npf,debug,compat +./usr/libdata/debug/usr/lib/64/libnvpair.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libobjc.so.2.0.debug comp-sys-debug gcc=3,debug,compat +./usr/libdata/debug/usr/lib/64/libobjc.so.3.0.debug comp-sys-debug gcc=4,debug,compat +./usr/libdata/debug/usr/lib/64/libobjc.so.3.0.debug comp-sys-debug gcc=45,debug,compat +./usr/libdata/debug/usr/lib/64/libopcodes.so.5.0.debug comp-c-debug binutils,debug,compat +./usr/libdata/debug/usr/lib/64/libossaudio.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libp2k.so.2.0.debug comp-puffs-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/libpam.so.3.0.debug comp-sys-debug pam,debug,compat +./usr/libdata/debug/usr/lib/64/libpcap.so.4.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/libpci.so.2.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libperfuse.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/64/libposix.so.0.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libppath.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libprop.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libpthread.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libpthread_dbg.so.2.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libpuffs.so.2.0.debug comp-puffs-debug debug,compat +./usr/libdata/debug/usr/lib/64/libquota.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libradius.so.4.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/librefuse.so.2.0.debug comp-refuse-debug debug,compat +./usr/libdata/debug/usr/lib/64/libresolv.so.2.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/libroken.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libroken.so.19.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/librpcsvc.so.1.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/librt.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/librump.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpclient.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpcrypto.so.0.0.debug comp-obsolete obsolete,compat +./usr/libdata/debug/usr/lib/64/librumpdev.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumphijack.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpnet.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpuser.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpvfs.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/libsaslc.so.0.0.debug comp-sys-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libskey.so.2.0.debug comp-sys-debug skey,debug,compat +./usr/libdata/debug/usr/lib/64/libsl.so.5.0.debug comp-krb5-debug kerberos,debug,compat +./usr/libdata/debug/usr/lib/64/libsqlite3.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libss.so.6.0.debug comp-krb5-debug obsolete +./usr/libdata/debug/usr/lib/64/libssh.so.19.0.debug comp-secsh-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libssl.so.10.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libstdc++.so.5.0.debug comp-sys-debug gcc=3,cxx,debug,compat +./usr/libdata/debug/usr/lib/64/libstdc++.so.7.0.debug comp-sys-debug gcc=4,cxx,debug,compat +./usr/libdata/debug/usr/lib/64/libstdc++.so.7.1.debug comp-sys-debug gcc=45,cxx,debug,compat +./usr/libdata/debug/usr/lib/64/libterminfo.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libtre.so.0.8.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libukfs.so.1.0.debug comp-sys-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/libumem.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libusbhid.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libutil.so.7.21.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libuutil.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libwind.so.0.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libwrap.so.1.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/libz.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libzfs.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libzpool.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libBIG5.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libDECHanyu.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libEUC.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libEUCTW.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libGBK2K.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libHZ.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libISO2022.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libJOHAB.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libMSKanji.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libUES.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libUTF1632.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libUTF7.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libUTF8.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libVIQR.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libZW.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libiconv_none.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libiconv_std.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_646.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_none.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_parallel.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_serial.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_std.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_zone.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libamu.so.4.0.debug comp-amd-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libarchive.so.3.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libasn1.so.8.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libasn1.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libatf-c.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/o32/libatf-c++.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/o32/libavl.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libbfd.so.12.0.debug comp-sys-debug binutils,debug,compat +./usr/libdata/debug/usr/lib/o32/libbind9.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libbluetooth.so.4.2.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libbsdmalloc.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libbz2.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libc.so.12.185.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libcom_err.so.6.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libcom_err.so.7.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libcrypt.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libcrypto.so.8.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libctf.so.2.0.debug comp-sys-debug dtrace,debug,compat +./usr/libdata/debug/usr/lib/o32/libcurses.so.7.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libdes.so.8.1.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libdevmapper.so.1.0.debug comp-lvm-debug lvm,debug,compat +./usr/libdata/debug/usr/lib/o32/libdm.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libdns.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libdns_sd.so.0.0.debug comp-mdns-debug mdns,debug,compat +./usr/libdata/debug/usr/lib/o32/libdtrace.so.2.0.debug comp-sys-debug dtrace,debug,compat +./usr/libdata/debug/usr/lib/o32/libdwarf.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libedit.so.3.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libelf.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libevent.so.3.2.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libexecinfo.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libexpat.so.2.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libfetch.so.3.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libform.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libg2c.so.2.0.debug comp-sys-debug gcc=3,debug,compat +./usr/libdata/debug/usr/lib/o32/libgcc_s.so.1.0.debug comp-sys-debug gcc,debug,compat +./usr/libdata/debug/usr/lib/o32/libgnumalloc.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libgomp.so.1.0.debug comp-sys-debug debug,compat,gcc=45 +./usr/libdata/debug/usr/lib/o32/libgmp.so.10.2.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/o32/libgssapi.so.10.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libgssapi.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libhdb.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libhdb.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libheimbase.so.1.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libheimntlm.so.3.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libheimntlm.so.4.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libhx509.so.5.0.debug comp-krb5-debug kerberos,debug,compat +./usr/libdata/debug/usr/lib/o32/libintl.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libipsec.so.3.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libisc.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libisccc.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libisccfg.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libiscsi.so.2.0.debug comp-iscsi-debug iscsi,debug,compat +./usr/libdata/debug/usr/lib/o32/libisns.so.0.0.debug comp-isns-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libkadm5clnt.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libkadm5clnt.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkadm5srv.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libkadm5srv.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkafs.so.11.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libkafs.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkdc.so.2.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkrb5.so.24.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libkrb5.so.26.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkvm.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/liblber.so.3.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/o32/libldap.so.4.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/o32/libldap_r.so.4.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/o32/liblua.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/liblwres.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/liblzf.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/liblzma.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libm.so.0.10.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libmagic.so.3.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libmenu.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libmj.so.1.0.debug comp-crypto-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libmpc.so.2.0.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/o32/libmpfr.so.4.1.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/o32/libnetpgp.so.3.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libnpf.so.0.0.debug comp-npf-debug npf,debug,compat +./usr/libdata/debug/usr/lib/o32/libnvpair.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libobjc.so.2.0.debug comp-sys-debug gcc=3,debug,compat +./usr/libdata/debug/usr/lib/o32/libobjc.so.3.0.debug comp-sys-debug gcc=4,debug,compat +./usr/libdata/debug/usr/lib/o32/libobjc.so.3.0.debug comp-sys-debug gcc=45,debug,compat +./usr/libdata/debug/usr/lib/o32/libopcodes.so.5.0.debug comp-c-debug binutils,debug,compat +./usr/libdata/debug/usr/lib/o32/libossaudio.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libp2k.so.2.0.debug comp-puffs-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/libpam.so.3.0.debug comp-sys-debug pam,debug,compat +./usr/libdata/debug/usr/lib/o32/libpcap.so.4.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libpci.so.2.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libperfuse.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/o32/libposix.so.0.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libppath.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libprop.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libpthread.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libpthread_dbg.so.2.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libpuffs.so.2.0.debug comp-puffs-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libquota.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libradius.so.4.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/librefuse.so.2.0.debug comp-refuse-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libresolv.so.2.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libroken.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libroken.so.19.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/librpcsvc.so.1.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/librt.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/librump.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpclient.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpcrypto.so.0.0.debug comp-obsolete obsolete,compat +./usr/libdata/debug/usr/lib/o32/librumpdev.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumphijack.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpnet.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpuser.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpvfs.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/libsaslc.so.0.0.debug comp-sys-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libskey.so.2.0.debug comp-sys-debug skey,debug,compat +./usr/libdata/debug/usr/lib/o32/libsl.so.5.0.debug comp-krb5-debug kerberos,debug,compat +./usr/libdata/debug/usr/lib/o32/libsqlite3.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libss.so.6.0.debug comp-krb5-debug obsolete +./usr/libdata/debug/usr/lib/o32/libssh.so.19.0.debug comp-secsh-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libssl.so.10.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libstdc++.so.5.0.debug comp-sys-debug gcc=3,cxx,debug,compat +./usr/libdata/debug/usr/lib/o32/libstdc++.so.7.0.debug comp-sys-debug gcc=4,cxx,debug,compat +./usr/libdata/debug/usr/lib/o32/libstdc++.so.7.1.debug comp-sys-debug gcc=45,cxx,debug,compat +./usr/libdata/debug/usr/lib/o32/libterminfo.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libtre.so.0.8.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libukfs.so.1.0.debug comp-sys-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/libumem.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libusbhid.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libutil.so.7.21.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libuutil.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libwind.so.0.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libwrap.so.1.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libz.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libzfs.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libzpool.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/ldscripts/elf32btsmip.x comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xbn comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xc comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xn comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xr comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xs comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xsc comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xsw comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xu comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xw comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.x comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xbn comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xc comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xn comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xr comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xs comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xsc comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xsw comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xu comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xw comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.x comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xbn comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xc comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xn comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xr comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xs comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xsc comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xsw comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xu comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xw comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.x comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xbn comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xc comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xn comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xr comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xs comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xsc comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xsw comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xu comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xw comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.x comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xbn comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xc comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xn comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xr comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xs comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xsc comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xsw comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xu comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xw comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.x comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xbn comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xc comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xn comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xr comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xs comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xsc comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xsw comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xu comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xw comp-util-bin diff --git a/distrib/sets/lists/comp/ad.mips64el b/distrib/sets/lists/comp/ad.mips64el new file mode 100644 index 000000000..aca68b056 --- /dev/null +++ b/distrib/sets/lists/comp/ad.mips64el @@ -0,0 +1,1637 @@ +# $NetBSD: ad.mips64el,v 1.92 2012/09/16 18:59:25 tls Exp $ +./usr/bin/elf2aout comp-obsolete obsolete +./usr/bin/elf2ecoff comp-sysutil-bin +./usr/include/gcc-4.5/loongson.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/mips comp-c-include +./usr/include/mips/ansi.h comp-c-include +./usr/include/mips/aout_machdep.h comp-obsolete obsolete +./usr/include/mips/asm.h comp-c-include +./usr/include/mips/bsd-aout.h comp-obsolete obsolete +./usr/include/mips/bswap.h comp-c-include +./usr/include/mips/cachectl.h comp-c-include +./usr/include/mips/cdefs.h comp-c-include +./usr/include/mips/cpu.h comp-c-include +./usr/include/mips/cpuregs.h comp-c-include +./usr/include/mips/db_machdep.h comp-obsolete obsolete +./usr/include/mips/ecoff_machdep.h comp-c-include +./usr/include/mips/elf.h comp-obsolete obsolete +./usr/include/mips/elf_machdep.h comp-c-include +./usr/include/mips/endian.h comp-c-include +./usr/include/mips/endian_machdep.h comp-c-include +./usr/include/mips/float.h comp-c-include +./usr/include/mips/ieee.h comp-c-include +./usr/include/mips/ieeefp.h comp-c-include +./usr/include/mips/int_const.h comp-c-include +./usr/include/mips/int_fmtio.h comp-c-include +./usr/include/mips/int_limits.h comp-c-include +./usr/include/mips/int_mwgwtypes.h comp-c-include +./usr/include/mips/int_types.h comp-c-include +./usr/include/mips/kcore.h comp-c-include +./usr/include/mips/kdbparam.h comp-c-include +./usr/include/mips/limits.h comp-c-include +./usr/include/mips/lock.h comp-c-include +./usr/include/mips/locore.h comp-c-include +./usr/include/mips/math.h comp-c-include +./usr/include/mips/mcontext.h comp-c-include +./usr/include/mips/mips1_pte.h comp-c-include +./usr/include/mips/mips3_pte.h comp-c-include +./usr/include/mips/mips_opcode.h comp-c-include +./usr/include/mips/mips_param.h comp-c-include +./usr/include/mips/mutex.h comp-c-include +./usr/include/mips/pcb.h comp-c-include +./usr/include/mips/pmap.h comp-c-include +./usr/include/mips/pmc.h comp-c-include +./usr/include/mips/proc.h comp-c-include +./usr/include/mips/profile.h comp-c-include +./usr/include/mips/psl.h comp-c-include +./usr/include/mips/pte.h comp-c-include +./usr/include/mips/ptrace.h comp-c-include +./usr/include/mips/reg.h comp-c-include +./usr/include/mips/regdef.h comp-c-include +./usr/include/mips/regnum.h comp-c-include +./usr/include/mips/reloc.h comp-c-include +./usr/include/mips/rwlock.h comp-c-include +./usr/include/mips/setjmp.h comp-c-include +./usr/include/mips/signal.h comp-c-include +./usr/include/mips/stdarg.h comp-obsolete obsolete +./usr/include/mips/sysarch.h comp-c-include +./usr/include/mips/trap.h comp-c-include +./usr/include/mips/types.h comp-c-include +./usr/include/mips/varargs.h comp-obsolete obsolete +./usr/include/mips/vmparam.h comp-c-include +./usr/include/mips/wchar_limits.h comp-c-include +./usr/lib/64/crt0.o comp-c-lib compat +./usr/lib/64/crtbegin.o comp-c-lib compat +./usr/lib/64/crtbeginS.o comp-c-lib compat,pic +./usr/lib/64/crtbeginT.o comp-c-lib compat,pic +./usr/lib/64/crtend.o comp-c-lib compat +./usr/lib/64/crtendS.o comp-c-lib compat,pic +./usr/lib/64/crti.o comp-c-lib compat +./usr/lib/64/crtn.o comp-c-lib compat +./usr/lib/64/gcrt0.o comp-c-lib compat +./usr/lib/64/i18n/libBIG5.a comp-c-lib compat +./usr/lib/64/i18n/libBIG5.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libBIG5_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libBIG5_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libDECHanyu.a comp-c-lib compat +./usr/lib/64/i18n/libDECHanyu.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libDECHanyu_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libDECHanyu_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libEUC.a comp-c-lib compat +./usr/lib/64/i18n/libEUC.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libEUCTW.a comp-c-lib compat +./usr/lib/64/i18n/libEUCTW.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libEUCTW_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libEUCTW_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libEUC_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libEUC_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libGBK2K.a comp-c-lib compat +./usr/lib/64/i18n/libGBK2K.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libGBK2K_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libGBK2K_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libHZ.a comp-c-lib compat +./usr/lib/64/i18n/libHZ.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libHZ_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libHZ_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libISO2022.a comp-c-lib compat +./usr/lib/64/i18n/libISO2022.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libISO2022_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libISO2022_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libJOHAB.a comp-c-lib compat +./usr/lib/64/i18n/libJOHAB.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libJOHAB_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libJOHAB_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libMSKanji.a comp-c-lib compat +./usr/lib/64/i18n/libMSKanji.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libMSKanji_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libMSKanji_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libUES.a comp-c-lib compat +./usr/lib/64/i18n/libUES.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libUES_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libUES_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF1632.a comp-c-lib compat +./usr/lib/64/i18n/libUTF1632.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libUTF1632_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF1632_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF7.a comp-c-lib compat +./usr/lib/64/i18n/libUTF7.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libUTF7_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF7_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF8.a comp-c-lib compat +./usr/lib/64/i18n/libUTF8.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libUTF8_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libUTF8_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libVIQR.a comp-c-lib compat +./usr/lib/64/i18n/libVIQR.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libVIQR_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libVIQR_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libZW.a comp-c-lib compat +./usr/lib/64/i18n/libZW.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libZW_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libZW_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libiconv_none.a comp-c-lib compat +./usr/lib/64/i18n/libiconv_none.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libiconv_none_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libiconv_none_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libiconv_std.a comp-c-lib compat +./usr/lib/64/i18n/libiconv_std.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libiconv_std_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libiconv_std_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_646.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_646.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_646_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_646_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_none.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_none.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_none_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_none_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_parallel.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_parallel.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_parallel_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_parallel_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_serial.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_serial.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_serial_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_serial_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_std.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_std.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_std_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_std_pic.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_zone.a comp-c-lib compat +./usr/lib/64/i18n/libmapper_zone.so base-sys-shlib compat,pic +./usr/lib/64/i18n/libmapper_zone_p.a comp-obsolete obsolete +./usr/lib/64/i18n/libmapper_zone_pic.a comp-obsolete obsolete +./usr/lib/64/libarchive.a comp-c-lib compat +./usr/lib/64/libarchive.so base-sys-shlib compat,pic +./usr/lib/64/libarchive_p.a comp-c-proflib compat,profile +./usr/lib/64/libarchive_pic.a comp-c-piclib compat,pic +./usr/lib/64/libasn1.a comp-c-lib compat,kerberos +./usr/lib/64/libasn1.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libasn1_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libasn1_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libatf-c++.a comp-c-lib compat,atf +./usr/lib/64/libatf-c++.so base-sys-lib compat,pic,atf +./usr/lib/64/libatf-c++_p.a comp-c-proflib compat,profile,atf +./usr/lib/64/libatf-c++_pic.a comp-c-piclib compat,pic,atf +./usr/lib/64/libatf-c.a comp-c-lib compat,atf +./usr/lib/64/libatf-c.so base-sys-lib compat,pic,atf +./usr/lib/64/libatf-c_p.a comp-c-proflib compat,profile,atf +./usr/lib/64/libatf-c_pic.a comp-c-piclib compat,pic,atf +./usr/lib/64/libbfd.a comp-obsolete obsolete +./usr/lib/64/libbfd.so base-obsolete obsolete +./usr/lib/64/libbfd_p.a comp-obsolete obsolete +./usr/lib/64/libbfd_pic.a comp-obsolete obsolete +./usr/lib/64/libbind9.a comp-c-lib compat +./usr/lib/64/libbind9.so base-sys-shlib compat,pic +./usr/lib/64/libbind9_p.a comp-c-proflib compat,profile +./usr/lib/64/libbind9_pic.a comp-c-piclib compat,pic +./usr/lib/64/libbluetooth.a comp-c-lib compat +./usr/lib/64/libbluetooth.so base-sys-shlib compat,pic +./usr/lib/64/libbluetooth_p.a comp-c-proflib compat,profile +./usr/lib/64/libbluetooth_pic.a comp-c-piclib compat,pic +./usr/lib/64/libbsdmalloc.a comp-c-lib compat +./usr/lib/64/libbsdmalloc.so base-sys-shlib compat,pic +./usr/lib/64/libbsdmalloc_p.a comp-c-proflib compat,profile +./usr/lib/64/libbsdmalloc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libbz2.a comp-c-lib compat +./usr/lib/64/libbz2.so base-sys-shlib compat,pic +./usr/lib/64/libbz2_p.a comp-c-proflib compat,profile +./usr/lib/64/libbz2_pic.a comp-c-piclib compat,pic +./usr/lib/64/libc.a comp-c-lib compat +./usr/lib/64/libc.so base-sys-shlib compat,pic +./usr/lib/64/libc_p.a comp-c-proflib compat,profile +./usr/lib/64/libc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libcom_err.a comp-c-lib compat,kerberos +./usr/lib/64/libcom_err.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libcom_err_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libcom_err_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libcompat.a comp-c-lib compat +./usr/lib/64/libcompat_p.a comp-c-proflib compat,profile +./usr/lib/64/libcompat_pic.a comp-c-piclib compat,pic +./usr/lib/64/libcrypt.a comp-c-lib compat +./usr/lib/64/libcrypt.so base-sys-shlib compat,pic +./usr/lib/64/libcrypt_p.a comp-c-proflib compat,profile +./usr/lib/64/libcrypt_pic.a comp-c-piclib compat,pic +./usr/lib/64/libcrypto.a comp-c-lib compat,crypto +./usr/lib/64/libcrypto_g.a comp-c-proflib compat,crypto,debuglib +./usr/lib/64/libcrypto.so base-sys-shlib compat,crypto,pic +./usr/lib/64/libcrypto_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libcrypto_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libcrypto_idea.a comp-obsolete obsolete +./usr/lib/64/libcrypto_idea.so base-obsolete obsolete +./usr/lib/64/libcrypto_idea_g.a comp-obsolete obsolete +./usr/lib/64/libcrypto_idea_p.a comp-obsolete obsolete +./usr/lib/64/libcrypto_idea_pic.a comp-obsolete obsolete +./usr/lib/64/libcrypto_mdc2.a comp-obsolete obsolete +./usr/lib/64/libcrypto_mdc2.so base-obsolete obsolete +./usr/lib/64/libcrypto_mdc2_g.a comp-obsolete obsolete +./usr/lib/64/libcrypto_mdc2_p.a comp-obsolete obsolete +./usr/lib/64/libcrypto_mdc2_pic.a comp-obsolete obsolete +./usr/lib/64/libcrypto_rc5.a comp-c-lib crypto_rc5,compat +./usr/lib/64/libcrypto_rc5.so base-sys-shlib compat,crypto,crypto_rc5,pic +./usr/lib/64/libcrypto_rc5_g.a comp-c-proflib compat,crypto,crypto_rc5,debuglib +./usr/lib/64/libcrypto_rc5_p.a comp-c-proflib crypto_rc5,compat,profile +./usr/lib/64/libcrypto_rc5_pic.a comp-c-piclib compat,crypto,crypto_rc5,pic +./usr/lib/64/libcurses.a comp-c-lib compat +./usr/lib/64/libcurses.so base-sys-shlib compat,pic +./usr/lib/64/libcurses_p.a comp-c-proflib compat,profile +./usr/lib/64/libcurses_pic.a comp-c-piclib compat,pic +./usr/lib/64/libdes.a comp-c-lib compat,crypto +./usr/lib/64/libdes.so base-sys-shlib compat,crypto,pic +./usr/lib/64/libdes_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libdes_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libdevmapper.a comp-lvm-lib compat,lvm +./usr/lib/64/libdevmapper.so base-lvm-shlib compat,lvm,pic +./usr/lib/64/libdevmapper_g.a -unknown- compat,debuglib,lvm +./usr/lib/64/libdevmapper_p.a comp-lvm-proflib compat,profile,lvm +./usr/lib/64/libdevmapper_pic.a comp-lvm-piclib compat,pic,lvm +./usr/lib/64/libdm.a comp-c-lib compat +./usr/lib/64/libdm.so base-sys-shlib compat,pic +./usr/lib/64/libdm_g.a -unknown- compat,debuglib +./usr/lib/64/libdm_p.a comp-c-proflib compat,profile +./usr/lib/64/libdm_pic.a comp-c-piclib compat,pic +./usr/lib/64/libdns.a comp-c-lib compat +./usr/lib/64/libdns.so base-sys-shlib compat,pic +./usr/lib/64/libdns_p.a comp-c-proflib compat,profile +./usr/lib/64/libdns_pic.a comp-c-piclib compat,pic +./usr/lib/64/libdns_sd.a comp-c-lib compat,mdns +./usr/lib/64/libdns_sd.so base-mdns-shlib compat,pic,mdns +./usr/lib/64/libdns_sd_p.a comp-c-proflib compat,profile,mdns +./usr/lib/64/libdns_sd_pic.a comp-c-piclib compat,pic,mdns +./usr/lib/64/libdwarf.a comp-c-lib compat +./usr/lib/64/libdwarf.so base-sys-shlib compat,pic +./usr/lib/64/libdwarf_p.a comp-c-proflib compat,profile +./usr/lib/64/libdwarf_pic.a comp-c-piclib compat,pic +./usr/lib/64/libedit.a comp-c-lib compat +./usr/lib/64/libedit.so base-sys-shlib compat,pic +./usr/lib/64/libedit_p.a comp-c-proflib compat,profile +./usr/lib/64/libedit_pic.a comp-c-piclib compat,pic +./usr/lib/64/libelf.a comp-c-lib compat +./usr/lib/64/libelf.so base-sys-shlib compat,pic +./usr/lib/64/libelf_p.a comp-c-proflib compat,profile +./usr/lib/64/libelf_pic.a comp-c-piclib compat,pic +./usr/lib/64/libevent.a comp-c-lib compat +./usr/lib/64/libevent.so base-sys-shlib compat,pic +./usr/lib/64/libevent_p.a comp-c-proflib compat,profile +./usr/lib/64/libevent_pic.a comp-c-piclib compat,pic +./usr/lib/64/libexecinfo.a comp-c-lib compat +./usr/lib/64/libexecinfo.so base-sys-shlib compat,pic +./usr/lib/64/libexecinfo_p.a comp-c-proflib compat,profile +./usr/lib/64/libexecinfo_pic.a comp-c-piclib compat,pic +./usr/lib/64/libexpat.a comp-c-lib compat +./usr/lib/64/libexpat.so base-sys-shlib compat,pic +./usr/lib/64/libexpat_p.a comp-c-proflib compat,profile +./usr/lib/64/libexpat_pic.a comp-c-piclib compat,pic +./usr/lib/64/libfetch.a comp-c-lib compat +./usr/lib/64/libfetch.so base-sys-shlib compat,pic +./usr/lib/64/libfetch_p.a comp-c-proflib compat,profile +./usr/lib/64/libfetch_pic.a comp-c-piclib compat,pic +./usr/lib/64/libfl.a comp-c-lib compat +./usr/lib/64/libfl_p.a comp-c-proflib compat,profile +./usr/lib/64/libform.a comp-c-lib compat +./usr/lib/64/libform.so base-sys-shlib compat,pic +./usr/lib/64/libform_p.a comp-c-proflib compat,profile +./usr/lib/64/libform_pic.a comp-c-piclib compat,pic +./usr/lib/64/libgcc.a comp-c-lib compat,gcccmds +./usr/lib/64/libgcc_eh.a comp-c-lib compat,pic,gcccmds +./usr/lib/64/libgcc_eh_p.a comp-c-proflib obsolete +./usr/lib/64/libgcc_eh_pic.a comp-c-piclib obsolete +./usr/lib/64/libgcc_p.a comp-c-proflib obsolete +./usr/lib/64/libgcc_pic.a comp-c-piclib obsolete +./usr/lib/64/libgcc_s.a comp-obsolete obsolete +./usr/lib/64/libgcc_s.so base-sys-shlib compat,pic,gcccmds +./usr/lib/64/libgcc_s_p.a comp-obsolete obsolete +./usr/lib/64/libgcc_s_pic.a comp-obsolete obsolete +./usr/lib/64/libgcov.a comp-c-lib compat,gcccmds +./usr/lib/64/libgcov_p.a comp-obsolete obsolete +./usr/lib/64/libgcov_pic.a comp-obsolete obsolete +./usr/lib/64/libgmp.a comp-c-lib obsolete +./usr/lib/64/libgmp.so base-sys-shlib obsolete +./usr/lib/64/libgmp_g.a -unknown- obsolete +./usr/lib/64/libgmp_p.a comp-c-proflib obsolete +./usr/lib/64/libgmp_pic.a comp-c-piclib obsolete +./usr/lib/64/libgnumalloc.a comp-c-lib compat +./usr/lib/64/libgnumalloc.so base-sys-shlib compat,pic +./usr/lib/64/libgnumalloc_p.a comp-c-proflib compat,profile +./usr/lib/64/libgnumalloc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libgomp.a comp-c-lib compat,gcc=45,notyet +./usr/lib/64/libgomp.so base-sys-shlib compat,pic,gcc=45,notyet +./usr/lib/64/libgomp_p.a comp-c-proflib compat,profile,gcc=45,notyet +./usr/lib/64/libgomp_pic.a comp-c-piclib compat,pic,gcc=45,notyet +./usr/lib/64/libgssapi.a comp-c-lib compat,kerberos +./usr/lib/64/libgssapi.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libgssapi_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libgssapi_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libhdb.a comp-c-lib compat,kerberos +./usr/lib/64/libhdb.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libhdb_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libhdb_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libheimbase.a comp-c-lib compat,kerberos +./usr/lib/64/libheimbase.so comp-sys-shlib compat,pic,kerberos +./usr/lib/64/libheimbase_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/64/libheimbase_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libheimbase_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/64/libheimntlm.a comp-c-lib compat,kerberos +./usr/lib/64/libheimntlm.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libheimntlm_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libheimntlm_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libhx509.a comp-c-lib compat,kerberos +./usr/lib/64/libhx509.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libhx509_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libhx509_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libiberty.a comp-obsolete obsolete +./usr/lib/64/libiberty_p.a comp-obsolete obsolete +./usr/lib/64/libiberty_pic.a comp-obsolete obsolete +./usr/lib/64/libintl.a comp-c-lib compat +./usr/lib/64/libintl.so base-sys-shlib compat,pic +./usr/lib/64/libintl_p.a comp-c-proflib compat,profile +./usr/lib/64/libintl_pic.a comp-c-piclib compat,pic +./usr/lib/64/libipsec.a comp-c-lib compat +./usr/lib/64/libipsec.so base-sys-shlib compat,pic +./usr/lib/64/libipsec_p.a comp-c-proflib compat,profile +./usr/lib/64/libipsec_pic.a comp-c-piclib compat,pic +./usr/lib/64/libisc.a comp-c-lib compat +./usr/lib/64/libisc.so base-sys-shlib compat,pic +./usr/lib/64/libisc_p.a comp-c-proflib compat,profile +./usr/lib/64/libisc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libisccc.a comp-c-lib compat +./usr/lib/64/libisccc.so base-sys-shlib compat,pic +./usr/lib/64/libisccc_p.a comp-c-proflib compat,profile +./usr/lib/64/libisccc_pic.a comp-c-piclib compat,pic +./usr/lib/64/libisccfg.a comp-c-lib compat +./usr/lib/64/libisccfg.so base-sys-shlib compat,pic +./usr/lib/64/libisccfg_p.a comp-c-proflib compat,profile +./usr/lib/64/libisccfg_pic.a comp-c-piclib compat,pic +./usr/lib/64/libiscsi.a comp-c-lib compat,iscsi +./usr/lib/64/libiscsi.so base-sys-shlib compat,pic,iscsi +./usr/lib/64/libiscsi_p.a comp-c-proflib compat,profile,iscsi +./usr/lib/64/libiscsi_pic.a comp-c-piclib compat,pic,iscsi +./usr/lib/64/libisns.a comp-c-lib compat +./usr/lib/64/libisns.so comp-sys-shlib compat +./usr/lib/64/libisns_p.a comp-c-proflib compat,profile +./usr/lib/64/libisns_pic.a comp-c-piclib compat,pic +./usr/lib/64/libkadm5clnt.a comp-c-lib compat,kerberos +./usr/lib/64/libkadm5clnt.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libkadm5clnt_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkadm5clnt_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libkadm5srv.a comp-c-lib compat,kerberos +./usr/lib/64/libkadm5srv.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libkadm5srv_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkadm5srv_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libkafs.a comp-c-lib compat,kerberos +./usr/lib/64/libkafs.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libkafs_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkafs_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libkdc.a comp-c-lib compat,kerberos +./usr/lib/64/libkdc.so comp-sys-shlib compat,pic,kerberos +./usr/lib/64/libkdc_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/64/libkdc_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkdc_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/64/libkrb5.a comp-c-lib compat,kerberos +./usr/lib/64/libkrb5.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libkrb5_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libkrb5_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libkvm.a comp-c-lib compat +./usr/lib/64/libkvm.so base-sys-shlib compat,pic +./usr/lib/64/libkvm_p.a comp-c-proflib compat,profile +./usr/lib/64/libkvm_pic.a comp-c-piclib compat,pic +./usr/lib/64/libl.a comp-c-lib compat +./usr/lib/64/libl_p.a comp-c-proflib compat,profile +./usr/lib/64/libl_pic.a comp-obsolete obsolete +./usr/lib/64/liblber.a comp-c-lib compat,ldap +./usr/lib/64/liblber.so base-sys-shlib compat,pic,ldap +./usr/lib/64/liblber_p.a comp-c-proflib compat,profile,ldap +./usr/lib/64/liblber_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/64/libldap.a comp-c-lib compat,ldap +./usr/lib/64/libldap.so base-sys-shlib compat,pic,ldap +./usr/lib/64/libldap_p.a comp-c-proflib compat,profile,ldap +./usr/lib/64/libldap_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/64/libldap_r.a comp-c-lib compat,ldap +./usr/lib/64/libldap_r.so base-sys-shlib compat,pic,ldap +./usr/lib/64/libldap_r_p.a comp-c-proflib compat,profile,ldap +./usr/lib/64/libldap_r_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/64/liblua.a comp-c-lib compat +./usr/lib/64/liblua.so base-sys-shlib compat,pic +./usr/lib/64/liblua_p.a comp-c-proflib compat,profile +./usr/lib/64/liblua_pic.a comp-c-piclib compat,pic +./usr/lib/64/liblwres.a comp-c-lib compat +./usr/lib/64/liblwres.so base-sys-shlib compat,pic +./usr/lib/64/liblwres_p.a comp-c-proflib compat,profile +./usr/lib/64/liblwres_pic.a comp-c-piclib compat,pic +./usr/lib/64/liblzf.a comp-c-lib compat +./usr/lib/64/liblzf.so base-sys-shlib compat,pic +./usr/lib/64/liblzf_g.a -unknown- compat,debuglib +./usr/lib/64/liblzf_p.a comp-c-proflib compat,profile +./usr/lib/64/liblzf_pic.a comp-c-piclib compat,pic +./usr/lib/64/liblzma.a comp-c-lib compat +./usr/lib/64/liblzma.so base-sys-shlib compat,pic +./usr/lib/64/liblzma_p.a comp-c-proflib compat,profile +./usr/lib/64/liblzma_pic.a comp-c-piclib compat,pic +./usr/lib/64/libm.a comp-c-lib compat +./usr/lib/64/libm.so base-sys-shlib compat,pic +./usr/lib/64/libm_p.a comp-c-proflib compat,profile +./usr/lib/64/libm_pic.a comp-c-piclib compat,pic +./usr/lib/64/libmagic.a comp-c-lib compat +./usr/lib/64/libmagic.so base-sys-shlib compat,pic +./usr/lib/64/libmagic_p.a comp-c-proflib compat,profile +./usr/lib/64/libmagic_pic.a comp-c-piclib compat,pic +./usr/lib/64/libmenu.a comp-c-lib compat +./usr/lib/64/libmenu.so base-sys-shlib compat,pic +./usr/lib/64/libmenu_p.a comp-c-proflib compat,profile +./usr/lib/64/libmenu_pic.a comp-c-piclib compat,pic +./usr/lib/64/libmj.a comp-c-lib compat,crypto +./usr/lib/64/libmj.so comp-sys-shlib compat,crypto,pic +./usr/lib/64/libmj_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libmj_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libmpc.a comp-c-lib obsolete +./usr/lib/64/libmpc.so base-sys-shlib obsolete +./usr/lib/64/libmpc_g.a -unknown- obsolete +./usr/lib/64/libmpc_p.a comp-c-proflib obsolete +./usr/lib/64/libmpc_pic.a comp-c-piclib obsolete +./usr/lib/64/libmpfr.a comp-c-lib obsolete +./usr/lib/64/libmpfr.so base-sys-shlib obsolete +./usr/lib/64/libmpfr_g.a -unknown- obsolete +./usr/lib/64/libmpfr_p.a comp-c-proflib obsolete +./usr/lib/64/libmpfr_pic.a comp-c-piclib obsolete +./usr/lib/64/libnetpgp.a comp-c-lib compat,crypto +./usr/lib/64/libnetpgp.so comp-sys-shlib compat,crypto,pic +./usr/lib/64/libnetpgp_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libnetpgp_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libnpf.a comp-c-lib compat,npf +./usr/lib/64/libnpf.so comp-sys-shlib compat,npf,pic +./usr/lib/64/libnpf_p.a comp-c-proflib compat,npf,profile +./usr/lib/64/libnpf_pic.a comp-c-piclib compat,npf,pic +./usr/lib/64/libobjc.a comp-c-lib compat,gcccmds +./usr/lib/64/libobjc.so base-sys-shlib compat,pic,gcccmds +./usr/lib/64/libobjc_p.a comp-c-proflib compat,profile,gcccmds +./usr/lib/64/libobjc_pic.a comp-c-piclib compat,pic,gcccmds +./usr/lib/64/libopcodes.a comp-obsolete obsolete +./usr/lib/64/libopcodes.so base-obsolete obsolete +./usr/lib/64/libopcodes_p.a comp-obsolete obsolete +./usr/lib/64/libopcodes_pic.a comp-obsolete obsolete +./usr/lib/64/libossaudio.a comp-c-lib compat +./usr/lib/64/libossaudio.so base-sys-shlib compat,pic +./usr/lib/64/libossaudio_p.a comp-c-proflib compat,profile +./usr/lib/64/libossaudio_pic.a comp-c-piclib compat,pic +./usr/lib/64/libp2k.a comp-c-lib compat,rump +./usr/lib/64/libp2k.so base-sys-shlib compat,pic,rump +./usr/lib/64/libp2k_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/libp2k_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/libpam.a comp-c-lib compat +./usr/lib/64/libpam.so base-sys-shlib compat,pic +./usr/lib/64/libpam_p.a comp-obsolete obsolete +./usr/lib/64/libpam_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpcap.a comp-c-lib compat +./usr/lib/64/libpcap.so base-sys-shlib compat,pic +./usr/lib/64/libpcap_p.a comp-c-proflib compat,profile +./usr/lib/64/libpcap_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpci.a comp-c-lib compat +./usr/lib/64/libpci.so base-sys-shlib compat,pic +./usr/lib/64/libpci_p.a comp-c-proflib compat,profile +./usr/lib/64/libpci_pic.a comp-c-piclib compat,pic +./usr/lib/64/libperfuse.a comp-c-lib compat +./usr/lib/64/libperfuse.so base-sys-shlib compat,pic +./usr/lib/64/libperfuse_g.a comp-c-proflib compat,debuglib +./usr/lib/64/libperfuse_p.a comp-c-proflib compat,profile +./usr/lib/64/libperfuse_pic.a comp-c-piclib compat,pic +./usr/lib/64/libposix.a comp-c-lib compat +./usr/lib/64/libposix.so base-sys-shlib compat,pic +./usr/lib/64/libposix_p.a comp-c-proflib compat,profile +./usr/lib/64/libposix_pic.a comp-c-piclib compat,pic +./usr/lib/64/libppath.a comp-c-lib compat +./usr/lib/64/libppath.so base-sys-shlib compat,pic +./usr/lib/64/libppath_p.a comp-c-proflib compat,profile +./usr/lib/64/libppath_pic.a comp-c-piclib compat,pic +./usr/lib/64/libprop.a comp-c-lib compat +./usr/lib/64/libprop.so base-sys-shlib compat,pic +./usr/lib/64/libprop_p.a comp-c-proflib compat,profile +./usr/lib/64/libprop_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpthread.a comp-c-lib compat +./usr/lib/64/libpthread.so base-sys-shlib compat,pic +./usr/lib/64/libpthread_dbg.a comp-c-lib compat +./usr/lib/64/libpthread_dbg.so base-sys-shlib compat,pic +./usr/lib/64/libpthread_dbg_p.a comp-c-proflib compat,profile +./usr/lib/64/libpthread_dbg_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpthread_p.a comp-c-proflib compat,profile +./usr/lib/64/libpthread_pic.a comp-c-piclib compat,pic +./usr/lib/64/libpuffs.a comp-c-lib compat +./usr/lib/64/libpuffs.so base-sys-shlib compat,pic +./usr/lib/64/libpuffs_p.a comp-c-proflib compat,profile +./usr/lib/64/libpuffs_pic.a comp-c-piclib compat,pic +./usr/lib/64/libquota.a comp-c-lib compat +./usr/lib/64/libquota.so base-sys-shlib compat,pic +./usr/lib/64/libquota_p.a comp-c-proflib compat,profile +./usr/lib/64/libquota_pic.a comp-c-piclib compat,pic +./usr/lib/64/libradius.a comp-c-lib compat +./usr/lib/64/libradius.so base-sys-shlib compat,pic +./usr/lib/64/libradius_p.a comp-c-proflib compat,profile +./usr/lib/64/libradius_pic.a comp-c-piclib compat,pic +./usr/lib/64/librefuse.a comp-c-lib compat +./usr/lib/64/librefuse.so base-sys-shlib compat,pic +./usr/lib/64/librefuse_p.a comp-c-proflib compat,profile +./usr/lib/64/librefuse_pic.a comp-c-piclib compat,pic +./usr/lib/64/libresolv.a comp-c-lib compat +./usr/lib/64/libresolv.so base-sys-shlib compat,pic +./usr/lib/64/libresolv_p.a comp-c-proflib compat,profile +./usr/lib/64/libresolv_pic.a comp-c-piclib compat,pic +./usr/lib/64/librmt.a comp-c-lib compat +./usr/lib/64/librmt_p.a comp-obsolete obsolete +./usr/lib/64/librmt_pic.a comp-obsolete obsolete +./usr/lib/64/libroken.a comp-c-lib compat,kerberos +./usr/lib/64/libroken.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libroken_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libroken_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/librpcsvc.a comp-c-lib compat +./usr/lib/64/librpcsvc.so base-sys-shlib compat,pic +./usr/lib/64/librpcsvc_p.a comp-c-proflib compat,profile +./usr/lib/64/librpcsvc_pic.a comp-c-piclib compat,pic +./usr/lib/64/librt.a comp-c-lib compat +./usr/lib/64/librt.so base-sys-shlib compat,pic +./usr/lib/64/librt_p.a comp-c-proflib compat,profile +./usr/lib/64/librt_pic.a comp-c-piclib compat,pic +./usr/lib/64/librump.a comp-c-lib compat,rump +./usr/lib/64/librump.so base-sys-shlib compat,pic,rump +./usr/lib/64/librump_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librump_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpclient.a comp-c-lib compat,rump +./usr/lib/64/librumpclient.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpclient_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpclient_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpcrypto.a comp-obsolete obsolete +./usr/lib/64/librumpcrypto.so base-obsolete obsolete +./usr/lib/64/librumpcrypto_p.a comp-obsolete obsolete +./usr/lib/64/librumpcrypto_pic.a comp-obsolete obsolete +./usr/lib/64/librumpdev.a comp-c-lib compat,rump +./usr/lib/64/librumpdev.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpdev_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpdev_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumphijack.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumphijack_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpnet.a comp-c-lib compat,rump +./usr/lib/64/librumpnet.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpnet_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpnet_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpuser.a comp-c-lib compat,rump +./usr/lib/64/librumpuser.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpuser_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpuser_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/librumpvfs.a comp-c-lib compat,rump +./usr/lib/64/librumpvfs.so base-sys-shlib compat,pic,rump +./usr/lib/64/librumpvfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/librumpvfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/libsaslc.a comp-c-lib compat,crypto +./usr/lib/64/libsaslc.so base-sys-shlib compat,pic,crypto +./usr/lib/64/libsaslc_p.a comp-c-proflib compat,profile,crypto +./usr/lib/64/libsaslc_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/64/libsdp.a comp-obsolete obsolete +./usr/lib/64/libsdp.so base-obsolete obsolete +./usr/lib/64/libsdp_p.a comp-obsolete obsolete +./usr/lib/64/libsdp_pic.a comp-obsolete obsolete +./usr/lib/64/libskey.a comp-c-lib compat,skey +./usr/lib/64/libskey.so base-sys-shlib compat,pic,skey +./usr/lib/64/libskey_p.a comp-c-proflib compat,profile,skey +./usr/lib/64/libskey_pic.a comp-c-piclib compat,pic,skey +./usr/lib/64/libsl.a comp-c-lib compat,kerberos +./usr/lib/64/libsl.so base-sys-shlib compat,pic,kerberos +./usr/lib/64/libsl_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libsl_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libsqlite3.a comp-c-lib compat +./usr/lib/64/libsqlite3.so base-sys-shlib compat,pic +./usr/lib/64/libsqlite3_p.a comp-c-proflib compat,profile +./usr/lib/64/libsqlite3_pic.a comp-c-piclib compat,pic +./usr/lib/64/libss.a comp-c-lib obsolete +./usr/lib/64/libss.so base-sys-shlib obsolete +./usr/lib/64/libss_p.a comp-c-proflib obsolete +./usr/lib/64/libss_pic.a comp-c-piclib obsolete +./usr/lib/64/libssh.a comp-c-lib compat,crypto +./usr/lib/64/libssh.so base-sys-shlib compat,crypto,pic +./usr/lib/64/libssh_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libssh_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libssl.a comp-c-lib compat,crypto +./usr/lib/64/libssl.so base-sys-shlib compat,crypto,pic +./usr/lib/64/libssl_p.a comp-c-proflib compat,crypto,profile +./usr/lib/64/libssl_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/64/libstdc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/64/libstdc++.so base-sys-shlib compat,pic,cxx,gcccmds +./usr/lib/64/libstdc++_p.a comp-c-proflib compat,profile,cxx,gcccmds +./usr/lib/64/libstdc++_pic.a comp-c-piclib compat,pic,cxx,gcccmds +./usr/lib/64/libsupc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/64/libsupc++.so base-obsolete obsolete +./usr/lib/64/libsupc++_pic.a comp-obsolete obsolete +./usr/lib/64/libtermcap.a comp-c-lib compat +./usr/lib/64/libtermcap.so base-sys-shlib compat,pic +./usr/lib/64/libtermcap_p.a comp-c-proflib compat,profile +./usr/lib/64/libtermcap_pic.a comp-c-piclib compat,pic +./usr/lib/64/libterminfo.a comp-c-lib compat +./usr/lib/64/libterminfo.so base-sys-shlib compat,pic +./usr/lib/64/libterminfo_p.a comp-c-proflib compat,profile +./usr/lib/64/libterminfo_pic.a comp-c-piclib compat,pic +./usr/lib/64/libtermlib.a comp-c-lib compat +./usr/lib/64/libtermlib.so base-sys-shlib compat,pic +./usr/lib/64/libtermlib_p.a comp-c-proflib compat,profile +./usr/lib/64/libtermlib_pic.a comp-c-piclib compat,pic +./usr/lib/64/libtre.a comp-c-lib compat +./usr/lib/64/libtre.so base-sys-shlib compat,pic +./usr/lib/64/libtre_p.a comp-c-proflib compat,profile +./usr/lib/64/libtre_pic.a comp-c-piclib compat,pic +./usr/lib/64/libukfs.a comp-c-lib compat,rump +./usr/lib/64/libukfs.so base-sys-shlib compat,pic,rump +./usr/lib/64/libukfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/64/libukfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/64/libusbhid.a comp-c-lib compat +./usr/lib/64/libusbhid.so base-sys-shlib compat,pic +./usr/lib/64/libusbhid_p.a comp-c-proflib compat,profile +./usr/lib/64/libusbhid_pic.a comp-c-piclib compat,pic +./usr/lib/64/libutil.a comp-c-lib compat +./usr/lib/64/libutil.so base-sys-shlib compat,pic +./usr/lib/64/libutil_p.a comp-c-proflib compat,profile +./usr/lib/64/libutil_pic.a comp-c-piclib compat,pic +./usr/lib/64/libvers.a comp-obsolete obsolete +./usr/lib/64/libvers_p.a comp-obsolete obsolete +./usr/lib/64/libvers_pic.a comp-obsolete obsolete +./usr/lib/64/libwind.a comp-c-lib compat,kerberos +./usr/lib/64/libwind.so comp-sys-shlib compat,pic,kerberos +./usr/lib/64/libwind_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/64/libwind_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/64/libwind_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/64/libwrap.a comp-c-lib compat +./usr/lib/64/libwrap.so base-sys-shlib compat,pic +./usr/lib/64/libwrap_p.a comp-c-proflib compat,profile +./usr/lib/64/libwrap_pic.a comp-c-piclib compat,pic +./usr/lib/64/liby.a comp-c-lib compat +./usr/lib/64/liby_p.a comp-c-proflib compat,profile +./usr/lib/64/liby_pic.a comp-obsolete obsolete +./usr/lib/64/libz.a comp-c-lib compat +./usr/lib/64/libz.so base-sys-shlib compat,pic +./usr/lib/64/libz_p.a comp-c-proflib compat,profile +./usr/lib/64/libz_pic.a comp-c-piclib compat,pic +./usr/lib/o32/crt0.o comp-c-lib compat +./usr/lib/o32/crtbegin.o comp-c-lib compat +./usr/lib/o32/crtbeginS.o comp-c-lib compat,pic +./usr/lib/o32/crtbeginT.o comp-c-lib compat,pic +./usr/lib/o32/crtend.o comp-c-lib compat +./usr/lib/o32/crtendS.o comp-c-lib compat,pic +./usr/lib/o32/crti.o comp-c-lib compat +./usr/lib/o32/crtn.o comp-c-lib compat +./usr/lib/o32/gcrt0.o comp-c-lib compat +./usr/lib/o32/i18n/libBIG5.a comp-c-lib compat +./usr/lib/o32/i18n/libBIG5.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libBIG5_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libBIG5_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libDECHanyu.a comp-c-lib compat +./usr/lib/o32/i18n/libDECHanyu.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libDECHanyu_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libDECHanyu_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libEUC.a comp-c-lib compat +./usr/lib/o32/i18n/libEUC.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libEUCTW.a comp-c-lib compat +./usr/lib/o32/i18n/libEUCTW.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libEUCTW_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libEUCTW_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libEUC_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libEUC_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libGBK2K.a comp-c-lib compat +./usr/lib/o32/i18n/libGBK2K.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libGBK2K_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libGBK2K_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libHZ.a comp-c-lib compat +./usr/lib/o32/i18n/libHZ.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libHZ_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libHZ_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libISO2022.a comp-c-lib compat +./usr/lib/o32/i18n/libISO2022.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libISO2022_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libISO2022_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libJOHAB.a comp-c-lib compat +./usr/lib/o32/i18n/libJOHAB.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libJOHAB_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libJOHAB_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libMSKanji.a comp-c-lib compat +./usr/lib/o32/i18n/libMSKanji.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libMSKanji_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libMSKanji_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUES.a comp-c-lib compat +./usr/lib/o32/i18n/libUES.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libUES_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUES_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF1632.a comp-c-lib compat +./usr/lib/o32/i18n/libUTF1632.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libUTF1632_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF1632_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF7.a comp-c-lib compat +./usr/lib/o32/i18n/libUTF7.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libUTF7_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF7_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF8.a comp-c-lib compat +./usr/lib/o32/i18n/libUTF8.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libUTF8_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libUTF8_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libVIQR.a comp-c-lib compat +./usr/lib/o32/i18n/libVIQR.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libVIQR_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libVIQR_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libZW.a comp-c-lib compat +./usr/lib/o32/i18n/libZW.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libZW_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libZW_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libiconv_none.a comp-c-lib compat +./usr/lib/o32/i18n/libiconv_none.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libiconv_none_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libiconv_none_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libiconv_std.a comp-c-lib compat +./usr/lib/o32/i18n/libiconv_std.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libiconv_std_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libiconv_std_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_646.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_646.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_646_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_646_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_none.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_none.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_none_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_none_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_parallel.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_parallel.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_parallel_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_parallel_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_serial.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_serial.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_serial_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_serial_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_std.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_std.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_std_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_std_pic.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_zone.a comp-c-lib compat +./usr/lib/o32/i18n/libmapper_zone.so base-sys-shlib compat,pic +./usr/lib/o32/i18n/libmapper_zone_p.a comp-obsolete obsolete +./usr/lib/o32/i18n/libmapper_zone_pic.a comp-obsolete obsolete +./usr/lib/o32/libarchive.a comp-c-lib compat +./usr/lib/o32/libarchive.so base-sys-shlib compat,pic +./usr/lib/o32/libarchive_p.a comp-c-proflib compat,profile +./usr/lib/o32/libarchive_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libasn1.a comp-c-lib compat,kerberos +./usr/lib/o32/libasn1.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libasn1_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libasn1_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libatf-c++.a comp-c-lib compat,atf +./usr/lib/o32/libatf-c++.so base-sys-lib compat,pic,atf +./usr/lib/o32/libatf-c++_p.a comp-c-proflib compat,profile,atf +./usr/lib/o32/libatf-c++_pic.a comp-c-piclib compat,pic,atf +./usr/lib/o32/libatf-c.a comp-c-lib compat,atf +./usr/lib/o32/libatf-c.so base-sys-lib compat,pic,atf +./usr/lib/o32/libatf-c_p.a comp-c-proflib compat,profile,atf +./usr/lib/o32/libatf-c_pic.a comp-c-piclib compat,pic,atf +./usr/lib/o32/libbfd.a comp-obsolete obsolete +./usr/lib/o32/libbfd.so base-obsolete obsolete +./usr/lib/o32/libbfd_p.a comp-obsolete obsolete +./usr/lib/o32/libbfd_pic.a comp-obsolete obsolete +./usr/lib/o32/libbind9.a comp-c-lib compat +./usr/lib/o32/libbind9.so base-sys-shlib compat,pic +./usr/lib/o32/libbind9_p.a comp-c-proflib compat,profile +./usr/lib/o32/libbind9_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libbluetooth.a comp-c-lib compat +./usr/lib/o32/libbluetooth.so base-sys-shlib compat,pic +./usr/lib/o32/libbluetooth_p.a comp-c-proflib compat,profile +./usr/lib/o32/libbluetooth_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libbsdmalloc.a comp-c-lib compat +./usr/lib/o32/libbsdmalloc.so base-sys-shlib compat,pic +./usr/lib/o32/libbsdmalloc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libbsdmalloc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libbz2.a comp-c-lib compat +./usr/lib/o32/libbz2.so base-sys-shlib compat,pic +./usr/lib/o32/libbz2_p.a comp-c-proflib compat,profile +./usr/lib/o32/libbz2_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libc.a comp-c-lib compat +./usr/lib/o32/libc.so base-sys-shlib compat,pic +./usr/lib/o32/libc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libcom_err.a comp-c-lib compat,kerberos +./usr/lib/o32/libcom_err.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libcom_err_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libcom_err_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libcompat.a comp-c-lib compat +./usr/lib/o32/libcompat_p.a comp-c-proflib compat,profile +./usr/lib/o32/libcompat_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libcrypt.a comp-c-lib compat +./usr/lib/o32/libcrypt.so base-sys-shlib compat,pic +./usr/lib/o32/libcrypt_p.a comp-c-proflib compat,profile +./usr/lib/o32/libcrypt_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libcrypto.a comp-c-lib compat,crypto +./usr/lib/o32/libcrypto.so base-sys-shlib compat,crypto,pic +./usr/lib/o32/libcrypto_idea.a comp-obsolete obsolete +./usr/lib/o32/libcrypto_idea_p.a comp-obsolete obsolete +./usr/lib/o32/libcrypto_mdc2.a comp-obsolete obsolete +./usr/lib/o32/libcrypto_mdc2_p.a comp-obsolete obsolete +./usr/lib/o32/libcrypto_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libcrypto_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libcrypto_rc5.a comp-c-lib crypto_rc5,compat +./usr/lib/o32/libcrypto_rc5_p.a comp-c-proflib crypto_rc5,compat,profile +./usr/lib/o32/libcurses.a comp-c-lib compat +./usr/lib/o32/libcurses.so base-sys-shlib compat,pic +./usr/lib/o32/libcurses_p.a comp-c-proflib compat,profile +./usr/lib/o32/libcurses_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libdes.a comp-c-lib compat,crypto +./usr/lib/o32/libdes.so base-sys-shlib compat,crypto,pic +./usr/lib/o32/libdes_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libdes_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libdevmapper.a comp-lvm-lib compat,lvm +./usr/lib/o32/libdevmapper.so base-lvm-shlib compat,lvm,pic +./usr/lib/o32/libdevmapper_g.a -unknown- compat,debuglib,lvm +./usr/lib/o32/libdevmapper_p.a comp-lvm-proflib compat,profile,lvm +./usr/lib/o32/libdevmapper_pic.a comp-lvm-piclib compat,pic,lvm +./usr/lib/o32/libdm.a comp-c-lib compat +./usr/lib/o32/libdm.so base-sys-shlib compat,pic +./usr/lib/o32/libdm_g.a -unknown- compat,debuglib +./usr/lib/o32/libdm_p.a comp-c-proflib compat,profile +./usr/lib/o32/libdm_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libdns.a comp-c-lib compat +./usr/lib/o32/libdns.so base-sys-shlib compat,pic +./usr/lib/o32/libdns_p.a comp-c-proflib compat,profile +./usr/lib/o32/libdns_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libdns_sd.a comp-c-lib compat,mdns +./usr/lib/o32/libdns_sd.so base-mdns-shlib compat,pic,mdns +./usr/lib/o32/libdns_sd_p.a comp-c-proflib compat,profile,mdns +./usr/lib/o32/libdns_sd_pic.a comp-c-piclib compat,pic,mdns +./usr/lib/o32/libdwarf.a comp-c-lib compat +./usr/lib/o32/libdwarf.so base-sys-shlib compat,pic +./usr/lib/o32/libdwarf_p.a comp-c-proflib compat,profile +./usr/lib/o32/libdwarf_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libedit.a comp-c-lib compat +./usr/lib/o32/libedit.so base-sys-shlib compat,pic +./usr/lib/o32/libedit_p.a comp-c-proflib compat,profile +./usr/lib/o32/libedit_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libelf.a comp-c-lib compat +./usr/lib/o32/libelf.so base-sys-shlib compat,pic +./usr/lib/o32/libelf_p.a comp-c-proflib compat,profile +./usr/lib/o32/libelf_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libevent.a comp-c-lib compat +./usr/lib/o32/libevent.so base-sys-shlib compat,pic +./usr/lib/o32/libevent_p.a comp-c-proflib compat,profile +./usr/lib/o32/libevent_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libexecinfo.a comp-c-lib compat +./usr/lib/o32/libexecinfo.so base-sys-shlib compat,pic +./usr/lib/o32/libexecinfo_p.a comp-c-proflib compat,profile +./usr/lib/o32/libexecinfo_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libexpat.a comp-c-lib compat +./usr/lib/o32/libexpat.so base-sys-shlib compat,pic +./usr/lib/o32/libexpat_p.a comp-c-proflib compat,profile +./usr/lib/o32/libexpat_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libfetch.a comp-c-lib compat +./usr/lib/o32/libfetch.so base-sys-shlib compat,pic +./usr/lib/o32/libfetch_p.a comp-c-proflib compat,profile +./usr/lib/o32/libfetch_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libfl.a comp-c-lib compat +./usr/lib/o32/libfl_p.a comp-c-proflib compat,profile +./usr/lib/o32/libform.a comp-c-lib compat +./usr/lib/o32/libform.so base-sys-shlib compat,pic +./usr/lib/o32/libform_p.a comp-c-proflib compat,profile +./usr/lib/o32/libform_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libgcc.a comp-c-lib compat +./usr/lib/o32/libgcc_eh.a comp-c-lib compat,pic +./usr/lib/o32/libgcc_eh_p.a comp-c-proflib obsolete +./usr/lib/o32/libgcc_eh_pic.a comp-c-piclib obsolete +./usr/lib/o32/libgcc_p.a comp-c-proflib obsolete +./usr/lib/o32/libgcc_pic.a comp-c-piclib obsolete +./usr/lib/o32/libgcc_s.a comp-obsolete obsolete +./usr/lib/o32/libgcc_s.so base-sys-shlib compat,pic +./usr/lib/o32/libgcc_s_p.a comp-obsolete obsolete +./usr/lib/o32/libgcc_s_pic.a comp-obsolete obsolete +./usr/lib/o32/libgcov.a comp-c-lib compat,gcccmds +./usr/lib/o32/libgcov_p.a comp-obsolete obsolete +./usr/lib/o32/libgcov_pic.a comp-obsolete obsolete +./usr/lib/o32/libgmp.a comp-c-lib obsolete +./usr/lib/o32/libgmp.so base-sys-shlib obsolete +./usr/lib/o32/libgmp_g.a -unknown- obsolete +./usr/lib/o32/libgmp_p.a comp-c-proflib obsolete +./usr/lib/o32/libgmp_pic.a comp-c-piclib obsolete +./usr/lib/o32/libgnumalloc.a comp-c-lib compat +./usr/lib/o32/libgnumalloc.so base-sys-shlib compat,pic +./usr/lib/o32/libgnumalloc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libgnumalloc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libgomp.a comp-c-lib compat,gcc=45 +./usr/lib/o32/libgomp.so base-sys-shlib compat,pic,gcc=45 +./usr/lib/o32/libgomp_p.a comp-c-proflib compat,profile,gcc=45 +./usr/lib/o32/libgomp_pic.a comp-c-piclib compat,pic,gcc=45 +./usr/lib/o32/libgssapi.a comp-c-lib compat,kerberos +./usr/lib/o32/libgssapi.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libgssapi_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libgssapi_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libhdb.a comp-c-lib compat,kerberos +./usr/lib/o32/libhdb.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libhdb_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libhdb_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libheimbase.a comp-c-lib compat,kerberos +./usr/lib/o32/libheimbase.so comp-sys-shlib compat,pic,kerberos +./usr/lib/o32/libheimbase_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/o32/libheimbase_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libheimbase_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/o32/libheimntlm.a comp-c-lib compat,kerberos +./usr/lib/o32/libheimntlm.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libheimntlm_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libheimntlm_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libhx509.a comp-c-lib compat,kerberos +./usr/lib/o32/libhx509.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libhx509_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libhx509_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libiberty.a comp-obsolete obsolete +./usr/lib/o32/libiberty_p.a comp-obsolete obsolete +./usr/lib/o32/libiberty_pic.a comp-obsolete obsolete +./usr/lib/o32/libintl.a comp-c-lib compat +./usr/lib/o32/libintl.so base-sys-shlib compat,pic +./usr/lib/o32/libintl_p.a comp-c-proflib compat,profile +./usr/lib/o32/libintl_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libipsec.a comp-c-lib compat +./usr/lib/o32/libipsec.so base-sys-shlib compat,pic +./usr/lib/o32/libipsec_p.a comp-c-proflib compat,profile +./usr/lib/o32/libipsec_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libisc.a comp-c-lib compat +./usr/lib/o32/libisc.so base-sys-shlib compat,pic +./usr/lib/o32/libisc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libisc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libisccc.a comp-c-lib compat +./usr/lib/o32/libisccc.so base-sys-shlib compat,pic +./usr/lib/o32/libisccc_p.a comp-c-proflib compat,profile +./usr/lib/o32/libisccc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libisccfg.a comp-c-lib compat +./usr/lib/o32/libisccfg.so base-sys-shlib compat,pic +./usr/lib/o32/libisccfg_p.a comp-c-proflib compat,profile +./usr/lib/o32/libisccfg_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libiscsi.a comp-c-lib compat,iscsi +./usr/lib/o32/libiscsi.so base-sys-shlib compat,pic,iscsi +./usr/lib/o32/libiscsi_p.a comp-c-proflib compat,profile,iscsi +./usr/lib/o32/libiscsi_pic.a comp-c-piclib compat,pic,iscsi +./usr/lib/o32/libisns.a comp-c-lib compat +./usr/lib/o32/libisns.so comp-sys-shlib compat +./usr/lib/o32/libisns_p.a comp-c-proflib compat,profile +./usr/lib/o32/libisns_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libkadm5clnt.a comp-c-lib compat,kerberos +./usr/lib/o32/libkadm5clnt.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkadm5clnt_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkadm5clnt_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libkadm5srv.a comp-c-lib compat,kerberos +./usr/lib/o32/libkadm5srv.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkadm5srv_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkadm5srv_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libkafs.a comp-c-lib compat,kerberos +./usr/lib/o32/libkafs.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkafs_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkafs_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libkdc.a comp-c-lib compat,kerberos +./usr/lib/o32/libkdc.so comp-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkdc_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/o32/libkdc_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkdc_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/o32/libkrb5.a comp-c-lib compat,kerberos +./usr/lib/o32/libkrb5.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libkrb5_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libkrb5_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libkvm.a comp-c-lib compat +./usr/lib/o32/libkvm.so base-sys-shlib compat,pic +./usr/lib/o32/libkvm_p.a comp-c-proflib compat,profile +./usr/lib/o32/libkvm_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libl.a comp-c-lib compat +./usr/lib/o32/libl_p.a comp-c-proflib compat,profile +./usr/lib/o32/libl_pic.a comp-obsolete obsolete +./usr/lib/o32/liblber.a comp-c-lib compat,ldap +./usr/lib/o32/liblber.so base-sys-shlib compat,pic,ldap +./usr/lib/o32/liblber_p.a comp-c-proflib compat,profile,ldap +./usr/lib/o32/liblber_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/o32/libldap.a comp-c-lib compat,ldap +./usr/lib/o32/libldap.so base-sys-shlib compat,pic,ldap +./usr/lib/o32/libldap_p.a comp-c-proflib compat,profile,ldap +./usr/lib/o32/libldap_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/o32/libldap_r.a comp-c-lib compat,ldap +./usr/lib/o32/libldap_r.so base-sys-shlib compat,pic,ldap +./usr/lib/o32/libldap_r_p.a comp-c-proflib compat,profile,ldap +./usr/lib/o32/libldap_r_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/o32/liblua.a comp-c-lib compat +./usr/lib/o32/liblua.so base-sys-shlib compat,pic +./usr/lib/o32/liblua_p.a comp-c-proflib compat,profile +./usr/lib/o32/liblua_pic.a comp-c-piclib compat,pic +./usr/lib/o32/liblwres.a comp-c-lib compat +./usr/lib/o32/liblwres.so base-sys-shlib compat,pic +./usr/lib/o32/liblwres_p.a comp-c-proflib compat,profile +./usr/lib/o32/liblwres_pic.a comp-c-piclib compat,pic +./usr/lib/o32/liblzf.a comp-c-lib compat +./usr/lib/o32/liblzf.so base-sys-shlib compat,pic +./usr/lib/o32/liblzf_g.a -unknown- compat,debuglib +./usr/lib/o32/liblzf_p.a comp-c-proflib compat,profile +./usr/lib/o32/liblzf_pic.a comp-c-piclib compat,pic +./usr/lib/o32/liblzma.a comp-c-lib compat +./usr/lib/o32/liblzma.so base-sys-shlib compat,pic +./usr/lib/o32/liblzma_p.a comp-c-proflib compat,profile +./usr/lib/o32/liblzma_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libm.a comp-c-lib compat +./usr/lib/o32/libm.so base-sys-shlib compat,pic +./usr/lib/o32/libm_p.a comp-c-proflib compat,profile +./usr/lib/o32/libm_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libmagic.a comp-c-lib compat +./usr/lib/o32/libmagic.so base-sys-shlib compat,pic +./usr/lib/o32/libmagic_p.a comp-c-proflib compat,profile +./usr/lib/o32/libmagic_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libmenu.a comp-c-lib compat +./usr/lib/o32/libmenu.so base-sys-shlib compat,pic +./usr/lib/o32/libmenu_p.a comp-c-proflib compat,profile +./usr/lib/o32/libmenu_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libmj.a comp-c-lib compat,crypto +./usr/lib/o32/libmj.so comp-sys-shlib compat,crypto,pic +./usr/lib/o32/libmj_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libmj_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libmpc.a comp-c-lib obsolete +./usr/lib/o32/libmpc.so base-sys-shlib obsolete +./usr/lib/o32/libmpc_g.a -unknown- obsolete +./usr/lib/o32/libmpc_p.a comp-c-proflib obsolete +./usr/lib/o32/libmpc_pic.a comp-c-piclib obsolete +./usr/lib/o32/libmpfr.a comp-c-lib obsolete +./usr/lib/o32/libmpfr.so base-sys-shlib obsolete +./usr/lib/o32/libmpfr_g.a -unknown- obsolete +./usr/lib/o32/libmpfr_p.a comp-c-proflib obsolete +./usr/lib/o32/libmpfr_pic.a comp-c-piclib obsolete +./usr/lib/o32/libnetpgp.a comp-c-lib compat,crypto +./usr/lib/o32/libnetpgp.so comp-sys-shlib compat,crypto,pic +./usr/lib/o32/libnetpgp_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libnetpgp_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libnpf.a comp-c-lib compat,npf +./usr/lib/o32/libnpf.so comp-sys-shlib compat,npf,pic +./usr/lib/o32/libnpf_p.a comp-c-proflib compat,npf,profile +./usr/lib/o32/libnpf_pic.a comp-c-piclib compat,npf,pic +./usr/lib/o32/libobjc.a comp-c-lib compat,gcccmds +./usr/lib/o32/libobjc.so base-sys-shlib compat,pic,gcccmds +./usr/lib/o32/libobjc_p.a comp-c-proflib compat,profile,gcccmds +./usr/lib/o32/libobjc_pic.a comp-c-piclib compat,pic,gcccmds +./usr/lib/o32/libopcodes.a comp-obsolete obsolete +./usr/lib/o32/libopcodes.so base-obsolete obsolete +./usr/lib/o32/libopcodes_p.a comp-obsolete obsolete +./usr/lib/o32/libopcodes_pic.a comp-obsolete obsolete +./usr/lib/o32/libossaudio.a comp-c-lib compat +./usr/lib/o32/libossaudio.so base-sys-shlib compat,pic +./usr/lib/o32/libossaudio_p.a comp-c-proflib compat,profile +./usr/lib/o32/libossaudio_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libp2k.a comp-c-lib compat,rump +./usr/lib/o32/libp2k.so base-sys-shlib compat,pic,rump +./usr/lib/o32/libp2k_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/libp2k_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/libpam.a comp-c-lib compat +./usr/lib/o32/libpam.so base-sys-shlib compat,pic +./usr/lib/o32/libpam_p.a comp-obsolete obsolete +./usr/lib/o32/libpam_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpcap.a comp-c-lib compat +./usr/lib/o32/libpcap.so base-sys-shlib compat,pic +./usr/lib/o32/libpcap_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpcap_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpci.a comp-c-lib compat +./usr/lib/o32/libpci.so base-sys-shlib compat,pic +./usr/lib/o32/libpci_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpci_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libperfuse.a comp-c-lib compat +./usr/lib/o32/libperfuse.so base-sys-shlib compat,pic +./usr/lib/o32/libperfuse_g.a comp-c-proflib compat,debuglib +./usr/lib/o32/libperfuse_p.a comp-c-proflib compat,profile +./usr/lib/o32/libperfuse_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libposix.a comp-c-lib compat +./usr/lib/o32/libposix.so base-sys-shlib compat,pic +./usr/lib/o32/libposix_p.a comp-c-proflib compat,profile +./usr/lib/o32/libposix_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libppath.a comp-c-lib compat +./usr/lib/o32/libppath.so base-sys-shlib compat,pic +./usr/lib/o32/libppath_p.a comp-c-proflib compat,profile +./usr/lib/o32/libppath_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libprop.a comp-c-lib compat +./usr/lib/o32/libprop.so base-sys-shlib compat,pic +./usr/lib/o32/libprop_p.a comp-c-proflib compat,profile +./usr/lib/o32/libprop_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpthread.a comp-c-lib compat +./usr/lib/o32/libpthread.so base-sys-shlib compat,pic +./usr/lib/o32/libpthread_dbg.a comp-c-lib compat +./usr/lib/o32/libpthread_dbg.so base-sys-shlib compat,pic +./usr/lib/o32/libpthread_dbg_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpthread_dbg_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpthread_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpthread_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libpuffs.a comp-c-lib compat +./usr/lib/o32/libpuffs.so base-sys-shlib compat,pic +./usr/lib/o32/libpuffs_p.a comp-c-proflib compat,profile +./usr/lib/o32/libpuffs_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libquota.a comp-c-lib compat +./usr/lib/o32/libquota.so base-sys-shlib compat,pic +./usr/lib/o32/libquota_p.a comp-c-proflib compat,profile +./usr/lib/o32/libquota_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libradius.a comp-c-lib compat +./usr/lib/o32/libradius.so base-sys-shlib compat,pic +./usr/lib/o32/libradius_p.a comp-c-proflib compat,profile +./usr/lib/o32/libradius_pic.a comp-c-piclib compat,pic +./usr/lib/o32/librefuse.a comp-c-lib compat +./usr/lib/o32/librefuse.so base-sys-shlib compat,pic +./usr/lib/o32/librefuse_p.a comp-c-proflib compat,profile +./usr/lib/o32/librefuse_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libresolv.a comp-c-lib compat +./usr/lib/o32/libresolv.so base-sys-shlib compat,pic +./usr/lib/o32/libresolv_p.a comp-c-proflib compat,profile +./usr/lib/o32/libresolv_pic.a comp-c-piclib compat,pic +./usr/lib/o32/librmt.a comp-c-lib compat +./usr/lib/o32/librmt_p.a comp-obsolete obsolete +./usr/lib/o32/librmt_pic.a comp-obsolete obsolete +./usr/lib/o32/libroken.a comp-c-lib compat,kerberos +./usr/lib/o32/libroken.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libroken_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libroken_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/librpcsvc.a comp-c-lib compat +./usr/lib/o32/librpcsvc.so base-sys-shlib compat,pic +./usr/lib/o32/librpcsvc_p.a comp-c-proflib compat,profile +./usr/lib/o32/librpcsvc_pic.a comp-c-piclib compat,pic +./usr/lib/o32/librt.a comp-c-lib compat +./usr/lib/o32/librt.so base-sys-shlib compat,pic +./usr/lib/o32/librt_p.a comp-c-proflib compat,profile +./usr/lib/o32/librt_pic.a comp-c-piclib compat,pic +./usr/lib/o32/librump.a comp-c-lib compat,rump +./usr/lib/o32/librump.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librump_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librump_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpclient.a comp-c-lib compat,rump +./usr/lib/o32/librumpclient.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpclient_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpclient_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpcrypto.a comp-obsolete obsolete +./usr/lib/o32/librumpcrypto.so base-obsolete obsolete +./usr/lib/o32/librumpcrypto_p.a comp-obsolete obsolete +./usr/lib/o32/librumpcrypto_pic.a comp-obsolete obsolete +./usr/lib/o32/librumpdev.a comp-c-lib compat,rump +./usr/lib/o32/librumpdev.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpdev_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpdev_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumphijack.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumphijack_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpnet.a comp-c-lib compat,rump +./usr/lib/o32/librumpnet.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpnet_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpnet_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpuser.a comp-c-lib compat,rump +./usr/lib/o32/librumpuser.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpuser_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpuser_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/librumpvfs.a comp-c-lib compat,rump +./usr/lib/o32/librumpvfs.so base-sys-shlib compat,pic,rump +./usr/lib/o32/librumpvfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/librumpvfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/libsaslc.a comp-c-lib compat,crypto +./usr/lib/o32/libsaslc.so base-sys-shlib compat,pic,crypto +./usr/lib/o32/libsaslc_p.a comp-c-proflib compat,profile,crypto +./usr/lib/o32/libsaslc_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/o32/libsdp.a comp-obsolete obsolete +./usr/lib/o32/libsdp.so base-obsolete obsolete +./usr/lib/o32/libsdp_p.a comp-obsolete obsolete +./usr/lib/o32/libsdp_pic.a comp-obsolete obsolete +./usr/lib/o32/libskey.a comp-c-lib compat,skey +./usr/lib/o32/libskey.so base-sys-shlib compat,pic,skey +./usr/lib/o32/libskey_p.a comp-c-proflib compat,profile,skey +./usr/lib/o32/libskey_pic.a comp-c-piclib compat,pic,skey +./usr/lib/o32/libsl.a comp-c-lib compat,kerberos +./usr/lib/o32/libsl.so base-sys-shlib compat,pic,kerberos +./usr/lib/o32/libsl_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libsl_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libsqlite3.a comp-c-lib compat +./usr/lib/o32/libsqlite3.so base-sys-shlib compat,pic +./usr/lib/o32/libsqlite3_p.a comp-c-proflib compat,profile +./usr/lib/o32/libsqlite3_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libss.a comp-c-lib obsolete +./usr/lib/o32/libss.so base-sys-shlib obsolete +./usr/lib/o32/libss_p.a comp-c-proflib obsolete +./usr/lib/o32/libss_pic.a comp-c-piclib obsolete +./usr/lib/o32/libssh.a comp-c-lib compat,crypto +./usr/lib/o32/libssh.so base-sys-shlib compat,crypto,pic +./usr/lib/o32/libssh_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libssh_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libssl.a comp-c-lib compat,crypto +./usr/lib/o32/libssl.so base-sys-shlib compat,crypto,pic +./usr/lib/o32/libssl_p.a comp-c-proflib compat,crypto,profile +./usr/lib/o32/libssl_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/o32/libstdc++.a comp-c-lib compat,cxx +./usr/lib/o32/libstdc++.so base-sys-shlib compat,pic,cxx +./usr/lib/o32/libstdc++_p.a comp-c-proflib compat,profile,cxx +./usr/lib/o32/libstdc++_pic.a comp-c-piclib compat,pic,cxx +./usr/lib/o32/libsupc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/o32/libsupc++.so base-obsolete obsolete +./usr/lib/o32/libsupc++_pic.a comp-obsolete obsolete +./usr/lib/o32/libtermcap.a comp-c-lib compat +./usr/lib/o32/libtermcap.so base-sys-shlib compat,pic +./usr/lib/o32/libtermcap_p.a comp-c-proflib compat,profile +./usr/lib/o32/libtermcap_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libterminfo.a comp-c-lib compat +./usr/lib/o32/libterminfo.so base-sys-shlib compat,pic +./usr/lib/o32/libterminfo_p.a comp-c-proflib compat,profile +./usr/lib/o32/libterminfo_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libtermlib.a comp-c-lib compat +./usr/lib/o32/libtermlib.so base-sys-shlib compat,pic +./usr/lib/o32/libtermlib_p.a comp-c-proflib compat,profile +./usr/lib/o32/libtermlib_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libtre.a comp-c-lib compat +./usr/lib/o32/libtre.so base-sys-shlib compat,pic +./usr/lib/o32/libtre_p.a comp-c-proflib compat,profile +./usr/lib/o32/libtre_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libukfs.a comp-c-lib compat,rump +./usr/lib/o32/libukfs.so base-sys-shlib compat,pic,rump +./usr/lib/o32/libukfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/o32/libukfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/o32/libusbhid.a comp-c-lib compat +./usr/lib/o32/libusbhid.so base-sys-shlib compat,pic +./usr/lib/o32/libusbhid_p.a comp-c-proflib compat,profile +./usr/lib/o32/libusbhid_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libutil.a comp-c-lib compat +./usr/lib/o32/libutil.so base-sys-shlib compat,pic +./usr/lib/o32/libutil_p.a comp-c-proflib compat,profile +./usr/lib/o32/libutil_pic.a comp-c-piclib compat,pic +./usr/lib/o32/libvers.a comp-obsolete obsolete +./usr/lib/o32/libvers_p.a comp-obsolete obsolete +./usr/lib/o32/libvers_pic.a comp-obsolete obsolete +./usr/lib/o32/libwind.a comp-c-lib compat,kerberos +./usr/lib/o32/libwind.so comp-sys-shlib compat,pic,kerberos +./usr/lib/o32/libwind_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/o32/libwind_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/o32/libwind_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/o32/libwrap.a comp-c-lib compat +./usr/lib/o32/libwrap.so base-sys-shlib compat,pic +./usr/lib/o32/libwrap_p.a comp-c-proflib compat,profile +./usr/lib/o32/libwrap_pic.a comp-c-piclib compat,pic +./usr/lib/o32/liby.a comp-c-lib compat +./usr/lib/o32/liby_p.a comp-c-proflib compat,profile +./usr/lib/o32/liby_pic.a comp-obsolete obsolete +./usr/lib/o32/libz.a comp-c-lib compat +./usr/lib/o32/libz.so base-sys-shlib compat,pic +./usr/lib/o32/libz_p.a comp-c-proflib compat,profile +./usr/lib/o32/libz_pic.a comp-c-piclib compat,pic +./usr/libdata/debug/usr/bin/elf2aout.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/elf2ecoff.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/lib/64/i18n/libBIG5.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libDECHanyu.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libEUC.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libEUCTW.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libGBK2K.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libHZ.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libISO2022.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libJOHAB.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libMSKanji.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libUES.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libUTF1632.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libUTF7.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libUTF8.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libVIQR.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libZW.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libiconv_none.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libiconv_std.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_646.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_none.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_parallel.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_serial.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_std.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/i18n/libmapper_zone.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/64/libamu.so.4.0.debug comp-amd-debug debug,compat +./usr/libdata/debug/usr/lib/64/libarchive.so.3.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libasn1.so.8.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libasn1.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libatf-c.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/64/libatf-c++.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/64/libavl.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libbfd.so.12.0.debug comp-sys-debug binutils,debug,compat +./usr/libdata/debug/usr/lib/64/libbind9.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libbluetooth.so.4.2.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libbsdmalloc.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libbz2.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libc.so.12.185.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libcom_err.so.6.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libcom_err.so.7.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libcrypt.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libcrypto.so.8.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libctf.so.2.0.debug comp-sys-debug dtrace,debug,compat +./usr/libdata/debug/usr/lib/64/libcurses.so.7.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libdes.so.8.1.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libdevmapper.so.1.0.debug comp-lvm-debug lvm,debug,compat +./usr/libdata/debug/usr/lib/64/libdm.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libdns.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libdns_sd.so.0.0.debug comp-mdns-debug mdns,debug,compat +./usr/libdata/debug/usr/lib/64/libdtrace.so.2.0.debug comp-sys-debug dtrace,debug,compat +./usr/libdata/debug/usr/lib/64/libdwarf.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libedit.so.3.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libelf.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libevent.so.3.2.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libexecinfo.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libexpat.so.2.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libfetch.so.3.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libform.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libg2c.so.2.0.debug comp-sys-debug gcc=3,debug,compat +./usr/libdata/debug/usr/lib/64/libgcc_s.so.1.0.debug comp-sys-debug gcc,debug,compat +./usr/libdata/debug/usr/lib/64/libgmp.so.10.2.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/64/libgnumalloc.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libgomp.so.1.0.debug comp-sys-debug debug,compat,gcc=45,notyet +./usr/libdata/debug/usr/lib/64/libgssapi.so.10.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libgssapi.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libhdb.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libhdb.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libheimbase.so.1.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libheimntlm.so.3.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libheimntlm.so.4.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libhx509.so.5.0.debug comp-krb5-debug kerberos,debug,compat +./usr/libdata/debug/usr/lib/64/libintl.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libipsec.so.3.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/libisc.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libisccc.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libisccfg.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/libiscsi.so.2.0.debug comp-iscsi-debug iscsi,debug,compat +./usr/libdata/debug/usr/lib/64/libisns.so.0.0.debug comp-isns-debug debug,compat +./usr/libdata/debug/usr/lib/64/libkadm5clnt.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libkadm5clnt.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkadm5srv.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libkadm5srv.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkafs.so.11.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libkafs.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkdc.so.2.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkrb5.so.24.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libkrb5.so.26.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libkvm.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/liblber.so.3.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/64/libldap.so.4.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/64/libldap_r.so.4.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/64/liblua.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/liblwres.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/64/liblzf.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/liblzma.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libm.so.0.10.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libmagic.so.3.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libmenu.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libmj.so.1.0.debug comp-crypto-debug debug,compat +./usr/libdata/debug/usr/lib/64/libmpc.so.2.0.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/64/libmpfr.so.4.1.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/64/libnetpgp.so.3.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libnpf.so.0.0.debug comp-npf-debug npf,debug,compat +./usr/libdata/debug/usr/lib/64/libnvpair.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libobjc.so.2.0.debug comp-sys-debug gcc=3,debug,compat +./usr/libdata/debug/usr/lib/64/libobjc.so.3.0.debug comp-sys-debug gcc=4,debug,compat +./usr/libdata/debug/usr/lib/64/libobjc.so.3.0.debug comp-sys-debug gcc=45,debug,compat +./usr/libdata/debug/usr/lib/64/libopcodes.so.5.0.debug comp-c-debug binutils,debug,compat +./usr/libdata/debug/usr/lib/64/libossaudio.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libp2k.so.2.0.debug comp-puffs-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/libpam.so.3.0.debug comp-sys-debug pam,debug,compat +./usr/libdata/debug/usr/lib/64/libpcap.so.4.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/libpci.so.2.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libperfuse.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/64/libposix.so.0.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libppath.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libprop.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libpthread.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libpthread_dbg.so.2.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libpuffs.so.2.0.debug comp-puffs-debug debug,compat +./usr/libdata/debug/usr/lib/64/libquota.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libradius.so.4.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/librefuse.so.2.0.debug comp-refuse-debug debug,compat +./usr/libdata/debug/usr/lib/64/libresolv.so.2.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/libroken.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/64/libroken.so.19.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/librpcsvc.so.1.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/librt.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/librump.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpclient.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpcrypto.so.0.0.debug comp-obsolete obsolete,compat +./usr/libdata/debug/usr/lib/64/librumpdev.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumphijack.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpnet.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpuser.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/librumpvfs.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/libsaslc.so.0.0.debug comp-sys-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libskey.so.2.0.debug comp-sys-debug skey,debug,compat +./usr/libdata/debug/usr/lib/64/libsl.so.5.0.debug comp-krb5-debug kerberos,debug,compat +./usr/libdata/debug/usr/lib/64/libsqlite3.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libss.so.6.0.debug comp-krb5-debug obsolete +./usr/libdata/debug/usr/lib/64/libssh.so.19.0.debug comp-secsh-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libssl.so.10.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/64/libstdc++.so.5.0.debug comp-sys-debug gcc=3,cxx,debug,compat +./usr/libdata/debug/usr/lib/64/libstdc++.so.7.0.debug comp-sys-debug gcc=4,cxx,debug,compat +./usr/libdata/debug/usr/lib/64/libstdc++.so.7.1.debug comp-sys-debug gcc=45,cxx,debug,compat +./usr/libdata/debug/usr/lib/64/libterminfo.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libtre.so.0.8.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libukfs.so.1.0.debug comp-sys-debug debug,compat,rump +./usr/libdata/debug/usr/lib/64/libumem.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libusbhid.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libutil.so.7.21.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libuutil.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libwind.so.0.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/64/libwrap.so.1.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/64/libz.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/64/libzfs.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/64/libzpool.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libBIG5.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libDECHanyu.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libEUC.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libEUCTW.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libGBK2K.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libHZ.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libISO2022.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libJOHAB.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libMSKanji.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libUES.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libUTF1632.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libUTF7.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libUTF8.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libVIQR.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libZW.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libiconv_none.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libiconv_std.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_646.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_none.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_parallel.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_serial.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_std.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/i18n/libmapper_zone.so.5.0.debug comp-i18n-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libamu.so.4.0.debug comp-amd-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libarchive.so.3.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libasn1.so.8.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libasn1.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libatf-c.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/o32/libatf-c++.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/o32/libavl.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libbfd.so.12.0.debug comp-sys-debug binutils,debug,compat +./usr/libdata/debug/usr/lib/o32/libbind9.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libbluetooth.so.4.2.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libbsdmalloc.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libbz2.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libc.so.12.185.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libcom_err.so.6.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libcom_err.so.7.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libcrypt.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libcrypto.so.8.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libctf.so.2.0.debug comp-sys-debug dtrace,debug,compat +./usr/libdata/debug/usr/lib/o32/libcurses.so.7.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libdes.so.8.1.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libdevmapper.so.1.0.debug comp-lvm-debug lvm,debug,compat +./usr/libdata/debug/usr/lib/o32/libdm.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libdns.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libdns_sd.so.0.0.debug comp-mdns-debug mdns,debug,compat +./usr/libdata/debug/usr/lib/o32/libdtrace.so.2.0.debug comp-sys-debug dtrace,debug,compat +./usr/libdata/debug/usr/lib/o32/libdwarf.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libedit.so.3.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libelf.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libevent.so.3.2.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libexecinfo.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libexpat.so.2.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libfetch.so.3.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libform.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libg2c.so.2.0.debug comp-sys-debug gcc=3,debug,compat +./usr/libdata/debug/usr/lib/o32/libgcc_s.so.1.0.debug comp-sys-debug gcc,debug,compat +./usr/libdata/debug/usr/lib/o32/libgnumalloc.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libgomp.so.1.0.debug comp-sys-debug debug,compat,gcc=45 +./usr/libdata/debug/usr/lib/o32/libgmp.so.10.2.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/o32/libgssapi.so.10.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libgssapi.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libhdb.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libhdb.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libheimbase.so.1.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libheimntlm.so.3.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libheimntlm.so.4.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libhx509.so.5.0.debug comp-krb5-debug kerberos,debug,compat +./usr/libdata/debug/usr/lib/o32/libintl.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libipsec.so.3.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libisc.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libisccc.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libisccfg.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libiscsi.so.2.0.debug comp-iscsi-debug iscsi,debug,compat +./usr/libdata/debug/usr/lib/o32/libisns.so.0.0.debug comp-isns-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libkadm5clnt.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libkadm5clnt.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkadm5srv.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libkadm5srv.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkafs.so.11.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libkafs.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkdc.so.2.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkrb5.so.24.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libkrb5.so.26.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libkvm.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/liblber.so.3.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/o32/libldap.so.4.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/o32/libldap_r.so.4.2.debug comp-ldap-debug ldap,debug,compat +./usr/libdata/debug/usr/lib/o32/liblua.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/liblwres.so.5.7.debug comp-bind-debug debug,compat +./usr/libdata/debug/usr/lib/o32/liblzf.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/liblzma.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libm.so.0.10.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libmagic.so.3.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libmenu.so.6.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libmj.so.1.0.debug comp-crypto-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libmpc.so.2.0.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/o32/libmpfr.so.4.1.debug comp-sys-debug obsolete +./usr/libdata/debug/usr/lib/o32/libnetpgp.so.3.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libnpf.so.0.0.debug comp-npf-debug npf,debug,compat +./usr/libdata/debug/usr/lib/o32/libnvpair.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libobjc.so.2.0.debug comp-sys-debug gcc=3,debug,compat +./usr/libdata/debug/usr/lib/o32/libobjc.so.3.0.debug comp-sys-debug gcc=4,debug,compat +./usr/libdata/debug/usr/lib/o32/libobjc.so.3.0.debug comp-sys-debug gcc=45,debug,compat +./usr/libdata/debug/usr/lib/o32/libopcodes.so.5.0.debug comp-c-debug binutils,debug,compat +./usr/libdata/debug/usr/lib/o32/libossaudio.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libp2k.so.2.0.debug comp-puffs-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/libpam.so.3.0.debug comp-sys-debug pam,debug,compat +./usr/libdata/debug/usr/lib/o32/libpcap.so.4.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libpci.so.2.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libperfuse.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/o32/libposix.so.0.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libppath.so.0.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libprop.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libpthread.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libpthread_dbg.so.2.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libpuffs.so.2.0.debug comp-puffs-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libquota.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libradius.so.4.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/librefuse.so.2.0.debug comp-refuse-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libresolv.so.2.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libroken.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/o32/libroken.so.19.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/librpcsvc.so.1.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/librt.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/librump.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpclient.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpcrypto.so.0.0.debug comp-obsolete obsolete,compat +./usr/libdata/debug/usr/lib/o32/librumpdev.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumphijack.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpnet.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpuser.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/librumpvfs.so.0.0.debug comp-rump-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/libsaslc.so.0.0.debug comp-sys-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libskey.so.2.0.debug comp-sys-debug skey,debug,compat +./usr/libdata/debug/usr/lib/o32/libsl.so.5.0.debug comp-krb5-debug kerberos,debug,compat +./usr/libdata/debug/usr/lib/o32/libsqlite3.so.1.1.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libss.so.6.0.debug comp-krb5-debug obsolete +./usr/libdata/debug/usr/lib/o32/libssh.so.19.0.debug comp-secsh-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libssl.so.10.0.debug comp-crypto-debug crypto,debug,compat +./usr/libdata/debug/usr/lib/o32/libstdc++.so.5.0.debug comp-sys-debug gcc=3,cxx,debug,compat +./usr/libdata/debug/usr/lib/o32/libstdc++.so.7.0.debug comp-sys-debug gcc=4,cxx,debug,compat +./usr/libdata/debug/usr/lib/o32/libstdc++.so.7.1.debug comp-sys-debug gcc=45,cxx,debug,compat +./usr/libdata/debug/usr/lib/o32/libterminfo.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libtre.so.0.8.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libukfs.so.1.0.debug comp-sys-debug debug,compat,rump +./usr/libdata/debug/usr/lib/o32/libumem.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libusbhid.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libutil.so.7.21.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libuutil.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libwind.so.0.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/o32/libwrap.so.1.0.debug comp-net-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libz.so.1.0.debug comp-sys-debug debug,compat +./usr/libdata/debug/usr/lib/o32/libzfs.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/debug/usr/lib/o32/libzpool.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug,compat +./usr/libdata/ldscripts/elf32btsmip.x comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xbn comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xc comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xn comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xr comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xs comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xsc comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xsw comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xu comp-util-bin +./usr/libdata/ldscripts/elf32btsmip.xw comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.x comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xbn comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xc comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xn comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xr comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xs comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xsc comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xsw comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xu comp-util-bin +./usr/libdata/ldscripts/elf32btsmipn32.xw comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.x comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xbn comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xc comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xn comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xr comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xs comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xsc comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xsw comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xu comp-util-bin +./usr/libdata/ldscripts/elf32ltsmip.xw comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.x comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xbn comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xc comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xn comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xr comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xs comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xsc comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xsw comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xu comp-util-bin +./usr/libdata/ldscripts/elf32ltsmipn32.xw comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.x comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xbn comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xc comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xn comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xr comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xs comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xsc comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xsw comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xu comp-util-bin +./usr/libdata/ldscripts/elf64btsmip.xw comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.x comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xbn comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xc comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xn comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xr comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xs comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xsc comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xsw comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xu comp-util-bin +./usr/libdata/ldscripts/elf64ltsmip.xw comp-util-bin diff --git a/distrib/sets/lists/comp/ad.powerpc b/distrib/sets/lists/comp/ad.powerpc new file mode 100644 index 000000000..42a648de5 --- /dev/null +++ b/distrib/sets/lists/comp/ad.powerpc @@ -0,0 +1,97 @@ +# $NetBSD: ad.powerpc,v 1.59 2012/06/16 17:01:02 joerg Exp $ +./usr/bin/elf2aout comp-sysutil-bin +./usr/bin/psim comp-debug-bin gdb +./usr/include/altivec.h comp-obsolete obsolete +./usr/include/clang-3.0/altivec.h comp-obsolete obsolete +./usr/include/clang-3.2/altivec.h comp-c-include llvm +./usr/include/gcc-4.1/altivec.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/altivec.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.5/altivec.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/paired.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/ppc-asm.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/ppu_intrinsics.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/si2vmx.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/spe.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/spu2vmx.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/vec_types.h comp-c-include gcccmds,gcc=45 +./usr/include/powerpc comp-c-include +./usr/include/powerpc/ansi.h comp-c-include +./usr/include/powerpc/aout_machdep.h comp-c-include +./usr/include/powerpc/asm.h comp-c-include +./usr/include/powerpc/atomic.h comp-obsolete obsolete +./usr/include/powerpc/bat.h comp-obsolete obsolete +./usr/include/powerpc/bswap.h comp-c-include +./usr/include/powerpc/bus.h comp-obsolete obsolete +./usr/include/powerpc/cdefs.h comp-c-include +./usr/include/powerpc/cpu.h comp-c-include +./usr/include/powerpc/elf_machdep.h comp-c-include +./usr/include/powerpc/endian.h comp-c-include +./usr/include/powerpc/endian_machdep.h comp-c-include +./usr/include/powerpc/float.h comp-c-include +./usr/include/powerpc/fpu.h comp-c-include +./usr/include/powerpc/frame.h comp-c-include +./usr/include/powerpc/hid.h comp-obsolete obsolete +./usr/include/powerpc/hid_601.h comp-obsolete obsolete +./usr/include/powerpc/ibm4xx comp-c-include +./usr/include/powerpc/ibm4xx/cpu.h comp-c-include +./usr/include/powerpc/ibm4xx/pmap.h comp-c-include +./usr/include/powerpc/ibm4xx/pte.h comp-obsolete obsolete +./usr/include/powerpc/ibm4xx/spr.h comp-c-include +./usr/include/powerpc/ibm4xx/tlb.h comp-c-include +./usr/include/powerpc/ieee.h comp-c-include +./usr/include/powerpc/ieeefp.h comp-c-include +./usr/include/powerpc/int_const.h comp-c-include +./usr/include/powerpc/int_fmtio.h comp-c-include +./usr/include/powerpc/int_limits.h comp-c-include +./usr/include/powerpc/int_mwgwtypes.h comp-c-include +./usr/include/powerpc/int_types.h comp-c-include +./usr/include/powerpc/kcore.h comp-c-include +./usr/include/powerpc/limits.h comp-c-include +./usr/include/powerpc/lock.h comp-c-include +./usr/include/powerpc/machine_type.h comp-obsolete obsolete +./usr/include/powerpc/math.h comp-c-include +./usr/include/powerpc/mcontext.h comp-c-include +./usr/include/powerpc/mpc6xx comp-obsolete obsolete +./usr/include/powerpc/mpc6xx/bat.h comp-obsolete obsolete +./usr/include/powerpc/mpc6xx/hid.h comp-obsolete obsolete +./usr/include/powerpc/mpc6xx/hid_601.h comp-obsolete obsolete +./usr/include/powerpc/mpc6xx/pmap.h comp-obsolete obsolete +./usr/include/powerpc/mpc6xx/pte.h comp-obsolete obsolete +./usr/include/powerpc/mpc6xx/sr_601.h comp-obsolete obsolete +./usr/include/powerpc/mpc6xx/vmparam.h comp-obsolete obsolete +./usr/include/powerpc/mutex.h comp-c-include +./usr/include/powerpc/oea comp-c-include +./usr/include/powerpc/oea/bat.h comp-c-include +./usr/include/powerpc/oea/hid.h comp-c-include +./usr/include/powerpc/oea/hid_601.h comp-c-include +./usr/include/powerpc/oea/pmap.h comp-c-include +./usr/include/powerpc/oea/pte.h comp-c-include +./usr/include/powerpc/oea/spr.h comp-c-include +./usr/include/powerpc/oea/sr_601.h comp-c-include +./usr/include/powerpc/oea/vmparam.h comp-c-include +./usr/include/powerpc/param.h comp-c-include +./usr/include/powerpc/pcb.h comp-c-include +./usr/include/powerpc/pmap.h comp-c-include +./usr/include/powerpc/pmc.h comp-c-include +./usr/include/powerpc/proc.h comp-c-include +./usr/include/powerpc/profile.h comp-c-include +./usr/include/powerpc/psl.h comp-c-include +./usr/include/powerpc/pte.h comp-c-include +./usr/include/powerpc/ptrace.h comp-c-include +./usr/include/powerpc/reg.h comp-c-include +./usr/include/powerpc/reloc.h comp-c-include +./usr/include/powerpc/rwlock.h comp-c-include +./usr/include/powerpc/setjmp.h comp-c-include +./usr/include/powerpc/signal.h comp-c-include +./usr/include/powerpc/spr.h comp-c-include +./usr/include/powerpc/stdarg.h comp-obsolete obsolete +./usr/include/powerpc/trap.h comp-c-include +./usr/include/powerpc/types.h comp-c-include +./usr/include/powerpc/va-ppc.h comp-obsolete obsolete +./usr/include/powerpc/varargs.h comp-obsolete obsolete +./usr/include/powerpc/vmparam.h comp-c-include +./usr/include/powerpc/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/bin/elf2aout.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/psim.debug comp-debug-debug debug,gdb diff --git a/distrib/sets/lists/comp/ad.sh3 b/distrib/sets/lists/comp/ad.sh3 new file mode 100644 index 000000000..978a5828b --- /dev/null +++ b/distrib/sets/lists/comp/ad.sh3 @@ -0,0 +1,54 @@ +# $NetBSD: ad.sh3,v 1.28 2011/07/18 17:39:05 dyoung Exp $ +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/ieeefp.h comp-c-include +./usr/include/sh3 comp-c-include +./usr/include/sh3/ansi.h comp-c-include +./usr/include/sh3/aout_machdep.h comp-c-include +./usr/include/sh3/asm.h comp-c-include +./usr/include/sh3/bswap.h comp-c-include +./usr/include/sh3/bus.h comp-obsolete obsolete +./usr/include/sh3/byte_swap.h comp-c-include +./usr/include/sh3/cdefs.h comp-c-include +./usr/include/sh3/coff_machdep.h comp-c-include +./usr/include/sh3/cpu.h comp-c-include +./usr/include/sh3/cputypes.h comp-c-include +./usr/include/sh3/db_machdep.h comp-obsolete obsolete +./usr/include/sh3/disklabel.h comp-c-include +./usr/include/sh3/elf_machdep.h comp-c-include +./usr/include/sh3/endian.h comp-c-include +./usr/include/sh3/endian_machdep.h comp-c-include +./usr/include/sh3/float.h comp-c-include +./usr/include/sh3/frame.h comp-c-include +./usr/include/sh3/ieee.h comp-c-include +./usr/include/sh3/ieeefp.h comp-c-include +./usr/include/sh3/int_const.h comp-c-include +./usr/include/sh3/int_fmtio.h comp-c-include +./usr/include/sh3/int_limits.h comp-c-include +./usr/include/sh3/int_mwgwtypes.h comp-c-include +./usr/include/sh3/int_types.h comp-c-include +./usr/include/sh3/intr.h comp-c-include +./usr/include/sh3/limits.h comp-c-include +./usr/include/sh3/lock.h comp-c-include +./usr/include/sh3/math.h comp-c-include +./usr/include/sh3/mcontext.h comp-c-include +./usr/include/sh3/mutex.h comp-c-include +./usr/include/sh3/param.h comp-c-include +./usr/include/sh3/pcb.h comp-c-include +./usr/include/sh3/pmap.h comp-c-include +./usr/include/sh3/pmc.h comp-c-include +./usr/include/sh3/proc.h comp-c-include +./usr/include/sh3/profile.h comp-c-include +./usr/include/sh3/psl.h comp-c-include +./usr/include/sh3/pte.h comp-c-include +./usr/include/sh3/ptrace.h comp-c-include +./usr/include/sh3/reg.h comp-c-include +./usr/include/sh3/rwlock.h comp-c-include +./usr/include/sh3/setjmp.h comp-c-include +./usr/include/sh3/sh_opcode.h comp-c-include +./usr/include/sh3/signal.h comp-c-include +./usr/include/sh3/stdarg.h comp-obsolete obsolete +./usr/include/sh3/types.h comp-c-include +./usr/include/sh3/va-sh.h comp-obsolete obsolete +./usr/include/sh3/varargs.h comp-obsolete obsolete +./usr/include/sh3/vmparam.h comp-c-include +./usr/include/sh3/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.acorn26 b/distrib/sets/lists/comp/md.acorn26 new file mode 100644 index 000000000..68f7b9c46 --- /dev/null +++ b/distrib/sets/lists/comp/md.acorn26 @@ -0,0 +1,104 @@ +# $NetBSD: md.acorn26,v 1.14 2011/07/19 16:05:09 dyoung Exp $ +./usr/include/acorn26 comp-c-include +./usr/include/acorn26/ansi.h comp-c-include +./usr/include/acorn26/aout_machdep.h comp-c-include +./usr/include/acorn26/asm.h comp-c-include +./usr/include/acorn26/boot.h comp-c-include +./usr/include/acorn26/bswap.h comp-c-include +./usr/include/acorn26/bus.h comp-obsolete obsolete +./usr/include/acorn26/cdefs.h comp-c-include +./usr/include/acorn26/cpu.h comp-c-include +./usr/include/acorn26/db_machdep.h comp-obsolete obsolete +./usr/include/acorn26/disklabel.h comp-c-include +./usr/include/acorn26/elf_machdep.h comp-c-include +./usr/include/acorn26/endian.h comp-c-include +./usr/include/acorn26/endian_machdep.h comp-c-include +./usr/include/acorn26/float.h comp-c-include +./usr/include/acorn26/fp.h comp-c-include +./usr/include/acorn26/frame.h comp-c-include +./usr/include/acorn26/ieee.h comp-c-include +./usr/include/acorn26/ieeefp.h comp-c-include +./usr/include/acorn26/int_const.h comp-c-include +./usr/include/acorn26/int_fmtio.h comp-c-include +./usr/include/acorn26/int_limits.h comp-c-include +./usr/include/acorn26/int_mwgwtypes.h comp-c-include +./usr/include/acorn26/int_types.h comp-c-include +./usr/include/acorn26/intr.h comp-c-include +./usr/include/acorn26/ipkdb.h comp-obsolete obsolete +./usr/include/acorn26/irq.h comp-c-include +./usr/include/acorn26/limits.h comp-c-include +./usr/include/acorn26/lock.h comp-c-include +./usr/include/acorn26/math.h comp-c-include +./usr/include/acorn26/mcontext.h comp-c-include +./usr/include/acorn26/mutex.h comp-c-include +./usr/include/acorn26/param.h comp-c-include +./usr/include/acorn26/pcb.h comp-c-include +./usr/include/acorn26/pmap.h comp-c-include +./usr/include/acorn26/pmc.h comp-c-include +./usr/include/acorn26/proc.h comp-c-include +./usr/include/acorn26/profile.h comp-c-include +./usr/include/acorn26/ptrace.h comp-c-include +./usr/include/acorn26/reg.h comp-c-include +./usr/include/acorn26/rwlock.h comp-c-include +./usr/include/acorn26/setjmp.h comp-c-include +./usr/include/acorn26/signal.h comp-c-include +./usr/include/acorn26/stdarg.h comp-obsolete obsolete +./usr/include/acorn26/sysarch.h comp-c-include +./usr/include/acorn26/trap.h comp-c-include +./usr/include/acorn26/types.h comp-c-include +./usr/include/acorn26/varargs.h comp-obsolete obsolete +./usr/include/acorn26/vmparam.h comp-c-include +./usr/include/acorn26/wchar_limits.h comp-c-include +./usr/include/arm/arm32/bus.h comp-obsolete obsolete +./usr/include/arm/arm32/sysarch.h comp-obsolete obsolete +./usr/include/arm26 comp-obsolete obsolete +./usr/include/arm26/_G_config.h comp-obsolete obsolete +./usr/include/arm26/ansi.h comp-obsolete obsolete +./usr/include/arm26/aout_machdep.h comp-obsolete obsolete +./usr/include/arm26/armreg.h comp-obsolete obsolete +./usr/include/arm26/asm.h comp-obsolete obsolete +./usr/include/arm26/boot.h comp-obsolete obsolete +./usr/include/arm26/bswap.h comp-obsolete obsolete +./usr/include/arm26/bus.h comp-obsolete obsolete +./usr/include/arm26/cdefs.h comp-obsolete obsolete +./usr/include/arm26/cpu.h comp-obsolete obsolete +./usr/include/arm26/db_machdep.h comp-obsolete obsolete +./usr/include/arm26/disklabel.h comp-obsolete obsolete +./usr/include/arm26/disklabel_acorn.h comp-obsolete obsolete +./usr/include/arm26/elf_machdep.h comp-obsolete obsolete +./usr/include/arm26/endian.h comp-obsolete obsolete +./usr/include/arm26/endian_machdep.h comp-obsolete obsolete +./usr/include/arm26/float.h comp-obsolete obsolete +./usr/include/arm26/fp.h comp-obsolete obsolete +./usr/include/arm26/frame.h comp-obsolete obsolete +./usr/include/arm26/ieee.h comp-obsolete obsolete +./usr/include/arm26/ieeefp.h comp-obsolete obsolete +./usr/include/arm26/int_const.h comp-obsolete obsolete +./usr/include/arm26/int_fmtio.h comp-obsolete obsolete +./usr/include/arm26/int_limits.h comp-obsolete obsolete +./usr/include/arm26/int_mwgwtypes.h comp-obsolete obsolete +./usr/include/arm26/int_types.h comp-obsolete obsolete +./usr/include/arm26/intr.h comp-obsolete obsolete +./usr/include/arm26/ipkdb.h comp-obsolete obsolete +./usr/include/arm26/irq.h comp-obsolete obsolete +./usr/include/arm26/limits.h comp-obsolete obsolete +./usr/include/arm26/lock.h comp-obsolete obsolete +./usr/include/arm26/math.h comp-obsolete obsolete +./usr/include/arm26/param.h comp-obsolete obsolete +./usr/include/arm26/pcb.h comp-obsolete obsolete +./usr/include/arm26/pmap.h comp-obsolete obsolete +./usr/include/arm26/proc.h comp-obsolete obsolete +./usr/include/arm26/profile.h comp-obsolete obsolete +./usr/include/arm26/pte.h comp-obsolete obsolete +./usr/include/arm26/ptrace.h comp-obsolete obsolete +./usr/include/arm26/reg.h comp-obsolete obsolete +./usr/include/arm26/setjmp.h comp-obsolete obsolete +./usr/include/arm26/signal.h comp-obsolete obsolete +./usr/include/arm26/spl.h comp-obsolete obsolete +./usr/include/arm26/stdarg.h comp-obsolete obsolete +./usr/include/arm26/sysarch.h comp-obsolete obsolete +./usr/include/arm26/trap.h comp-obsolete obsolete +./usr/include/arm26/types.h comp-obsolete obsolete +./usr/include/arm26/undefined.h comp-obsolete obsolete +./usr/include/arm26/varargs.h comp-obsolete obsolete +./usr/include/arm26/vmparam.h comp-obsolete obsolete diff --git a/distrib/sets/lists/comp/md.acorn32 b/distrib/sets/lists/comp/md.acorn32 new file mode 100644 index 000000000..d1a0cae6a --- /dev/null +++ b/distrib/sets/lists/comp/md.acorn32 @@ -0,0 +1,58 @@ +# $NetBSD: md.acorn32,v 1.26 2011/07/19 15:59:51 dyoung Exp $ +#./usr/include/acorn32/devmap.h comp-c-include +./usr/include/acorn32 comp-c-include +./usr/include/acorn32/ansi.h comp-c-include +./usr/include/acorn32/aout_machdep.h comp-c-include +./usr/include/acorn32/asm.h comp-c-include +./usr/include/acorn32/beep.h comp-obsolete obsolete +./usr/include/acorn32/bswap.h comp-c-include +./usr/include/acorn32/bus.h comp-obsolete obsolete +./usr/include/acorn32/cdefs.h comp-c-include +./usr/include/acorn32/conf.h comp-obsolete obsolete +./usr/include/acorn32/cpu.h comp-c-include +./usr/include/acorn32/db_machdep.h comp-obsolete obsolete +./usr/include/acorn32/disklabel.h comp-c-include +./usr/include/acorn32/elf_machdep.h comp-c-include +./usr/include/acorn32/endian.h comp-c-include +./usr/include/acorn32/endian_machdep.h comp-c-include +./usr/include/acorn32/float.h comp-c-include +./usr/include/acorn32/fp.h comp-c-include +./usr/include/acorn32/frame.h comp-c-include +./usr/include/acorn32/ieee.h comp-c-include +./usr/include/acorn32/ieeefp.h comp-c-include +./usr/include/acorn32/int_const.h comp-c-include +./usr/include/acorn32/int_fmtio.h comp-c-include +./usr/include/acorn32/int_limits.h comp-c-include +./usr/include/acorn32/int_mwgwtypes.h comp-c-include +./usr/include/acorn32/int_types.h comp-c-include +./usr/include/acorn32/intr.h comp-c-include +./usr/include/acorn32/ipkdb.h comp-obsolete obsolete +./usr/include/acorn32/joystick.h comp-c-include +./usr/include/acorn32/kbd.h comp-obsolete obsolete +./usr/include/acorn32/limits.h comp-c-include +./usr/include/acorn32/lock.h comp-c-include +./usr/include/acorn32/math.h comp-c-include +./usr/include/acorn32/mcontext.h comp-c-include +./usr/include/acorn32/mouse.h comp-obsolete obsolete +./usr/include/acorn32/mutex.h comp-c-include +./usr/include/acorn32/param.h comp-c-include +./usr/include/acorn32/pcb.h comp-c-include +./usr/include/acorn32/pmap.h comp-c-include +./usr/include/acorn32/pmc.h comp-c-include +./usr/include/acorn32/proc.h comp-c-include +./usr/include/acorn32/profile.h comp-c-include +./usr/include/acorn32/ptrace.h comp-c-include +./usr/include/acorn32/reg.h comp-c-include +./usr/include/acorn32/rwlock.h comp-c-include +./usr/include/acorn32/setjmp.h comp-c-include +./usr/include/acorn32/signal.h comp-c-include +./usr/include/acorn32/stdarg.h comp-obsolete obsolete +./usr/include/acorn32/sysarch.h comp-c-include +./usr/include/acorn32/trap.h comp-c-include +./usr/include/acorn32/types.h comp-c-include +./usr/include/acorn32/varargs.h comp-obsolete obsolete +./usr/include/acorn32/vconsole.h comp-obsolete obsolete +./usr/include/acorn32/vmparam.h comp-c-include +./usr/include/acorn32/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug diff --git a/distrib/sets/lists/comp/md.algor b/distrib/sets/lists/comp/md.algor new file mode 100644 index 000000000..307e2f53e --- /dev/null +++ b/distrib/sets/lists/comp/md.algor @@ -0,0 +1,62 @@ +# $NetBSD: md.algor,v 1.16 2011/07/17 20:54:31 joerg Exp $ +./usr/include/algor comp-c-include +./usr/include/algor/_G_config.h comp-obsolete obsolete +./usr/include/algor/ansi.h comp-c-include +./usr/include/algor/aout_machdep.h comp-obsolete obsolete +./usr/include/algor/asm.h comp-c-include +./usr/include/algor/autoconf.h comp-c-include +./usr/include/algor/bsd-aout.h comp-obsolete obsolete +./usr/include/algor/bswap.h comp-c-include +./usr/include/algor/bus.h comp-obsolete obsolete +./usr/include/algor/cdefs.h comp-c-include +./usr/include/algor/cpu.h comp-c-include +./usr/include/algor/db_machdep.h comp-obsolete obsolete +./usr/include/algor/disklabel.h comp-c-include +./usr/include/algor/ecoff_machdep.h comp-c-include +./usr/include/algor/elf_machdep.h comp-c-include +./usr/include/algor/endian.h comp-c-include +./usr/include/algor/endian_machdep.h comp-c-include +./usr/include/algor/float.h comp-c-include +./usr/include/algor/ieee.h comp-c-include +./usr/include/algor/ieeefp.h comp-c-include +./usr/include/algor/int_const.h comp-c-include +./usr/include/algor/int_fmtio.h comp-c-include +./usr/include/algor/int_limits.h comp-c-include +./usr/include/algor/int_mwgwtypes.h comp-c-include +./usr/include/algor/int_types.h comp-c-include +./usr/include/algor/intr.h comp-c-include +./usr/include/algor/isa_machdep.h comp-c-include +./usr/include/algor/kcore.h comp-c-include +./usr/include/algor/kdbparam.h comp-c-include +./usr/include/algor/limits.h comp-c-include +./usr/include/algor/lock.h comp-c-include +./usr/include/algor/locore.h comp-c-include +./usr/include/algor/math.h comp-c-include +./usr/include/algor/mcontext.h comp-c-include +./usr/include/algor/mips_opcode.h comp-c-include +./usr/include/algor/mutex.h comp-c-include +./usr/include/algor/param.h comp-c-include +./usr/include/algor/pcb.h comp-c-include +./usr/include/algor/pci_machdep.h comp-c-include +./usr/include/algor/pmap.h comp-c-include +./usr/include/algor/pmc.h comp-c-include +./usr/include/algor/proc.h comp-c-include +./usr/include/algor/profile.h comp-c-include +./usr/include/algor/psl.h comp-c-include +./usr/include/algor/pte.h comp-c-include +./usr/include/algor/ptrace.h comp-c-include +./usr/include/algor/reg.h comp-c-include +./usr/include/algor/regdef.h comp-c-include +./usr/include/algor/regnum.h comp-c-include +./usr/include/algor/reloc.h comp-c-include +./usr/include/algor/rnd.h comp-obsolete obsolete +./usr/include/algor/rwlock.h comp-c-include +./usr/include/algor/setjmp.h comp-c-include +./usr/include/algor/signal.h comp-c-include +./usr/include/algor/stdarg.h comp-obsolete obsolete +./usr/include/algor/trap.h comp-c-include +./usr/include/algor/types.h comp-c-include +./usr/include/algor/varargs.h comp-obsolete obsolete +./usr/include/algor/vmparam.h comp-c-include +./usr/include/algor/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include diff --git a/distrib/sets/lists/comp/md.alpha b/distrib/sets/lists/comp/md.alpha new file mode 100644 index 000000000..197588039 --- /dev/null +++ b/distrib/sets/lists/comp/md.alpha @@ -0,0 +1,83 @@ +# $NetBSD: md.alpha,v 1.63 2011/08/12 22:22:49 dyoung Exp $ +./usr/include/alpha comp-c-include +./usr/include/alpha/_G_config.h comp-obsolete obsolete +./usr/include/alpha/alpha_cpu.h comp-c-include +./usr/include/alpha/ansi.h comp-c-include +./usr/include/alpha/aout_machdep.h comp-c-include +./usr/include/alpha/asm.h comp-c-include +./usr/include/alpha/atomic.h comp-obsolete obsolete +./usr/include/alpha/autoconf.h comp-c-include +./usr/include/alpha/bswap.h comp-c-include +./usr/include/alpha/bus.h comp-c-include obsolete +./usr/include/alpha/bus_user.h comp-c-include +./usr/include/alpha/bwx.h comp-c-include +./usr/include/alpha/cdefs.h comp-c-include +./usr/include/alpha/cfbreg.h comp-c-include +./usr/include/alpha/conf.h comp-obsolete obsolete +./usr/include/alpha/cpu.h comp-c-include +./usr/include/alpha/cpuconf.h comp-c-include +./usr/include/alpha/db_machdep.h comp-obsolete obsolete +./usr/include/alpha/disklabel.h comp-c-include +./usr/include/alpha/ecoff_machdep.h comp-c-include +./usr/include/alpha/elf_machdep.h comp-c-include +./usr/include/alpha/endian.h comp-c-include +./usr/include/alpha/endian_machdep.h comp-c-include +./usr/include/alpha/fbio.h comp-obsolete obsolete +./usr/include/alpha/float.h comp-c-include +./usr/include/alpha/fpu.h comp-c-include +./usr/include/alpha/frame.h comp-c-include +./usr/include/alpha/ieee.h comp-c-include +./usr/include/alpha/ieeefp.h comp-c-include +./usr/include/alpha/int_const.h comp-c-include +./usr/include/alpha/int_fmtio.h comp-c-include +./usr/include/alpha/int_limits.h comp-c-include +./usr/include/alpha/int_mwgwtypes.h comp-c-include +./usr/include/alpha/int_types.h comp-c-include +./usr/include/alpha/intr.h comp-c-include +./usr/include/alpha/intrcnt.h comp-obsolete obsolete +./usr/include/alpha/joystick.h comp-c-include +./usr/include/alpha/kbio.h comp-c-include +./usr/include/alpha/kcore.h comp-c-include +./usr/include/alpha/limits.h comp-c-include +./usr/include/alpha/lock.h comp-c-include +./usr/include/alpha/math.h comp-c-include +./usr/include/alpha/mcontext.h comp-c-include +./usr/include/alpha/mutex.h comp-c-include +./usr/include/alpha/pal.h comp-c-include +./usr/include/alpha/param.h comp-c-include +./usr/include/alpha/pcb.h comp-c-include +./usr/include/alpha/pio.h comp-c-include +./usr/include/alpha/pmap.h comp-c-include +./usr/include/alpha/pmc.h comp-c-include +./usr/include/alpha/proc.h comp-c-include +./usr/include/alpha/profile.h comp-c-include +./usr/include/alpha/prom.h comp-c-include +./usr/include/alpha/psl.h comp-c-include +./usr/include/alpha/pte.h comp-c-include +./usr/include/alpha/ptrace.h comp-c-include +./usr/include/alpha/reg.h comp-c-include +./usr/include/alpha/rpb.h comp-c-include +./usr/include/alpha/rwlock.h comp-c-include +./usr/include/alpha/setjmp.h comp-c-include +./usr/include/alpha/signal.h comp-c-include +./usr/include/alpha/stdarg.h comp-obsolete obsolete +./usr/include/alpha/sysarch.h comp-c-include +./usr/include/alpha/types.h comp-c-include +./usr/include/alpha/varargs.h comp-obsolete obsolete +./usr/include/alpha/vmparam.h comp-c-include +./usr/include/alpha/vuid_event.h comp-c-include +./usr/include/alpha/wchar_limits.h comp-c-include +./usr/include/alpha/wsconsio.h comp-obsolete obsolete +./usr/include/alpha/z8530var.h comp-c-include +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/ieeefp.h comp-c-include +./usr/lib/crtfm.o comp-c-lib +./usr/lib/libalpha.a comp-c-lib +./usr/lib/libalpha_p.a comp-c-proflib profile +./usr/lib/libalpha_pic.a comp-c-piclib +./usr/libdata/lint/llib-lalpha.ln comp-c-lintlib lint +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/lib/libalpha.so.0.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/mdec/mkbootimage.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/mdec/setnetbootinfo.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/bad144.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.amd64 b/distrib/sets/lists/comp/md.amd64 new file mode 100644 index 000000000..aa5e1f66d --- /dev/null +++ b/distrib/sets/lists/comp/md.amd64 @@ -0,0 +1,1287 @@ +# $NetBSD: md.amd64,v 1.177 2012/09/16 18:59:25 tls Exp $ +./usr/include/amd64 comp-c-include +./usr/include/amd64/ansi.h comp-c-include +./usr/include/amd64/aout_machdep.h comp-c-include +./usr/include/amd64/asm.h comp-c-include +./usr/include/amd64/atomic.h comp-obsolete obsolete +./usr/include/amd64/autoconf.h comp-obsolete obsolete +./usr/include/amd64/bootinfo.h comp-c-include +./usr/include/amd64/bswap.h comp-c-include +./usr/include/amd64/bus.h comp-obsolete obsolete +./usr/include/amd64/byte_swap.h comp-c-include +./usr/include/amd64/cdefs.h comp-c-include +./usr/include/amd64/cpu.h comp-c-include +./usr/include/amd64/cpufunc.h comp-c-obsolete obsolete +./usr/include/amd64/disklabel.h comp-c-include +./usr/include/amd64/elf_machdep.h comp-c-include +./usr/include/amd64/endian.h comp-c-include +./usr/include/amd64/endian_machdep.h comp-c-include +./usr/include/amd64/fenv.h comp-c-include +./usr/include/amd64/float.h comp-c-include +./usr/include/amd64/fpu.h comp-c-include +./usr/include/amd64/frame.h comp-c-include +./usr/include/amd64/frame_regs.h comp-c-include +./usr/include/amd64/gdt.h comp-c-include +./usr/include/amd64/ieee.h comp-c-include +./usr/include/amd64/ieeefp.h comp-c-include +./usr/include/amd64/int_const.h comp-c-include +./usr/include/amd64/int_fmtio.h comp-c-include +./usr/include/amd64/int_limits.h comp-c-include +./usr/include/amd64/int_mwgwtypes.h comp-c-include +./usr/include/amd64/int_types.h comp-c-include +./usr/include/amd64/intr.h comp-c-include +./usr/include/amd64/intrdefs.h comp-c-include +./usr/include/amd64/joystick.h comp-c-include +./usr/include/amd64/kcore.h comp-c-include +./usr/include/amd64/limits.h comp-c-include +./usr/include/amd64/linux32_machdep.h comp-c-include +./usr/include/amd64/lock.h comp-c-include +./usr/include/amd64/math.h comp-c-include +./usr/include/amd64/mcontext.h comp-c-include +./usr/include/amd64/mtrr.h comp-c-include +./usr/include/amd64/mutex.h comp-c-include +./usr/include/amd64/netbsd32_machdep.h comp-c-include +./usr/include/amd64/param.h comp-c-include +./usr/include/amd64/pcb.h comp-c-include +./usr/include/amd64/pci_machdep.h comp-c-include +./usr/include/amd64/pio.h comp-c-include +./usr/include/amd64/pmap.h comp-c-include +./usr/include/amd64/pmc.h comp-c-include +./usr/include/amd64/proc.h comp-c-include +./usr/include/amd64/profile.h comp-c-include +./usr/include/amd64/psl.h comp-c-include +./usr/include/amd64/pte.h comp-c-include +./usr/include/amd64/ptrace.h comp-c-include +./usr/include/amd64/reg.h comp-c-include +./usr/include/amd64/rwlock.h comp-c-include +./usr/include/amd64/segments.h comp-c-include +./usr/include/amd64/setjmp.h comp-c-include +./usr/include/amd64/signal.h comp-c-include +./usr/include/amd64/specialreg.h comp-c-include +./usr/include/amd64/stdarg.h comp-obsolete obsolete +./usr/include/amd64/sysarch.h comp-c-include +./usr/include/amd64/trap.h comp-c-include +./usr/include/amd64/tss.h comp-c-include +./usr/include/amd64/types.h comp-c-include +./usr/include/amd64/userret.h comp-c-include +./usr/include/amd64/varargs.h comp-obsolete obsolete +./usr/include/amd64/vmparam.h comp-c-include +./usr/include/amd64/wchar_limits.h comp-c-include +./usr/include/clang-3.0/avxintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/avx2intrin.h comp-obsolete obsolete +./usr/include/clang-3.0/bmi2intrin.h comp-obsolete obsolete +./usr/include/clang-3.0/bmiintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/emmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/fma4intrin.h comp-obsolete obsolete +./usr/include/clang-3.0/immintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/lzcntintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/mm3dnow.h comp-obsolete obsolete +./usr/include/clang-3.0/mm_malloc.h comp-obsolete obsolete +./usr/include/clang-3.0/mmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/nmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/pmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/popcntintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/smmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/tmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/wmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/x86intrin.h comp-obsolete obsolete +./usr/include/clang-3.0/xmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.2/ammintrin.h comp-c-include llvm +./usr/include/clang-3.2/avxintrin.h comp-c-include llvm +./usr/include/clang-3.2/avx2intrin.h comp-c-include llvm +./usr/include/clang-3.2/bmi2intrin.h comp-c-include llvm +./usr/include/clang-3.2/bmiintrin.h comp-c-include llvm +./usr/include/clang-3.2/emmintrin.h comp-c-include llvm +./usr/include/clang-3.2/fma4intrin.h comp-c-include llvm +./usr/include/clang-3.2/fmaintrin.h comp-c-include llvm +./usr/include/clang-3.2/immintrin.h comp-c-include llvm +./usr/include/clang-3.2/lzcntintrin.h comp-c-include llvm +./usr/include/clang-3.2/mm3dnow.h comp-c-include llvm +./usr/include/clang-3.2/mm_malloc.h comp-c-include llvm +./usr/include/clang-3.2/mmintrin.h comp-c-include llvm +./usr/include/clang-3.2/nmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/pmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/popcntintrin.h comp-c-include llvm +./usr/include/clang-3.2/smmintrin.h comp-c-include llvm +./usr/include/clang-3.2/tmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/wmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/x86intrin.h comp-c-include llvm +./usr/include/clang-3.2/xmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/xopintrin.h comp-c-include llvm +./usr/include/emmintrin.h comp-obsolete obsolete +./usr/include/gcc-4.1/emmintrin.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/emmintrin.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.1/mm_malloc.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/mm_malloc.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.1/mmintrin.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/mmintrin.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.1/pmmintrin.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/pmmintrin.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.1/xmmintrin.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/xmmintrin.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.5/abmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/ammintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/avxintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/bmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/cpuid.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/cross-stdarg.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/emmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/fma4intrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/ia32intrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/immintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/lwpintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/mm3dnow.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/mm_malloc.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/mmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/nmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/pmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/popcntintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/smmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/wmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/x86intrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/xmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/xopintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/i386 comp-c-include +./usr/include/i386/ansi.h comp-c-include +./usr/include/i386/aout_machdep.h comp-c-include +./usr/include/i386/apmvar.h comp-c-include +./usr/include/i386/asm.h comp-c-include +./usr/include/i386/bioscall.h comp-c-include +./usr/include/i386/bootinfo.h comp-c-include +./usr/include/i386/bswap.h comp-c-include +./usr/include/i386/bus.h comp-obsolete obsolete +./usr/include/i386/byte_swap.h comp-c-include +./usr/include/i386/cdefs.h comp-c-include +./usr/include/i386/cpu.h comp-c-include +./usr/include/i386/cpufunc.h comp-c-obsolete obsolete +./usr/include/i386/cputypes.h comp-c-include +./usr/include/i386/disklabel.h comp-c-include +./usr/include/i386/elf_machdep.h comp-c-include +./usr/include/i386/endian.h comp-c-include +./usr/include/i386/endian_machdep.h comp-c-include +./usr/include/i386/fenv.h comp-c-include +./usr/include/i386/float.h comp-c-include +./usr/include/i386/frame.h comp-c-include +./usr/include/i386/freebsd_machdep.h comp-c-include +./usr/include/i386/gdt.h comp-c-include +./usr/include/i386/ibcs2_machdep.h comp-c-include +./usr/include/i386/ieee.h comp-c-include +./usr/include/i386/ieeefp.h comp-c-include +./usr/include/i386/int_const.h comp-c-include +./usr/include/i386/int_fmtio.h comp-c-include +./usr/include/i386/int_limits.h comp-c-include +./usr/include/i386/int_mwgwtypes.h comp-c-include +./usr/include/i386/int_types.h comp-c-include +./usr/include/i386/intr.h comp-c-include +./usr/include/i386/intrdefs.h comp-c-include +./usr/include/i386/joystick.h comp-c-include +./usr/include/i386/kcore.h comp-c-include +./usr/include/i386/limits.h comp-c-include +./usr/include/i386/lock.h comp-c-include +./usr/include/i386/math.h comp-c-include +./usr/include/i386/mcontext.h comp-c-include +./usr/include/i386/mtrr.h comp-c-include +./usr/include/i386/multiboot.h comp-c-include +./usr/include/i386/mutex.h comp-c-include +./usr/include/i386/npx.h comp-c-include +./usr/include/i386/param.h comp-c-include +./usr/include/i386/pcb.h comp-c-include +./usr/include/i386/pio.h comp-c-include +./usr/include/i386/pmap.h comp-c-include +./usr/include/i386/pmc.h comp-c-include +./usr/include/i386/proc.h comp-c-include +./usr/include/i386/profile.h comp-c-include +./usr/include/i386/psl.h comp-c-include +./usr/include/i386/pte.h comp-c-include +./usr/include/i386/ptrace.h comp-c-include +./usr/include/i386/reg.h comp-c-include +./usr/include/i386/rwlock.h comp-c-include +./usr/include/i386/segments.h comp-c-include +./usr/include/i386/setjmp.h comp-c-include +./usr/include/i386/signal.h comp-c-include +./usr/include/i386/specialreg.h comp-c-include +./usr/include/i386/spkr.h comp-c-include +./usr/include/i386/stdarg.h comp-obsolete obsolete +./usr/include/i386/svr4_machdep.h comp-c-include +./usr/include/i386/sysarch.h comp-c-include +./usr/include/i386/trap.h comp-c-include +./usr/include/i386/tss.h comp-c-include +./usr/include/i386/types.h comp-c-include +./usr/include/i386/varargs.h comp-obsolete obsolete +./usr/include/i386/vm86.h comp-c-include +./usr/include/i386/vmparam.h comp-c-include +./usr/include/i386/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/include/mm_malloc.h comp-obsolete obsolete +./usr/include/mmintrin.h comp-obsolete obsolete +./usr/include/pmmintrin.h comp-obsolete obsolete +./usr/include/x64_64 comp-obsolete obsolete +./usr/include/x64_64/ansi.h comp-obsolete obsolete +./usr/include/x64_64/aout_machdep.h comp-obsolete obsolete +./usr/include/x64_64/asm.h comp-obsolete obsolete +./usr/include/x64_64/bootinfo.h comp-obsolete obsolete +./usr/include/x64_64/bswap.h comp-obsolete obsolete +./usr/include/x64_64/bus.h comp-obsolete obsolete +./usr/include/x64_64/byte_swap.h comp-obsolete obsolete +./usr/include/x64_64/cdefs.h comp-obsolete obsolete +./usr/include/x64_64/cpu.h comp-obsolete obsolete +./usr/include/x64_64/cpufunc.h comp-obsolete obsolete +./usr/include/x64_64/disklabel.h comp-obsolete obsolete +./usr/include/x64_64/elf_machdep.h comp-obsolete obsolete +./usr/include/x64_64/endian.h comp-obsolete obsolete +./usr/include/x64_64/endian_machdep.h comp-obsolete obsolete +./usr/include/x64_64/float.h comp-obsolete obsolete +./usr/include/x64_64/fpu.h comp-obsolete obsolete +./usr/include/x64_64/frame.h comp-obsolete obsolete +./usr/include/x64_64/gdt.h comp-obsolete obsolete +./usr/include/x64_64/ieee.h comp-obsolete obsolete +./usr/include/x64_64/ieeefp.h comp-obsolete obsolete +./usr/include/x64_64/int_const.h comp-obsolete obsolete +./usr/include/x64_64/int_fmtio.h comp-obsolete obsolete +./usr/include/x64_64/int_limits.h comp-obsolete obsolete +./usr/include/x64_64/int_mwgwtypes.h comp-obsolete obsolete +./usr/include/x64_64/int_types.h comp-obsolete obsolete +./usr/include/x64_64/intr.h comp-obsolete obsolete +./usr/include/x64_64/intrdefs.h comp-obsolete obsolete +./usr/include/x64_64/kcore.h comp-obsolete obsolete +./usr/include/x64_64/limits.h comp-obsolete obsolete +./usr/include/x64_64/lock.h comp-obsolete obsolete +./usr/include/x64_64/math.h comp-obsolete obsolete +./usr/include/x64_64/mcontext.h comp-obsolete obsolete +./usr/include/x64_64/mtrr.h comp-obsolete obsolete +./usr/include/x64_64/netbsd32_machdep.h comp-obsolete obsolete +./usr/include/x64_64/param.h comp-obsolete obsolete +./usr/include/x64_64/pcb.h comp-obsolete obsolete +./usr/include/x64_64/pci_machdep.h comp-obsolete obsolete +./usr/include/x64_64/pio.h comp-obsolete obsolete +./usr/include/x64_64/pmap.h comp-obsolete obsolete +./usr/include/x64_64/pmc.h comp-obsolete obsolete +./usr/include/x64_64/proc.h comp-obsolete obsolete +./usr/include/x64_64/profile.h comp-obsolete obsolete +./usr/include/x64_64/psl.h comp-obsolete obsolete +./usr/include/x64_64/pte.h comp-obsolete obsolete +./usr/include/x64_64/ptrace.h comp-obsolete obsolete +./usr/include/x64_64/reg.h comp-obsolete obsolete +./usr/include/x64_64/segments.h comp-obsolete obsolete +./usr/include/x64_64/setjmp.h comp-obsolete obsolete +./usr/include/x64_64/signal.h comp-obsolete obsolete +./usr/include/x64_64/specialreg.h comp-obsolete obsolete +./usr/include/x64_64/stdarg.h comp-obsolete obsolete +./usr/include/x64_64/sysarch.h comp-obsolete obsolete +./usr/include/x64_64/trap.h comp-obsolete obsolete +./usr/include/x64_64/tss.h comp-obsolete obsolete +./usr/include/x64_64/types.h comp-obsolete obsolete +./usr/include/x64_64/userret.h comp-obsolete obsolete +./usr/include/x64_64/varargs.h comp-obsolete obsolete +./usr/include/x64_64/vmparam.h comp-obsolete obsolete +./usr/include/x86 comp-c-include +./usr/include/x86/aout_machdep.h comp-c-include +./usr/include/x86/autoconf.h comp-obsolete obsolete +./usr/include/x86/bootinfo.h comp-c-include +./usr/include/x86/bus.h comp-obsolete obsolete +./usr/include/x86/cacheinfo.h comp-c-include +./usr/include/x86/cpu.h comp-c-include +./usr/include/x86/cpu_ucode.h comp-c-include +./usr/include/x86/cputypes.h comp-c-include +./usr/include/x86/cpuvar.h comp-c-include +./usr/include/x86/float.h comp-c-include +./usr/include/x86/ieee.h comp-c-include +./usr/include/x86/ieeefp.h comp-c-include +./usr/include/x86/intr.h comp-c-include +./usr/include/x86/intrdefs.h comp-c-include +./usr/include/x86/lock.h comp-c-include +./usr/include/x86/math.h comp-c-include +./usr/include/x86/mtrr.h comp-c-include +./usr/include/x86/mutex.h comp-c-include +./usr/include/x86/pio.h comp-c-include +./usr/include/x86/pmap.h comp-c-include +./usr/include/x86/pmap_pv.h comp-c-include +./usr/include/x86/psl.h comp-c-include +./usr/include/x86/pte.h comp-c-include +./usr/include/x86/rwlock.h comp-c-include +./usr/include/x86/specialreg.h comp-c-include +./usr/include/x86/sysarch.h comp-c-include +./usr/include/x86/trap.h comp-c-include +./usr/include/x86/via_padlock.h comp-c-include +./usr/include/xen comp-c-include +./usr/include/xen/xenio.h comp-c-include +./usr/include/xen/xenio3.h comp-c-include +./usr/include/xmmintrin.h comp-obsolete obsolete +./usr/lib/i386/crt0.o comp-c-lib compat +./usr/lib/i386/crtbegin.o comp-c-lib compat +./usr/lib/i386/crtbeginS.o comp-c-lib compat,pic +./usr/lib/i386/crtbeginT.o comp-c-lib compat,pic +./usr/lib/i386/crtend.o comp-c-lib compat +./usr/lib/i386/crtendS.o comp-c-lib compat,pic +./usr/lib/i386/crti.o comp-c-lib compat +./usr/lib/i386/crtn.o comp-c-lib compat +./usr/lib/i386/gcrt0.o comp-c-lib compat +./usr/lib/i386/i18n/libBIG5.a comp-c-lib compat +./usr/lib/i386/i18n/libBIG5.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libBIG5_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libBIG5_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libBIG5_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libDECHanyu.a comp-c-lib compat +./usr/lib/i386/i18n/libDECHanyu.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libDECHanyu_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libDECHanyu_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libDECHanyu_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libEUC.a comp-c-lib compat +./usr/lib/i386/i18n/libEUC.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libEUCTW.a comp-c-lib compat +./usr/lib/i386/i18n/libEUCTW.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libEUCTW_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libEUCTW_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libEUCTW_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libEUC_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libEUC_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libEUC_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libGBK2K.a comp-c-lib compat +./usr/lib/i386/i18n/libGBK2K.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libGBK2K_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libGBK2K_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libGBK2K_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libHZ.a comp-c-lib compat +./usr/lib/i386/i18n/libHZ.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libHZ_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libHZ_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libHZ_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libISO2022.a comp-c-lib compat +./usr/lib/i386/i18n/libISO2022.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libISO2022_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libISO2022_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libISO2022_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libJOHAB.a comp-c-lib compat +./usr/lib/i386/i18n/libJOHAB.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libJOHAB_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libJOHAB_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libJOHAB_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libMSKanji.a comp-c-lib compat +./usr/lib/i386/i18n/libMSKanji.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libMSKanji_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libMSKanji_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libMSKanji_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libUES.a comp-c-lib compat +./usr/lib/i386/i18n/libUES.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libUES_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libUES_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libUES_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libUTF1632.a comp-c-lib compat +./usr/lib/i386/i18n/libUTF1632.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libUTF1632_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libUTF1632_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libUTF1632_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libUTF7.a comp-c-lib compat +./usr/lib/i386/i18n/libUTF7.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libUTF7_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libUTF7_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libUTF7_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libUTF8.a comp-c-lib compat +./usr/lib/i386/i18n/libUTF8.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libUTF8_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libUTF8_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libUTF8_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libVIQR.a comp-c-lib compat +./usr/lib/i386/i18n/libVIQR.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libVIQR_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libVIQR_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libVIQR_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libZW.a comp-c-lib compat +./usr/lib/i386/i18n/libZW.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libZW_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libZW_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libZW_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libiconv_none.a comp-c-lib compat +./usr/lib/i386/i18n/libiconv_none.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libiconv_none_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libiconv_none_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libiconv_none_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libiconv_std.a comp-c-lib compat +./usr/lib/i386/i18n/libiconv_std.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libiconv_std_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libiconv_std_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libiconv_std_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_646.a comp-c-lib compat +./usr/lib/i386/i18n/libmapper_646.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libmapper_646_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libmapper_646_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_646_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_none.a comp-c-lib compat +./usr/lib/i386/i18n/libmapper_none.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libmapper_none_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libmapper_none_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_none_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_parallel.a comp-c-lib compat +./usr/lib/i386/i18n/libmapper_parallel.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libmapper_parallel_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libmapper_parallel_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_parallel_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_serial.a comp-c-lib compat +./usr/lib/i386/i18n/libmapper_serial.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libmapper_serial_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libmapper_serial_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_serial_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_std.a comp-c-lib compat +./usr/lib/i386/i18n/libmapper_std.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libmapper_std_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libmapper_std_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_std_pic.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_zone.a comp-c-lib compat +./usr/lib/i386/i18n/libmapper_zone.so comp-sys-shlib compat,pic +./usr/lib/i386/i18n/libmapper_zone_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/i18n/libmapper_zone_p.a comp-obsolete obsolete +./usr/lib/i386/i18n/libmapper_zone_pic.a comp-obsolete obsolete +./usr/lib/i386/libamu.a comp-obsolete obsolete +./usr/lib/i386/libamu_g.a comp-obsolete obsolete +./usr/lib/i386/libamu_p.a comp-obsolete obsolete +./usr/lib/i386/libamu_pic.a comp-obsolete obsolete +./usr/lib/i386/libarchive.a comp-c-lib compat +./usr/lib/i386/libarchive.so comp-sys-shlib compat,pic +./usr/lib/i386/libarchive_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libarchive_p.a comp-c-proflib compat,profile +./usr/lib/i386/libarchive_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libasn1.a comp-c-lib compat,kerberos +./usr/lib/i386/libasn1.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libasn1_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libasn1_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libasn1_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libatf-c++.a comp-c-lib compat,atf +./usr/lib/i386/libatf-c++.so comp-sys-shlib compat,pic,atf +./usr/lib/i386/libatf-c++_g.a comp-c-proflib compat,debuglib,atf +./usr/lib/i386/libatf-c++_p.a comp-c-proflib compat,profile,atf +./usr/lib/i386/libatf-c++_pic.a comp-c-piclib compat,pic,atf +./usr/lib/i386/libatf-c.a comp-c-lib compat,atf +./usr/lib/i386/libatf-c.so comp-sys-shlib compat,pic,atf +./usr/lib/i386/libatf-c_g.a comp-c-proflib compat,debuglib,atf +./usr/lib/i386/libatf-c_p.a comp-c-proflib compat,profile,atf +./usr/lib/i386/libatf-c_pic.a comp-c-piclib compat,pic,atf +./usr/lib/i386/libbfd.a comp-obsolete obsolete +./usr/lib/i386/libbfd.so comp-obsolete obsolete +./usr/lib/i386/libbfd_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libbfd_p.a comp-obsolete obsolete +./usr/lib/i386/libbfd_pic.a comp-obsolete obsolete +./usr/lib/i386/libbind9.a comp-c-lib compat +./usr/lib/i386/libbind9.so comp-sys-shlib compat,pic +./usr/lib/i386/libbind9_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libbind9_p.a comp-c-proflib compat,profile +./usr/lib/i386/libbind9_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libbluetooth.a comp-c-lib compat +./usr/lib/i386/libbluetooth.so comp-sys-shlib compat,pic +./usr/lib/i386/libbluetooth_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libbluetooth_p.a comp-c-proflib compat,profile +./usr/lib/i386/libbluetooth_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libbsdmalloc.a comp-c-lib compat +./usr/lib/i386/libbsdmalloc.so comp-sys-shlib compat,pic +./usr/lib/i386/libbsdmalloc_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libbsdmalloc_p.a comp-c-proflib compat,profile +./usr/lib/i386/libbsdmalloc_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libbz2.a comp-c-lib compat +./usr/lib/i386/libbz2.so comp-sys-shlib compat,pic +./usr/lib/i386/libbz2_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libbz2_p.a comp-c-proflib compat,profile +./usr/lib/i386/libbz2_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libc.a comp-c-lib compat +./usr/lib/i386/libc.so comp-sys-shlib compat,pic +./usr/lib/i386/libc_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libc_p.a comp-c-proflib compat,profile +./usr/lib/i386/libc_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libcom_err.a comp-c-lib compat,kerberos +./usr/lib/i386/libcom_err.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libcom_err_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libcom_err_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libcom_err_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libcompat.a comp-c-lib compat +./usr/lib/i386/libcompat_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libcompat_p.a comp-c-proflib compat,profile +./usr/lib/i386/libcompat_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libcrypt.a comp-c-lib compat +./usr/lib/i386/libcrypt.so comp-sys-shlib compat,pic +./usr/lib/i386/libcrypt_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libcrypt_p.a comp-c-proflib compat,profile +./usr/lib/i386/libcrypt_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libcrypto.a comp-c-lib compat,crypto +./usr/lib/i386/libcrypto_g.a comp-c-proflib compat,crypto,debuglib +./usr/lib/i386/libcrypto.so base-sys-shlib compat,crypto,pic +./usr/lib/i386/libcrypto_p.a comp-c-proflib compat,crypto,profile +./usr/lib/i386/libcrypto_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/i386/libcrypto_idea.a comp-obsolete obsolete +./usr/lib/i386/libcrypto_idea.so base-obsolete obsolete +./usr/lib/i386/libcrypto_idea_g.a comp-obsolete obsolete +./usr/lib/i386/libcrypto_idea_p.a comp-obsolete obsolete +./usr/lib/i386/libcrypto_idea_pic.a comp-obsolete obsolete +./usr/lib/i386/libcrypto_mdc2.a comp-obsolete obsolete +./usr/lib/i386/libcrypto_mdc2.so base-obsolete obsolete +./usr/lib/i386/libcrypto_mdc2_g.a comp-obsolete obsolete +./usr/lib/i386/libcrypto_mdc2_p.a comp-obsolete obsolete +./usr/lib/i386/libcrypto_mdc2_pic.a comp-obsolete obsolete +./usr/lib/i386/libcrypto_rc5.a comp-c-lib crypto_rc5,compat +./usr/lib/i386/libcrypto_rc5.so base-sys-shlib compat,crypto,crypto_rc5,pic +./usr/lib/i386/libcrypto_rc5_g.a comp-c-proflib compat,crypto,crypto_rc5,debuglib +./usr/lib/i386/libcrypto_rc5_p.a comp-c-proflib crypto_rc5,compat,profile +./usr/lib/i386/libcrypto_rc5_pic.a comp-c-piclib compat,crypto,crypto_rc5,pic +./usr/lib/i386/libcurses.a comp-c-lib compat +./usr/lib/i386/libcurses.so comp-sys-shlib compat,pic +./usr/lib/i386/libcurses_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libcurses_p.a comp-c-proflib compat,profile +./usr/lib/i386/libcurses_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libdes.a comp-c-lib compat +./usr/lib/i386/libdes.so comp-sys-shlib compat,pic +./usr/lib/i386/libdes_g.a -unknown- compat,debuglib +./usr/lib/i386/libdes_p.a comp-c-proflib compat,profile +./usr/lib/i386/libdes_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libdevmapper.a comp-c-lib compat,lvm +./usr/lib/i386/libdevmapper.so comp-sys-shlib compat,pic,lvm +./usr/lib/i386/libdevmapper_g.a -unknown- compat,debuglib,lvm +./usr/lib/i386/libdevmapper_p.a comp-c-proflib compat,profile,lvm +./usr/lib/i386/libdevmapper_pic.a comp-c-piclib compat,pic,lvm +./usr/lib/i386/libdm.a comp-c-lib compat +./usr/lib/i386/libdm.so comp-sys-shlib compat,pic +./usr/lib/i386/libdm_g.a -unknown- compat,debuglib +./usr/lib/i386/libdm_p.a comp-c-proflib compat,profile +./usr/lib/i386/libdm_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libdns.a comp-c-lib compat +./usr/lib/i386/libdns.so comp-sys-shlib compat,pic +./usr/lib/i386/libdns_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libdns_p.a comp-c-proflib compat,profile +./usr/lib/i386/libdns_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libdns_sd.a comp-c-lib compat,mdns +./usr/lib/i386/libdns_sd.so comp-mdns-shlib compat,pic,mdns +./usr/lib/i386/libdns_sd_g.a comp-c-proflib compat,debuglib,mdns +./usr/lib/i386/libdns_sd_p.a comp-c-proflib compat,profile,mdns +./usr/lib/i386/libdns_sd_pic.a comp-c-piclib compat,pic,mdns +./usr/lib/i386/libdwarf.a comp-c-lib compat +./usr/lib/i386/libdwarf.so comp-sys-shlib compat,pic +./usr/lib/i386/libdwarf_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libdwarf_p.a comp-c-proflib compat,profile +./usr/lib/i386/libdwarf_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libedit.a comp-c-lib compat +./usr/lib/i386/libedit.so comp-sys-shlib compat,pic +./usr/lib/i386/libedit_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libedit_p.a comp-c-proflib compat,profile +./usr/lib/i386/libedit_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libelf.a comp-c-lib compat +./usr/lib/i386/libelf.so comp-sys-shlib compat,pic +./usr/lib/i386/libelf_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libelf_p.a comp-c-proflib compat,profile +./usr/lib/i386/libelf_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libevent.a comp-c-lib compat +./usr/lib/i386/libevent.so comp-sys-shlib compat,pic +./usr/lib/i386/libevent_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libevent_p.a comp-c-proflib compat,profile +./usr/lib/i386/libevent_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libexecinfo.a comp-c-lib compat +./usr/lib/i386/libexecinfo.so comp-sys-shlib compat,pic +./usr/lib/i386/libexecinfo_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libexecinfo_p.a comp-c-proflib compat,profile +./usr/lib/i386/libexecinfo_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libexpat.a comp-c-lib compat +./usr/lib/i386/libexpat.so comp-sys-shlib compat,pic +./usr/lib/i386/libexpat_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libexpat_p.a comp-c-proflib compat,profile +./usr/lib/i386/libexpat_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libfetch.a comp-c-lib compat +./usr/lib/i386/libfetch.so comp-sys-shlib compat,pic +./usr/lib/i386/libfetch_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libfetch_p.a comp-c-proflib compat,profile +./usr/lib/i386/libfetch_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libfl.a comp-c-lib compat +./usr/lib/i386/libfl_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libfl_p.a comp-c-proflib compat,profile +./usr/lib/i386/libform.a comp-c-lib compat +./usr/lib/i386/libform.so comp-sys-shlib compat,pic +./usr/lib/i386/libform_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libform_p.a comp-c-proflib compat,profile +./usr/lib/i386/libform_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libgcc.a comp-c-lib compat,gcccmds +./usr/lib/i386/libgcc_eh.a comp-c-lib compat,pic,gcccmds +./usr/lib/i386/libgcc_eh_g.a comp-c-proflib compat,debuglib,gcccmds +./usr/lib/i386/libgcc_eh_p.a comp-c-proflib obsolete +./usr/lib/i386/libgcc_eh_pic.a comp-c-piclib obsolete +./usr/lib/i386/libgcc_g.a comp-c-proflib compat,debuglib,gcccmds +./usr/lib/i386/libgcc_p.a comp-c-proflib obsolete +./usr/lib/i386/libgcc_pic.a comp-c-piclib obsolete +./usr/lib/i386/libgcc_s.a comp-obsolete obsolete +./usr/lib/i386/libgcc_s.so comp-sys-shlib compat,pic,gcccmds +./usr/lib/i386/libgcc_s_g.a comp-c-proflib compat,debuglib,gcccmds +./usr/lib/i386/libgcc_s_p.a comp-obsolete obsolete +./usr/lib/i386/libgcc_s_pic.a comp-obsolete obsolete +./usr/lib/i386/libgcov.a comp-c-lib compat,gcccmds +./usr/lib/i386/libgcov_g.a comp-c-proflib compat,debuglib,gcccmds +./usr/lib/i386/libgcov_p.a comp-obsolete obsolete +./usr/lib/i386/libgcov_pic.a comp-obsolete obsolete +./usr/lib/i386/libgmp.a comp-c-lib obsolete +./usr/lib/i386/libgmp.so comp-sys-shlib obsolete +./usr/lib/i386/libgmp_g.a -unknown- obsolete +./usr/lib/i386/libgmp_p.a comp-c-proflib obsolete +./usr/lib/i386/libgmp_pic.a comp-c-piclib obsolete +./usr/lib/i386/libgnumalloc.a comp-c-lib compat +./usr/lib/i386/libgnumalloc.so comp-sys-shlib compat,pic +./usr/lib/i386/libgnumalloc_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libgnumalloc_p.a comp-c-proflib compat,profile +./usr/lib/i386/libgnumalloc_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libgomp.a comp-sys-shlib compat,gcc=45 +./usr/lib/i386/libgomp.so comp-sys-shlib compat,pic,gcc=45 +./usr/lib/i386/libgomp_g.a comp-c-proflib compat,debuglib,gcc=45 +./usr/lib/i386/libgomp_p.a comp-c-proflib compat,profile,gcc=45 +./usr/lib/i386/libgomp_pic.a comp-c-piclib compat,pic,gcc=45 +./usr/lib/i386/libgssapi.a comp-c-lib compat,kerberos +./usr/lib/i386/libgssapi.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libgssapi_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libgssapi_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libgssapi_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libhdb.a comp-c-lib compat,kerberos +./usr/lib/i386/libhdb.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libhdb_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libhdb_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libhdb_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libheimbase.a comp-c-lib compat,kerberos +./usr/lib/i386/libheimbase.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libheimbase_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libheimbase_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libheimbase_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/i386/libheimntlm.a comp-c-lib compat,kerberos +./usr/lib/i386/libheimntlm.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libheimntlm_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libheimntlm_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libheimntlm_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libhx509.a comp-c-lib compat,kerberos +./usr/lib/i386/libhx509.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libhx509_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libhx509_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libhx509_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libi386.a comp-c-lib compat +./usr/lib/i386/libi386.so comp-sys-shlib compat,pic +./usr/lib/i386/libi386_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libi386_p.a comp-c-proflib compat,profile +./usr/lib/i386/libi386_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libiberty.a comp-obsolete obsolete +./usr/lib/i386/libiberty_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libiberty_p.a comp-obsolete obsolete +./usr/lib/i386/libiberty_pic.a comp-obsolete obsolete +./usr/lib/i386/libintl.a comp-c-lib compat +./usr/lib/i386/libintl.so comp-sys-shlib compat,pic +./usr/lib/i386/libintl_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libintl_p.a comp-c-proflib compat,profile +./usr/lib/i386/libintl_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libipsec.a comp-c-lib compat +./usr/lib/i386/libipsec.so comp-sys-shlib compat,pic +./usr/lib/i386/libipsec_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libipsec_p.a comp-c-proflib compat,profile +./usr/lib/i386/libipsec_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libisc.a comp-c-lib compat +./usr/lib/i386/libisc.so comp-sys-shlib compat,pic +./usr/lib/i386/libisc_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libisc_p.a comp-c-proflib compat,profile +./usr/lib/i386/libisc_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libisccc.a comp-c-lib compat +./usr/lib/i386/libisccc.so comp-sys-shlib compat,pic +./usr/lib/i386/libisccc_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libisccc_p.a comp-c-proflib compat,profile +./usr/lib/i386/libisccc_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libisccfg.a comp-c-lib compat +./usr/lib/i386/libisccfg.so comp-sys-shlib compat,pic +./usr/lib/i386/libisccfg_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libisccfg_p.a comp-c-proflib compat,profile +./usr/lib/i386/libisccfg_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libiscsi.a comp-c-lib compat,iscsi +./usr/lib/i386/libiscsi.so base-sys-shlib compat,pic,iscsi +./usr/lib/i386/libiscsi_g.a base-sys-shlib compat,debuglib,iscsi +./usr/lib/i386/libiscsi_p.a comp-c-proflib compat,profile,iscsi +./usr/lib/i386/libiscsi_pic.a comp-c-piclib compat,pic,iscsi +./usr/lib/i386/libisns.a comp-c-lib compat +./usr/lib/i386/libisns.so comp-sys-shlib compat +./usr/lib/i386/libisns_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libisns_p.a comp-c-proflib compat,profile +./usr/lib/i386/libisns_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libkadm5clnt.a comp-c-lib compat,kerberos +./usr/lib/i386/libkadm5clnt.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libkadm5clnt_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libkadm5clnt_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libkadm5clnt_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libkadm5srv.a comp-c-lib compat,kerberos +./usr/lib/i386/libkadm5srv.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libkadm5srv_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libkadm5srv_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libkadm5srv_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libkafs.a comp-c-lib compat,kerberos +./usr/lib/i386/libkafs.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libkafs_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libkafs_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libkafs_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libkdc.a comp-c-lib compat,kerberos +./usr/lib/i386/libkdc.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libkdc_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libkdc_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libkdc_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/i386/libkrb5.a comp-c-lib compat,kerberos +./usr/lib/i386/libkrb5.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libkrb5_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libkrb5_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libkrb5_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libkvm.a comp-c-lib compat +./usr/lib/i386/libkvm.so comp-sys-shlib compat,pic +./usr/lib/i386/libkvm_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libkvm_p.a comp-c-proflib compat,profile +./usr/lib/i386/libkvm_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libl.a comp-c-lib compat +./usr/lib/i386/libl_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libl_p.a comp-c-proflib compat,profile +./usr/lib/i386/libl_pic.a comp-obsolete obsolete +./usr/lib/i386/liblber.a comp-c-lib compat,ldap +./usr/lib/i386/liblber.so comp-sys-shlib compat,pic,ldap +./usr/lib/i386/liblber_g.a comp-c-proflib compat,debuglib,ldap +./usr/lib/i386/liblber_p.a comp-c-proflib compat,profile,ldap +./usr/lib/i386/liblber_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/i386/libldap.a comp-c-lib compat,ldap +./usr/lib/i386/libldap.so comp-sys-shlib compat,pic,ldap +./usr/lib/i386/libldap_g.a comp-c-proflib compat,debuglib,ldap +./usr/lib/i386/libldap_p.a comp-c-proflib compat,profile,ldap +./usr/lib/i386/libldap_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/i386/libldap_r.a comp-c-lib compat,ldap +./usr/lib/i386/libldap_r.so comp-sys-shlib compat,pic,ldap +./usr/lib/i386/libldap_r_g.a comp-c-proflib compat,debuglib,ldap +./usr/lib/i386/libldap_r_p.a comp-c-proflib compat,profile,ldap +./usr/lib/i386/libldap_r_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/i386/liblua.a comp-c-lib compat +./usr/lib/i386/liblua_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/liblua_p.a comp-c-proflib compat,profile +./usr/lib/i386/liblua_pic.a comp-c-piclib compat,pic +./usr/lib/i386/liblwres.a comp-c-lib compat +./usr/lib/i386/liblwres.so comp-sys-shlib compat,pic +./usr/lib/i386/liblwres_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/liblwres_p.a comp-c-proflib compat,profile +./usr/lib/i386/liblwres_pic.a comp-c-piclib compat,pic +./usr/lib/i386/liblzf.a comp-c-lib compat +./usr/lib/i386/liblzf.so comp-sys-shlib compat,pic +./usr/lib/i386/liblzf_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/liblzf_p.a comp-c-proflib compat,profile +./usr/lib/i386/liblzf_pic.a comp-c-piclib compat,pic +./usr/lib/i386/liblzma.a comp-c-lib compat +./usr/lib/i386/liblzma.so comp-sys-shlib compat,pic +./usr/lib/i386/liblzma_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/liblzma_p.a comp-c-proflib compat,profile +./usr/lib/i386/liblzma_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libm.a comp-c-lib compat +./usr/lib/i386/libm.so comp-sys-shlib compat,pic +./usr/lib/i386/libm_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libm_p.a comp-c-proflib compat,profile +./usr/lib/i386/libm_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libmagic.a comp-c-lib compat +./usr/lib/i386/libmagic.so comp-sys-shlib compat,pic +./usr/lib/i386/libmagic_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libmagic_p.a comp-c-proflib compat,profile +./usr/lib/i386/libmagic_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libmenu.a comp-c-lib compat +./usr/lib/i386/libmenu.so comp-sys-shlib compat,pic +./usr/lib/i386/libmenu_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libmenu_p.a comp-c-proflib compat,profile +./usr/lib/i386/libmenu_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libmj.a comp-c-lib compat +./usr/lib/i386/libmj.so comp-sys-shlib compat,pic +./usr/lib/i386/libmj_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libmj_p.a comp-c-proflib compat,profile +./usr/lib/i386/libmj_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libmpc.a comp-c-lib obsolete +./usr/lib/i386/libmpc.so comp-sys-shlib obsolete +./usr/lib/i386/libmpc_g.a -unknown- obsolete +./usr/lib/i386/libmpc_p.a comp-c-proflib obsolete +./usr/lib/i386/libmpc_pic.a comp-c-piclib obsolete +./usr/lib/i386/libmpfr.a comp-c-lib obsolete +./usr/lib/i386/libmpfr.so comp-sys-shlib obsolete +./usr/lib/i386/libmpfr_g.a -unknown- obsolete +./usr/lib/i386/libmpfr_p.a comp-c-proflib obsolete +./usr/lib/i386/libmpfr_pic.a comp-c-piclib obsolete +./usr/lib/i386/libnetpgp.a comp-c-lib compat +./usr/lib/i386/libnetpgp.so comp-sys-shlib compat,pic +./usr/lib/i386/libnetpgp_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libnetpgp_p.a comp-c-proflib compat,profile +./usr/lib/i386/libnetpgp_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libnpf.a comp-c-lib compat,npf +./usr/lib/i386/libnpf.so comp-sys-shlib compat,npf,pic +./usr/lib/i386/libnpf_g.a comp-c-proflib compat,npf,debuglib +./usr/lib/i386/libnpf_p.a comp-c-proflib compat,npf,profile +./usr/lib/i386/libnpf_pic.a comp-c-piclib compat,npf,pic +./usr/lib/i386/libobjc.a comp-c-lib compat,gcccmds +./usr/lib/i386/libobjc.so comp-sys-shlib compat,pic,gcccmds +./usr/lib/i386/libobjc_g.a comp-c-proflib compat,debuglib,gcccmds +./usr/lib/i386/libobjc_p.a comp-c-proflib compat,profile,gcccmds +./usr/lib/i386/libobjc_pic.a comp-c-piclib compat,pic,gcccmds +./usr/lib/i386/libopcodes.a comp-obsolete obsolete +./usr/lib/i386/libopcodes.so comp-obsolete obsolete +./usr/lib/i386/libopcodes_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libopcodes_p.a comp-obsolete obsolete +./usr/lib/i386/libopcodes_pic.a comp-obsolete obsolete +./usr/lib/i386/libossaudio.a comp-c-lib compat +./usr/lib/i386/libossaudio.so comp-sys-shlib compat,pic +./usr/lib/i386/libossaudio_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libossaudio_p.a comp-c-proflib compat,profile +./usr/lib/i386/libossaudio_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libp2k.a comp-c-lib compat,rump +./usr/lib/i386/libp2k.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/libp2k_g.a comp-c-proflib compat,debuglib,rump +./usr/lib/i386/libp2k_p.a comp-c-proflib compat,profile,rump +./usr/lib/i386/libp2k_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/libpam.a comp-c-lib compat,pam +./usr/lib/i386/libpam.so comp-sys-shlib compat,pic,pam +./usr/lib/i386/libpam_g.a comp-c-proflib compat,debuglib,pam +./usr/lib/i386/libpam_p.a comp-obsolete obsolete +./usr/lib/i386/libpam_pic.a comp-c-piclib compat,pic,pam +./usr/lib/i386/libpcap.a comp-c-lib compat +./usr/lib/i386/libpcap.so comp-sys-shlib compat,pic +./usr/lib/i386/libpcap_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libpcap_p.a comp-c-proflib compat,profile +./usr/lib/i386/libpcap_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libpci.a comp-c-lib compat +./usr/lib/i386/libpci.so comp-sys-shlib compat,pic +./usr/lib/i386/libpci_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libpci_p.a comp-c-proflib compat,profile +./usr/lib/i386/libpci_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libperfuse.a comp-c-lib compat +./usr/lib/i386/libperfuse.so comp-sys-shlib compat,pic +./usr/lib/i386/libperfuse_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libperfuse_p.a comp-c-proflib compat,profile +./usr/lib/i386/libperfuse_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libposix.a comp-c-lib compat +./usr/lib/i386/libposix.so comp-sys-shlib compat,pic +./usr/lib/i386/libposix_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libposix_p.a comp-c-proflib compat,profile +./usr/lib/i386/libposix_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libppath.a comp-c-lib compat +./usr/lib/i386/libppath.so comp-sys-shlib compat,pic +./usr/lib/i386/libppath_g.a -unknown- compat,debuglib +./usr/lib/i386/libppath_p.a comp-c-proflib compat,profile +./usr/lib/i386/libppath_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libprop.a comp-c-lib compat +./usr/lib/i386/libprop.so comp-sys-shlib compat,pic +./usr/lib/i386/libprop_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libprop_p.a comp-c-proflib compat,profile +./usr/lib/i386/libprop_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libpthread.a comp-c-lib compat +./usr/lib/i386/libpthread.so comp-sys-shlib compat,pic +./usr/lib/i386/libpthread_dbg.a comp-c-lib compat +./usr/lib/i386/libpthread_dbg.so comp-sys-shlib compat,pic +./usr/lib/i386/libpthread_dbg_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libpthread_dbg_p.a comp-c-proflib compat,profile +./usr/lib/i386/libpthread_dbg_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libpthread_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libpthread_p.a comp-c-proflib compat,profile +./usr/lib/i386/libpthread_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libpuffs.a comp-c-lib compat +./usr/lib/i386/libpuffs.so comp-sys-shlib compat,pic +./usr/lib/i386/libpuffs_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libpuffs_p.a comp-c-proflib compat,profile +./usr/lib/i386/libpuffs_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libquota.a comp-c-lib compat +./usr/lib/i386/libquota.so comp-sys-shlib compat,pic +./usr/lib/i386/libquota_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libquota_p.a comp-c-proflib compat,profile +./usr/lib/i386/libquota_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libradius.a comp-c-lib compat +./usr/lib/i386/libradius.so comp-sys-shlib compat,pic +./usr/lib/i386/libradius_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libradius_p.a comp-c-proflib compat,profile +./usr/lib/i386/libradius_pic.a comp-c-piclib compat,pic +./usr/lib/i386/librefuse.a comp-c-lib compat +./usr/lib/i386/librefuse.so comp-sys-shlib compat,pic +./usr/lib/i386/librefuse_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/librefuse_p.a comp-c-proflib compat,profile +./usr/lib/i386/librefuse_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libresolv.a comp-c-lib compat +./usr/lib/i386/libresolv.so comp-sys-shlib compat,pic +./usr/lib/i386/libresolv_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libresolv_p.a comp-c-proflib compat,profile +./usr/lib/i386/libresolv_pic.a comp-c-piclib compat,pic +./usr/lib/i386/librmt.a comp-c-lib compat +./usr/lib/i386/librmt_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/librmt_p.a comp-obsolete obsolete +./usr/lib/i386/librmt_pic.a comp-obsolete obsolete +./usr/lib/i386/libroken.a comp-c-lib compat,kerberos +./usr/lib/i386/libroken.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libroken_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libroken_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libroken_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/librpcsvc.a comp-c-lib compat +./usr/lib/i386/librpcsvc.so comp-sys-shlib compat,pic +./usr/lib/i386/librpcsvc_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/librpcsvc_p.a comp-c-proflib compat,profile +./usr/lib/i386/librpcsvc_pic.a comp-c-piclib compat,pic +./usr/lib/i386/librt.a comp-c-lib compat +./usr/lib/i386/librt.so comp-sys-shlib compat,pic +./usr/lib/i386/librt_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/librt_p.a comp-c-proflib compat,profile +./usr/lib/i386/librt_pic.a comp-c-piclib compat,pic +./usr/lib/i386/librump.a comp-c-lib compat,rump +./usr/lib/i386/librump.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/librump_g.a comp-c-proflib compat,debuglib,rump +./usr/lib/i386/librump_p.a comp-c-proflib compat,profile,rump +./usr/lib/i386/librump_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/librumpclient.a comp-c-lib compat,rump +./usr/lib/i386/librumpclient.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/librumpclient_g.a comp-c-proflib compat,debuglib,rump +./usr/lib/i386/librumpclient_p.a comp-c-proflib compat,profile,rump +./usr/lib/i386/librumpclient_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/librumpcrypto.a comp-obsolete obsolete,rump +./usr/lib/i386/librumpcrypto.so comp-obsolete obsolete,rump +./usr/lib/i386/librumpcrypto_g.a comp-obsolete obsolete,rump +./usr/lib/i386/librumpcrypto_p.a comp-obsolete obsolete,rump +./usr/lib/i386/librumpcrypto_pic.a comp-obsolete obsolete,rump +./usr/lib/i386/librumpdev.a comp-c-lib compat,rump +./usr/lib/i386/librumpdev.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/librumpdev_g.a comp-c-proflib compat,debuglib,rump +./usr/lib/i386/librumpdev_p.a comp-c-proflib compat,profile,rump +./usr/lib/i386/librumpdev_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/librumphijack.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/librumphijack_g.a -unknown- compat,debuglib,rump +./usr/lib/i386/librumphijack_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/librumpnet.a comp-c-lib compat,rump +./usr/lib/i386/librumpnet.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/librumpnet_g.a comp-c-proflib compat,debuglib,rump +./usr/lib/i386/librumpnet_p.a comp-c-proflib compat,profile,rump +./usr/lib/i386/librumpnet_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/librumpuser.a comp-c-lib compat,rump +./usr/lib/i386/librumpuser.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/librumpuser_g.a comp-c-proflib compat,debuglib,rump +./usr/lib/i386/librumpuser_p.a comp-c-proflib compat,profile,rump +./usr/lib/i386/librumpuser_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/librumpvfs.a comp-c-lib compat,rump +./usr/lib/i386/librumpvfs.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/librumpvfs_g.a comp-c-proflib compat,debuglib,rump +./usr/lib/i386/librumpvfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/i386/librumpvfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/libsaslc.a comp-c-lib compat,crypto +./usr/lib/i386/libsaslc.so comp-sys-shlib compat,pic,crypto +./usr/lib/i386/libsaslc_g.a comp-c-proflib compat,debuglib,crypto +./usr/lib/i386/libsaslc_p.a comp-c-proflib compat,profile,crypto +./usr/lib/i386/libsaslc_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/i386/libsdp.a comp-obsolete obsolete +./usr/lib/i386/libsdp.so comp-obsolete obsolete +./usr/lib/i386/libsdp_p.a comp-obsolete obsolete +./usr/lib/i386/libsdp_pic.a comp-obsolete obsolete +./usr/lib/i386/libskey.a comp-c-lib compat,skey +./usr/lib/i386/libskey.so comp-sys-shlib compat,pic,skey +./usr/lib/i386/libskey_g.a comp-c-proflib compat,debuglib,skey +./usr/lib/i386/libskey_p.a comp-c-proflib compat,profile,skey +./usr/lib/i386/libskey_pic.a comp-c-piclib compat,pic,skey +./usr/lib/i386/libsl.a comp-c-lib compat,kerberos +./usr/lib/i386/libsl.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libsl_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libsl_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libsl_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libsqlite3.a comp-c-lib compat +./usr/lib/i386/libsqlite3.so comp-sys-shlib compat,pic +./usr/lib/i386/libsqlite3_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libsqlite3_p.a comp-c-proflib compat,profile +./usr/lib/i386/libsqlite3_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libss.a comp-obsolete obsolete +./usr/lib/i386/libss.so comp-obsolete obsolete +./usr/lib/i386/libss_g.a comp-obsolete obsolete +./usr/lib/i386/libss_p.a comp-obsolete obsolete +./usr/lib/i386/libss_pic.a comp-obsolete obsolete +./usr/lib/i386/libssh.a comp-c-lib compat +./usr/lib/i386/libssh.so comp-sys-shlib compat,pic +./usr/lib/i386/libssh_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libssh_p.a comp-c-proflib compat,profile +./usr/lib/i386/libssh_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libssl.a comp-c-lib compat +./usr/lib/i386/libssl.so comp-sys-shlib compat,pic +./usr/lib/i386/libssl_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libssl_p.a comp-c-proflib compat,profile +./usr/lib/i386/libssl_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libstdc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/i386/libstdc++.so comp-sys-shlib compat,pic,cxx,gcccmds +./usr/lib/i386/libstdc++_g.a comp-c-proflib compat,debuglib,cxx,gcccmds +./usr/lib/i386/libstdc++_p.a comp-c-proflib compat,profile,cxx,gcccmds +./usr/lib/i386/libstdc++_pic.a comp-c-piclib compat,pic,cxx,gcccmds +./usr/lib/i386/libsupc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/i386/libsupc++.so comp-obsolete obsolete +./usr/lib/i386/libsupc++_g.a comp-c-proflib compat,debuglib,cxx,gcccmds +./usr/lib/i386/libsupc++_pic.a comp-obsolete obsolete +./usr/lib/i386/libtermcap.a comp-c-lib compat +./usr/lib/i386/libtermcap.so comp-sys-shlib compat,pic +./usr/lib/i386/libtermcap_p.a comp-c-proflib compat,profile +./usr/lib/i386/libtermcap_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libterminfo.a comp-c-lib compat +./usr/lib/i386/libterminfo.so comp-sys-shlib compat,pic +./usr/lib/i386/libterminfo_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libterminfo_p.a comp-c-proflib compat,profile +./usr/lib/i386/libterminfo_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libtermlib.a comp-c-lib compat +./usr/lib/i386/libtermlib.so comp-sys-shlib compat,pic +./usr/lib/i386/libtermlib_p.a comp-c-proflib compat,profile +./usr/lib/i386/libtermlib_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libtre.a comp-c-lib compat +./usr/lib/i386/libtre.so comp-sys-shlib compat,pic +./usr/lib/i386/libtre_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libtre_p.a comp-c-proflib compat,profile +./usr/lib/i386/libtre_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libukfs.a comp-c-lib compat,rump +./usr/lib/i386/libukfs.so comp-sys-shlib compat,pic,rump +./usr/lib/i386/libukfs_g.a comp-c-proflib compat,debuglib,rump +./usr/lib/i386/libukfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/i386/libukfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/i386/libusbhid.a comp-c-lib compat +./usr/lib/i386/libusbhid.so comp-sys-shlib compat,pic +./usr/lib/i386/libusbhid_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libusbhid_p.a comp-c-proflib compat,profile +./usr/lib/i386/libusbhid_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libutil.a comp-c-lib compat +./usr/lib/i386/libutil.so comp-sys-shlib compat,pic +./usr/lib/i386/libutil_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libutil_p.a comp-c-proflib compat,profile +./usr/lib/i386/libutil_pic.a comp-c-piclib compat,pic +./usr/lib/i386/libvers.a comp-obsolete obsolete +./usr/lib/i386/libvers_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libvers_p.a comp-obsolete obsolete +./usr/lib/i386/libvers_pic.a comp-obsolete obsolete +./usr/lib/i386/libwind.a comp-c-lib compat,kerberos +./usr/lib/i386/libwind.so comp-sys-shlib compat,pic,kerberos +./usr/lib/i386/libwind_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/i386/libwind_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/i386/libwind_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/i386/libwrap.a comp-c-lib compat +./usr/lib/i386/libwrap.so comp-sys-shlib compat,pic +./usr/lib/i386/libwrap_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libwrap_p.a comp-c-proflib compat,profile +./usr/lib/i386/libwrap_pic.a comp-c-piclib compat,pic +./usr/lib/i386/liby.a comp-c-lib compat +./usr/lib/i386/liby_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/liby_p.a comp-c-proflib compat,profile +./usr/lib/i386/liby_pic.a comp-obsolete obsolete +./usr/lib/i386/libz.a comp-c-lib compat +./usr/lib/i386/libz.so comp-sys-shlib compat,pic +./usr/lib/i386/libz_g.a comp-c-proflib compat,debuglib +./usr/lib/i386/libz_p.a comp-c-proflib compat,profile +./usr/lib/i386/libz_pic.a comp-c-piclib compat,pic +./usr/lib/libx86_64.a comp-c-lib +./usr/lib/libx86_64_g.a comp-c-proflib debuglib +./usr/lib/libx86_64_p.a comp-c-proflib profile +./usr/lib/libx86_64_pic.a comp-c-piclib pic +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/iasl.debug comp-util-debug debug +./usr/libdata/debug/usr/lib/i386/i18n/libBIG5.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libDECHanyu.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libEUC.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libEUCTW.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libGBK2K.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libHZ.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libISO2022.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libJOHAB.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libMSKanji.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libUES.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libUTF1632.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libUTF7.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libUTF8.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libVIQR.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libZW.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libiconv_none.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libiconv_std.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libmapper_646.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libmapper_none.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libmapper_parallel.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libmapper_serial.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libmapper_std.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/i18n/libmapper_zone.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libamu.so.4.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libarchive.so.3.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libasn1.so.8.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libasn1.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libatf-c.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/i386/libatf-c++.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/i386/libbfd.so.12.0.debug comp-compat-shlib compat,pic,binutils,debug +./usr/libdata/debug/usr/lib/i386/libbind9.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libbluetooth.so.4.2.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libbsdmalloc.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libbz2.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libc.so.12.185.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libcom_err.so.6.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libcom_err.so.7.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libcrypt.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libcrypto.so.8.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libcurses.so.7.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libdes.so.8.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libdevmapper.so.1.0.debug comp-compat-shlib compat,pic,lvm,debug +./usr/libdata/debug/usr/lib/i386/libdm.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libdns.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libdns_sd.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libdwarf.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libedit.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libelf.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libevent.so.3.2.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libexecinfo.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libexpat.so.2.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libfetch.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libform.so.6.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libgcc_s.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libgmp.so.10.2.debug comp-compat-shlib obsolete +./usr/libdata/debug/usr/lib/i386/libgnumalloc.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libgomp.so.1.0.debug comp-compat-shlib compat,pic,debug,gcc=45 +./usr/libdata/debug/usr/lib/i386/libgssapi.so.10.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libgssapi.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libhdb.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libhdb.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libheimbase.so.1.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libheimntlm.so.3.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libheimntlm.so.4.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libhx509.so.5.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libi386.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libintl.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libipsec.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libisc.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libisccc.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libisccfg.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libiscsi.so.2.0.debug comp-compat-shlib compat,pic,debug,iscsi +./usr/libdata/debug/usr/lib/i386/libisns.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libkadm5clnt.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libkadm5clnt.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libkadm5srv.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libkadm5srv.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libkafs.so.11.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libkafs.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libkdc.so.2.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libkrb5.so.24.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libkrb5.so.26.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libkvm.so.6.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/liblber.so.3.2.debug comp-compat-shlib compat,pic,ldap,debug +./usr/libdata/debug/usr/lib/i386/libldap.so.4.2.debug comp-compat-shlib compat,pic,ldap,debug +./usr/libdata/debug/usr/lib/i386/libldap_r.so.4.2.debug comp-compat-shlib compat,pic,ldap,debug +./usr/libdata/debug/usr/lib/i386/liblua.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/liblwres.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/liblzf.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/liblzma.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libm.so.0.10.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libmagic.so.3.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libmenu.so.6.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libmj.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libmpc.so.2.0.debug comp-compat-shlib obsolete +./usr/libdata/debug/usr/lib/i386/libmpfr.so.4.1.debug comp-compat-shlib obsolete +./usr/libdata/debug/usr/lib/i386/libnetpgp.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libnpf.so.0.0.debug comp-compat-shlib compat,pic,npf,debug +./usr/libdata/debug/usr/lib/i386/libobjc.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libopcodes.so.5.0.debug comp-compat-shlib compat,pic,binutils,debug +./usr/libdata/debug/usr/lib/i386/libossaudio.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libp2k.so.2.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/libpam.so.3.0.debug comp-compat-shlib compat,pic,pam,debug +./usr/libdata/debug/usr/lib/i386/libpcap.so.4.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libpci.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libperfuse.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libposix.so.0.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libppath.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libprop.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libpthread.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libpthread_dbg.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libpuffs.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libquota.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libradius.so.4.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/librefuse.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libresolv.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libroken.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libroken.so.19.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/librpcsvc.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/librt.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/librump.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/librumpclient.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/librumpcrypto.so.0.0.debug comp-obsolete obsolete,rump +./usr/libdata/debug/usr/lib/i386/librumpdev.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/librumphijack.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/librumpnet.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/librumpuser.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/librumpvfs.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/libsaslc.so.0.0.debug comp-compat-shlib compat,pic,crypto,debug +./usr/libdata/debug/usr/lib/i386/libskey.so.2.0.debug comp-compat-shlib compat,pic,skey,debug +./usr/libdata/debug/usr/lib/i386/libsl.so.4.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/i386/libsl.so.5.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libsqlite3.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libss.so.6.0.debug comp-compat-shlib obsolete +./usr/libdata/debug/usr/lib/i386/libssh.so.19.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libssl.so.10.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libstdc++.so.7.0.debug comp-compat-shlib gcc=4,compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libstdc++.so.7.1.debug comp-compat-shlib gcc=45,compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libterminfo.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libtre.so.0.8.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libukfs.so.1.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/i386/libusbhid.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libutil.so.7.21.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libwind.so.0.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/i386/libwrap.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/i386/libz.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/libx86_64.so.0.0.debug comp-sys-shlib pic,debug +./usr/libdata/debug/usr/sbin/acpidump.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/amldb.debug comp-sysutil-debug debug +./usr/libdata/ldscripts/elf_i386.x comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xbn comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xc comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xd comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xdc comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xdw comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xn comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xr comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xs comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xsc comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xsw comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xu comp-util-bin binutils +./usr/libdata/ldscripts/elf_i386.xw comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.x comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xbn comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xc comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xd comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xdc comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xdw comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xn comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xr comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xs comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xsc comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xsw comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xu comp-util-bin binutils +./usr/libdata/ldscripts/elf_l1om.xw comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.x comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xbn comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xc comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xd comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xdc comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xdw comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xn comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xr comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xs comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xsc comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xsw comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xu comp-util-bin binutils +./usr/libdata/ldscripts/elf_x86_64.xw comp-util-bin binutils +./usr/libdata/ldscripts/i386nbsd.x comp-util-bin binutils +./usr/libdata/ldscripts/i386nbsd.xbn comp-util-bin binutils +./usr/libdata/ldscripts/i386nbsd.xn comp-util-bin binutils +./usr/libdata/ldscripts/i386nbsd.xr comp-util-bin binutils +./usr/libdata/ldscripts/i386nbsd.xu comp-util-bin binutils +./usr/libdata/lint/llib-lx86_64.ln comp-c-lintlib lint +./usr/share/ldscripts/elf_i386.x comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xc comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xd comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xdc comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xdw comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xn comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xr comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xs comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xsc comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xsw comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xu comp-obsolete obsolete +./usr/share/ldscripts/elf_i386.xw comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.x comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xc comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xd comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xdc comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xdw comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xn comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xr comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xs comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xsc comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xsw comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xu comp-obsolete obsolete +./usr/share/ldscripts/elf_x86_64.xw comp-obsolete obsolete +./usr/share/ldscripts/i386nbsd.x comp-obsolete obsolete +./usr/share/ldscripts/i386nbsd.xbn comp-obsolete obsolete +./usr/share/ldscripts/i386nbsd.xn comp-obsolete obsolete +./usr/share/ldscripts/i386nbsd.xr comp-obsolete obsolete +./usr/share/ldscripts/i386nbsd.xu comp-obsolete obsolete diff --git a/distrib/sets/lists/comp/md.amiga b/distrib/sets/lists/comp/md.amiga new file mode 100644 index 000000000..664f8deb9 --- /dev/null +++ b/distrib/sets/lists/comp/md.amiga @@ -0,0 +1,63 @@ +# $NetBSD: md.amiga,v 1.58 2011/07/17 20:54:31 joerg Exp $ +./usr/include/amiga comp-c-include +./usr/include/amiga/_G_config.h comp-obsolete obsolete +./usr/include/amiga/ansi.h comp-c-include +./usr/include/amiga/aout_machdep.h comp-c-include +./usr/include/amiga/asm.h comp-c-include +./usr/include/amiga/bswap.h comp-c-include +./usr/include/amiga/bus.h comp-c-include +./usr/include/amiga/cdefs.h comp-c-include +./usr/include/amiga/conf.h comp-obsolete obsolete +./usr/include/amiga/cpu.h comp-c-include +./usr/include/amiga/cpufunc.h comp-c-include +./usr/include/amiga/db_machdep.h comp-obsolete obsolete +./usr/include/amiga/disklabel.h comp-c-include +./usr/include/amiga/elf_machdep.h comp-c-include +./usr/include/amiga/endian.h comp-c-include +./usr/include/amiga/endian_machdep.h comp-c-include +./usr/include/amiga/fbio.h comp-obsolete obsolete +./usr/include/amiga/float.h comp-c-include +./usr/include/amiga/frame.h comp-c-include +./usr/include/amiga/ieee.h comp-c-include +./usr/include/amiga/ieeefp.h comp-c-include +./usr/include/amiga/int_const.h comp-c-include +./usr/include/amiga/int_fmtio.h comp-c-include +./usr/include/amiga/int_limits.h comp-c-include +./usr/include/amiga/int_mwgwtypes.h comp-c-include +./usr/include/amiga/int_types.h comp-c-include +./usr/include/amiga/intr.h comp-c-include +./usr/include/amiga/kcore.h comp-c-include +./usr/include/amiga/limits.h comp-c-include +./usr/include/amiga/lock.h comp-c-include +./usr/include/amiga/math.h comp-c-include +./usr/include/amiga/mcontext.h comp-c-include +./usr/include/amiga/mtpr.h comp-obsolete obsolete +./usr/include/amiga/mutex.h comp-c-include +./usr/include/amiga/param.h comp-c-include +./usr/include/amiga/pcb.h comp-c-include +./usr/include/amiga/pmap.h comp-c-include +./usr/include/amiga/pmc.h comp-c-include +./usr/include/amiga/proc.h comp-c-include +./usr/include/amiga/profile.h comp-c-include +./usr/include/amiga/psl.h comp-c-include +./usr/include/amiga/pte.h comp-c-include +./usr/include/amiga/ptrace.h comp-c-include +./usr/include/amiga/reg.h comp-c-include +./usr/include/amiga/rwlock.h comp-c-include +./usr/include/amiga/setjmp.h comp-c-include +./usr/include/amiga/signal.h comp-c-include +./usr/include/amiga/stdarg.h comp-obsolete obsolete +./usr/include/amiga/svr4_machdep.h comp-obsolete obsolete +./usr/include/amiga/trap.h comp-c-include +./usr/include/amiga/types.h comp-c-include +./usr/include/amiga/varargs.h comp-obsolete obsolete +./usr/include/amiga/vmparam.h comp-c-include +./usr/include/amiga/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/lib/c++rt0.o comp-obsolete obsolete +./usr/lib/scrt0.o comp-obsolete obsolete +./usr/libdata/debug/sbin/binpatch.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/grfconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/iteconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/loadkmap.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/videomode.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.amigappc b/distrib/sets/lists/comp/md.amigappc new file mode 100644 index 000000000..432340d4d --- /dev/null +++ b/distrib/sets/lists/comp/md.amigappc @@ -0,0 +1,63 @@ +# $NetBSD: md.amigappc,v 1.8 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/amigappc comp-c-include +./usr/include/amigappc/_G_config.h comp-obsolete obsolete +./usr/include/amigappc/ansi.h comp-c-include +./usr/include/amigappc/aout_machdep.h comp-c-include +./usr/include/amigappc/asm.h comp-c-include +./usr/include/amigappc/atomic.h comp-obsolete obsolete +#XXX./usr/include/amigappc/autoconf.h comp-c-include +./usr/include/amigappc/bat.h comp-obsolete obsolete +#XXX./usr/include/amigappc/bus.h comp-c-include +./usr/include/amigappc/bswap.h comp-c-include +./usr/include/amigappc/bus.h comp-obsolete obsolete +./usr/include/amigappc/cdefs.h comp-c-include +./usr/include/amigappc/cpu.h comp-c-include +./usr/include/amigappc/db_machdep.h comp-obsolete obsolete +./usr/include/amigappc/disklabel.h comp-c-include +./usr/include/amigappc/elf_machdep.h comp-c-include +./usr/include/amigappc/endian.h comp-c-include +./usr/include/amigappc/endian_machdep.h comp-c-include +./usr/include/amigappc/float.h comp-c-include +./usr/include/amigappc/fpu.h comp-c-include +./usr/include/amigappc/frame.h comp-c-include +./usr/include/amigappc/ieee.h comp-c-include +./usr/include/amigappc/ieeefp.h comp-c-include +./usr/include/amigappc/int_const.h comp-c-include +./usr/include/amigappc/int_fmtio.h comp-c-include +./usr/include/amigappc/int_limits.h comp-c-include +./usr/include/amigappc/int_mwgwtypes.h comp-c-include +./usr/include/amigappc/int_types.h comp-c-include +./usr/include/amigappc/intr.h comp-c-include +./usr/include/amigappc/ipkdb.h comp-obsolete obsolete +./usr/include/amigappc/kcore.h comp-c-include +./usr/include/amigappc/limits.h comp-c-include +./usr/include/amigappc/lock.h comp-c-include +./usr/include/amigappc/machine_type.h comp-obsolete obsolete +./usr/include/amigappc/math.h comp-c-include +./usr/include/amigappc/mcontext.h comp-c-include +./usr/include/amigappc/mutex.h comp-c-include +./usr/include/amigappc/param.h comp-c-include +./usr/include/amigappc/pcb.h comp-c-include +./usr/include/amigappc/pio.h comp-obsolete obsolete +./usr/include/amigappc/pmap.h comp-c-include +./usr/include/amigappc/pmc.h comp-c-include +./usr/include/amigappc/powerpc.h comp-obsolete obsolete +./usr/include/amigappc/proc.h comp-c-include +./usr/include/amigappc/profile.h comp-c-include +./usr/include/amigappc/psl.h comp-c-include +./usr/include/amigappc/pte.h comp-c-include +./usr/include/amigappc/ptrace.h comp-c-include +./usr/include/amigappc/reg.h comp-c-include +./usr/include/amigappc/reloc.h comp-c-include +./usr/include/amigappc/rwlock.h comp-c-include +./usr/include/amigappc/setjmp.h comp-c-include +./usr/include/amigappc/signal.h comp-c-include +./usr/include/amigappc/spr.h comp-obsolete obsolete +./usr/include/amigappc/stdarg.h comp-obsolete obsolete +./usr/include/amigappc/trap.h comp-c-include +./usr/include/amigappc/types.h comp-c-include +./usr/include/amigappc/varargs.h comp-obsolete obsolete +./usr/include/amigappc/vmparam.h comp-c-include +./usr/include/amigappc/wchar_limits.h comp-c-include +./usr/include/amigappc/z8530var.h comp-obsolete obsolete diff --git a/distrib/sets/lists/comp/md.arc b/distrib/sets/lists/comp/md.arc new file mode 100644 index 000000000..84bb67fd8 --- /dev/null +++ b/distrib/sets/lists/comp/md.arc @@ -0,0 +1,58 @@ +# $NetBSD: md.arc,v 1.24 2011/07/17 20:54:31 joerg Exp $ +./usr/include/arc comp-c-include +./usr/include/arc/_G_config.h comp-obsolete obsolete +./usr/include/arc/ansi.h comp-c-include +./usr/include/arc/aout_machdep.h comp-obsolete obsolete +./usr/include/arc/asm.h comp-c-include +./usr/include/arc/autoconf.h comp-obsolete obsolete +./usr/include/arc/bsd-aout.h comp-obsolete obsolete +./usr/include/arc/bswap.h comp-c-include +./usr/include/arc/cdefs.h comp-c-include +./usr/include/arc/cpu.h comp-c-include +./usr/include/arc/disklabel.h comp-c-include +./usr/include/arc/display.h comp-obsolete obsolete +./usr/include/arc/ecoff_machdep.h comp-c-include +./usr/include/arc/elf_machdep.h comp-c-include +./usr/include/arc/endian.h comp-c-include +./usr/include/arc/endian_machdep.h comp-c-include +./usr/include/arc/float.h comp-c-include +./usr/include/arc/ieee.h comp-c-include +./usr/include/arc/ieeefp.h comp-c-include +./usr/include/arc/int_const.h comp-c-include +./usr/include/arc/int_fmtio.h comp-c-include +./usr/include/arc/int_limits.h comp-c-include +./usr/include/arc/int_mwgwtypes.h comp-c-include +./usr/include/arc/int_types.h comp-c-include +./usr/include/arc/kcore.h comp-c-include +./usr/include/arc/kdbparam.h comp-c-include +./usr/include/arc/limits.h comp-c-include +./usr/include/arc/lock.h comp-c-include +./usr/include/arc/math.h comp-c-include +./usr/include/arc/mcontext.h comp-c-include +./usr/include/arc/mips_opcode.h comp-c-include +./usr/include/arc/mouse.h comp-c-include +./usr/include/arc/mutex.h comp-c-include +./usr/include/arc/param.h comp-c-include +./usr/include/arc/pcb.h comp-c-include +./usr/include/arc/pccons.h comp-c-include +./usr/include/arc/pmap.h comp-c-include +./usr/include/arc/pmc.h comp-c-include +./usr/include/arc/proc.h comp-c-include +./usr/include/arc/profile.h comp-c-include +./usr/include/arc/psl.h comp-c-include +./usr/include/arc/pte.h comp-c-include +./usr/include/arc/ptrace.h comp-c-include +./usr/include/arc/reg.h comp-c-include +./usr/include/arc/regdef.h comp-c-include +./usr/include/arc/regnum.h comp-c-include +./usr/include/arc/reloc.h comp-c-include +./usr/include/arc/rwlock.h comp-c-include +./usr/include/arc/setjmp.h comp-c-include +./usr/include/arc/signal.h comp-c-include +./usr/include/arc/stdarg.h comp-obsolete obsolete +./usr/include/arc/trap.h comp-c-include +./usr/include/arc/types.h comp-c-include +./usr/include/arc/varargs.h comp-obsolete obsolete +./usr/include/arc/vmparam.h comp-c-include +./usr/include/arc/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include diff --git a/distrib/sets/lists/comp/md.atari b/distrib/sets/lists/comp/md.atari new file mode 100644 index 000000000..581851361 --- /dev/null +++ b/distrib/sets/lists/comp/md.atari @@ -0,0 +1,70 @@ +# $NetBSD: md.atari,v 1.58 2011/07/17 20:54:31 joerg Exp $ +./usr/include/atari comp-c-include +./usr/include/atari/_G_config.h comp-obsolete obsolete +./usr/include/atari/ahdilabel.h comp-c-include +./usr/include/atari/ansi.h comp-c-include +./usr/include/atari/aout_machdep.h comp-c-include +./usr/include/atari/asm.h comp-c-include +./usr/include/atari/bswap.h comp-c-include +./usr/include/atari/cdefs.h comp-c-include +./usr/include/atari/cpu.h comp-c-include +./usr/include/atari/cpufunc.h comp-c-include +./usr/include/atari/db_machdep.h comp-obsolete obsolete +./usr/include/atari/disklabel.h comp-c-include +./usr/include/atari/elf_machdep.h comp-c-include +./usr/include/atari/endian.h comp-c-include +./usr/include/atari/endian_machdep.h comp-c-include +./usr/include/atari/float.h comp-c-include +./usr/include/atari/frame.h comp-c-include +./usr/include/atari/grfioctl.h comp-c-include +./usr/include/atari/ieee.h comp-c-include +./usr/include/atari/ieeefp.h comp-c-include +./usr/include/atari/int_const.h comp-c-include +./usr/include/atari/int_fmtio.h comp-c-include +./usr/include/atari/int_limits.h comp-c-include +./usr/include/atari/int_mwgwtypes.h comp-c-include +./usr/include/atari/int_types.h comp-c-include +./usr/include/atari/intr.h comp-c-include +./usr/include/atari/iteioctl.h comp-c-include +./usr/include/atari/kbdmap.h comp-c-include +./usr/include/atari/kbdreg.h comp-c-include +./usr/include/atari/kcore.h comp-c-include +./usr/include/atari/limits.h comp-c-include +./usr/include/atari/lock.h comp-c-include +./usr/include/atari/math.h comp-c-include +./usr/include/atari/mcontext.h comp-c-include +./usr/include/atari/msioctl.h comp-c-include +./usr/include/atari/mtpr.h comp-c-include +./usr/include/atari/mutex.h comp-c-include +./usr/include/atari/param.h comp-c-include +./usr/include/atari/pcb.h comp-c-include +./usr/include/atari/pmap.h comp-c-include +./usr/include/atari/pmc.h comp-c-include +./usr/include/atari/proc.h comp-c-include +./usr/include/atari/profile.h comp-c-include +./usr/include/atari/psl.h comp-c-include +./usr/include/atari/pte.h comp-c-include +./usr/include/atari/ptrace.h comp-c-include +./usr/include/atari/reg.h comp-c-include +./usr/include/atari/rwlock.h comp-c-include +./usr/include/atari/setjmp.h comp-c-include +./usr/include/atari/signal.h comp-c-include +./usr/include/atari/stdarg.h comp-obsolete obsolete +./usr/include/atari/svr4_machdep.h comp-obsolete obsolete +./usr/include/atari/trap.h comp-c-include +./usr/include/atari/types.h comp-c-include +./usr/include/atari/varargs.h comp-obsolete obsolete +./usr/include/atari/vmparam.h comp-c-include +./usr/include/atari/vuid_event.h comp-c-include +./usr/include/atari/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/libdata/debug/sbin/ahdilabel.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/binpatch.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/edahdi.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/edlabel.debug comp-sysutil-debug obsolete +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/msconfig.debug comp-util-debug debug +./usr/libdata/debug/usr/mdec/installboot.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/bootpref.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/iteconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/loadkmap.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.bebox b/distrib/sets/lists/comp/md.bebox new file mode 100644 index 000000000..d2236e1b7 --- /dev/null +++ b/distrib/sets/lists/comp/md.bebox @@ -0,0 +1,70 @@ +# $NetBSD: md.bebox,v 1.35 2011/08/10 07:56:59 kiyohara Exp $ +./usr/include/bebox comp-c-include +./usr/include/bebox/_G_config.h comp-obsolete obsolete +./usr/include/bebox/ansi.h comp-c-include +./usr/include/bebox/aout_machdep.h comp-c-include +./usr/include/bebox/asm.h comp-c-include +./usr/include/bebox/atomic.h comp-obsolete obsolete +./usr/include/bebox/bat.h comp-obsolete obsolete +./usr/include/bebox/bootinfo.h comp-c-include +./usr/include/bebox/bswap.h comp-c-include +./usr/include/bebox/bus.h comp-obsolete obsolete +./usr/include/bebox/cdefs.h comp-c-include +./usr/include/bebox/conf.h comp-obsolete obsolete +./usr/include/bebox/cpu.h comp-c-include +./usr/include/bebox/cpufunc.h comp-obsolete obsolete +./usr/include/bebox/db_machdep.h comp-obsolete obsolete +./usr/include/bebox/disklabel.h comp-c-include +./usr/include/bebox/display.h comp-obsolete obsolete +./usr/include/bebox/elf_machdep.h comp-c-include +./usr/include/bebox/endian.h comp-c-include +./usr/include/bebox/endian_machdep.h comp-c-include +./usr/include/bebox/float.h comp-c-include +./usr/include/bebox/fpu.h comp-c-include +./usr/include/bebox/frame.h comp-c-include +./usr/include/bebox/ieee.h comp-c-include +./usr/include/bebox/ieeefp.h comp-c-include +./usr/include/bebox/int_const.h comp-c-include +./usr/include/bebox/int_fmtio.h comp-c-include +./usr/include/bebox/int_limits.h comp-c-include +./usr/include/bebox/int_mwgwtypes.h comp-c-include +./usr/include/bebox/int_types.h comp-c-include +./usr/include/bebox/intr.h comp-c-include +./usr/include/bebox/ipkdb.h comp-obsolete obsolete +./usr/include/bebox/kcore.h comp-c-include +./usr/include/bebox/kgdb.h comp-obsolete obsolete +./usr/include/bebox/limits.h comp-c-include +./usr/include/bebox/lock.h comp-c-include +./usr/include/bebox/math.h comp-c-include +./usr/include/bebox/mcontext.h comp-c-include +./usr/include/bebox/mouse.h comp-obsolete obsolete +./usr/include/bebox/mutex.h comp-c-include +./usr/include/bebox/param.h comp-c-include +./usr/include/bebox/pcb.h comp-c-include +./usr/include/bebox/pccons.h comp-obsolete obsolete +./usr/include/bebox/pio.h comp-obsolete obsolete +./usr/include/bebox/pmap.h comp-c-include +./usr/include/bebox/pmc.h comp-c-include +./usr/include/bebox/powerpc.h comp-obsolete obsolete +./usr/include/bebox/proc.h comp-c-include +./usr/include/bebox/profile.h comp-c-include +./usr/include/bebox/psl.h comp-c-include +./usr/include/bebox/pte.h comp-c-include +./usr/include/bebox/ptrace.h comp-c-include +./usr/include/bebox/reg.h comp-c-include +./usr/include/bebox/reloc.h comp-c-include +./usr/include/bebox/rwlock.h comp-c-include +./usr/include/bebox/setjmp.h comp-c-include +./usr/include/bebox/signal.h comp-c-include +./usr/include/bebox/spkr.h comp-c-include +./usr/include/bebox/spr.h comp-obsolete obsolete +./usr/include/bebox/stdarg.h comp-obsolete obsolete +./usr/include/bebox/trap.h comp-c-include +./usr/include/bebox/types.h comp-c-include +./usr/include/bebox/va-ppc.h comp-obsolete obsolete +./usr/include/bebox/varargs.h comp-obsolete obsolete +./usr/include/bebox/vmparam.h comp-c-include +./usr/include/bebox/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/mdec/mkbootimage.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.cats b/distrib/sets/lists/comp/md.cats new file mode 100644 index 000000000..00756531d --- /dev/null +++ b/distrib/sets/lists/comp/md.cats @@ -0,0 +1,51 @@ +# $NetBSD: md.cats,v 1.17 2011/07/18 17:18:14 dyoung Exp $ +./usr/include/cats comp-c-include +./usr/include/cats/ansi.h comp-c-include +./usr/include/cats/aout_machdep.h comp-c-include +./usr/include/cats/asm.h comp-c-include +./usr/include/cats/bswap.h comp-c-include +./usr/include/cats/bus.h comp-obsolete obsolete +./usr/include/cats/byte_swap.h comp-obsolete obsolete +./usr/include/cats/cdefs.h comp-c-include +./usr/include/cats/cpu.h comp-c-include +./usr/include/cats/db_machdep.h comp-obsolete obsolete +./usr/include/cats/disklabel.h comp-c-include +./usr/include/cats/elf_machdep.h comp-c-include +./usr/include/cats/endian.h comp-c-include +./usr/include/cats/endian_machdep.h comp-c-include +./usr/include/cats/float.h comp-c-include +./usr/include/cats/fp.h comp-c-include +./usr/include/cats/frame.h comp-c-include +./usr/include/cats/ieee.h comp-c-include +./usr/include/cats/ieeefp.h comp-c-include +./usr/include/cats/int_const.h comp-c-include +./usr/include/cats/int_fmtio.h comp-c-include +./usr/include/cats/int_limits.h comp-c-include +./usr/include/cats/int_mwgwtypes.h comp-c-include +./usr/include/cats/int_types.h comp-c-include +./usr/include/cats/intr.h comp-c-include +./usr/include/cats/ipkdb.h comp-obsolete obsolete +./usr/include/cats/joystick.h comp-c-include +./usr/include/cats/limits.h comp-c-include +./usr/include/cats/lock.h comp-c-include +./usr/include/cats/math.h comp-c-include +./usr/include/cats/mcontext.h comp-c-include +./usr/include/cats/mutex.h comp-c-include +./usr/include/cats/param.h comp-c-include +./usr/include/cats/pcb.h comp-c-include +./usr/include/cats/pmap.h comp-c-include +./usr/include/cats/pmc.h comp-c-include +./usr/include/cats/proc.h comp-c-include +./usr/include/cats/profile.h comp-c-include +./usr/include/cats/ptrace.h comp-c-include +./usr/include/cats/reg.h comp-c-include +./usr/include/cats/rwlock.h comp-c-include +./usr/include/cats/setjmp.h comp-c-include +./usr/include/cats/signal.h comp-c-include +./usr/include/cats/stdarg.h comp-obsolete obsolete +./usr/include/cats/sysarch.h comp-c-include +./usr/include/cats/trap.h comp-c-include +./usr/include/cats/types.h comp-c-include +./usr/include/cats/varargs.h comp-obsolete obsolete +./usr/include/cats/vmparam.h comp-c-include +./usr/include/cats/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.cesfic b/distrib/sets/lists/comp/md.cesfic new file mode 100644 index 000000000..311f47be0 --- /dev/null +++ b/distrib/sets/lists/comp/md.cesfic @@ -0,0 +1,48 @@ +# $NetBSD: md.cesfic,v 1.7 2011/07/17 20:54:31 joerg Exp $ +./usr/include/cesfic comp-c-include +./usr/include/cesfic/_G_config.h comp-obsolete obsolete +./usr/include/cesfic/ansi.h comp-c-include +./usr/include/cesfic/aout_machdep.h comp-c-include +./usr/include/cesfic/asm.h comp-c-include +./usr/include/cesfic/bswap.h comp-c-include +./usr/include/cesfic/cdefs.h comp-c-include +./usr/include/cesfic/cpu.h comp-c-include +./usr/include/cesfic/disklabel.h comp-c-include +./usr/include/cesfic/elf_machdep.h comp-c-include +./usr/include/cesfic/endian.h comp-c-include +./usr/include/cesfic/endian_machdep.h comp-c-include +./usr/include/cesfic/float.h comp-c-include +./usr/include/cesfic/frame.h comp-c-include +./usr/include/cesfic/ieee.h comp-c-include +./usr/include/cesfic/ieeefp.h comp-c-include +./usr/include/cesfic/int_const.h comp-c-include +./usr/include/cesfic/int_fmtio.h comp-c-include +./usr/include/cesfic/int_limits.h comp-c-include +./usr/include/cesfic/int_mwgwtypes.h comp-c-include +./usr/include/cesfic/int_types.h comp-c-include +./usr/include/cesfic/intr.h comp-c-include +./usr/include/cesfic/limits.h comp-c-include +./usr/include/cesfic/lock.h comp-c-include +./usr/include/cesfic/math.h comp-c-include +./usr/include/cesfic/mcontext.h comp-c-include +./usr/include/cesfic/mutex.h comp-c-include +./usr/include/cesfic/param.h comp-c-include +./usr/include/cesfic/pcb.h comp-c-include +./usr/include/cesfic/pmap.h comp-c-include +./usr/include/cesfic/pmc.h comp-c-include +./usr/include/cesfic/proc.h comp-c-include +./usr/include/cesfic/profile.h comp-c-include +./usr/include/cesfic/psl.h comp-c-include +./usr/include/cesfic/pte.h comp-c-include +./usr/include/cesfic/ptrace.h comp-c-include +./usr/include/cesfic/reg.h comp-c-include +./usr/include/cesfic/rwlock.h comp-c-include +./usr/include/cesfic/setjmp.h comp-c-include +./usr/include/cesfic/signal.h comp-c-include +./usr/include/cesfic/stdarg.h comp-obsolete obsolete +./usr/include/cesfic/trap.h comp-c-include +./usr/include/cesfic/types.h comp-c-include +./usr/include/cesfic/varargs.h comp-obsolete obsolete +./usr/include/cesfic/vmparam.h comp-c-include +./usr/include/cesfic/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include diff --git a/distrib/sets/lists/comp/md.cobalt b/distrib/sets/lists/comp/md.cobalt new file mode 100644 index 000000000..0ee414bf7 --- /dev/null +++ b/distrib/sets/lists/comp/md.cobalt @@ -0,0 +1,61 @@ +# $NetBSD: md.cobalt,v 1.24 2011/07/17 20:54:31 joerg Exp $ +./usr/include/cobalt comp-c-include +./usr/include/cobalt/_G_config.h comp-obsolete obsolete +./usr/include/cobalt/ansi.h comp-c-include +./usr/include/cobalt/aout_machdep.h comp-obsolete obsolete +./usr/include/cobalt/asm.h comp-c-include +./usr/include/cobalt/autoconf.h comp-c-include +./usr/include/cobalt/bsd-aout.h comp-obsolete obsolete +./usr/include/cobalt/bswap.h comp-c-include +./usr/include/cobalt/cdefs.h comp-c-include +./usr/include/cobalt/conf.h comp-obsolete obsolete +./usr/include/cobalt/cpu.h comp-c-include +./usr/include/cobalt/db_machdep.h comp-obsolete obsolete +./usr/include/cobalt/disklabel.h comp-c-include +./usr/include/cobalt/ecoff_machdep.h comp-c-include +./usr/include/cobalt/elf_machdep.h comp-c-include +./usr/include/cobalt/endian.h comp-c-include +./usr/include/cobalt/endian_machdep.h comp-c-include +./usr/include/cobalt/float.h comp-c-include +./usr/include/cobalt/ieee.h comp-c-include +./usr/include/cobalt/ieeefp.h comp-c-include +./usr/include/cobalt/int_const.h comp-c-include +./usr/include/cobalt/int_fmtio.h comp-c-include +./usr/include/cobalt/int_limits.h comp-c-include +./usr/include/cobalt/int_mwgwtypes.h comp-c-include +./usr/include/cobalt/int_types.h comp-c-include +./usr/include/cobalt/intr.h comp-c-include +./usr/include/cobalt/kcore.h comp-c-include +./usr/include/cobalt/kdbparam.h comp-c-include +./usr/include/cobalt/leds.h comp-obsolete obsolete +./usr/include/cobalt/limits.h comp-c-include +./usr/include/cobalt/lock.h comp-c-include +./usr/include/cobalt/locore.h comp-c-include +./usr/include/cobalt/math.h comp-c-include +./usr/include/cobalt/mcontext.h comp-c-include +./usr/include/cobalt/mips_opcode.h comp-c-include +./usr/include/cobalt/mutex.h comp-c-include +./usr/include/cobalt/nvram.h comp-c-include +./usr/include/cobalt/param.h comp-c-include +./usr/include/cobalt/pcb.h comp-c-include +./usr/include/cobalt/pmap.h comp-c-include +./usr/include/cobalt/pmc.h comp-c-include +./usr/include/cobalt/proc.h comp-c-include +./usr/include/cobalt/profile.h comp-c-include +./usr/include/cobalt/psl.h comp-c-include +./usr/include/cobalt/pte.h comp-c-include +./usr/include/cobalt/ptrace.h comp-c-include +./usr/include/cobalt/reg.h comp-c-include +./usr/include/cobalt/regdef.h comp-c-include +./usr/include/cobalt/regnum.h comp-c-include +./usr/include/cobalt/reloc.h comp-c-include +./usr/include/cobalt/rwlock.h comp-c-include +./usr/include/cobalt/setjmp.h comp-c-include +./usr/include/cobalt/signal.h comp-c-include +./usr/include/cobalt/stdarg.h comp-obsolete obsolete +./usr/include/cobalt/trap.h comp-c-include +./usr/include/cobalt/types.h comp-c-include +./usr/include/cobalt/varargs.h comp-obsolete obsolete +./usr/include/cobalt/vmparam.h comp-c-include +./usr/include/cobalt/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include diff --git a/distrib/sets/lists/comp/md.dreamcast b/distrib/sets/lists/comp/md.dreamcast new file mode 100644 index 000000000..f5593ad25 --- /dev/null +++ b/distrib/sets/lists/comp/md.dreamcast @@ -0,0 +1,53 @@ +# $NetBSD: md.dreamcast,v 1.17 2011/07/19 15:52:29 dyoung Exp $ +./usr/include/dreamcast comp-c-include +./usr/include/dreamcast/_G_config.h comp-obsolete obsolete +./usr/include/dreamcast/ansi.h comp-c-include +./usr/include/dreamcast/aout_machdep.h comp-c-include +./usr/include/dreamcast/asm.h comp-c-include +./usr/include/dreamcast/bswap.h comp-c-include +./usr/include/dreamcast/bus.h comp-obsolete obsolete +./usr/include/dreamcast/cdefs.h comp-c-include +./usr/include/dreamcast/coff_machdep.h comp-c-include +./usr/include/dreamcast/conf.h comp-obsolete obsolete +./usr/include/dreamcast/cpu.h comp-c-include +./usr/include/dreamcast/cputypes.h comp-c-include +./usr/include/dreamcast/db_machdep.h comp-obsolete obsolete +./usr/include/dreamcast/disklabel.h comp-c-include +./usr/include/dreamcast/elf_machdep.h comp-c-include +./usr/include/dreamcast/endian.h comp-c-include +./usr/include/dreamcast/endian_machdep.h comp-c-include +./usr/include/dreamcast/float.h comp-c-include +./usr/include/dreamcast/frame.h comp-c-include +./usr/include/dreamcast/ieee.h comp-c-include +./usr/include/dreamcast/ieeefp.h comp-c-include +./usr/include/dreamcast/int_const.h comp-c-include +./usr/include/dreamcast/int_fmtio.h comp-c-include +./usr/include/dreamcast/int_limits.h comp-c-include +./usr/include/dreamcast/int_mwgwtypes.h comp-c-include +./usr/include/dreamcast/int_types.h comp-c-include +./usr/include/dreamcast/intr.h comp-c-include +./usr/include/dreamcast/limits.h comp-c-include +./usr/include/dreamcast/lock.h comp-c-include +./usr/include/dreamcast/math.h comp-c-include +./usr/include/dreamcast/mcontext.h comp-c-include +./usr/include/dreamcast/mutex.h comp-c-include +./usr/include/dreamcast/param.h comp-c-include +./usr/include/dreamcast/pcb.h comp-c-include +./usr/include/dreamcast/pmap.h comp-c-include +./usr/include/dreamcast/pmc.h comp-c-include +./usr/include/dreamcast/proc.h comp-c-include +./usr/include/dreamcast/profile.h comp-c-include +./usr/include/dreamcast/psl.h comp-c-include +./usr/include/dreamcast/pte.h comp-c-include +./usr/include/dreamcast/ptrace.h comp-c-include +./usr/include/dreamcast/reg.h comp-c-include +./usr/include/dreamcast/rwlock.h comp-c-include +./usr/include/dreamcast/setjmp.h comp-c-include +./usr/include/dreamcast/signal.h comp-c-include +./usr/include/dreamcast/stdarg.h comp-obsolete obsolete +./usr/include/dreamcast/trap.h comp-obsolete obsolete +./usr/include/dreamcast/types.h comp-c-include +./usr/include/dreamcast/varargs.h comp-obsolete obsolete +./usr/include/dreamcast/vmparam.h comp-c-include +./usr/include/dreamcast/wchar_limits.h comp-c-include +./usr/include/sh3/db_disasm.h comp-obsolete obsolete diff --git a/distrib/sets/lists/comp/md.emips b/distrib/sets/lists/comp/md.emips new file mode 100644 index 000000000..25e9658c9 --- /dev/null +++ b/distrib/sets/lists/comp/md.emips @@ -0,0 +1,57 @@ +# $NetBSD: md.emips,v 1.2 2011/07/17 20:54:31 joerg Exp $ +# +./usr/include/ieeefp.h comp-c-include +./usr/include/emips comp-c-include +./usr/include/emips/ansi.h comp-c-include +./usr/include/emips/asm.h comp-c-include +./usr/include/emips/autoconf.h comp-c-include +./usr/include/emips/bswap.h comp-c-include +./usr/include/emips/bus.h comp-c-include +./usr/include/emips/cdefs.h comp-c-include +./usr/include/emips/cpu.h comp-c-include +./usr/include/emips/disklabel.h comp-c-include +./usr/include/emips/ecoff_machdep.h comp-c-include +./usr/include/emips/elf_machdep.h comp-c-include +./usr/include/emips/emipsreg.h comp-c-include +./usr/include/emips/endian.h comp-c-include +./usr/include/emips/endian_machdep.h comp-c-include +./usr/include/emips/float.h comp-c-include +./usr/include/emips/ieee.h comp-c-include +./usr/include/emips/ieeefp.h comp-c-include +./usr/include/emips/int_const.h comp-c-include +./usr/include/emips/int_fmtio.h comp-c-include +./usr/include/emips/int_limits.h comp-c-include +./usr/include/emips/int_mwgwtypes.h comp-c-include +./usr/include/emips/int_types.h comp-c-include +./usr/include/emips/intr.h comp-c-include +./usr/include/emips/kcore.h comp-c-include +./usr/include/emips/kdbparam.h comp-c-include +./usr/include/emips/limits.h comp-c-include +./usr/include/emips/lock.h comp-c-include +./usr/include/emips/locore.h comp-c-include +./usr/include/emips/math.h comp-c-include +./usr/include/emips/mcontext.h comp-c-include +./usr/include/emips/mips_opcode.h comp-c-include +./usr/include/emips/mutex.h comp-c-include +./usr/include/emips/param.h comp-c-include +./usr/include/emips/pcb.h comp-c-include +./usr/include/emips/pmap.h comp-c-include +./usr/include/emips/pmc.h comp-c-include +./usr/include/emips/proc.h comp-c-include +./usr/include/emips/profile.h comp-c-include +./usr/include/emips/psl.h comp-c-include +./usr/include/emips/pte.h comp-c-include +./usr/include/emips/ptrace.h comp-c-include +./usr/include/emips/reg.h comp-c-include +./usr/include/emips/regdef.h comp-c-include +./usr/include/emips/regnum.h comp-c-include +./usr/include/emips/reloc.h comp-c-include +./usr/include/emips/rwlock.h comp-c-include +./usr/include/emips/setjmp.h comp-c-include +./usr/include/emips/signal.h comp-c-include +./usr/include/emips/stdarg.h comp-obsolete obsolete +./usr/include/emips/trap.h comp-c-include +./usr/include/emips/types.h comp-c-include +./usr/include/emips/varargs.h comp-obsolete obsolete +./usr/include/emips/vmparam.h comp-c-include +./usr/include/emips/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.evbarm b/distrib/sets/lists/comp/md.evbarm new file mode 100644 index 000000000..0edf27b5e --- /dev/null +++ b/distrib/sets/lists/comp/md.evbarm @@ -0,0 +1,50 @@ +# $NetBSD: md.evbarm,v 1.15 2011/07/18 17:18:14 dyoung Exp $ +./usr/include/evbarm comp-c-include +./usr/include/evbarm/ansi.h comp-c-include +./usr/include/evbarm/aout_machdep.h comp-c-include +./usr/include/evbarm/asm.h comp-c-include +./usr/include/evbarm/bswap.h comp-c-include +./usr/include/evbarm/bus.h comp-obsolete obsolete +./usr/include/evbarm/cdefs.h comp-c-include +./usr/include/evbarm/cpu.h comp-c-include +./usr/include/evbarm/db_machdep.h comp-obsolete obsolete +./usr/include/evbarm/disklabel.h comp-c-include +./usr/include/evbarm/elf_machdep.h comp-c-include +./usr/include/evbarm/endian.h comp-c-include +./usr/include/evbarm/endian_machdep.h comp-c-include +./usr/include/evbarm/float.h comp-c-include +./usr/include/evbarm/fp.h comp-c-include +./usr/include/evbarm/frame.h comp-c-include +./usr/include/evbarm/ieee.h comp-c-include +./usr/include/evbarm/ieeefp.h comp-c-include +./usr/include/evbarm/int_const.h comp-c-include +./usr/include/evbarm/int_fmtio.h comp-c-include +./usr/include/evbarm/int_limits.h comp-c-include +./usr/include/evbarm/int_mwgwtypes.h comp-c-include +./usr/include/evbarm/int_types.h comp-c-include +./usr/include/evbarm/intr.h comp-c-include +./usr/include/evbarm/ipkdb.h comp-obsolete obsolete +./usr/include/evbarm/joystick.h comp-c-include +./usr/include/evbarm/limits.h comp-c-include +./usr/include/evbarm/lock.h comp-c-include +./usr/include/evbarm/math.h comp-c-include +./usr/include/evbarm/mcontext.h comp-c-include +./usr/include/evbarm/mutex.h comp-c-include +./usr/include/evbarm/param.h comp-c-include +./usr/include/evbarm/pcb.h comp-c-include +./usr/include/evbarm/pmap.h comp-c-include +./usr/include/evbarm/pmc.h comp-c-include +./usr/include/evbarm/proc.h comp-c-include +./usr/include/evbarm/profile.h comp-c-include +./usr/include/evbarm/ptrace.h comp-c-include +./usr/include/evbarm/reg.h comp-c-include +./usr/include/evbarm/rwlock.h comp-c-include +./usr/include/evbarm/setjmp.h comp-c-include +./usr/include/evbarm/signal.h comp-c-include +./usr/include/evbarm/stdarg.h comp-obsolete obsolete +./usr/include/evbarm/sysarch.h comp-c-include +./usr/include/evbarm/trap.h comp-c-include +./usr/include/evbarm/types.h comp-c-include +./usr/include/evbarm/varargs.h comp-obsolete obsolete +./usr/include/evbarm/vmparam.h comp-c-include +./usr/include/evbarm/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.evbmips b/distrib/sets/lists/comp/md.evbmips new file mode 100644 index 000000000..39af46ef3 --- /dev/null +++ b/distrib/sets/lists/comp/md.evbmips @@ -0,0 +1,61 @@ +# $NetBSD: md.evbmips,v 1.16 2011/07/17 20:54:31 joerg Exp $ +./usr/include/evbmips comp-c-include +./usr/include/evbmips/_G_config.h comp-obsolete obsolete +./usr/include/evbmips/ansi.h comp-c-include +./usr/include/evbmips/aout_machdep.h comp-obsolete obsolete +./usr/include/evbmips/asm.h comp-c-include +./usr/include/evbmips/bsd-aout.h comp-obsolete obsolete +./usr/include/evbmips/bswap.h comp-c-include +./usr/include/evbmips/bus.h comp-obsolete obsolete +./usr/include/evbmips/cdefs.h comp-c-include +./usr/include/evbmips/cpu.h comp-c-include +./usr/include/evbmips/db_machdep.h comp-obsolete obsolete +./usr/include/evbmips/disklabel.h comp-c-include +./usr/include/evbmips/ecoff_machdep.h comp-c-include +./usr/include/evbmips/elf_machdep.h comp-c-include +./usr/include/evbmips/endian.h comp-c-include +./usr/include/evbmips/endian_machdep.h comp-c-include +./usr/include/evbmips/float.h comp-c-include +./usr/include/evbmips/ieee.h comp-c-include +./usr/include/evbmips/ieeefp.h comp-c-include +./usr/include/evbmips/int_const.h comp-c-include +./usr/include/evbmips/int_fmtio.h comp-c-include +./usr/include/evbmips/int_limits.h comp-c-include +./usr/include/evbmips/int_mwgwtypes.h comp-c-include +./usr/include/evbmips/int_types.h comp-c-include +./usr/include/evbmips/intr.h comp-obsolete obsolete +./usr/include/evbmips/isa_machdep.h comp-obsolete obsolete +./usr/include/evbmips/kcore.h comp-c-include +./usr/include/evbmips/kdbparam.h comp-c-include +./usr/include/evbmips/limits.h comp-c-include +./usr/include/evbmips/lock.h comp-c-include +./usr/include/evbmips/locore.h comp-c-include +./usr/include/evbmips/math.h comp-c-include +./usr/include/evbmips/mcontext.h comp-c-include +./usr/include/evbmips/mips_opcode.h comp-c-include +./usr/include/evbmips/mutex.h comp-c-include +./usr/include/evbmips/param.h comp-c-include +./usr/include/evbmips/pcb.h comp-c-include +./usr/include/evbmips/pci_machdep.h comp-obsolete obsolete +./usr/include/evbmips/pmap.h comp-c-include +./usr/include/evbmips/pmc.h comp-c-include +./usr/include/evbmips/proc.h comp-c-include +./usr/include/evbmips/profile.h comp-c-include +./usr/include/evbmips/psl.h comp-c-include +./usr/include/evbmips/pte.h comp-c-include +./usr/include/evbmips/ptrace.h comp-c-include +./usr/include/evbmips/reg.h comp-c-include +./usr/include/evbmips/regdef.h comp-c-include +./usr/include/evbmips/regnum.h comp-c-include +./usr/include/evbmips/reloc.h comp-c-include +./usr/include/evbmips/rnd.h comp-obsolete obsolete +./usr/include/evbmips/rwlock.h comp-c-include +./usr/include/evbmips/setjmp.h comp-c-include +./usr/include/evbmips/signal.h comp-c-include +./usr/include/evbmips/stdarg.h comp-obsolete obsolete +./usr/include/evbmips/trap.h comp-c-include +./usr/include/evbmips/types.h comp-c-include +./usr/include/evbmips/varargs.h comp-obsolete obsolete +./usr/include/evbmips/vmparam.h comp-c-include +./usr/include/evbmips/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include diff --git a/distrib/sets/lists/comp/md.evbppc b/distrib/sets/lists/comp/md.evbppc new file mode 100644 index 000000000..5c3295f69 --- /dev/null +++ b/distrib/sets/lists/comp/md.evbppc @@ -0,0 +1,58 @@ +# $NetBSD: md.evbppc,v 1.12 2011/07/17 20:54:31 joerg Exp $ +./usr/include/evbppc comp-c-include +./usr/include/evbppc/_G_config.h comp-obsolete obsolete +./usr/include/evbppc/ansi.h comp-c-include +./usr/include/evbppc/aout_machdep.h comp-c-include +./usr/include/evbppc/asm.h comp-c-include +./usr/include/evbppc/atomic.h comp-obsolete obsolete +./usr/include/evbppc/bswap.h comp-c-include +./usr/include/evbppc/bus.h comp-obsolete obsolete +./usr/include/evbppc/cdefs.h comp-c-include +./usr/include/evbppc/cpu.h comp-c-include +./usr/include/evbppc/db_machdep.h comp-obsolete obsolete +./usr/include/evbppc/disklabel.h comp-c-include +./usr/include/evbppc/elf_machdep.h comp-c-include +./usr/include/evbppc/endian.h comp-c-include +./usr/include/evbppc/endian_machdep.h comp-c-include +./usr/include/evbppc/float.h comp-c-include +./usr/include/evbppc/fpu.h comp-c-include +./usr/include/evbppc/frame.h comp-c-include +./usr/include/evbppc/ieee.h comp-c-include +./usr/include/evbppc/ieeefp.h comp-c-include +./usr/include/evbppc/int_const.h comp-c-include +./usr/include/evbppc/int_fmtio.h comp-c-include +./usr/include/evbppc/int_limits.h comp-c-include +./usr/include/evbppc/int_mwgwtypes.h comp-c-include +./usr/include/evbppc/int_types.h comp-c-include +./usr/include/evbppc/intr.h comp-c-include +./usr/include/evbppc/ipkdb.h comp-obsolete obsolete +./usr/include/evbppc/kcore.h comp-c-include +./usr/include/evbppc/limits.h comp-c-include +./usr/include/evbppc/lock.h comp-c-include +./usr/include/evbppc/math.h comp-c-include +./usr/include/evbppc/mcontext.h comp-c-include +./usr/include/evbppc/mutex.h comp-c-include +./usr/include/evbppc/param.h comp-c-include +./usr/include/evbppc/pcb.h comp-c-include +./usr/include/evbppc/pio.h comp-obsolete obsolete +./usr/include/evbppc/pmap.h comp-c-include +./usr/include/evbppc/pmc.h comp-c-include +./usr/include/evbppc/powerpc.h comp-obsolete obsolete +./usr/include/evbppc/proc.h comp-c-include +./usr/include/evbppc/profile.h comp-c-include +./usr/include/evbppc/psl.h comp-c-include +./usr/include/evbppc/pte.h comp-c-include +./usr/include/evbppc/ptrace.h comp-c-include +./usr/include/evbppc/reg.h comp-c-include +./usr/include/evbppc/reloc.h comp-c-include +./usr/include/evbppc/rwlock.h comp-c-include +./usr/include/evbppc/setjmp.h comp-c-include +./usr/include/evbppc/signal.h comp-c-include +./usr/include/evbppc/spr.h comp-obsolete obsolete +./usr/include/evbppc/stdarg.h comp-obsolete obsolete +./usr/include/evbppc/trap.h comp-c-include +./usr/include/evbppc/types.h comp-c-include +./usr/include/evbppc/varargs.h comp-obsolete obsolete +./usr/include/evbppc/vmparam.h comp-c-include +./usr/include/evbppc/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include diff --git a/distrib/sets/lists/comp/md.evbsh3 b/distrib/sets/lists/comp/md.evbsh3 new file mode 100644 index 000000000..fb1495ae5 --- /dev/null +++ b/distrib/sets/lists/comp/md.evbsh3 @@ -0,0 +1,60 @@ +# $NetBSD: md.evbsh3,v 1.28 2011/07/19 15:44:52 dyoung Exp $ +./usr/include/evbsh3 comp-c-include +./usr/include/evbsh3/_G_config.h comp-obsolete obsolete +./usr/include/evbsh3/ansi.h comp-c-include +./usr/include/evbsh3/aout_machdep.h comp-c-include +./usr/include/evbsh3/asm.h comp-c-include +./usr/include/evbsh3/bootinfo.h comp-obsolete obsolete +./usr/include/evbsh3/bswap.h comp-c-include +./usr/include/evbsh3/bus.h comp-obsolete obsolete +./usr/include/evbsh3/cdefs.h comp-c-include +./usr/include/evbsh3/coff_machdep.h comp-c-include +./usr/include/evbsh3/conf.h comp-obsolete obsolete +./usr/include/evbsh3/cpu.h comp-c-include +./usr/include/evbsh3/cpufunc.h comp-obsolete obsolete +./usr/include/evbsh3/cputypes.h comp-c-include +./usr/include/evbsh3/db_machdep.h comp-obsolete obsolete +./usr/include/evbsh3/disklabel.h comp-c-include +./usr/include/evbsh3/elf_machdep.h comp-c-include +./usr/include/evbsh3/endian.h comp-c-include +./usr/include/evbsh3/endian_machdep.h comp-c-include +./usr/include/evbsh3/float.h comp-c-include +./usr/include/evbsh3/frame.h comp-c-include +./usr/include/evbsh3/ieee.h comp-c-include +./usr/include/evbsh3/ieeefp.h comp-c-include +./usr/include/evbsh3/int_const.h comp-c-include +./usr/include/evbsh3/int_fmtio.h comp-c-include +./usr/include/evbsh3/int_limits.h comp-c-include +./usr/include/evbsh3/int_mwgwtypes.h comp-c-include +./usr/include/evbsh3/int_types.h comp-c-include +./usr/include/evbsh3/intr.h comp-c-include +./usr/include/evbsh3/limits.h comp-c-include +./usr/include/evbsh3/lock.h comp-c-include +./usr/include/evbsh3/math.h comp-c-include +./usr/include/evbsh3/mcontext.h comp-c-include +./usr/include/evbsh3/mmeye.h comp-obsolete obsolete +./usr/include/evbsh3/mutex.h comp-c-include +./usr/include/evbsh3/param.h comp-c-include +./usr/include/evbsh3/pcb.h comp-c-include +./usr/include/evbsh3/pio.h comp-obsolete obsolete +./usr/include/evbsh3/pmap.h comp-c-include +./usr/include/evbsh3/pmc.h comp-c-include +./usr/include/evbsh3/proc.h comp-c-include +./usr/include/evbsh3/profile.h comp-c-include +./usr/include/evbsh3/psl.h comp-c-include +./usr/include/evbsh3/pte.h comp-c-include +./usr/include/evbsh3/ptrace.h comp-c-include +./usr/include/evbsh3/reg.h comp-c-include +./usr/include/evbsh3/rwlock.h comp-c-include +./usr/include/evbsh3/segments.h comp-obsolete obsolete +./usr/include/evbsh3/setjmp.h comp-c-include +./usr/include/evbsh3/shbvar.h comp-obsolete obsolete +./usr/include/evbsh3/signal.h comp-c-include +./usr/include/evbsh3/stdarg.h comp-obsolete obsolete +./usr/include/evbsh3/trap.h comp-obsolete obsolete +./usr/include/evbsh3/types.h comp-c-include +./usr/include/evbsh3/varargs.h comp-obsolete obsolete +./usr/include/evbsh3/vmparam.h comp-c-include +./usr/include/evbsh3/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/include/sh3/db_disasm.h comp-obsolete obsolete diff --git a/distrib/sets/lists/comp/md.ews4800mips b/distrib/sets/lists/comp/md.ews4800mips new file mode 100644 index 000000000..0a5b1684f --- /dev/null +++ b/distrib/sets/lists/comp/md.ews4800mips @@ -0,0 +1,57 @@ +# $NetBSD: md.ews4800mips,v 1.5 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/ews4800mips comp-c-include +./usr/include/ews4800mips/ansi.h comp-c-include +./usr/include/ews4800mips/aout_machdep.h comp-c-include +./usr/include/ews4800mips/asm.h comp-c-include +./usr/include/ews4800mips/bswap.h comp-c-include +./usr/include/ews4800mips/cdefs.h comp-c-include +./usr/include/ews4800mips/cpu.h comp-c-include +./usr/include/ews4800mips/db_machdep.h comp-obsolete obsolete +./usr/include/ews4800mips/disklabel.h comp-c-include +./usr/include/ews4800mips/ecoff_machdep.h comp-c-include +./usr/include/ews4800mips/elf_machdep.h comp-c-include +./usr/include/ews4800mips/endian.h comp-c-include +./usr/include/ews4800mips/endian_machdep.h comp-c-include +./usr/include/ews4800mips/float.h comp-c-include +./usr/include/ews4800mips/ieee.h comp-c-include +./usr/include/ews4800mips/ieeefp.h comp-c-include +./usr/include/ews4800mips/int_const.h comp-c-include +./usr/include/ews4800mips/int_fmtio.h comp-c-include +./usr/include/ews4800mips/int_limits.h comp-c-include +./usr/include/ews4800mips/int_mwgwtypes.h comp-c-include +./usr/include/ews4800mips/int_types.h comp-c-include +./usr/include/ews4800mips/intr.h comp-obsolete obsolete +./usr/include/ews4800mips/kcore.h comp-c-include +./usr/include/ews4800mips/kdbparam.h comp-c-include +./usr/include/ews4800mips/limits.h comp-c-include +./usr/include/ews4800mips/lock.h comp-c-include +./usr/include/ews4800mips/locore.h comp-c-include +./usr/include/ews4800mips/math.h comp-c-include +./usr/include/ews4800mips/mcontext.h comp-c-include +./usr/include/ews4800mips/mips_opcode.h comp-c-include +./usr/include/ews4800mips/mutex.h comp-c-include +./usr/include/ews4800mips/param.h comp-c-include +./usr/include/ews4800mips/pcb.h comp-c-include +./usr/include/ews4800mips/pdinfo.h comp-c-include +./usr/include/ews4800mips/pmap.h comp-c-include +./usr/include/ews4800mips/pmc.h comp-c-include +./usr/include/ews4800mips/proc.h comp-c-include +./usr/include/ews4800mips/profile.h comp-c-include +./usr/include/ews4800mips/psl.h comp-c-include +./usr/include/ews4800mips/pte.h comp-c-include +./usr/include/ews4800mips/ptrace.h comp-c-include +./usr/include/ews4800mips/reg.h comp-c-include +./usr/include/ews4800mips/regdef.h comp-c-include +./usr/include/ews4800mips/regnum.h comp-c-include +./usr/include/ews4800mips/reloc.h comp-c-include +./usr/include/ews4800mips/rwlock.h comp-c-include +./usr/include/ews4800mips/setjmp.h comp-c-include +./usr/include/ews4800mips/signal.h comp-c-include +./usr/include/ews4800mips/stdarg.h comp-obsolete obsolete +./usr/include/ews4800mips/trap.h comp-c-include +./usr/include/ews4800mips/types.h comp-c-include +./usr/include/ews4800mips/varargs.h comp-obsolete obsolete +./usr/include/ews4800mips/vmparam.h comp-c-include +./usr/include/ews4800mips/vtoc.h comp-c-include +./usr/include/ews4800mips/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.hp300 b/distrib/sets/lists/comp/md.hp300 new file mode 100644 index 000000000..88ff00166 --- /dev/null +++ b/distrib/sets/lists/comp/md.hp300 @@ -0,0 +1,58 @@ +# $NetBSD: md.hp300,v 1.61 2011/07/17 20:54:31 joerg Exp $ +./usr/include/hp300 comp-c-include +./usr/include/hp300/_G_config.h comp-obsolete obsolete +./usr/include/hp300/ansi.h comp-c-include +./usr/include/hp300/aout_machdep.h comp-c-include +./usr/include/hp300/asm.h comp-c-include +./usr/include/hp300/autoconf.h comp-obsolete obsolete +./usr/include/hp300/bswap.h comp-c-include +./usr/include/hp300/bus.h comp-c-include +./usr/include/hp300/cdefs.h comp-c-include +./usr/include/hp300/cpu.h comp-c-include +./usr/include/hp300/db_machdep.h comp-obsolete obsolete +./usr/include/hp300/disklabel.h comp-c-include +./usr/include/hp300/elf_machdep.h comp-c-include +./usr/include/hp300/endian.h comp-c-include +./usr/include/hp300/endian_machdep.h comp-c-include +./usr/include/hp300/float.h comp-c-include +./usr/include/hp300/frame.h comp-c-include +./usr/include/hp300/hp300spu.h comp-c-include +./usr/include/hp300/hpux_machdep.h comp-c-include +./usr/include/hp300/ieee.h comp-c-include +./usr/include/hp300/ieeefp.h comp-c-include +./usr/include/hp300/int_const.h comp-c-include +./usr/include/hp300/int_fmtio.h comp-c-include +./usr/include/hp300/int_limits.h comp-c-include +./usr/include/hp300/int_mwgwtypes.h comp-c-include +./usr/include/hp300/int_types.h comp-c-include +./usr/include/hp300/intr.h comp-obsolete obsolete +./usr/include/hp300/kcore.h comp-c-include +./usr/include/hp300/limits.h comp-c-include +./usr/include/hp300/lock.h comp-c-include +./usr/include/hp300/math.h comp-c-include +./usr/include/hp300/mcontext.h comp-c-include +./usr/include/hp300/mutex.h comp-c-include +./usr/include/hp300/param.h comp-c-include +./usr/include/hp300/pcb.h comp-c-include +./usr/include/hp300/pmap.h comp-c-include +./usr/include/hp300/pmc.h comp-c-include +./usr/include/hp300/proc.h comp-c-include +./usr/include/hp300/profile.h comp-c-include +./usr/include/hp300/psl.h comp-c-include +./usr/include/hp300/pte.h comp-c-include +./usr/include/hp300/ptrace.h comp-c-include +./usr/include/hp300/reg.h comp-c-include +./usr/include/hp300/rwlock.h comp-c-include +./usr/include/hp300/setjmp.h comp-c-include +./usr/include/hp300/signal.h comp-c-include +./usr/include/hp300/stdarg.h comp-obsolete obsolete +./usr/include/hp300/svr4_machdep.h comp-obsolete obsolete +./usr/include/hp300/trap.h comp-c-include +./usr/include/hp300/types.h comp-c-include +./usr/include/hp300/varargs.h comp-obsolete obsolete +./usr/include/hp300/vmparam.h comp-c-include +./usr/include/hp300/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/libdata/debug/usr/mdec/mkboot.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/grfinfo.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/hilinfo.debug comp-obsolete obsolete diff --git a/distrib/sets/lists/comp/md.hp700 b/distrib/sets/lists/comp/md.hp700 new file mode 100644 index 000000000..611cca812 --- /dev/null +++ b/distrib/sets/lists/comp/md.hp700 @@ -0,0 +1,64 @@ +# $NetBSD: md.hp700,v 1.9 2012/05/27 11:26:38 skrll Exp $ +./usr/include/hp700 comp-c-include +./usr/include/hp700/ansi.h comp-c-include +./usr/include/hp700/aout_machdep.h comp-c-include +./usr/include/hp700/asm.h comp-c-include +./usr/include/hp700/autoconf.h comp-c-include +./usr/include/hp700/bswap.h comp-c-include +./usr/include/hp700/bus.h comp-obsolete obsolete +./usr/include/hp700/byte_swap.h comp-c-include +./usr/include/hp700/cdefs.h comp-c-include +./usr/include/hp700/cpu.h comp-c-include +./usr/include/hp700/cpufunc.h comp-c-include +./usr/include/hp700/db_machdep.h comp-obsolete obsolete +./usr/include/hp700/disklabel.h comp-c-include +./usr/include/hp700/eisa_machdep.h comp-c-include +./usr/include/hp700/elf_machdep.h comp-c-include +./usr/include/hp700/endian.h comp-c-include +./usr/include/hp700/endian_machdep.h comp-c-include +./usr/include/hp700/exec.h comp-c-include +./usr/include/hp700/float.h comp-c-include +./usr/include/hp700/frame.h comp-c-include +./usr/include/hp700/ieee.h comp-c-include +./usr/include/hp700/ieeefp.h comp-c-include +./usr/include/hp700/int_const.h comp-c-include +./usr/include/hp700/int_fmtio.h comp-c-include +./usr/include/hp700/int_limits.h comp-c-include +./usr/include/hp700/int_mwgwtypes.h comp-c-include +./usr/include/hp700/int_types.h comp-c-include +./usr/include/hp700/intr.h comp-c-include +./usr/include/hp700/intrdefs.h comp-c-include +./usr/include/hp700/iomod.h comp-c-include +./usr/include/hp700/isa_machdep.h comp-c-include +./usr/include/hp700/kcore.h comp-c-include +./usr/include/hp700/limits.h comp-c-include +./usr/include/hp700/loadfile_machdep.h comp-c-include +./usr/include/hp700/lock.h comp-c-include +./usr/include/hp700/math.h comp-c-include +./usr/include/hp700/mcontext.h comp-c-include +./usr/include/hp700/mutex.h comp-c-include +./usr/include/hp700/nvm.h comp-c-include +./usr/include/hp700/param.h comp-c-include +./usr/include/hp700/pcb.h comp-c-include +./usr/include/hp700/pdc.h comp-c-include +./usr/include/hp700/pmap.h comp-c-include +./usr/include/hp700/pmc.h comp-c-include +./usr/include/hp700/proc.h comp-c-include +./usr/include/hp700/profile.h comp-c-include +./usr/include/hp700/psl.h comp-c-include +./usr/include/hp700/pte.h comp-c-include +./usr/include/hp700/ptrace.h comp-c-include +./usr/include/hp700/reg.h comp-c-include +./usr/include/hp700/reloc.h comp-c-include +./usr/include/hp700/rwlock.h comp-c-include +./usr/include/hp700/setjmp.h comp-c-include +./usr/include/hp700/signal.h comp-c-include +./usr/include/hp700/som.h comp-c-include +./usr/include/hp700/spinlock.h comp-obsolete obsolete +./usr/include/hp700/stdarg.h comp-obsolete obsolete +./usr/include/hp700/trap.h comp-c-include +./usr/include/hp700/types.h comp-c-include +./usr/include/hp700/varargs.h comp-obsolete obsolete +./usr/include/hp700/vmparam.h comp-c-include +./usr/include/hp700/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/mdec/mkboot.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.hpcarm b/distrib/sets/lists/comp/md.hpcarm new file mode 100644 index 000000000..53a27f4f4 --- /dev/null +++ b/distrib/sets/lists/comp/md.hpcarm @@ -0,0 +1,52 @@ +# $NetBSD: md.hpcarm,v 1.17 2011/07/19 15:37:38 dyoung Exp $ +./usr/include/hpcarm comp-c-include +./usr/include/hpcarm/ansi.h comp-c-include +./usr/include/hpcarm/aout_machdep.h comp-c-include +./usr/include/hpcarm/apmvar.h comp-c-include +./usr/include/hpcarm/asm.h comp-c-include +./usr/include/hpcarm/bswap.h comp-c-include +./usr/include/hpcarm/bus.h comp-obsolete obsolete +./usr/include/hpcarm/cdefs.h comp-c-include +./usr/include/hpcarm/cpu.h comp-c-include +./usr/include/hpcarm/db_machdep.h comp-obsolete obsolete +./usr/include/hpcarm/disklabel.h comp-c-include +./usr/include/hpcarm/elf_machdep.h comp-c-include +./usr/include/hpcarm/endian.h comp-c-include +./usr/include/hpcarm/endian_machdep.h comp-c-include +./usr/include/hpcarm/float.h comp-c-include +./usr/include/hpcarm/fp.h comp-c-include +./usr/include/hpcarm/frame.h comp-c-include +./usr/include/hpcarm/ieee.h comp-c-include +./usr/include/hpcarm/ieeefp.h comp-c-include +./usr/include/hpcarm/int_const.h comp-c-include +./usr/include/hpcarm/int_fmtio.h comp-c-include +./usr/include/hpcarm/int_limits.h comp-c-include +./usr/include/hpcarm/int_mwgwtypes.h comp-c-include +./usr/include/hpcarm/int_types.h comp-c-include +./usr/include/hpcarm/intr.h comp-c-include +./usr/include/hpcarm/ipkdb.h comp-obsolete obsolete +./usr/include/hpcarm/limits.h comp-c-include +./usr/include/hpcarm/lock.h comp-c-include +./usr/include/hpcarm/math.h comp-c-include +./usr/include/hpcarm/mcontext.h comp-c-include +./usr/include/hpcarm/mutex.h comp-c-include +./usr/include/hpcarm/param.h comp-c-include +./usr/include/hpcarm/pcb.h comp-c-include +./usr/include/hpcarm/pmap.h comp-c-include +./usr/include/hpcarm/pmc.h comp-c-include +./usr/include/hpcarm/proc.h comp-c-include +./usr/include/hpcarm/profile.h comp-c-include +./usr/include/hpcarm/ptrace.h comp-c-include +./usr/include/hpcarm/reg.h comp-c-include +./usr/include/hpcarm/rwlock.h comp-c-include +./usr/include/hpcarm/setjmp.h comp-c-include +./usr/include/hpcarm/signal.h comp-c-include +./usr/include/hpcarm/stdarg.h comp-obsolete obsolete +./usr/include/hpcarm/sysarch.h comp-c-include +./usr/include/hpcarm/trap.h comp-c-include +./usr/include/hpcarm/types.h comp-c-include +./usr/include/hpcarm/varargs.h comp-obsolete obsolete +./usr/include/hpcarm/vmparam.h comp-c-include +./usr/include/hpcarm/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/sbin/apm.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/tpctl.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.hpcmips b/distrib/sets/lists/comp/md.hpcmips new file mode 100644 index 000000000..2b5c03c47 --- /dev/null +++ b/distrib/sets/lists/comp/md.hpcmips @@ -0,0 +1,67 @@ +# $NetBSD: md.hpcmips,v 1.29 2011/07/17 20:54:31 joerg Exp $ +./usr/include/dev/hpc/hpcfbio.h comp-c-include +./usr/include/hpcmips comp-c-include +./usr/include/hpcmips/_G_config.h comp-obsolete obsolete +./usr/include/hpcmips/ansi.h comp-c-include +./usr/include/hpcmips/aout_machdep.h comp-obsolete obsolete +./usr/include/hpcmips/apmvar.h comp-c-include +./usr/include/hpcmips/asm.h comp-c-include +./usr/include/hpcmips/autoconf.h comp-c-include +./usr/include/hpcmips/bootinfo.h comp-c-include +./usr/include/hpcmips/bsd-aout.h comp-obsolete obsolete +./usr/include/hpcmips/bswap.h comp-c-include +./usr/include/hpcmips/bus.h comp-c-include +./usr/include/hpcmips/cdefs.h comp-c-include +./usr/include/hpcmips/cpu.h comp-c-include +./usr/include/hpcmips/db_machdep.h comp-obsolete obsolete +./usr/include/hpcmips/disklabel.h comp-c-include +./usr/include/hpcmips/ecoff_machdep.h comp-c-include +./usr/include/hpcmips/elf.h comp-obsolete obsolete +./usr/include/hpcmips/elf_machdep.h comp-c-include +./usr/include/hpcmips/endian.h comp-c-include +./usr/include/hpcmips/endian_machdep.h comp-c-include +./usr/include/hpcmips/float.h comp-c-include +./usr/include/hpcmips/ieee.h comp-c-include +./usr/include/hpcmips/ieeefp.h comp-c-include +./usr/include/hpcmips/int_const.h comp-c-include +./usr/include/hpcmips/int_fmtio.h comp-c-include +./usr/include/hpcmips/int_limits.h comp-c-include +./usr/include/hpcmips/int_mwgwtypes.h comp-c-include +./usr/include/hpcmips/int_types.h comp-c-include +./usr/include/hpcmips/intr.h comp-c-include +./usr/include/hpcmips/kcore.h comp-c-include +./usr/include/hpcmips/kdbparam.h comp-c-include +./usr/include/hpcmips/limits.h comp-c-include +./usr/include/hpcmips/lock.h comp-c-include +./usr/include/hpcmips/locore.h comp-c-include +./usr/include/hpcmips/math.h comp-c-include +./usr/include/hpcmips/mcontext.h comp-c-include +./usr/include/hpcmips/mips_opcode.h comp-c-include +./usr/include/hpcmips/mutex.h comp-c-include +./usr/include/hpcmips/param.h comp-c-include +./usr/include/hpcmips/pcb.h comp-c-include +./usr/include/hpcmips/pmap.h comp-c-include +./usr/include/hpcmips/pmc.h comp-c-include +./usr/include/hpcmips/proc.h comp-c-include +./usr/include/hpcmips/profile.h comp-c-include +./usr/include/hpcmips/psl.h comp-c-include +./usr/include/hpcmips/pte.h comp-c-include +./usr/include/hpcmips/ptrace.h comp-c-include +./usr/include/hpcmips/reg.h comp-c-include +./usr/include/hpcmips/regdef.h comp-c-include +./usr/include/hpcmips/regnum.h comp-c-include +./usr/include/hpcmips/reloc.h comp-c-include +./usr/include/hpcmips/rwlock.h comp-c-include +./usr/include/hpcmips/setjmp.h comp-c-include +./usr/include/hpcmips/signal.h comp-c-include +./usr/include/hpcmips/stdarg.h comp-obsolete obsolete +./usr/include/hpcmips/sysconf.h comp-c-include +./usr/include/hpcmips/trap.h comp-c-include +./usr/include/hpcmips/types.h comp-c-include +./usr/include/hpcmips/varargs.h comp-obsolete obsolete +./usr/include/hpcmips/vmparam.h comp-c-include +./usr/include/hpcmips/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/libdata/debug/usr/sbin/apm.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/apmd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/tpctl.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.hpcsh b/distrib/sets/lists/comp/md.hpcsh new file mode 100644 index 000000000..0ab979f79 --- /dev/null +++ b/distrib/sets/lists/comp/md.hpcsh @@ -0,0 +1,63 @@ +# $NetBSD: md.hpcsh,v 1.26 2011/07/19 15:30:51 dyoung Exp $ +./usr/include/hpcsh comp-c-include +./usr/include/hpcsh/_G_config.h comp-obsolete obsolete +./usr/include/hpcsh/ansi.h comp-c-include +./usr/include/hpcsh/aout_machdep.h comp-c-include +./usr/include/hpcsh/apmvar.h comp-c-include +./usr/include/hpcsh/asm.h comp-c-include +./usr/include/hpcsh/bootinfo.h comp-c-include +./usr/include/hpcsh/bswap.h comp-c-include +./usr/include/hpcsh/bus.h comp-obsolete obsolete +./usr/include/hpcsh/cdefs.h comp-c-include +./usr/include/hpcsh/coff_machdep.h comp-c-include +./usr/include/hpcsh/conf.h comp-obsolete obsolete +./usr/include/hpcsh/cpu.h comp-c-include +./usr/include/hpcsh/cpufunc.h comp-obsolete obsolete +./usr/include/hpcsh/cputypes.h comp-c-include +./usr/include/hpcsh/db_machdep.h comp-obsolete obsolete +./usr/include/hpcsh/disklabel.h comp-c-include +./usr/include/hpcsh/elf_machdep.h comp-c-include +./usr/include/hpcsh/endian.h comp-c-include +./usr/include/hpcsh/endian_machdep.h comp-c-include +./usr/include/hpcsh/float.h comp-c-include +./usr/include/hpcsh/frame.h comp-c-include +./usr/include/hpcsh/ieee.h comp-c-include +./usr/include/hpcsh/ieeefp.h comp-c-include +./usr/include/hpcsh/int_const.h comp-c-include +./usr/include/hpcsh/int_fmtio.h comp-c-include +./usr/include/hpcsh/int_limits.h comp-c-include +./usr/include/hpcsh/int_mwgwtypes.h comp-c-include +./usr/include/hpcsh/int_types.h comp-c-include +./usr/include/hpcsh/intr.h comp-c-include +./usr/include/hpcsh/limits.h comp-c-include +./usr/include/hpcsh/lock.h comp-c-include +./usr/include/hpcsh/math.h comp-c-include +./usr/include/hpcsh/mcontext.h comp-c-include +./usr/include/hpcsh/mutex.h comp-c-include +./usr/include/hpcsh/param.h comp-c-include +./usr/include/hpcsh/pcb.h comp-c-include +./usr/include/hpcsh/pio.h comp-obsolete obsolete +./usr/include/hpcsh/pmap.h comp-c-include +./usr/include/hpcsh/pmc.h comp-c-include +./usr/include/hpcsh/proc.h comp-c-include +./usr/include/hpcsh/profile.h comp-c-include +./usr/include/hpcsh/psl.h comp-c-include +./usr/include/hpcsh/pte.h comp-c-include +./usr/include/hpcsh/ptrace.h comp-c-include +./usr/include/hpcsh/reg.h comp-c-include +./usr/include/hpcsh/rwlock.h comp-c-include +./usr/include/hpcsh/segments.h comp-obsolete obsolete +./usr/include/hpcsh/setjmp.h comp-c-include +./usr/include/hpcsh/shbvar.h comp-obsolete obsolete +./usr/include/hpcsh/signal.h comp-c-include +./usr/include/hpcsh/stdarg.h comp-obsolete obsolete +./usr/include/hpcsh/trap.h comp-obsolete obsolete +./usr/include/hpcsh/types.h comp-c-include +./usr/include/hpcsh/varargs.h comp-obsolete obsolete +./usr/include/hpcsh/vmparam.h comp-c-include +./usr/include/hpcsh/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/include/sh3/db_disasm.h comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/apm.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/apmd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/tpctl.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.i386 b/distrib/sets/lists/comp/md.i386 new file mode 100644 index 000000000..e62790d14 --- /dev/null +++ b/distrib/sets/lists/comp/md.i386 @@ -0,0 +1,221 @@ +# $NetBSD: md.i386,v 1.127 2012/08/29 17:13:21 drochner Exp $ +./usr/include/clang-3.0/avxintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/avx2intrin.h comp-obsolete obsolete +./usr/include/clang-3.0/bmi2intrin.h comp-obsolete obsolete +./usr/include/clang-3.0/bmiintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/emmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/fma4intrin.h comp-obsolete obsolete +./usr/include/clang-3.0/immintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/lzcntintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/mm3dnow.h comp-obsolete obsolete +./usr/include/clang-3.0/mm_malloc.h comp-obsolete obsolete +./usr/include/clang-3.0/mmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/nmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/pmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/popcntintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/smmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/tmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/wmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.0/x86intrin.h comp-obsolete obsolete +./usr/include/clang-3.0/xmmintrin.h comp-obsolete obsolete +./usr/include/clang-3.2/ammintrin.h comp-c-include llvm +./usr/include/clang-3.2/avxintrin.h comp-c-include llvm +./usr/include/clang-3.2/avx2intrin.h comp-c-include llvm +./usr/include/clang-3.2/bmi2intrin.h comp-c-include llvm +./usr/include/clang-3.2/bmiintrin.h comp-c-include llvm +./usr/include/clang-3.2/emmintrin.h comp-c-include llvm +./usr/include/clang-3.2/fma4intrin.h comp-c-include llvm +./usr/include/clang-3.2/fmaintrin.h comp-c-include llvm +./usr/include/clang-3.2/immintrin.h comp-c-include llvm +./usr/include/clang-3.2/lzcntintrin.h comp-c-include llvm +./usr/include/clang-3.2/mm3dnow.h comp-c-include llvm +./usr/include/clang-3.2/mm_malloc.h comp-c-include llvm +./usr/include/clang-3.2/mmintrin.h comp-c-include llvm +./usr/include/clang-3.2/nmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/pmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/popcntintrin.h comp-c-include llvm +./usr/include/clang-3.2/smmintrin.h comp-c-include llvm +./usr/include/clang-3.2/tmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/wmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/x86intrin.h comp-c-include llvm +./usr/include/clang-3.2/xmmintrin.h comp-c-include llvm +./usr/include/clang-3.2/xopintrin.h comp-c-include llvm +./usr/include/emmintrin.h comp-obsolete obsolete +./usr/include/gcc-4.1/emmintrin.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/emmintrin.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.1/mm_malloc.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/mm_malloc.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.1/mmintrin.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/mmintrin.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.1/pmmintrin.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/pmmintrin.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.1/xmmintrin.h comp-c-include gcccmds,gcc=4 +./usr/include/gcc-4.1/xmmintrin.h comp-obsolete gcc=45,obsolete +./usr/include/gcc-4.5/abmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/ammintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/avxintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/bmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/cpuid.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/cross-stdarg.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/emmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/fma4intrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/ia32intrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/immintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/lwpintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/mm3dnow.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/mm_malloc.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/mmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/nmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/pmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/popcntintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/smmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/tmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/wmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/x86intrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/xmmintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/gcc-4.5/xopintrin.h comp-c-include gcccmds,gcc=45 +./usr/include/i386 comp-c-include +./usr/include/i386/_G_config.h comp-obsolete obsolete +./usr/include/i386/ansi.h comp-c-include +./usr/include/i386/aout_machdep.h comp-c-include +./usr/include/i386/apmvar.h comp-c-include +./usr/include/i386/asm.h comp-c-include +./usr/include/i386/atomic.h comp-obsolete obsolete +./usr/include/i386/autoconf.h comp-obsolete obsolete +./usr/include/i386/bioscall.h comp-c-include +./usr/include/i386/bootinfo.h comp-c-include +./usr/include/i386/bswap.h comp-c-include +./usr/include/i386/bus.h comp-obsolete obsolete +./usr/include/i386/byte_swap.h comp-c-include +./usr/include/i386/cdefs.h comp-c-include +./usr/include/i386/conf.h comp-obsolete obsolete +./usr/include/i386/cpu.h comp-c-include +./usr/include/i386/cpufunc.h comp-c-obsolete obsolete +./usr/include/i386/cputypes.h comp-c-include +./usr/include/i386/db_machdep.h comp-obsolete obsolete +./usr/include/i386/disklabel.h comp-c-include +./usr/include/i386/elf_machdep.h comp-c-include +./usr/include/i386/endian.h comp-c-include +./usr/include/i386/endian_machdep.h comp-c-include +./usr/include/i386/fenv.h comp-c-include +./usr/include/i386/float.h comp-c-include +./usr/include/i386/frame.h comp-c-include +./usr/include/i386/freebsd_machdep.h comp-c-include +./usr/include/i386/gdt.h comp-c-include +./usr/include/i386/ibcs2_machdep.h comp-c-include +./usr/include/i386/ieee.h comp-c-include +./usr/include/i386/ieeefp.h comp-c-include +./usr/include/i386/int_const.h comp-c-include +./usr/include/i386/int_fmtio.h comp-c-include +./usr/include/i386/int_limits.h comp-c-include +./usr/include/i386/int_mwgwtypes.h comp-c-include +./usr/include/i386/int_types.h comp-c-include +./usr/include/i386/intr.h comp-c-include +./usr/include/i386/intrdefs.h comp-c-include +./usr/include/i386/joystick.h comp-c-include +./usr/include/i386/kcore.h comp-c-include +./usr/include/i386/limits.h comp-c-include +./usr/include/i386/loadfile_machdep.h comp-obsolete obsolete +./usr/include/i386/lock.h comp-c-include +./usr/include/i386/math.h comp-c-include +./usr/include/i386/mcontext.h comp-c-include +./usr/include/i386/mouse.h comp-obsolete obsolete +./usr/include/i386/mtrr.h comp-c-include +./usr/include/i386/multiboot.h comp-c-include +./usr/include/i386/mutex.h comp-c-include +./usr/include/i386/npx.h comp-c-include +./usr/include/i386/param.h comp-c-include +./usr/include/i386/pcb.h comp-c-include +./usr/include/i386/pccons.h comp-obsolete obsolete +./usr/include/i386/pio.h comp-c-include +./usr/include/i386/pmap.h comp-c-include +./usr/include/i386/pmc.h comp-c-include +./usr/include/i386/proc.h comp-c-include +./usr/include/i386/profile.h comp-c-include +./usr/include/i386/psl.h comp-c-include +./usr/include/i386/pte.h comp-c-include +./usr/include/i386/ptrace.h comp-c-include +./usr/include/i386/reg.h comp-c-include +./usr/include/i386/rwlock.h comp-c-include +./usr/include/i386/segments.h comp-c-include +./usr/include/i386/setjmp.h comp-c-include +./usr/include/i386/signal.h comp-c-include +./usr/include/i386/specialreg.h comp-c-include +./usr/include/i386/spkr.h comp-c-include +./usr/include/i386/stdarg.h comp-obsolete obsolete +./usr/include/i386/svr4_machdep.h comp-c-include +./usr/include/i386/sysarch.h comp-c-include +./usr/include/i386/trap.h comp-c-include +./usr/include/i386/tss.h comp-c-include +./usr/include/i386/types.h comp-c-include +./usr/include/i386/varargs.h comp-obsolete obsolete +./usr/include/i386/vm86.h comp-c-include +./usr/include/i386/vmparam.h comp-c-include +./usr/include/i386/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/include/mm_malloc.h comp-obsolete obsolete +./usr/include/mmintrin.h comp-obsolete obsolete +./usr/include/pmc.h comp-c-include +./usr/include/pmmintrin.h comp-obsolete obsolete +./usr/include/x86 comp-c-include +./usr/include/x86/aout_machdep.h comp-c-include +./usr/include/x86/autoconf.h comp-obsolete obsolete +./usr/include/x86/bootinfo.h comp-c-include +./usr/include/x86/bus.h comp-obsolete obsolete +./usr/include/x86/cacheinfo.h comp-c-include +./usr/include/x86/cpu.h comp-c-include +./usr/include/x86/cpu_ucode.h comp-c-include +./usr/include/x86/cputypes.h comp-c-include +./usr/include/x86/cpuvar.h comp-c-include +./usr/include/x86/float.h comp-c-include +./usr/include/x86/ieee.h comp-c-include +./usr/include/x86/ieeefp.h comp-c-include +./usr/include/x86/intr.h comp-c-include +./usr/include/x86/intrdefs.h comp-c-include +./usr/include/x86/lock.h comp-c-include +./usr/include/x86/math.h comp-c-include +./usr/include/x86/mtrr.h comp-c-include +./usr/include/x86/mutex.h comp-c-include +./usr/include/x86/pio.h comp-c-include +./usr/include/x86/pmap.h comp-c-include +./usr/include/x86/pmap_pv.h comp-c-include +./usr/include/x86/psl.h comp-c-include +./usr/include/x86/pte.h comp-c-include +./usr/include/x86/rwlock.h comp-c-include +./usr/include/x86/specialreg.h comp-c-include +./usr/include/x86/sysarch.h comp-c-include +./usr/include/x86/trap.h comp-c-include +./usr/include/x86/via_padlock.h comp-c-include +./usr/include/xen comp-c-include +./usr/include/xen/xenio.h comp-c-include +./usr/include/xen/xenio3.h comp-c-include +./usr/include/xmmintrin.h comp-obsolete obsolete +./usr/lib/libi386.a comp-c-lib +./usr/lib/libi386_g.a -unknown- debuglib +./usr/lib/libi386_p.a comp-c-proflib profile +./usr/lib/libi386_pic.a comp-c-piclib pic +./usr/lib/libm387.a comp-c-lib +./usr/lib/libm387_g.a -unknown- debuglib +./usr/lib/libm387_p.a comp-c-proflib profile +./usr/lib/libm387_pic.a comp-c-piclib pic +./usr/lib/libpmc.a comp-c-lib +./usr/lib/libpmc_g.a -unknown- debuglib +./usr/lib/libpmc_p.a comp-c-proflib profile +./usr/lib/libpmc_pic.a comp-c-piclib pic +./usr/libdata/debug/sbin/ldconfig.debug comp-sysutil-debug debug,pic +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/iasl.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/pmc.debug comp-util-debug debug +./usr/libdata/debug/usr/lib/libi386.so.1.0.debug comp-sys-debug pic,debug +./usr/libdata/debug/usr/lib/libm387.so.0.1.debug comp-sys-debug pic,debug +./usr/libdata/debug/usr/lib/libpmc.so.1.0.debug comp-sys-debug pic,debug +./usr/libdata/debug/usr/sbin/acpidump.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/amldb.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/apm.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/apmd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/bad144.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ipwctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ndiscvt.debug comp-sysutil-debug debug +./usr/libdata/lint/llib-li386.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lpmc.ln comp-c-lintlib lint diff --git a/distrib/sets/lists/comp/md.ibmnws b/distrib/sets/lists/comp/md.ibmnws new file mode 100644 index 000000000..81a3e3c07 --- /dev/null +++ b/distrib/sets/lists/comp/md.ibmnws @@ -0,0 +1,61 @@ +# $NetBSD: md.ibmnws,v 1.10 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ibmnws comp-c-include +./usr/include/ibmnws/_G_config.h comp-obsolete obsolete +./usr/include/ibmnws/ansi.h comp-c-include +./usr/include/ibmnws/aout_machdep.h comp-c-include +./usr/include/ibmnws/asm.h comp-c-include +./usr/include/ibmnws/atomic.h comp-obsolete obsolete +./usr/include/ibmnws/bat.h comp-obsolete obsolete +./usr/include/ibmnws/bswap.h comp-c-include +./usr/include/ibmnws/bus.h comp-obsolete obsolete +./usr/include/ibmnws/cdefs.h comp-c-include +./usr/include/ibmnws/cpu.h comp-c-include +./usr/include/ibmnws/cpufunc.h comp-obsolete obsolete +./usr/include/ibmnws/db_machdep.h comp-obsolete obsolete +./usr/include/ibmnws/disklabel.h comp-c-include +./usr/include/ibmnws/elf_machdep.h comp-c-include +./usr/include/ibmnws/endian.h comp-c-include +./usr/include/ibmnws/endian_machdep.h comp-c-include +./usr/include/ibmnws/float.h comp-c-include +./usr/include/ibmnws/fpu.h comp-c-include +./usr/include/ibmnws/frame.h comp-c-include +./usr/include/ibmnws/ieee.h comp-c-include +./usr/include/ibmnws/ieeefp.h comp-c-include +./usr/include/ibmnws/int_const.h comp-c-include +./usr/include/ibmnws/int_fmtio.h comp-c-include +./usr/include/ibmnws/int_limits.h comp-c-include +./usr/include/ibmnws/int_mwgwtypes.h comp-c-include +./usr/include/ibmnws/int_types.h comp-c-include +./usr/include/ibmnws/intr.h comp-c-include +./usr/include/ibmnws/ipkdb.h comp-obsolete obsolete +./usr/include/ibmnws/kcore.h comp-c-include +./usr/include/ibmnws/kgdb.h comp-obsolete obsolete +./usr/include/ibmnws/limits.h comp-c-include +./usr/include/ibmnws/lock.h comp-c-include +./usr/include/ibmnws/math.h comp-c-include +./usr/include/ibmnws/mcontext.h comp-c-include +./usr/include/ibmnws/mutex.h comp-c-include +./usr/include/ibmnws/param.h comp-c-include +./usr/include/ibmnws/pcb.h comp-c-include +./usr/include/ibmnws/pio.h comp-obsolete obsolete +./usr/include/ibmnws/pmap.h comp-c-include +./usr/include/ibmnws/pmc.h comp-c-include +./usr/include/ibmnws/powerpc.h comp-obsolete obsolete +./usr/include/ibmnws/proc.h comp-c-include +./usr/include/ibmnws/profile.h comp-c-include +./usr/include/ibmnws/psl.h comp-c-include +./usr/include/ibmnws/pte.h comp-c-include +./usr/include/ibmnws/ptrace.h comp-c-include +./usr/include/ibmnws/reg.h comp-c-include +./usr/include/ibmnws/reloc.h comp-c-include +./usr/include/ibmnws/rwlock.h comp-c-include +./usr/include/ibmnws/setjmp.h comp-c-include +./usr/include/ibmnws/signal.h comp-c-include +./usr/include/ibmnws/spr.h comp-obsolete obsolete +./usr/include/ibmnws/stdarg.h comp-obsolete obsolete +./usr/include/ibmnws/trap.h comp-c-include +./usr/include/ibmnws/types.h comp-c-include +./usr/include/ibmnws/varargs.h comp-obsolete obsolete +./usr/include/ibmnws/vmparam.h comp-c-include +./usr/include/ibmnws/wchar_limits.h comp-c-include +./usr/include/ieeefp.h comp-c-include diff --git a/distrib/sets/lists/comp/md.iyonix b/distrib/sets/lists/comp/md.iyonix new file mode 100644 index 000000000..8f8b5e50b --- /dev/null +++ b/distrib/sets/lists/comp/md.iyonix @@ -0,0 +1,50 @@ +# $NetBSD: md.iyonix,v 1.7 2011/07/18 17:18:14 dyoung Exp $ +./usr/include/iyonix comp-c-include +./usr/include/iyonix/ansi.h comp-c-include +./usr/include/iyonix/aout_machdep.h comp-c-include +./usr/include/iyonix/asm.h comp-c-include +./usr/include/iyonix/bswap.h comp-c-include +./usr/include/iyonix/bus.h comp-obsolete obsolete +./usr/include/iyonix/cdefs.h comp-c-include +./usr/include/iyonix/cpu.h comp-c-include +./usr/include/iyonix/db_machdep.h comp-obsolete obsolete +./usr/include/iyonix/disklabel.h comp-c-include +./usr/include/iyonix/elf_machdep.h comp-c-include +./usr/include/iyonix/endian.h comp-c-include +./usr/include/iyonix/endian_machdep.h comp-c-include +./usr/include/iyonix/float.h comp-c-include +./usr/include/iyonix/fp.h comp-c-include +./usr/include/iyonix/frame.h comp-c-include +./usr/include/iyonix/ieee.h comp-c-include +./usr/include/iyonix/ieeefp.h comp-c-include +./usr/include/iyonix/int_const.h comp-c-include +./usr/include/iyonix/int_fmtio.h comp-c-include +./usr/include/iyonix/int_limits.h comp-c-include +./usr/include/iyonix/int_mwgwtypes.h comp-c-include +./usr/include/iyonix/int_types.h comp-c-include +./usr/include/iyonix/intr.h comp-c-include +./usr/include/iyonix/ipkdb.h comp-obsolete obsolete +./usr/include/iyonix/joystick.h comp-c-include +./usr/include/iyonix/limits.h comp-c-include +./usr/include/iyonix/lock.h comp-c-include +./usr/include/iyonix/math.h comp-c-include +./usr/include/iyonix/mcontext.h comp-c-include +./usr/include/iyonix/mutex.h comp-c-include +./usr/include/iyonix/param.h comp-c-include +./usr/include/iyonix/pcb.h comp-c-include +./usr/include/iyonix/pmap.h comp-c-include +./usr/include/iyonix/pmc.h comp-c-include +./usr/include/iyonix/proc.h comp-c-include +./usr/include/iyonix/profile.h comp-c-include +./usr/include/iyonix/ptrace.h comp-c-include +./usr/include/iyonix/reg.h comp-c-include +./usr/include/iyonix/rwlock.h comp-c-include +./usr/include/iyonix/setjmp.h comp-c-include +./usr/include/iyonix/signal.h comp-c-include +./usr/include/iyonix/stdarg.h comp-obsolete obsolete +./usr/include/iyonix/sysarch.h comp-c-include +./usr/include/iyonix/trap.h comp-c-include +./usr/include/iyonix/types.h comp-c-include +./usr/include/iyonix/varargs.h comp-obsolete obsolete +./usr/include/iyonix/vmparam.h comp-c-include +./usr/include/iyonix/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.landisk b/distrib/sets/lists/comp/md.landisk new file mode 100644 index 000000000..efc336c90 --- /dev/null +++ b/distrib/sets/lists/comp/md.landisk @@ -0,0 +1,53 @@ +# $NetBSD: md.landisk,v 1.4 2011/07/18 17:29:20 dyoung Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/landisk comp-c-include +./usr/include/landisk/ansi.h comp-c-include +./usr/include/landisk/aout_machdep.h comp-c-include +./usr/include/landisk/asm.h comp-c-include +./usr/include/landisk/bootinfo.h comp-c-include +./usr/include/landisk/bswap.h comp-c-include +./usr/include/landisk/bus.h comp-obsolete obsolete +./usr/include/landisk/button.h comp-c-include +./usr/include/landisk/cdefs.h comp-c-include +./usr/include/landisk/coff_machdep.h comp-c-include +./usr/include/landisk/cpu.h comp-c-include +./usr/include/landisk/cputypes.h comp-c-include +./usr/include/landisk/db_machdep.h comp-c-include +./usr/include/landisk/disklabel.h comp-c-include +./usr/include/landisk/elf_machdep.h comp-c-include +./usr/include/landisk/endian.h comp-c-include +./usr/include/landisk/endian_machdep.h comp-c-include +./usr/include/landisk/float.h comp-c-include +./usr/include/landisk/frame.h comp-c-include +./usr/include/landisk/ieee.h comp-c-include +./usr/include/landisk/ieeefp.h comp-c-include +./usr/include/landisk/int_const.h comp-c-include +./usr/include/landisk/int_fmtio.h comp-c-include +./usr/include/landisk/int_limits.h comp-c-include +./usr/include/landisk/int_mwgwtypes.h comp-c-include +./usr/include/landisk/int_types.h comp-c-include +./usr/include/landisk/intr.h comp-c-include +./usr/include/landisk/limits.h comp-c-include +./usr/include/landisk/lock.h comp-c-include +./usr/include/landisk/loadfile_machdep.h comp-c-include +./usr/include/landisk/math.h comp-c-include +./usr/include/landisk/mcontext.h comp-c-include +./usr/include/landisk/mutex.h comp-c-include +./usr/include/landisk/param.h comp-c-include +./usr/include/landisk/pcb.h comp-c-include +./usr/include/landisk/pmap.h comp-c-include +./usr/include/landisk/pmc.h comp-c-include +./usr/include/landisk/proc.h comp-c-include +./usr/include/landisk/profile.h comp-c-include +./usr/include/landisk/psl.h comp-c-include +./usr/include/landisk/pte.h comp-c-include +./usr/include/landisk/ptrace.h comp-c-include +./usr/include/landisk/reg.h comp-c-include +./usr/include/landisk/rwlock.h comp-c-include +./usr/include/landisk/setjmp.h comp-c-include +./usr/include/landisk/signal.h comp-c-include +./usr/include/landisk/stdarg.h comp-obsolete obsolete +./usr/include/landisk/types.h comp-c-include +./usr/include/landisk/varargs.h comp-obsolete obsolete +./usr/include/landisk/vmparam.h comp-c-include +./usr/include/landisk/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.luna68k b/distrib/sets/lists/comp/md.luna68k new file mode 100644 index 000000000..b31876d2b --- /dev/null +++ b/distrib/sets/lists/comp/md.luna68k @@ -0,0 +1,53 @@ +# $NetBSD: md.luna68k,v 1.19 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/luna68k comp-c-include +./usr/include/luna68k/_G_config.h comp-obsolete obsolete +./usr/include/luna68k/ansi.h comp-c-include +./usr/include/luna68k/aout_machdep.h comp-c-include +./usr/include/luna68k/asm.h comp-c-include +./usr/include/luna68k/autoconf.h comp-c-include +./usr/include/luna68k/bswap.h comp-c-include +./usr/include/luna68k/bus.h comp-c-include +./usr/include/luna68k/cdefs.h comp-c-include +./usr/include/luna68k/cpu.h comp-c-include +./usr/include/luna68k/db_machdep.h comp-obsolete obsolete +./usr/include/luna68k/disklabel.h comp-c-include +./usr/include/luna68k/elf_machdep.h comp-c-include +./usr/include/luna68k/endian.h comp-c-include +./usr/include/luna68k/endian_machdep.h comp-c-include +./usr/include/luna68k/float.h comp-c-include +./usr/include/luna68k/frame.h comp-c-include +./usr/include/luna68k/ieee.h comp-c-include +./usr/include/luna68k/ieeefp.h comp-c-include +./usr/include/luna68k/int_const.h comp-c-include +./usr/include/luna68k/int_fmtio.h comp-c-include +./usr/include/luna68k/int_limits.h comp-c-include +./usr/include/luna68k/int_mwgwtypes.h comp-c-include +./usr/include/luna68k/int_types.h comp-c-include +./usr/include/luna68k/intr.h comp-c-include +./usr/include/luna68k/kcore.h comp-c-include +./usr/include/luna68k/limits.h comp-c-include +./usr/include/luna68k/lock.h comp-c-include +./usr/include/luna68k/math.h comp-c-include +./usr/include/luna68k/mcontext.h comp-c-include +./usr/include/luna68k/mutex.h comp-c-include +./usr/include/luna68k/param.h comp-c-include +./usr/include/luna68k/pcb.h comp-c-include +./usr/include/luna68k/pmap.h comp-c-include +./usr/include/luna68k/pmc.h comp-c-include +./usr/include/luna68k/proc.h comp-c-include +./usr/include/luna68k/profile.h comp-c-include +./usr/include/luna68k/psl.h comp-c-include +./usr/include/luna68k/pte.h comp-c-include +./usr/include/luna68k/ptrace.h comp-c-include +./usr/include/luna68k/reg.h comp-c-include +./usr/include/luna68k/rwlock.h comp-c-include +./usr/include/luna68k/setjmp.h comp-c-include +./usr/include/luna68k/signal.h comp-c-include +./usr/include/luna68k/stdarg.h comp-obsolete obsolete +./usr/include/luna68k/svr4_machdep.h comp-obsolete obsolete +./usr/include/luna68k/trap.h comp-c-include +./usr/include/luna68k/types.h comp-c-include +./usr/include/luna68k/varargs.h comp-obsolete obsolete +./usr/include/luna68k/vmparam.h comp-c-include +./usr/include/luna68k/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.mac68k b/distrib/sets/lists/comp/md.mac68k new file mode 100644 index 000000000..34d00c636 --- /dev/null +++ b/distrib/sets/lists/comp/md.mac68k @@ -0,0 +1,62 @@ +# $NetBSD: md.mac68k,v 1.59 2012/04/06 22:46:16 christos Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/mac68k comp-c-include +./usr/include/mac68k/_G_config.h comp-obsolete obsolete +./usr/include/mac68k/adbsys.h comp-c-include +./usr/include/mac68k/ansi.h comp-c-include +./usr/include/mac68k/aout_machdep.h comp-c-include +./usr/include/mac68k/asm.h comp-c-include +./usr/include/mac68k/autoconf.h comp-c-include +./usr/include/mac68k/bswap.h comp-c-include +./usr/include/mac68k/bus.h comp-c-include +./usr/include/mac68k/cdefs.h comp-c-include +./usr/include/mac68k/cpu.h comp-c-include +./usr/include/mac68k/db_machdep.h comp-obsolete obsolete +./usr/include/mac68k/disklabel.h comp-c-include +./usr/include/mac68k/elf_machdep.h comp-c-include +./usr/include/mac68k/endian.h comp-c-include +./usr/include/mac68k/endian_machdep.h comp-c-include +./usr/include/mac68k/float.h comp-c-include +./usr/include/mac68k/frame.h comp-c-include +./usr/include/mac68k/grfioctl.h comp-c-include +./usr/include/mac68k/ieee.h comp-c-include +./usr/include/mac68k/ieeefp.h comp-c-include +./usr/include/mac68k/int_const.h comp-c-include +./usr/include/mac68k/int_fmtio.h comp-c-include +./usr/include/mac68k/int_limits.h comp-c-include +./usr/include/mac68k/int_mwgwtypes.h comp-c-include +./usr/include/mac68k/int_types.h comp-c-include +./usr/include/mac68k/intr.h comp-c-include +./usr/include/mac68k/iteioctl.h comp-c-include +./usr/include/mac68k/kcore.h comp-c-include +./usr/include/mac68k/keyboard.h comp-c-include +./usr/include/mac68k/limits.h comp-c-include +./usr/include/mac68k/lock.h comp-c-include +./usr/include/mac68k/math.h comp-c-include +./usr/include/mac68k/mcontext.h comp-c-include +./usr/include/mac68k/mutex.h comp-c-include +./usr/include/mac68k/param.h comp-c-include +./usr/include/mac68k/pcb.h comp-c-include +./usr/include/mac68k/pio.h comp-c-include +./usr/include/mac68k/pmap.h comp-c-include +./usr/include/mac68k/pmc.h comp-c-include +./usr/include/mac68k/proc.h comp-c-include +./usr/include/mac68k/profile.h comp-c-include +./usr/include/mac68k/psc.h comp-c-include +./usr/include/mac68k/psl.h comp-c-include +./usr/include/mac68k/pte.h comp-c-include +./usr/include/mac68k/ptrace.h comp-c-include +./usr/include/mac68k/reg.h comp-c-include +./usr/include/mac68k/rwlock.h comp-c-include +./usr/include/mac68k/scsi_5380.h comp-c-include +./usr/include/mac68k/setjmp.h comp-c-include +./usr/include/mac68k/signal.h comp-c-include +./usr/include/mac68k/stdarg.h comp-obsolete obsolete +./usr/include/mac68k/svr4_machdep.h comp-obsolete obsolete +./usr/include/mac68k/trap.h comp-c-include +./usr/include/mac68k/types.h comp-c-include +./usr/include/mac68k/varargs.h comp-obsolete obsolete +./usr/include/mac68k/viareg.h comp-c-include +./usr/include/mac68k/vmparam.h comp-c-include +./usr/include/mac68k/wchar_limits.h comp-c-include +./usr/include/mac68k/z8530var.h comp-c-include diff --git a/distrib/sets/lists/comp/md.macppc b/distrib/sets/lists/comp/md.macppc new file mode 100644 index 000000000..c65be351e --- /dev/null +++ b/distrib/sets/lists/comp/md.macppc @@ -0,0 +1,70 @@ +# $NetBSD: md.macppc,v 1.36 2012/04/06 22:46:16 christos Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/macppc comp-c-include +./usr/include/macppc/_G_config.h comp-obsolete obsolete +./usr/include/macppc/adbsys.h comp-c-include +./usr/include/macppc/ansi.h comp-c-include +./usr/include/macppc/aout_machdep.h comp-c-include +./usr/include/macppc/apmvar.h comp-c-include +./usr/include/macppc/asm.h comp-c-include +./usr/include/macppc/atomic.h comp-obsolete obsolete +./usr/include/macppc/autoconf.h comp-c-include +./usr/include/macppc/bat.h comp-obsolete obsolete +./usr/include/macppc/bswap.h comp-c-include +./usr/include/macppc/bus.h comp-obsolete obsolete +./usr/include/macppc/cdefs.h comp-c-include +./usr/include/macppc/cpu.h comp-c-include +./usr/include/macppc/db_machdep.h comp-obsolete obsolete +./usr/include/macppc/disklabel.h comp-c-include +./usr/include/macppc/elf_machdep.h comp-c-include +./usr/include/macppc/endian.h comp-c-include +./usr/include/macppc/endian_machdep.h comp-c-include +./usr/include/macppc/float.h comp-c-include +./usr/include/macppc/fpu.h comp-c-include +./usr/include/macppc/frame.h comp-c-include +./usr/include/macppc/grfioctl.h comp-c-include +./usr/include/macppc/ieee.h comp-c-include +./usr/include/macppc/ieeefp.h comp-c-include +./usr/include/macppc/int_const.h comp-c-include +./usr/include/macppc/int_fmtio.h comp-c-include +./usr/include/macppc/int_limits.h comp-c-include +./usr/include/macppc/int_mwgwtypes.h comp-c-include +./usr/include/macppc/int_types.h comp-c-include +./usr/include/macppc/intr.h comp-c-include +./usr/include/macppc/ipkdb.h comp-obsolete obsolete +./usr/include/macppc/kcore.h comp-c-include +./usr/include/macppc/keyboard.h comp-c-include +./usr/include/macppc/limits.h comp-c-include +./usr/include/macppc/lock.h comp-c-include +./usr/include/macppc/machine_type.h comp-obsolete obsolete +./usr/include/macppc/math.h comp-c-include +./usr/include/macppc/mcontext.h comp-c-include +./usr/include/macppc/mutex.h comp-c-include +./usr/include/macppc/param.h comp-c-include +./usr/include/macppc/pcb.h comp-c-include +./usr/include/macppc/pio.h comp-obsolete obsolete +./usr/include/macppc/pmap.h comp-c-include +./usr/include/macppc/pmc.h comp-c-include +./usr/include/macppc/powerpc.h comp-obsolete obsolete +./usr/include/macppc/proc.h comp-c-include +./usr/include/macppc/profile.h comp-c-include +./usr/include/macppc/psl.h comp-c-include +./usr/include/macppc/pte.h comp-c-include +./usr/include/macppc/ptrace.h comp-c-include +./usr/include/macppc/reg.h comp-c-include +./usr/include/macppc/reloc.h comp-c-include +./usr/include/macppc/rwlock.h comp-c-include +./usr/include/macppc/setjmp.h comp-c-include +./usr/include/macppc/signal.h comp-c-include +./usr/include/macppc/spr.h comp-obsolete obsolete +./usr/include/macppc/stdarg.h comp-obsolete obsolete +./usr/include/macppc/trap.h comp-c-include +./usr/include/macppc/types.h comp-c-include +./usr/include/macppc/varargs.h comp-obsolete obsolete +./usr/include/macppc/vmparam.h comp-c-include +./usr/include/macppc/wchar_limits.h comp-c-include +./usr/include/macppc/z8530var.h comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/apm.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/apmd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/eeprom.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ofctl.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.mipsco b/distrib/sets/lists/comp/md.mipsco new file mode 100644 index 000000000..a109a70ab --- /dev/null +++ b/distrib/sets/lists/comp/md.mipsco @@ -0,0 +1,65 @@ +# $NetBSD: md.mipsco,v 1.20 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/mipsco comp-c-include +./usr/include/mipsco/_G_config.h comp-obsolete obsolete +./usr/include/mipsco/ansi.h comp-c-include +./usr/include/mipsco/aout_machdep.h comp-obsolete obsolete +./usr/include/mipsco/asm.h comp-c-include +./usr/include/mipsco/autoconf.h comp-c-include +./usr/include/mipsco/bsd-aout.h comp-obsolete obsolete +./usr/include/mipsco/bswap.h comp-c-include +./usr/include/mipsco/bus.h comp-c-include +./usr/include/mipsco/cdefs.h comp-c-include +./usr/include/mipsco/conf.h comp-obsolete obsolete +./usr/include/mipsco/cpu.h comp-c-include +./usr/include/mipsco/db_machdep.h comp-obsolete obsolete +./usr/include/mipsco/disklabel.h comp-c-include +./usr/include/mipsco/ecoff_machdep.h comp-c-include +./usr/include/mipsco/elf.h comp-c-include +./usr/include/mipsco/elf_machdep.h comp-c-include +./usr/include/mipsco/endian.h comp-c-include +./usr/include/mipsco/endian_machdep.h comp-c-include +./usr/include/mipsco/float.h comp-c-include +./usr/include/mipsco/ieee.h comp-c-include +./usr/include/mipsco/ieeefp.h comp-c-include +./usr/include/mipsco/int_const.h comp-c-include +./usr/include/mipsco/int_fmtio.h comp-c-include +./usr/include/mipsco/int_limits.h comp-c-include +./usr/include/mipsco/int_mwgwtypes.h comp-c-include +./usr/include/mipsco/int_types.h comp-c-include +./usr/include/mipsco/intr.h comp-c-include +./usr/include/mipsco/kcore.h comp-c-include +./usr/include/mipsco/kdbparam.h comp-c-include +./usr/include/mipsco/limits.h comp-c-include +./usr/include/mipsco/lock.h comp-c-include +./usr/include/mipsco/locore.h comp-c-include +./usr/include/mipsco/mainboard.h comp-c-include +./usr/include/mipsco/math.h comp-c-include +./usr/include/mipsco/mcontext.h comp-c-include +./usr/include/mipsco/mips_opcode.h comp-c-include +./usr/include/mipsco/mutex.h comp-c-include +./usr/include/mipsco/param.h comp-c-include +./usr/include/mipsco/pcb.h comp-c-include +./usr/include/mipsco/pmap.h comp-c-include +./usr/include/mipsco/pmc.h comp-c-include +./usr/include/mipsco/proc.h comp-c-include +./usr/include/mipsco/profile.h comp-c-include +./usr/include/mipsco/psl.h comp-c-include +./usr/include/mipsco/pte.h comp-c-include +./usr/include/mipsco/ptrace.h comp-c-include +./usr/include/mipsco/reg.h comp-c-include +./usr/include/mipsco/regdef.h comp-c-include +./usr/include/mipsco/regnum.h comp-c-include +./usr/include/mipsco/reloc.h comp-c-include +./usr/include/mipsco/rwlock.h comp-c-include +./usr/include/mipsco/setjmp.h comp-c-include +./usr/include/mipsco/signal.h comp-c-include +./usr/include/mipsco/stdarg.h comp-obsolete obsolete +./usr/include/mipsco/sysconf.h comp-c-include +./usr/include/mipsco/trap.h comp-c-include +./usr/include/mipsco/types.h comp-c-include +./usr/include/mipsco/varargs.h comp-obsolete obsolete +./usr/include/mipsco/vmparam.h comp-c-include +./usr/include/mipsco/wchar_limits.h comp-c-include +./usr/include/mipsco/z8530var.h comp-c-include +./usr/libdata/debug/usr/mdec/installboot.debug -unknown- debug diff --git a/distrib/sets/lists/comp/md.mmeye b/distrib/sets/lists/comp/md.mmeye new file mode 100644 index 000000000..7d7d07746 --- /dev/null +++ b/distrib/sets/lists/comp/md.mmeye @@ -0,0 +1,63 @@ +# $NetBSD: md.mmeye,v 1.30 2011/07/19 15:17:20 dyoung Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/mmeye comp-c-include +./usr/include/mmeye/_G_config.h comp-obsolete obsolete +./usr/include/mmeye/ansi.h comp-c-include +./usr/include/mmeye/aout_machdep.h comp-c-include +./usr/include/mmeye/asm.h comp-c-include +./usr/include/mmeye/bootinfo.h comp-obsolete obsolete +./usr/include/mmeye/bswap.h comp-c-include +./usr/include/mmeye/bus.h comp-obsolete obsolete +./usr/include/mmeye/cdefs.h comp-c-include +./usr/include/mmeye/coff_machdep.h comp-c-include +./usr/include/mmeye/conf.h comp-obsolete obsolete +./usr/include/mmeye/cpu.h comp-c-include +./usr/include/mmeye/cpufunc.h comp-obsolete obsolete +./usr/include/mmeye/cputypes.h comp-c-include +./usr/include/mmeye/db_machdep.h comp-obsolete obsolete +./usr/include/mmeye/disklabel.h comp-c-include +./usr/include/mmeye/elf_machdep.h comp-c-include +./usr/include/mmeye/endian.h comp-c-include +./usr/include/mmeye/endian_machdep.h comp-c-include +./usr/include/mmeye/float.h comp-c-include +./usr/include/mmeye/frame.h comp-c-include +./usr/include/mmeye/ieee.h comp-c-include +./usr/include/mmeye/ieeefp.h comp-c-include +./usr/include/mmeye/int_const.h comp-c-include +./usr/include/mmeye/int_fmtio.h comp-c-include +./usr/include/mmeye/int_limits.h comp-c-include +./usr/include/mmeye/int_mwgwtypes.h comp-c-include +./usr/include/mmeye/int_types.h comp-c-include +./usr/include/mmeye/intr.h comp-c-include +./usr/include/mmeye/limits.h comp-c-include +./usr/include/mmeye/loadfile_machdep.h comp-obsolete obsolete +./usr/include/mmeye/lock.h comp-c-include +./usr/include/mmeye/math.h comp-c-include +./usr/include/mmeye/mcontext.h comp-c-include +./usr/include/mmeye/mmeye.h comp-c-include +./usr/include/mmeye/mutex.h comp-c-include +./usr/include/mmeye/param.h comp-c-include +./usr/include/mmeye/pcb.h comp-c-include +./usr/include/mmeye/pio.h comp-obsolete obsolete +./usr/include/mmeye/pmap.h comp-c-include +./usr/include/mmeye/pmc.h comp-c-include +./usr/include/mmeye/proc.h comp-c-include +./usr/include/mmeye/profile.h comp-c-include +./usr/include/mmeye/psl.h comp-c-include +./usr/include/mmeye/pte.h comp-c-include +./usr/include/mmeye/ptrace.h comp-c-include +./usr/include/mmeye/reg.h comp-c-include +./usr/include/mmeye/rwlock.h comp-c-include +./usr/include/mmeye/segments.h comp-obsolete obsolete +./usr/include/mmeye/setjmp.h comp-c-include +./usr/include/mmeye/shbvar.h comp-obsolete obsolete +./usr/include/mmeye/signal.h comp-c-include +./usr/include/mmeye/stdarg.h comp-obsolete obsolete +./usr/include/mmeye/trap.h comp-obsolete obsolete +./usr/include/mmeye/types.h comp-c-include +./usr/include/mmeye/varargs.h comp-obsolete obsolete +./usr/include/mmeye/vmparam.h comp-c-include +./usr/include/mmeye/wchar_limits.h comp-c-include +./usr/include/sh3/db_disasm.h comp-obsolete obsolete +./usr/libdata/debug/usr/mdec/bootelf.debug -unknown- debug +./usr/libdata/debug/usr/mdec/osloader.debug -unknown- debug diff --git a/distrib/sets/lists/comp/md.mvme68k b/distrib/sets/lists/comp/md.mvme68k new file mode 100644 index 000000000..269c3ee03 --- /dev/null +++ b/distrib/sets/lists/comp/md.mvme68k @@ -0,0 +1,56 @@ +# $NetBSD: md.mvme68k,v 1.36 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/mvme68k comp-c-include +./usr/include/mvme68k/_G_config.h comp-obsolete obsolete +./usr/include/mvme68k/ansi.h comp-c-include +./usr/include/mvme68k/aout_machdep.h comp-c-include +./usr/include/mvme68k/asm.h comp-c-include +./usr/include/mvme68k/autoconf.h comp-c-include +./usr/include/mvme68k/bswap.h comp-c-include +./usr/include/mvme68k/cdefs.h comp-c-include +./usr/include/mvme68k/cpu.h comp-c-include +./usr/include/mvme68k/db_machdep.h comp-obsolete obsolete +./usr/include/mvme68k/disklabel.h comp-c-include +./usr/include/mvme68k/elf_machdep.h comp-c-include +./usr/include/mvme68k/endian.h comp-c-include +./usr/include/mvme68k/endian_machdep.h comp-c-include +./usr/include/mvme68k/float.h comp-c-include +./usr/include/mvme68k/frame.h comp-c-include +./usr/include/mvme68k/ieee.h comp-c-include +./usr/include/mvme68k/ieeefp.h comp-c-include +./usr/include/mvme68k/int_const.h comp-c-include +./usr/include/mvme68k/int_fmtio.h comp-c-include +./usr/include/mvme68k/int_limits.h comp-c-include +./usr/include/mvme68k/int_mwgwtypes.h comp-c-include +./usr/include/mvme68k/int_types.h comp-c-include +./usr/include/mvme68k/intr.h comp-c-include +./usr/include/mvme68k/kcore.h comp-c-include +./usr/include/mvme68k/limits.h comp-c-include +./usr/include/mvme68k/lock.h comp-c-include +./usr/include/mvme68k/math.h comp-c-include +./usr/include/mvme68k/mcontext.h comp-c-include +./usr/include/mvme68k/mutex.h comp-c-include +./usr/include/mvme68k/param.h comp-c-include +./usr/include/mvme68k/pcb.h comp-c-include +./usr/include/mvme68k/pmap.h comp-c-include +./usr/include/mvme68k/pmc.h comp-c-include +./usr/include/mvme68k/proc.h comp-c-include +./usr/include/mvme68k/profile.h comp-c-include +./usr/include/mvme68k/prom.h comp-c-include +./usr/include/mvme68k/psl.h comp-c-include +./usr/include/mvme68k/pte.h comp-c-include +./usr/include/mvme68k/ptrace.h comp-c-include +./usr/include/mvme68k/reg.h comp-c-include +./usr/include/mvme68k/rwlock.h comp-c-include +./usr/include/mvme68k/setjmp.h comp-c-include +./usr/include/mvme68k/signal.h comp-c-include +./usr/include/mvme68k/stdarg.h comp-obsolete obsolete +./usr/include/mvme68k/svr4_machdep.h comp-obsolete obsolete +./usr/include/mvme68k/trap.h comp-c-include +./usr/include/mvme68k/types.h comp-c-include +./usr/include/mvme68k/varargs.h comp-obsolete obsolete +./usr/include/mvme68k/vmparam.h comp-c-include +./usr/include/mvme68k/wchar_limits.h comp-c-include +./usr/include/mvme68k/z8530var.h comp-c-include +./usr/libdata/debug/sbin/edlabel.debug comp-sysutil-debug obsolete +./usr/libdata/debug/usr/mdec/installboot.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.mvmeppc b/distrib/sets/lists/comp/md.mvmeppc new file mode 100644 index 000000000..d9772659a --- /dev/null +++ b/distrib/sets/lists/comp/md.mvmeppc @@ -0,0 +1,61 @@ +# $NetBSD: md.mvmeppc,v 1.14 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/mvmeppc comp-c-include +./usr/include/mvmeppc/_G_config.h comp-obsolete obsolete +./usr/include/mvmeppc/ansi.h comp-c-include +./usr/include/mvmeppc/aout_machdep.h comp-c-include +./usr/include/mvmeppc/asm.h comp-c-include +./usr/include/mvmeppc/atomic.h comp-obsolete obsolete +./usr/include/mvmeppc/bat.h comp-obsolete obsolete +./usr/include/mvmeppc/bootinfo.h comp-c-include +./usr/include/mvmeppc/bswap.h comp-c-include +./usr/include/mvmeppc/bus.h comp-obsolete obsolete +./usr/include/mvmeppc/cdefs.h comp-c-include +./usr/include/mvmeppc/cpu.h comp-c-include +./usr/include/mvmeppc/db_machdep.h comp-obsolete obsolete +./usr/include/mvmeppc/disklabel.h comp-c-include +./usr/include/mvmeppc/elf_machdep.h comp-c-include +./usr/include/mvmeppc/endian.h comp-c-include +./usr/include/mvmeppc/endian_machdep.h comp-c-include +./usr/include/mvmeppc/float.h comp-c-include +./usr/include/mvmeppc/fpu.h comp-c-include +./usr/include/mvmeppc/frame.h comp-c-include +./usr/include/mvmeppc/ieee.h comp-c-include +./usr/include/mvmeppc/ieeefp.h comp-c-include +./usr/include/mvmeppc/int_const.h comp-c-include +./usr/include/mvmeppc/int_fmtio.h comp-c-include +./usr/include/mvmeppc/int_limits.h comp-c-include +./usr/include/mvmeppc/int_mwgwtypes.h comp-c-include +./usr/include/mvmeppc/int_types.h comp-c-include +./usr/include/mvmeppc/intr.h comp-c-include +./usr/include/mvmeppc/ipkdb.h comp-obsolete obsolete +./usr/include/mvmeppc/kcore.h comp-c-include +./usr/include/mvmeppc/kgdb.h comp-obsolete obsolete +./usr/include/mvmeppc/limits.h comp-c-include +./usr/include/mvmeppc/lock.h comp-c-include +./usr/include/mvmeppc/math.h comp-c-include +./usr/include/mvmeppc/mcontext.h comp-c-include +./usr/include/mvmeppc/mutex.h comp-c-include +./usr/include/mvmeppc/param.h comp-c-include +./usr/include/mvmeppc/pcb.h comp-c-include +./usr/include/mvmeppc/pio.h comp-obsolete obsolete +./usr/include/mvmeppc/pmap.h comp-c-include +./usr/include/mvmeppc/pmc.h comp-c-include +./usr/include/mvmeppc/powerpc.h comp-obsolete obsolete +./usr/include/mvmeppc/proc.h comp-c-include +./usr/include/mvmeppc/profile.h comp-c-include +./usr/include/mvmeppc/psl.h comp-c-include +./usr/include/mvmeppc/pte.h comp-c-include +./usr/include/mvmeppc/ptrace.h comp-c-include +./usr/include/mvmeppc/reg.h comp-c-include +./usr/include/mvmeppc/reloc.h comp-c-include +./usr/include/mvmeppc/rwlock.h comp-c-include +./usr/include/mvmeppc/setjmp.h comp-c-include +./usr/include/mvmeppc/signal.h comp-c-include +./usr/include/mvmeppc/spr.h comp-obsolete obsolete +./usr/include/mvmeppc/stdarg.h comp-obsolete obsolete +./usr/include/mvmeppc/trap.h comp-c-include +./usr/include/mvmeppc/types.h comp-c-include +./usr/include/mvmeppc/varargs.h comp-obsolete obsolete +./usr/include/mvmeppc/vmparam.h comp-c-include +./usr/include/mvmeppc/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.netwinder b/distrib/sets/lists/comp/md.netwinder new file mode 100644 index 000000000..a152dbe9c --- /dev/null +++ b/distrib/sets/lists/comp/md.netwinder @@ -0,0 +1,50 @@ +# $NetBSD: md.netwinder,v 1.14 2011/07/18 17:18:14 dyoung Exp $ +./usr/include/netwinder comp-c-include +./usr/include/netwinder/ansi.h comp-c-include +./usr/include/netwinder/aout_machdep.h comp-c-include +./usr/include/netwinder/asm.h comp-c-include +./usr/include/netwinder/bswap.h comp-c-include +./usr/include/netwinder/bus.h comp-obsolete obsolete +./usr/include/netwinder/cdefs.h comp-c-include +./usr/include/netwinder/cpu.h comp-c-include +./usr/include/netwinder/db_machdep.h comp-obsolete obsolete +./usr/include/netwinder/disklabel.h comp-c-include +./usr/include/netwinder/elf_machdep.h comp-c-include +./usr/include/netwinder/endian.h comp-c-include +./usr/include/netwinder/endian_machdep.h comp-c-include +./usr/include/netwinder/float.h comp-c-include +./usr/include/netwinder/fp.h comp-c-include +./usr/include/netwinder/frame.h comp-c-include +./usr/include/netwinder/ieee.h comp-c-include +./usr/include/netwinder/ieeefp.h comp-c-include +./usr/include/netwinder/int_const.h comp-c-include +./usr/include/netwinder/int_fmtio.h comp-c-include +./usr/include/netwinder/int_limits.h comp-c-include +./usr/include/netwinder/int_mwgwtypes.h comp-c-include +./usr/include/netwinder/int_types.h comp-c-include +./usr/include/netwinder/intr.h comp-c-include +./usr/include/netwinder/ipkdb.h comp-obsolete obsolete +./usr/include/netwinder/joystick.h comp-c-include +./usr/include/netwinder/limits.h comp-c-include +./usr/include/netwinder/lock.h comp-c-include +./usr/include/netwinder/math.h comp-c-include +./usr/include/netwinder/mcontext.h comp-c-include +./usr/include/netwinder/mutex.h comp-c-include +./usr/include/netwinder/param.h comp-c-include +./usr/include/netwinder/pcb.h comp-c-include +./usr/include/netwinder/pmap.h comp-c-include +./usr/include/netwinder/pmc.h comp-c-include +./usr/include/netwinder/proc.h comp-c-include +./usr/include/netwinder/profile.h comp-c-include +./usr/include/netwinder/ptrace.h comp-c-include +./usr/include/netwinder/reg.h comp-c-include +./usr/include/netwinder/rwlock.h comp-c-include +./usr/include/netwinder/setjmp.h comp-c-include +./usr/include/netwinder/signal.h comp-c-include +./usr/include/netwinder/stdarg.h comp-obsolete obsolete +./usr/include/netwinder/sysarch.h comp-c-include +./usr/include/netwinder/trap.h comp-c-include +./usr/include/netwinder/types.h comp-c-include +./usr/include/netwinder/varargs.h comp-obsolete obsolete +./usr/include/netwinder/vmparam.h comp-c-include +./usr/include/netwinder/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.news68k b/distrib/sets/lists/comp/md.news68k new file mode 100644 index 000000000..afd710585 --- /dev/null +++ b/distrib/sets/lists/comp/md.news68k @@ -0,0 +1,54 @@ +# $NetBSD: md.news68k,v 1.27 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/news68k comp-c-include +./usr/include/news68k/_G_config.h comp-obsolete obsolete +./usr/include/news68k/ansi.h comp-c-include +./usr/include/news68k/aout_machdep.h comp-c-include +./usr/include/news68k/asm.h comp-c-include +./usr/include/news68k/autoconf.h comp-obsolete obsolete +./usr/include/news68k/bbinfo.h comp-obsolete obsolete +./usr/include/news68k/bswap.h comp-c-include +./usr/include/news68k/bus.h comp-c-include +./usr/include/news68k/cdefs.h comp-c-include +./usr/include/news68k/cpu.h comp-c-include +./usr/include/news68k/db_machdep.h comp-obsolete obsolete +./usr/include/news68k/disklabel.h comp-c-include +./usr/include/news68k/elf_machdep.h comp-c-include +./usr/include/news68k/endian.h comp-c-include +./usr/include/news68k/endian_machdep.h comp-c-include +./usr/include/news68k/float.h comp-c-include +./usr/include/news68k/frame.h comp-c-include +./usr/include/news68k/ieee.h comp-c-include +./usr/include/news68k/ieeefp.h comp-c-include +./usr/include/news68k/int_const.h comp-c-include +./usr/include/news68k/int_fmtio.h comp-c-include +./usr/include/news68k/int_limits.h comp-c-include +./usr/include/news68k/int_mwgwtypes.h comp-c-include +./usr/include/news68k/int_types.h comp-c-include +./usr/include/news68k/intr.h comp-obsolete obsolete +./usr/include/news68k/kcore.h comp-c-include +./usr/include/news68k/limits.h comp-c-include +./usr/include/news68k/lock.h comp-c-include +./usr/include/news68k/math.h comp-c-include +./usr/include/news68k/mcontext.h comp-c-include +./usr/include/news68k/mutex.h comp-c-include +./usr/include/news68k/param.h comp-c-include +./usr/include/news68k/pcb.h comp-c-include +./usr/include/news68k/pmap.h comp-c-include +./usr/include/news68k/pmc.h comp-c-include +./usr/include/news68k/proc.h comp-c-include +./usr/include/news68k/profile.h comp-c-include +./usr/include/news68k/psl.h comp-c-include +./usr/include/news68k/pte.h comp-c-include +./usr/include/news68k/ptrace.h comp-c-include +./usr/include/news68k/reg.h comp-c-include +./usr/include/news68k/rwlock.h comp-c-include +./usr/include/news68k/setjmp.h comp-c-include +./usr/include/news68k/signal.h comp-c-include +./usr/include/news68k/stdarg.h comp-obsolete obsolete +./usr/include/news68k/svr4_machdep.h comp-obsolete obsolete +./usr/include/news68k/trap.h comp-c-include +./usr/include/news68k/types.h comp-c-include +./usr/include/news68k/varargs.h comp-obsolete obsolete +./usr/include/news68k/vmparam.h comp-c-include +./usr/include/news68k/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.newsmips b/distrib/sets/lists/comp/md.newsmips new file mode 100644 index 000000000..8f7635e71 --- /dev/null +++ b/distrib/sets/lists/comp/md.newsmips @@ -0,0 +1,67 @@ +# $NetBSD: md.newsmips,v 1.29 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/newsmips comp-c-include +./usr/include/newsmips/_G_config.h comp-obsolete obsolete +./usr/include/newsmips/adrsmap.h comp-c-include +./usr/include/newsmips/ansi.h comp-c-include +./usr/include/newsmips/aout_machdep.h comp-obsolete obsolete +./usr/include/newsmips/asm.h comp-c-include +./usr/include/newsmips/autoconf.h comp-c-include +./usr/include/newsmips/bsd-aout.h comp-obsolete obsolete +./usr/include/newsmips/bswap.h comp-c-include +./usr/include/newsmips/cdefs.h comp-c-include +./usr/include/newsmips/conf.h comp-obsolete obsolete +./usr/include/newsmips/cpu.h comp-c-include +./usr/include/newsmips/db_machdep.h comp-obsolete obsolete +./usr/include/newsmips/disklabel.h comp-c-include +./usr/include/newsmips/ecoff_machdep.h comp-c-include +./usr/include/newsmips/elf.h comp-obsolete obsolete +./usr/include/newsmips/elf_machdep.h comp-c-include +./usr/include/newsmips/endian.h comp-c-include +./usr/include/newsmips/endian_machdep.h comp-c-include +./usr/include/newsmips/float.h comp-c-include +./usr/include/newsmips/framebuf.h comp-obsolete obsolete +./usr/include/newsmips/ieee.h comp-c-include +./usr/include/newsmips/ieeefp.h comp-c-include +./usr/include/newsmips/int_const.h comp-c-include +./usr/include/newsmips/int_fmtio.h comp-c-include +./usr/include/newsmips/int_limits.h comp-c-include +./usr/include/newsmips/int_mwgwtypes.h comp-c-include +./usr/include/newsmips/int_types.h comp-c-include +./usr/include/newsmips/intr.h comp-c-include +./usr/include/newsmips/kcore.h comp-c-include +./usr/include/newsmips/kdbparam.h comp-c-include +./usr/include/newsmips/keyboard.h comp-obsolete obsolete +./usr/include/newsmips/limits.h comp-c-include +./usr/include/newsmips/lock.h comp-c-include +./usr/include/newsmips/locore.h comp-c-include +./usr/include/newsmips/machConst.h comp-c-include +./usr/include/newsmips/math.h comp-c-include +./usr/include/newsmips/mcontext.h comp-c-include +./usr/include/newsmips/mips_opcode.h comp-c-include +./usr/include/newsmips/mouse.h comp-obsolete obsolete +./usr/include/newsmips/mutex.h comp-c-include +./usr/include/newsmips/param.h comp-c-include +./usr/include/newsmips/pcb.h comp-c-include +./usr/include/newsmips/pmap.h comp-c-include +./usr/include/newsmips/pmc.h comp-c-include +./usr/include/newsmips/proc.h comp-c-include +./usr/include/newsmips/profile.h comp-c-include +./usr/include/newsmips/psl.h comp-c-include +./usr/include/newsmips/pte.h comp-c-include +./usr/include/newsmips/ptrace.h comp-c-include +./usr/include/newsmips/reg.h comp-c-include +./usr/include/newsmips/regdef.h comp-c-include +./usr/include/newsmips/regnum.h comp-c-include +./usr/include/newsmips/reloc.h comp-c-include +./usr/include/newsmips/rwlock.h comp-c-include +./usr/include/newsmips/setjmp.h comp-c-include +./usr/include/newsmips/signal.h comp-c-include +./usr/include/newsmips/stdarg.h comp-obsolete obsolete +./usr/include/newsmips/trap.h comp-c-include +./usr/include/newsmips/types.h comp-c-include +./usr/include/newsmips/varargs.h comp-obsolete obsolete +./usr/include/newsmips/vmparam.h comp-c-include +./usr/include/newsmips/wchar_limits.h comp-c-include +./usr/include/newsmips/wsconsio.h comp-c-include +./usr/include/newsmips/z8530var.h comp-c-include diff --git a/distrib/sets/lists/comp/md.next68k b/distrib/sets/lists/comp/md.next68k new file mode 100644 index 000000000..12acf594a --- /dev/null +++ b/distrib/sets/lists/comp/md.next68k @@ -0,0 +1,58 @@ +# $NetBSD: md.next68k,v 1.32 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/next68k comp-c-include +./usr/include/next68k/_G_config.h comp-obsolete obsolete +./usr/include/next68k/ansi.h comp-c-include +./usr/include/next68k/aout_machdep.h comp-c-include +./usr/include/next68k/asm.h comp-c-include +./usr/include/next68k/autoconf.h comp-c-include +./usr/include/next68k/bswap.h comp-c-include +./usr/include/next68k/bus.h comp-c-include +./usr/include/next68k/bus_dma.h comp-c-include +./usr/include/next68k/bus_space.h comp-c-include +./usr/include/next68k/cdefs.h comp-c-include +./usr/include/next68k/cpu.h comp-c-include +./usr/include/next68k/db_machdep.h comp-obsolete obsolete +./usr/include/next68k/disklabel.h comp-c-include +./usr/include/next68k/elf_machdep.h comp-c-include +./usr/include/next68k/endian.h comp-c-include +./usr/include/next68k/endian_machdep.h comp-c-include +./usr/include/next68k/float.h comp-c-include +./usr/include/next68k/frame.h comp-c-include +./usr/include/next68k/ieee.h comp-c-include +./usr/include/next68k/ieeefp.h comp-c-include +./usr/include/next68k/int_const.h comp-c-include +./usr/include/next68k/int_fmtio.h comp-c-include +./usr/include/next68k/int_limits.h comp-c-include +./usr/include/next68k/int_mwgwtypes.h comp-c-include +./usr/include/next68k/int_types.h comp-c-include +./usr/include/next68k/intr.h comp-c-include +./usr/include/next68k/kcore.h comp-c-include +./usr/include/next68k/limits.h comp-c-include +./usr/include/next68k/lock.h comp-c-include +./usr/include/next68k/math.h comp-c-include +./usr/include/next68k/mcontext.h comp-c-include +./usr/include/next68k/mutex.h comp-c-include +./usr/include/next68k/param.h comp-c-include +./usr/include/next68k/pcb.h comp-c-include +./usr/include/next68k/pmap.h comp-c-include +./usr/include/next68k/pmc.h comp-c-include +./usr/include/next68k/proc.h comp-c-include +./usr/include/next68k/profile.h comp-c-include +./usr/include/next68k/psl.h comp-c-include +./usr/include/next68k/pte.h comp-c-include +./usr/include/next68k/ptrace.h comp-c-include +./usr/include/next68k/reg.h comp-c-include +./usr/include/next68k/rwlock.h comp-c-include +./usr/include/next68k/setjmp.h comp-c-include +./usr/include/next68k/signal.h comp-c-include +./usr/include/next68k/stdarg.h comp-obsolete obsolete +./usr/include/next68k/svr4_machdep.h comp-obsolete obsolete +./usr/include/next68k/trap.h comp-c-include +./usr/include/next68k/types.h comp-c-include +./usr/include/next68k/varargs.h comp-obsolete obsolete +./usr/include/next68k/vmparam.h comp-c-include +./usr/include/next68k/wchar_limits.h comp-c-include +./usr/include/next68k/z8530var.h comp-c-include +./usr/lib/c++rt0.o comp-obsolete obsolete +./usr/lib/scrt0.o comp-obsolete obsolete diff --git a/distrib/sets/lists/comp/md.ofppc b/distrib/sets/lists/comp/md.ofppc new file mode 100644 index 000000000..32729ff49 --- /dev/null +++ b/distrib/sets/lists/comp/md.ofppc @@ -0,0 +1,57 @@ +# $NetBSD: md.ofppc,v 1.13 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/ofppc comp-c-include +./usr/include/ofppc/_G_config.h comp-obsolete obsolete +./usr/include/ofppc/ansi.h comp-c-include +./usr/include/ofppc/aout_machdep.h comp-c-include +./usr/include/ofppc/asm.h comp-c-include +./usr/include/ofppc/atomic.h comp-obsolete obsolete +./usr/include/ofppc/bat.h comp-obsolete obsolete +./usr/include/ofppc/bswap.h comp-c-include +./usr/include/ofppc/cdefs.h comp-c-include +./usr/include/ofppc/cpu.h comp-c-include +./usr/include/ofppc/db_machdep.h comp-obsolete obsolete +./usr/include/ofppc/disklabel.h comp-c-include +./usr/include/ofppc/elf_machdep.h comp-c-include +./usr/include/ofppc/endian.h comp-c-include +./usr/include/ofppc/endian_machdep.h comp-c-include +./usr/include/ofppc/float.h comp-c-include +./usr/include/ofppc/fpu.h comp-c-include +./usr/include/ofppc/frame.h comp-c-include +./usr/include/ofppc/ieee.h comp-c-include +./usr/include/ofppc/ieeefp.h comp-c-include +./usr/include/ofppc/int_const.h comp-c-include +./usr/include/ofppc/int_fmtio.h comp-c-include +./usr/include/ofppc/int_limits.h comp-c-include +./usr/include/ofppc/int_mwgwtypes.h comp-c-include +./usr/include/ofppc/int_types.h comp-c-include +./usr/include/ofppc/intr.h comp-c-include +./usr/include/ofppc/ipkdb.h comp-obsolete obsolete +./usr/include/ofppc/kcore.h comp-c-include +./usr/include/ofppc/limits.h comp-c-include +./usr/include/ofppc/lock.h comp-c-include +./usr/include/ofppc/math.h comp-c-include +./usr/include/ofppc/mcontext.h comp-c-include +./usr/include/ofppc/mutex.h comp-c-include +./usr/include/ofppc/param.h comp-c-include +./usr/include/ofppc/pcb.h comp-c-include +./usr/include/ofppc/pmap.h comp-c-include +./usr/include/ofppc/pmc.h comp-c-include +./usr/include/ofppc/proc.h comp-c-include +./usr/include/ofppc/profile.h comp-c-include +./usr/include/ofppc/psl.h comp-c-include +./usr/include/ofppc/pte.h comp-c-include +./usr/include/ofppc/ptrace.h comp-c-include +./usr/include/ofppc/reg.h comp-c-include +./usr/include/ofppc/reloc.h comp-c-include +./usr/include/ofppc/rwlock.h comp-c-include +./usr/include/ofppc/setjmp.h comp-c-include +./usr/include/ofppc/signal.h comp-c-include +./usr/include/ofppc/spr.h comp-obsolete obsolete +./usr/include/ofppc/stdarg.h comp-obsolete obsolete +./usr/include/ofppc/trap.h comp-c-include +./usr/include/ofppc/types.h comp-c-include +./usr/include/ofppc/varargs.h comp-obsolete obsolete +./usr/include/ofppc/vmparam.h comp-c-include +./usr/include/ofppc/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/sbin/ofctl.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.pmax b/distrib/sets/lists/comp/md.pmax new file mode 100644 index 000000000..8cae2002f --- /dev/null +++ b/distrib/sets/lists/comp/md.pmax @@ -0,0 +1,67 @@ +# $NetBSD: md.pmax,v 1.63 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/pmax comp-c-include +./usr/include/pmax/_G_config.h comp-obsolete obsolete +./usr/include/pmax/ansi.h comp-c-include +./usr/include/pmax/aout_machdep.h comp-obsolete obsolete +./usr/include/pmax/asm.h comp-c-include +./usr/include/pmax/autoconf.h comp-c-include +./usr/include/pmax/bsd-aout.h comp-obsolete obsolete +./usr/include/pmax/bswap.h comp-c-include +./usr/include/pmax/bus.h comp-c-include +./usr/include/pmax/cdefs.h comp-c-include +./usr/include/pmax/conf.h comp-obsolete obsolete +./usr/include/pmax/cpu.h comp-c-include +./usr/include/pmax/db_machdep.h comp-obsolete obsolete +./usr/include/pmax/dc7085cons.h comp-obsolete obsolete +./usr/include/pmax/dec_boot.h comp-obsolete obsolete +./usr/include/pmax/disklabel.h comp-c-include +./usr/include/pmax/ecoff_machdep.h comp-c-include +./usr/include/pmax/elf.h comp-obsolete obsolete +./usr/include/pmax/elf_machdep.h comp-c-include +./usr/include/pmax/endian.h comp-c-include +./usr/include/pmax/endian_machdep.h comp-c-include +./usr/include/pmax/fbio.h comp-obsolete obsolete +./usr/include/pmax/fbvar.h comp-obsolete obsolete +./usr/include/pmax/float.h comp-c-include +./usr/include/pmax/ieee.h comp-c-include +./usr/include/pmax/ieeefp.h comp-c-include +./usr/include/pmax/int_const.h comp-c-include +./usr/include/pmax/int_fmtio.h comp-c-include +./usr/include/pmax/int_limits.h comp-c-include +./usr/include/pmax/int_mwgwtypes.h comp-c-include +./usr/include/pmax/int_types.h comp-c-include +./usr/include/pmax/intr.h comp-c-include +./usr/include/pmax/kcore.h comp-c-include +./usr/include/pmax/kdbparam.h comp-c-include +./usr/include/pmax/limits.h comp-c-include +./usr/include/pmax/lock.h comp-c-include +./usr/include/pmax/locore.h comp-c-include +./usr/include/pmax/math.h comp-c-include +./usr/include/pmax/mcontext.h comp-c-include +./usr/include/pmax/mips_opcode.h comp-c-include +./usr/include/pmax/mutex.h comp-c-include +./usr/include/pmax/param.h comp-c-include +./usr/include/pmax/pcb.h comp-c-include +./usr/include/pmax/pmap.h comp-c-include +./usr/include/pmax/pmc.h comp-c-include +./usr/include/pmax/pmioctl.h comp-obsolete obsolete +./usr/include/pmax/proc.h comp-c-include +./usr/include/pmax/profile.h comp-c-include +./usr/include/pmax/psl.h comp-c-include +./usr/include/pmax/pte.h comp-c-include +./usr/include/pmax/ptrace.h comp-c-include +./usr/include/pmax/reg.h comp-c-include +./usr/include/pmax/regdef.h comp-c-include +./usr/include/pmax/regnum.h comp-c-include +./usr/include/pmax/reloc.h comp-c-include +./usr/include/pmax/rwlock.h comp-c-include +./usr/include/pmax/setjmp.h comp-c-include +./usr/include/pmax/signal.h comp-c-include +./usr/include/pmax/stdarg.h comp-obsolete obsolete +./usr/include/pmax/tc_machdep.h comp-c-include +./usr/include/pmax/trap.h comp-c-include +./usr/include/pmax/types.h comp-c-include +./usr/include/pmax/varargs.h comp-obsolete obsolete +./usr/include/pmax/vmparam.h comp-c-include +./usr/include/pmax/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.prep b/distrib/sets/lists/comp/md.prep new file mode 100644 index 000000000..a9dc7a264 --- /dev/null +++ b/distrib/sets/lists/comp/md.prep @@ -0,0 +1,66 @@ +# $NetBSD: md.prep,v 1.27 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/prep comp-c-include +./usr/include/prep/_G_config.h comp-obsolete obsolete +./usr/include/prep/ansi.h comp-c-include +./usr/include/prep/aout_machdep.h comp-c-include +./usr/include/prep/asm.h comp-c-include +./usr/include/prep/atomic.h comp-obsolete obsolete +./usr/include/prep/bat.h comp-obsolete obsolete +./usr/include/prep/bootinfo.h comp-c-include +./usr/include/prep/bswap.h comp-c-include +./usr/include/prep/bus.h comp-obsolete obsolete +./usr/include/prep/cdefs.h comp-c-include +./usr/include/prep/cpu.h comp-c-include +./usr/include/prep/cpufunc.h comp-obsolete obsolete +./usr/include/prep/db_machdep.h comp-obsolete obsolete +./usr/include/prep/disklabel.h comp-c-include +./usr/include/prep/elf_machdep.h comp-c-include +./usr/include/prep/endian.h comp-c-include +./usr/include/prep/endian_machdep.h comp-c-include +./usr/include/prep/float.h comp-c-include +./usr/include/prep/fpu.h comp-c-include +./usr/include/prep/frame.h comp-c-include +./usr/include/prep/ieee.h comp-c-include +./usr/include/prep/ieeefp.h comp-c-include +./usr/include/prep/int_const.h comp-c-include +./usr/include/prep/int_fmtio.h comp-c-include +./usr/include/prep/int_limits.h comp-c-include +./usr/include/prep/int_mwgwtypes.h comp-c-include +./usr/include/prep/int_types.h comp-c-include +./usr/include/prep/intr.h comp-c-include +./usr/include/prep/ipkdb.h comp-obsolete obsolete +./usr/include/prep/kcore.h comp-c-include +./usr/include/prep/kgdb.h comp-obsolete obsolete +./usr/include/prep/limits.h comp-c-include +./usr/include/prep/lock.h comp-c-include +./usr/include/prep/math.h comp-c-include +./usr/include/prep/mcontext.h comp-c-include +./usr/include/prep/mutex.h comp-c-include +./usr/include/prep/nvram.h comp-c-include +./usr/include/prep/param.h comp-c-include +./usr/include/prep/pcb.h comp-c-include +./usr/include/prep/pio.h comp-obsolete obsolete +./usr/include/prep/pmap.h comp-c-include +./usr/include/prep/pmc.h comp-c-include +./usr/include/prep/powerpc.h comp-obsolete obsolete +./usr/include/prep/proc.h comp-c-include +./usr/include/prep/profile.h comp-c-include +./usr/include/prep/psl.h comp-c-include +./usr/include/prep/pte.h comp-c-include +./usr/include/prep/ptrace.h comp-c-include +./usr/include/prep/reg.h comp-c-include +./usr/include/prep/reloc.h comp-c-include +./usr/include/prep/rwlock.h comp-c-include +./usr/include/prep/setjmp.h comp-c-include +./usr/include/prep/signal.h comp-c-include +./usr/include/prep/spkr.h comp-c-include +./usr/include/prep/spr.h comp-obsolete obsolete +./usr/include/prep/stdarg.h comp-obsolete obsolete +./usr/include/prep/trap.h comp-c-include +./usr/include/prep/types.h comp-c-include +./usr/include/prep/varargs.h comp-obsolete obsolete +./usr/include/prep/vmparam.h comp-c-include +./usr/include/prep/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/mdec/mkbootimage.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/eeprom.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.rs6000 b/distrib/sets/lists/comp/md.rs6000 new file mode 100644 index 000000000..3d3fcd46f --- /dev/null +++ b/distrib/sets/lists/comp/md.rs6000 @@ -0,0 +1,54 @@ +# $NetBSD: md.rs6000,v 1.5 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/rs6000 comp-c-include +./usr/include/rs6000/ansi.h comp-c-include +./usr/include/rs6000/aout_machdep.h comp-c-include +./usr/include/rs6000/asm.h comp-c-include +./usr/include/rs6000/atomic.h comp-obsolete obsolete +./usr/include/rs6000/bootinfo.h comp-c-include +./usr/include/rs6000/bswap.h comp-c-include +./usr/include/rs6000/cdefs.h comp-c-include +./usr/include/rs6000/cpu.h comp-c-include +./usr/include/rs6000/disklabel.h comp-c-include +./usr/include/rs6000/elf_machdep.h comp-c-include +./usr/include/rs6000/endian.h comp-c-include +./usr/include/rs6000/endian_machdep.h comp-c-include +./usr/include/rs6000/float.h comp-c-include +./usr/include/rs6000/fpu.h comp-c-include +./usr/include/rs6000/frame.h comp-c-include +./usr/include/rs6000/ieee.h comp-c-include +./usr/include/rs6000/ieeefp.h comp-c-include +./usr/include/rs6000/int_const.h comp-c-include +./usr/include/rs6000/int_fmtio.h comp-c-include +./usr/include/rs6000/int_limits.h comp-c-include +./usr/include/rs6000/int_mwgwtypes.h comp-c-include +./usr/include/rs6000/int_types.h comp-c-include +./usr/include/rs6000/intr.h comp-c-include +./usr/include/rs6000/kcore.h comp-c-include +./usr/include/rs6000/limits.h comp-c-include +./usr/include/rs6000/lock.h comp-c-include +./usr/include/rs6000/math.h comp-c-include +./usr/include/rs6000/mcontext.h comp-c-include +./usr/include/rs6000/mutex.h comp-c-include +./usr/include/rs6000/param.h comp-c-include +./usr/include/rs6000/pcb.h comp-c-include +./usr/include/rs6000/pmap.h comp-c-include +./usr/include/rs6000/pmc.h comp-c-include +./usr/include/rs6000/proc.h comp-c-include +./usr/include/rs6000/profile.h comp-c-include +./usr/include/rs6000/psl.h comp-c-include +./usr/include/rs6000/pte.h comp-c-include +./usr/include/rs6000/ptrace.h comp-c-include +./usr/include/rs6000/reg.h comp-c-include +./usr/include/rs6000/reloc.h comp-c-include +./usr/include/rs6000/rwlock.h comp-c-include +./usr/include/rs6000/setjmp.h comp-c-include +./usr/include/rs6000/signal.h comp-c-include +./usr/include/rs6000/spr.h comp-obsolete obsolete +./usr/include/rs6000/stdarg.h comp-obsolete obsolete +./usr/include/rs6000/trap.h comp-c-include +./usr/include/rs6000/types.h comp-c-include +./usr/include/rs6000/varargs.h comp-obsolete obsolete +./usr/include/rs6000/vmparam.h comp-c-include +./usr/include/rs6000/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/mdec/mkbootimage.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.sandpoint b/distrib/sets/lists/comp/md.sandpoint new file mode 100644 index 000000000..c82d97a21 --- /dev/null +++ b/distrib/sets/lists/comp/md.sandpoint @@ -0,0 +1,62 @@ +# $NetBSD: md.sandpoint,v 1.16 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/sandpoint comp-c-include +./usr/include/sandpoint/_G_config.h comp-obsolete obsolete +./usr/include/sandpoint/ansi.h comp-c-include +./usr/include/sandpoint/aout_machdep.h comp-c-include +./usr/include/sandpoint/asm.h comp-c-include +./usr/include/sandpoint/atomic.h comp-obsolete obsolete +./usr/include/sandpoint/bootinfo.h comp-c-include +./usr/include/sandpoint/bswap.h comp-c-include +./usr/include/sandpoint/bus.h comp-obsolete obsolete +./usr/include/sandpoint/cdefs.h comp-c-include +./usr/include/sandpoint/conf.h comp-obsolete obsolete +./usr/include/sandpoint/cpu.h comp-c-include +./usr/include/sandpoint/cpufunc.h comp-obsolete obsolete +./usr/include/sandpoint/db_machdep.h comp-obsolete obsolete +./usr/include/sandpoint/disklabel.h comp-c-include +./usr/include/sandpoint/elf_machdep.h comp-c-include +./usr/include/sandpoint/endian.h comp-c-include +./usr/include/sandpoint/endian_machdep.h comp-c-include +./usr/include/sandpoint/float.h comp-c-include +./usr/include/sandpoint/fpu.h comp-c-include +./usr/include/sandpoint/frame.h comp-c-include +./usr/include/sandpoint/ieee.h comp-c-include +./usr/include/sandpoint/ieeefp.h comp-c-include +./usr/include/sandpoint/int_const.h comp-c-include +./usr/include/sandpoint/int_fmtio.h comp-c-include +./usr/include/sandpoint/int_limits.h comp-c-include +./usr/include/sandpoint/int_mwgwtypes.h comp-c-include +./usr/include/sandpoint/int_types.h comp-c-include +./usr/include/sandpoint/intr.h comp-c-include +./usr/include/sandpoint/ipkdb.h comp-obsolete obsolete +./usr/include/sandpoint/kcore.h comp-c-include +./usr/include/sandpoint/kgdb.h comp-obsolete obsolete +./usr/include/sandpoint/limits.h comp-c-include +./usr/include/sandpoint/lock.h comp-c-include +./usr/include/sandpoint/math.h comp-c-include +./usr/include/sandpoint/mcontext.h comp-c-include +./usr/include/sandpoint/mutex.h comp-c-include +./usr/include/sandpoint/param.h comp-c-include +./usr/include/sandpoint/pcb.h comp-c-include +./usr/include/sandpoint/pio.h comp-obsolete obsolete +./usr/include/sandpoint/pmap.h comp-c-include +./usr/include/sandpoint/pmc.h comp-c-include +./usr/include/sandpoint/powerpc.h comp-obsolete obsolete +./usr/include/sandpoint/proc.h comp-c-include +./usr/include/sandpoint/profile.h comp-c-include +./usr/include/sandpoint/psl.h comp-c-include +./usr/include/sandpoint/pte.h comp-c-include +./usr/include/sandpoint/ptrace.h comp-c-include +./usr/include/sandpoint/reg.h comp-c-include +./usr/include/sandpoint/reloc.h comp-c-include +./usr/include/sandpoint/rwlock.h comp-c-include +./usr/include/sandpoint/setjmp.h comp-c-include +./usr/include/sandpoint/signal.h comp-c-include +./usr/include/sandpoint/spr.h comp-obsolete obsolete +./usr/include/sandpoint/stdarg.h comp-obsolete obsolete +./usr/include/sandpoint/trap.h comp-c-include +./usr/include/sandpoint/types.h comp-c-include +./usr/include/sandpoint/varargs.h comp-obsolete obsolete +./usr/include/sandpoint/vmparam.h comp-c-include +./usr/include/sandpoint/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.sbmips b/distrib/sets/lists/comp/md.sbmips new file mode 100644 index 000000000..494a0b44a --- /dev/null +++ b/distrib/sets/lists/comp/md.sbmips @@ -0,0 +1,56 @@ +# $NetBSD: md.sbmips,v 1.14 2011/07/17 20:54:31 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/sbmips comp-c-include +./usr/include/sbmips/_G_config.h comp-obsolete obsolete +./usr/include/sbmips/ansi.h comp-c-include +./usr/include/sbmips/aout_machdep.h comp-obsolete obsolete +./usr/include/sbmips/asm.h comp-c-include +./usr/include/sbmips/bsd-aout.h comp-obsolete obsolete +./usr/include/sbmips/bswap.h comp-c-include +./usr/include/sbmips/cdefs.h comp-c-include +./usr/include/sbmips/cpu.h comp-c-include +./usr/include/sbmips/db_machdep.h comp-obsolete obsolete +./usr/include/sbmips/disklabel.h comp-c-include +./usr/include/sbmips/ecoff_machdep.h comp-c-include +./usr/include/sbmips/elf_machdep.h comp-c-include +./usr/include/sbmips/endian.h comp-c-include +./usr/include/sbmips/endian_machdep.h comp-c-include +./usr/include/sbmips/float.h comp-c-include +./usr/include/sbmips/ieee.h comp-c-include +./usr/include/sbmips/ieeefp.h comp-c-include +./usr/include/sbmips/int_const.h comp-c-include +./usr/include/sbmips/int_fmtio.h comp-c-include +./usr/include/sbmips/int_limits.h comp-c-include +./usr/include/sbmips/int_mwgwtypes.h comp-c-include +./usr/include/sbmips/int_types.h comp-c-include +./usr/include/sbmips/kcore.h comp-c-include +./usr/include/sbmips/kdbparam.h comp-c-include +./usr/include/sbmips/limits.h comp-c-include +./usr/include/sbmips/lock.h comp-c-include +./usr/include/sbmips/locore.h comp-c-include +./usr/include/sbmips/math.h comp-c-include +./usr/include/sbmips/mcontext.h comp-c-include +./usr/include/sbmips/mips_opcode.h comp-c-include +./usr/include/sbmips/mutex.h comp-c-include +./usr/include/sbmips/param.h comp-c-include +./usr/include/sbmips/pcb.h comp-c-include +./usr/include/sbmips/pmap.h comp-c-include +./usr/include/sbmips/pmc.h comp-c-include +./usr/include/sbmips/proc.h comp-c-include +./usr/include/sbmips/profile.h comp-c-include +./usr/include/sbmips/psl.h comp-c-include +./usr/include/sbmips/pte.h comp-c-include +./usr/include/sbmips/ptrace.h comp-c-include +./usr/include/sbmips/reg.h comp-c-include +./usr/include/sbmips/regdef.h comp-c-include +./usr/include/sbmips/regnum.h comp-c-include +./usr/include/sbmips/reloc.h comp-c-include +./usr/include/sbmips/rwlock.h comp-c-include +./usr/include/sbmips/setjmp.h comp-c-include +./usr/include/sbmips/signal.h comp-c-include +./usr/include/sbmips/stdarg.h comp-obsolete obsolete +./usr/include/sbmips/trap.h comp-c-include +./usr/include/sbmips/types.h comp-c-include +./usr/include/sbmips/varargs.h comp-obsolete obsolete +./usr/include/sbmips/vmparam.h comp-c-include +./usr/include/sbmips/wchar_limits.h comp-c-include diff --git a/distrib/sets/lists/comp/md.sgimips b/distrib/sets/lists/comp/md.sgimips new file mode 100644 index 000000000..6f41eacf8 --- /dev/null +++ b/distrib/sets/lists/comp/md.sgimips @@ -0,0 +1,63 @@ +# $NetBSD: md.sgimips,v 1.17 2011/07/17 20:54:31 joerg Exp $ +./usr/include/dev/crmfbreg.h comp-c-include +./usr/include/ieeefp.h comp-c-include +./usr/include/sgimips comp-c-include +./usr/include/sgimips/_G_config.h comp-obsolete obsolete +./usr/include/sgimips/ansi.h comp-c-include +./usr/include/sgimips/aout_machdep.h comp-obsolete obsolete +./usr/include/sgimips/asm.h comp-c-include +./usr/include/sgimips/autoconf.h comp-c-include +./usr/include/sgimips/bsd-aout.h comp-obsolete obsolete +./usr/include/sgimips/bswap.h comp-c-include +./usr/include/sgimips/cdefs.h comp-c-include +./usr/include/sgimips/conf.h comp-obsolete obsolete +./usr/include/sgimips/cpu.h comp-c-include +./usr/include/sgimips/db_machdep.h comp-obsolete obsolete +./usr/include/sgimips/disklabel.h comp-c-include +./usr/include/sgimips/ecoff_machdep.h comp-c-include +./usr/include/sgimips/elf_machdep.h comp-c-include +./usr/include/sgimips/endian.h comp-c-include +./usr/include/sgimips/endian_machdep.h comp-c-include +./usr/include/sgimips/float.h comp-c-include +./usr/include/sgimips/ieee.h comp-c-include +./usr/include/sgimips/ieeefp.h comp-c-include +./usr/include/sgimips/int_const.h comp-c-include +./usr/include/sgimips/int_fmtio.h comp-c-include +./usr/include/sgimips/int_limits.h comp-c-include +./usr/include/sgimips/int_mwgwtypes.h comp-c-include +./usr/include/sgimips/int_types.h comp-c-include +./usr/include/sgimips/intr.h comp-c-include +./usr/include/sgimips/kcore.h comp-c-include +./usr/include/sgimips/kdbparam.h comp-c-include +./usr/include/sgimips/limits.h comp-c-include +./usr/include/sgimips/lock.h comp-c-include +./usr/include/sgimips/locore.h comp-c-include +./usr/include/sgimips/math.h comp-c-include +./usr/include/sgimips/mcontext.h comp-c-include +./usr/include/sgimips/mips_opcode.h comp-c-include +./usr/include/sgimips/mutex.h comp-c-include +./usr/include/sgimips/param.h comp-c-include +./usr/include/sgimips/pcb.h comp-c-include +./usr/include/sgimips/pci_machdep.h comp-c-include +./usr/include/sgimips/pmap.h comp-c-include +./usr/include/sgimips/pmc.h comp-c-include +./usr/include/sgimips/proc.h comp-c-include +./usr/include/sgimips/profile.h comp-c-include +./usr/include/sgimips/psl.h comp-c-include +./usr/include/sgimips/pte.h comp-c-include +./usr/include/sgimips/ptrace.h comp-c-include +./usr/include/sgimips/reg.h comp-c-include +./usr/include/sgimips/regdef.h comp-c-include +./usr/include/sgimips/regnum.h comp-c-include +./usr/include/sgimips/reloc.h comp-c-include +./usr/include/sgimips/rwlock.h comp-c-include +./usr/include/sgimips/setjmp.h comp-c-include +./usr/include/sgimips/signal.h comp-c-include +./usr/include/sgimips/stdarg.h comp-obsolete obsolete +./usr/include/sgimips/trap.h comp-c-include +./usr/include/sgimips/types.h comp-c-include +./usr/include/sgimips/varargs.h comp-obsolete obsolete +./usr/include/sgimips/vmparam.h comp-c-include +./usr/include/sgimips/wchar_limits.h comp-c-include +./usr/include/sgimips/z8530var.h comp-c-include +./usr/libdata/debug/usr/mdec/sgivol.debug -unknown- debug diff --git a/distrib/sets/lists/comp/md.shark b/distrib/sets/lists/comp/md.shark new file mode 100644 index 000000000..ef08d480a --- /dev/null +++ b/distrib/sets/lists/comp/md.shark @@ -0,0 +1,55 @@ +# $NetBSD: md.shark,v 1.20 2011/12/19 15:09:52 njoly Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/shark comp-c-include +./usr/include/shark/ansi.h comp-c-include +./usr/include/shark/aout_machdep.h comp-c-include +./usr/include/shark/asm.h comp-c-include +./usr/include/shark/bswap.h comp-c-include +./usr/include/shark/bus.h comp-obsolete obsolete +./usr/include/shark/cdefs.h comp-c-include +./usr/include/shark/cpu.h comp-c-include +./usr/include/shark/db_machdep.h comp-obsolete obsolete +./usr/include/shark/devmap.h comp-c-include +./usr/include/shark/disklabel.h comp-c-include +./usr/include/shark/elf_machdep.h comp-c-include +./usr/include/shark/endian.h comp-c-include +./usr/include/shark/endian_machdep.h comp-c-include +./usr/include/shark/float.h comp-c-include +./usr/include/shark/fp.h comp-c-include +./usr/include/shark/frame.h comp-c-include +./usr/include/shark/ieee.h comp-c-include +./usr/include/shark/ieeefp.h comp-c-include +./usr/include/shark/int_const.h comp-c-include +./usr/include/shark/int_fmtio.h comp-c-include +./usr/include/shark/int_limits.h comp-c-include +./usr/include/shark/int_mwgwtypes.h comp-c-include +./usr/include/shark/int_types.h comp-c-include +./usr/include/shark/intr.h comp-c-include +./usr/include/shark/ipkdb.h comp-obsolete obsolete +./usr/include/shark/joystick.h comp-c-include +./usr/include/shark/limits.h comp-c-include +./usr/include/shark/lock.h comp-c-include +./usr/include/shark/math.h comp-c-include +./usr/include/shark/mcontext.h comp-c-include +./usr/include/shark/mutex.h comp-c-include +./usr/include/shark/param.h comp-c-include +./usr/include/shark/pcb.h comp-c-include +./usr/include/shark/pmap.h comp-c-include +./usr/include/shark/pmc.h comp-c-include +./usr/include/shark/proc.h comp-c-include +./usr/include/shark/profile.h comp-c-include +./usr/include/shark/ptrace.h comp-c-include +./usr/include/shark/reg.h comp-c-include +./usr/include/shark/rwlock.h comp-c-include +./usr/include/shark/setjmp.h comp-c-include +./usr/include/shark/signal.h comp-c-include +./usr/include/shark/stdarg.h comp-obsolete obsolete +./usr/include/shark/sysarch.h comp-c-include +./usr/include/shark/trap.h comp-c-include +./usr/include/shark/types.h comp-c-include +./usr/include/shark/varargs.h comp-obsolete obsolete +./usr/include/shark/vmparam.h comp-c-include +./usr/include/shark/wchar_limits.h comp-c-include +./usr/libdata/debug/sbin/ldconfig.debug comp-sysutil-debug debug,pic +./usr/libdata/debug/usr/sbin/eeprom.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ofctl.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.sparc b/distrib/sets/lists/comp/md.sparc new file mode 100644 index 000000000..07e6fd127 --- /dev/null +++ b/distrib/sets/lists/comp/md.sparc @@ -0,0 +1,147 @@ +# $NetBSD: md.sparc,v 1.76 2011/07/17 20:54:31 joerg Exp $ +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/ieeefp.h comp-c-include +./usr/include/sparc comp-c-include +./usr/include/sparc/_G_config.h comp-obsolete obsolete +./usr/include/sparc/ansi.h comp-c-include +./usr/include/sparc/aout_machdep.h comp-c-include +./usr/include/sparc/apmvar.h comp-c-include +./usr/include/sparc/asm.h comp-c-include +./usr/include/sparc/autoconf.h comp-c-include +./usr/include/sparc/bootinfo.h comp-c-include +./usr/include/sparc/bswap.h comp-c-include +./usr/include/sparc/cdefs.h comp-c-include +./usr/include/sparc/cgtworeg.h comp-c-include +./usr/include/sparc/conf.h comp-obsolete obsolete +./usr/include/sparc/cpu.h comp-c-include +./usr/include/sparc/cpuconf.h comp-c-include +./usr/include/sparc/disklabel.h comp-c-include +./usr/include/sparc/eeprom.h comp-c-include +./usr/include/sparc/elf_machdep.h comp-c-include +./usr/include/sparc/endian.h comp-c-include +./usr/include/sparc/endian_machdep.h comp-c-include +./usr/include/sparc/fbio.h comp-obsolete obsolete +./usr/include/sparc/fenv.h comp-c-include +./usr/include/sparc/float.h comp-c-include +./usr/include/sparc/frame.h comp-c-include +./usr/include/sparc/fsr.h comp-c-include +./usr/include/sparc/idprom.h comp-c-include +./usr/include/sparc/ieee.h comp-c-include +./usr/include/sparc/ieeefp.h comp-c-include +./usr/include/sparc/int_const.h comp-c-include +./usr/include/sparc/int_fmtio.h comp-c-include +./usr/include/sparc/int_limits.h comp-c-include +./usr/include/sparc/int_mwgwtypes.h comp-c-include +./usr/include/sparc/int_types.h comp-c-include +./usr/include/sparc/kbd.h comp-c-include +./usr/include/sparc/kbio.h comp-c-include +./usr/include/sparc/kcore.h comp-c-include +./usr/include/sparc/limits.h comp-c-include +./usr/include/sparc/lock.h comp-c-include +./usr/include/sparc/math.h comp-c-include +./usr/include/sparc/mcontext.h comp-c-include +./usr/include/sparc/mutex.h comp-c-include +./usr/include/sparc/oldmon.h comp-c-include +./usr/include/sparc/openpromio.h comp-c-include +./usr/include/sparc/param.h comp-c-include +./usr/include/sparc/pcb.h comp-c-include +./usr/include/sparc/pmap.h comp-c-include +./usr/include/sparc/pmc.h comp-c-include +./usr/include/sparc/proc.h comp-c-include +./usr/include/sparc/profile.h comp-c-include +./usr/include/sparc/psl.h comp-c-include +./usr/include/sparc/pte.h comp-c-include +./usr/include/sparc/ptrace.h comp-c-include +./usr/include/sparc/reg.h comp-c-include +./usr/include/sparc/reloc.h comp-c-include +./usr/include/sparc/rwlock.h comp-c-include +./usr/include/sparc/setjmp.h comp-c-include +./usr/include/sparc/signal.h comp-c-include +./usr/include/sparc/stdarg.h comp-obsolete obsolete +./usr/include/sparc/tctrl.h comp-c-include +./usr/include/sparc/trap.h comp-c-include +./usr/include/sparc/types.h comp-c-include +./usr/include/sparc/varargs.h comp-obsolete obsolete +./usr/include/sparc/vmparam.h comp-c-include +./usr/include/sparc/vuid_event.h comp-c-include +./usr/include/sparc/wchar_limits.h comp-c-include +./usr/include/sparc64 comp-c-include +./usr/include/sparc64/_G_config.h comp-obsolete obsolete +./usr/include/sparc64/ansi.h comp-c-include +./usr/include/sparc64/aout_machdep.h comp-c-include +./usr/include/sparc64/asm.h comp-c-include +./usr/include/sparc64/autoconf.h comp-c-include +./usr/include/sparc64/bsd_openprom.h comp-c-include +./usr/include/sparc64/bswap.h comp-c-include +./usr/include/sparc64/bus.h comp-obsolete obsolete +./usr/include/sparc64/cdefs.h comp-c-include +./usr/include/sparc64/cgtworeg.h comp-c-include +./usr/include/sparc64/conf.h comp-obsolete obsolete +./usr/include/sparc64/cpu.h comp-c-include +./usr/include/sparc64/ctlreg.h comp-c-include +./usr/include/sparc64/db_machdep.h comp-obsolete obsolete +./usr/include/sparc64/disklabel.h comp-c-include +./usr/include/sparc64/eeprom.h comp-c-include +./usr/include/sparc64/elf_machdep.h comp-c-include +./usr/include/sparc64/endian.h comp-c-include +./usr/include/sparc64/endian_machdep.h comp-c-include +./usr/include/sparc64/fbio.h comp-obsolete obsolete +./usr/include/sparc64/fbvar.h comp-obsolete obsolete +./usr/include/sparc64/fenv.h comp-c-include +./usr/include/sparc64/float.h comp-c-include +./usr/include/sparc64/frame.h comp-c-include +./usr/include/sparc64/fsr.h comp-c-include +./usr/include/sparc64/idprom.h comp-c-include +./usr/include/sparc64/ieee.h comp-c-include +./usr/include/sparc64/ieeefp.h comp-c-include +./usr/include/sparc64/instr.h comp-c-include +./usr/include/sparc64/intr.h comp-c-include +./usr/include/sparc64/int_const.h comp-c-include +./usr/include/sparc64/int_fmtio.h comp-c-include +./usr/include/sparc64/int_limits.h comp-c-include +./usr/include/sparc64/int_mwgwtypes.h comp-c-include +./usr/include/sparc64/int_types.h comp-c-include +./usr/include/sparc64/joystick.h comp-c-include +./usr/include/sparc64/kbd.h comp-c-include +./usr/include/sparc64/kbio.h comp-c-include +./usr/include/sparc64/kcore.h comp-c-include +./usr/include/sparc64/limits.h comp-c-include +./usr/include/sparc64/lock.h comp-c-include +./usr/include/sparc64/math.h comp-c-include +./usr/include/sparc64/mcontext.h comp-c-include +./usr/include/sparc64/mutex.h comp-c-include +./usr/include/sparc64/oldmon.h comp-c-include +./usr/include/sparc64/openpromio.h comp-c-include +./usr/include/sparc64/param.h comp-c-include +./usr/include/sparc64/pcb.h comp-c-include +./usr/include/sparc64/pmap.h comp-c-include +./usr/include/sparc64/pmc.h comp-c-include +./usr/include/sparc64/proc.h comp-c-include +./usr/include/sparc64/profile.h comp-c-include +./usr/include/sparc64/psl.h comp-c-include +./usr/include/sparc64/pte.h comp-c-include +./usr/include/sparc64/ptrace.h comp-c-include +./usr/include/sparc64/reg.h comp-c-include +./usr/include/sparc64/reloc.h comp-c-include +./usr/include/sparc64/remote-sl.h comp-c-include +./usr/include/sparc64/rwlock.h comp-c-include +./usr/include/sparc64/setjmp.h comp-c-include +./usr/include/sparc64/signal.h comp-c-include +./usr/include/sparc64/stdarg.h comp-obsolete obsolete +./usr/include/sparc64/svr4_machdep.h comp-c-include +./usr/include/sparc64/trap.h comp-c-include +./usr/include/sparc64/types.h comp-c-include +./usr/include/sparc64/varargs.h comp-obsolete obsolete +./usr/include/sparc64/vmparam.h comp-c-include +./usr/include/sparc64/vuid_event.h comp-c-include +./usr/include/sparc64/wchar_limits.h comp-c-include +./usr/include/sparc64/z8530var.h comp-c-include +./usr/libdata/debug/sbin/edlabel.debug comp-sysutil-debug obsolete +./usr/libdata/debug/sbin/ldconfig.debug comp-sysutil-debug debug,pic +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/lib/libsparc_v8.so.0.0.debug comp-sys-debug debug,pic +./usr/libdata/debug/usr/sbin/apm.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/apmd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/eeprom.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ofctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/tadpolectl.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.sparc64 b/distrib/sets/lists/comp/md.sparc64 new file mode 100644 index 000000000..37155f39a --- /dev/null +++ b/distrib/sets/lists/comp/md.sparc64 @@ -0,0 +1,1053 @@ +# $NetBSD: md.sparc64,v 1.157 2012/09/16 18:59:25 tls Exp $ +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/ieeefp.h comp-c-include +./usr/include/sparc comp-c-include +./usr/include/sparc/_G_config.h comp-obsolete obsolete +./usr/include/sparc/ansi.h comp-c-include +./usr/include/sparc/aout_machdep.h comp-c-include +./usr/include/sparc/apmvar.h comp-c-include +./usr/include/sparc/asm.h comp-c-include +./usr/include/sparc/autoconf.h comp-c-include +./usr/include/sparc/bootinfo.h comp-c-include +./usr/include/sparc/bswap.h comp-c-include +./usr/include/sparc/cdefs.h comp-c-include +./usr/include/sparc/cgtworeg.h comp-c-include +./usr/include/sparc/conf.h comp-obsolete obsolete +./usr/include/sparc/cpu.h comp-c-include +./usr/include/sparc/cpuconf.h comp-c-include +./usr/include/sparc/disklabel.h comp-c-include +./usr/include/sparc/eeprom.h comp-c-include +./usr/include/sparc/elf_machdep.h comp-c-include +./usr/include/sparc/endian.h comp-c-include +./usr/include/sparc/endian_machdep.h comp-c-include +./usr/include/sparc/fbio.h comp-obsolete obsolete +./usr/include/sparc/fenv.h comp-c-include +./usr/include/sparc/float.h comp-c-include +./usr/include/sparc/frame.h comp-c-include +./usr/include/sparc/fsr.h comp-c-include +./usr/include/sparc/idprom.h comp-c-include +./usr/include/sparc/ieee.h comp-c-include +./usr/include/sparc/ieeefp.h comp-c-include +./usr/include/sparc/int_const.h comp-c-include +./usr/include/sparc/int_fmtio.h comp-c-include +./usr/include/sparc/int_limits.h comp-c-include +./usr/include/sparc/int_mwgwtypes.h comp-c-include +./usr/include/sparc/int_types.h comp-c-include +./usr/include/sparc/kbd.h comp-c-include +./usr/include/sparc/kbio.h comp-c-include +./usr/include/sparc/kcore.h comp-c-include +./usr/include/sparc/limits.h comp-c-include +./usr/include/sparc/lock.h comp-c-include +./usr/include/sparc/math.h comp-c-include +./usr/include/sparc/mcontext.h comp-c-include +./usr/include/sparc/mutex.h comp-c-include +./usr/include/sparc/oldmon.h comp-c-include +./usr/include/sparc/openpromio.h comp-c-include +./usr/include/sparc/param.h comp-c-include +./usr/include/sparc/pcb.h comp-c-include +./usr/include/sparc/pmap.h comp-c-include +./usr/include/sparc/pmc.h comp-c-include +./usr/include/sparc/proc.h comp-c-include +./usr/include/sparc/profile.h comp-c-include +./usr/include/sparc/psl.h comp-c-include +./usr/include/sparc/pte.h comp-c-include +./usr/include/sparc/ptrace.h comp-c-include +./usr/include/sparc/reg.h comp-c-include +./usr/include/sparc/reloc.h comp-c-include +./usr/include/sparc/rwlock.h comp-c-include +./usr/include/sparc/setjmp.h comp-c-include +./usr/include/sparc/signal.h comp-c-include +./usr/include/sparc/stdarg.h comp-obsolete obsolete +./usr/include/sparc/tctrl.h comp-c-include +./usr/include/sparc/trap.h comp-c-include +./usr/include/sparc/types.h comp-c-include +./usr/include/sparc/varargs.h comp-obsolete obsolete +./usr/include/sparc/vmparam.h comp-c-include +./usr/include/sparc/vuid_event.h comp-c-include +./usr/include/sparc/wchar_limits.h comp-c-include +./usr/include/sparc64 comp-c-include +./usr/include/sparc64/_G_config.h comp-obsolete obsolete +./usr/include/sparc64/ansi.h comp-c-include +./usr/include/sparc64/aout_machdep.h comp-c-include +./usr/include/sparc64/asm.h comp-c-include +./usr/include/sparc64/autoconf.h comp-c-include +./usr/include/sparc64/bsd_openprom.h comp-c-include +./usr/include/sparc64/bswap.h comp-c-include +./usr/include/sparc64/bus.h comp-obsolete obsolete +./usr/include/sparc64/cdefs.h comp-c-include +./usr/include/sparc64/cgtworeg.h comp-c-include +./usr/include/sparc64/conf.h comp-obsolete obsolete +./usr/include/sparc64/cpu.h comp-c-include +./usr/include/sparc64/ctlreg.h comp-c-include +./usr/include/sparc64/db_machdep.h comp-obsolete obsolete +./usr/include/sparc64/disklabel.h comp-c-include +./usr/include/sparc64/eeprom.h comp-c-include +./usr/include/sparc64/elf_machdep.h comp-c-include +./usr/include/sparc64/endian.h comp-c-include +./usr/include/sparc64/endian_machdep.h comp-c-include +./usr/include/sparc64/fbio.h comp-obsolete obsolete +./usr/include/sparc64/fbvar.h comp-obsolete obsolete +./usr/include/sparc64/fenv.h comp-c-include +./usr/include/sparc64/float.h comp-c-include +./usr/include/sparc64/frame.h comp-c-include +./usr/include/sparc64/fsr.h comp-c-include +./usr/include/sparc64/idprom.h comp-c-include +./usr/include/sparc64/ieee.h comp-c-include +./usr/include/sparc64/ieeefp.h comp-c-include +./usr/include/sparc64/instr.h comp-c-include +./usr/include/sparc64/int_const.h comp-c-include +./usr/include/sparc64/int_fmtio.h comp-c-include +./usr/include/sparc64/int_limits.h comp-c-include +./usr/include/sparc64/int_mwgwtypes.h comp-c-include +./usr/include/sparc64/int_types.h comp-c-include +./usr/include/sparc64/intr.h comp-c-include +./usr/include/sparc64/joystick.h comp-c-include +./usr/include/sparc64/kbd.h comp-c-include +./usr/include/sparc64/kbio.h comp-c-include +./usr/include/sparc64/kcore.h comp-c-include +./usr/include/sparc64/limits.h comp-c-include +./usr/include/sparc64/lock.h comp-c-include +./usr/include/sparc64/math.h comp-c-include +./usr/include/sparc64/mcontext.h comp-c-include +./usr/include/sparc64/mutex.h comp-c-include +./usr/include/sparc64/oldmon.h comp-c-include +./usr/include/sparc64/openpromio.h comp-c-include +./usr/include/sparc64/param.h comp-c-include +./usr/include/sparc64/pcb.h comp-c-include +./usr/include/sparc64/pmap.h comp-c-include +./usr/include/sparc64/pmc.h comp-c-include +./usr/include/sparc64/proc.h comp-c-include +./usr/include/sparc64/profile.h comp-c-include +./usr/include/sparc64/psl.h comp-c-include +./usr/include/sparc64/pte.h comp-c-include +./usr/include/sparc64/ptrace.h comp-c-include +./usr/include/sparc64/reg.h comp-c-include +./usr/include/sparc64/reloc.h comp-c-include +./usr/include/sparc64/remote-sl.h comp-c-include +./usr/include/sparc64/rwlock.h comp-c-include +./usr/include/sparc64/setjmp.h comp-c-include +./usr/include/sparc64/signal.h comp-c-include +./usr/include/sparc64/stdarg.h comp-obsolete obsolete +./usr/include/sparc64/svr4_machdep.h comp-c-include +./usr/include/sparc64/trap.h comp-c-include +./usr/include/sparc64/types.h comp-c-include +./usr/include/sparc64/varargs.h comp-obsolete obsolete +./usr/include/sparc64/vmparam.h comp-c-include +./usr/include/sparc64/vuid_event.h comp-c-include +./usr/include/sparc64/wchar_limits.h comp-c-include +./usr/include/sparc64/z8530var.h comp-c-include +./usr/lib/sparc/crt0.o comp-c-lib compat +./usr/lib/sparc/crtbegin.o comp-c-lib compat +./usr/lib/sparc/crtbeginS.o comp-c-lib compat,pic +./usr/lib/sparc/crtbeginT.o comp-c-lib compat,pic +./usr/lib/sparc/crtend.o comp-c-lib compat +./usr/lib/sparc/crtendS.o comp-c-lib compat,pic +./usr/lib/sparc/crti.o comp-c-lib compat +./usr/lib/sparc/crtn.o comp-c-lib compat +./usr/lib/sparc/gcrt0.o comp-c-lib compat +./usr/lib/sparc/i18n/libBIG5.a comp-c-lib compat +./usr/lib/sparc/i18n/libBIG5.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libBIG5_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libBIG5_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libBIG5_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libDECHanyu.a comp-c-lib compat +./usr/lib/sparc/i18n/libDECHanyu.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libDECHanyu_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libDECHanyu_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libDECHanyu_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libEUC.a comp-c-lib compat +./usr/lib/sparc/i18n/libEUC.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libEUCTW.a comp-c-lib compat +./usr/lib/sparc/i18n/libEUCTW.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libEUCTW_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libEUCTW_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libEUCTW_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libEUC_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libEUC_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libEUC_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libGBK2K.a comp-c-lib compat +./usr/lib/sparc/i18n/libGBK2K.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libGBK2K_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libGBK2K_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libGBK2K_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libHZ.a comp-c-lib compat +./usr/lib/sparc/i18n/libHZ.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libHZ_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libHZ_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libHZ_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libISO2022.a comp-c-lib compat +./usr/lib/sparc/i18n/libISO2022.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libISO2022_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libISO2022_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libISO2022_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libJOHAB.a comp-c-lib compat +./usr/lib/sparc/i18n/libJOHAB.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libJOHAB_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libJOHAB_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libJOHAB_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libMSKanji.a comp-c-lib compat +./usr/lib/sparc/i18n/libMSKanji.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libMSKanji_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libMSKanji_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libMSKanji_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUES.a comp-c-lib compat +./usr/lib/sparc/i18n/libUES.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libUES_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUES_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUES_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF1632.a comp-c-lib compat +./usr/lib/sparc/i18n/libUTF1632.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libUTF1632_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF1632_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF1632_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF7.a comp-c-lib compat +./usr/lib/sparc/i18n/libUTF7.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libUTF7_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF7_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF7_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF8.a comp-c-lib compat +./usr/lib/sparc/i18n/libUTF8.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libUTF8_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF8_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libUTF8_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libVIQR.a comp-c-lib compat +./usr/lib/sparc/i18n/libVIQR.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libVIQR_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libVIQR_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libVIQR_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libZW.a comp-c-lib compat +./usr/lib/sparc/i18n/libZW.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libZW_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libZW_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libZW_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libiconv_none.a comp-c-lib compat +./usr/lib/sparc/i18n/libiconv_none.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libiconv_none_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libiconv_none_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libiconv_none_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libiconv_std.a comp-c-lib compat +./usr/lib/sparc/i18n/libiconv_std.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libiconv_std_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libiconv_std_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libiconv_std_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_646.a comp-c-lib compat +./usr/lib/sparc/i18n/libmapper_646.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libmapper_646_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_646_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_646_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_none.a comp-c-lib compat +./usr/lib/sparc/i18n/libmapper_none.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libmapper_none_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_none_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_none_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_parallel.a comp-c-lib compat +./usr/lib/sparc/i18n/libmapper_parallel.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libmapper_parallel_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_parallel_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_parallel_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_serial.a comp-c-lib compat +./usr/lib/sparc/i18n/libmapper_serial.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libmapper_serial_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_serial_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_serial_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_std.a comp-c-lib compat +./usr/lib/sparc/i18n/libmapper_std.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libmapper_std_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_std_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_std_pic.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_zone.a comp-c-lib compat +./usr/lib/sparc/i18n/libmapper_zone.so base-sys-shlib compat,pic +./usr/lib/sparc/i18n/libmapper_zone_g.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_zone_p.a comp-obsolete obsolete +./usr/lib/sparc/i18n/libmapper_zone_pic.a comp-obsolete obsolete +./usr/lib/sparc/libamu_g.a -unknown- compat,debuglib +./usr/lib/sparc/libarchive.a comp-c-lib compat +./usr/lib/sparc/libarchive.so base-sys-shlib compat,pic +./usr/lib/sparc/libarchive_g.a -unknown- compat,debuglib +./usr/lib/sparc/libarchive_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libarchive_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libasn1.a comp-c-lib compat,kerberos +./usr/lib/sparc/libasn1.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libasn1_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libasn1_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libasn1_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libatf-c++.a comp-c-lib compat,atf +./usr/lib/sparc/libatf-c++.so base-sys-shlib compat,pic,atf +./usr/lib/sparc/libatf-c++_g.a -unknown- compat,debuglib,atf +./usr/lib/sparc/libatf-c++_p.a comp-c-proflib compat,profile,atf +./usr/lib/sparc/libatf-c++_pic.a comp-c-piclib compat,pic,atf +./usr/lib/sparc/libatf-c.a comp-c-lib compat,atf +./usr/lib/sparc/libatf-c.so base-sys-shlib compat,pic,atf +./usr/lib/sparc/libatf-c_g.a -unknown- compat,debuglib,atf +./usr/lib/sparc/libatf-c_p.a comp-c-proflib compat,profile,atf +./usr/lib/sparc/libatf-c_pic.a comp-c-piclib compat,pic,atf +./usr/lib/sparc/libbfd.a comp-obsolete obsolete +./usr/lib/sparc/libbfd.so base-obsolete obsolete +./usr/lib/sparc/libbfd_g.a comp-obsolete obsolete +./usr/lib/sparc/libbfd_p.a comp-obsolete obsolete +./usr/lib/sparc/libbfd_pic.a comp-obsolete obsolete +./usr/lib/sparc/libbind9.a comp-c-lib compat +./usr/lib/sparc/libbind9.so base-sys-shlib compat,pic +./usr/lib/sparc/libbind9_g.a -unknown- compat,debuglib +./usr/lib/sparc/libbind9_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libbind9_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libbluetooth.a comp-c-lib compat +./usr/lib/sparc/libbluetooth.so base-sys-shlib compat,pic +./usr/lib/sparc/libbluetooth_g.a -unknown- compat,debuglib +./usr/lib/sparc/libbluetooth_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libbluetooth_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libbsdmalloc.a comp-c-lib compat +./usr/lib/sparc/libbsdmalloc.so base-sys-shlib compat,pic +./usr/lib/sparc/libbsdmalloc_g.a -unknown- compat,debuglib +./usr/lib/sparc/libbsdmalloc_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libbsdmalloc_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libbz2.a comp-c-lib compat +./usr/lib/sparc/libbz2.so base-sys-shlib compat,pic +./usr/lib/sparc/libbz2_g.a -unknown- compat,debuglib +./usr/lib/sparc/libbz2_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libbz2_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libc.a comp-c-lib compat +./usr/lib/sparc/libc.so base-sys-shlib compat,pic +./usr/lib/sparc/libc_g.a -unknown- compat,debuglib +./usr/lib/sparc/libc_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libc_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libcom_err.a comp-c-lib compat,kerberos +./usr/lib/sparc/libcom_err.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libcom_err_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libcom_err_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libcom_err_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libcompat.a comp-c-lib compat +./usr/lib/sparc/libcompat_g.a -unknown- compat,debuglib +./usr/lib/sparc/libcompat_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libcompat_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libcrypt.a comp-c-lib compat +./usr/lib/sparc/libcrypt.so base-sys-shlib compat,pic +./usr/lib/sparc/libcrypt_g.a -unknown- compat,debuglib +./usr/lib/sparc/libcrypt_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libcrypt_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libcrypto.a comp-c-lib compat,crypto +./usr/lib/sparc/libcrypto_g.a comp-c-proflib compat,crypto,debuglib +./usr/lib/sparc/libcrypto.so base-sys-shlib compat,crypto,pic +./usr/lib/sparc/libcrypto_p.a comp-c-proflib compat,crypto,profile +./usr/lib/sparc/libcrypto_pic.a comp-c-piclib compat,crypto,pic +./usr/lib/sparc/libcrypto_idea.a comp-obsolete obsolete +./usr/lib/sparc/libcrypto_idea.so base-obsolete obsolete +./usr/lib/sparc/libcrypto_idea_g.a comp-obsolete obsolete +./usr/lib/sparc/libcrypto_idea_p.a comp-obsolete obsolete +./usr/lib/sparc/libcrypto_idea_pic.a comp-obsolete obsolete +./usr/lib/sparc/libcrypto_mdc2.a comp-obsolete obsolete +./usr/lib/sparc/libcrypto_mdc2.so base-obsolete obsolete +./usr/lib/sparc/libcrypto_mdc2_g.a comp-obsolete obsolete +./usr/lib/sparc/libcrypto_mdc2_p.a comp-obsolete obsolete +./usr/lib/sparc/libcrypto_mdc2_pic.a comp-obsolete obsolete +./usr/lib/sparc/libcrypto_rc5.a comp-c-lib crypto_rc5,compat +./usr/lib/sparc/libcrypto_rc5.so base-sys-shlib compat,crypto,crypto_rc5,pic +./usr/lib/sparc/libcrypto_rc5_g.a comp-c-proflib compat,crypto,crypto_rc5,debuglib +./usr/lib/sparc/libcrypto_rc5_p.a comp-c-proflib crypto_rc5,compat,profile +./usr/lib/sparc/libcrypto_rc5_pic.a comp-c-piclib compat,crypto,crypto_rc5,pic +./usr/lib/sparc/libcurses.a comp-c-lib compat +./usr/lib/sparc/libcurses.so base-sys-shlib compat,pic +./usr/lib/sparc/libcurses_g.a -unknown- compat,debuglib +./usr/lib/sparc/libcurses_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libcurses_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libdes.a comp-c-lib compat,crypto +./usr/lib/sparc/libdes.so base-sys-shlib compat,pic,crypto +./usr/lib/sparc/libdes_g.a -unknown- compat,debuglib,crypto +./usr/lib/sparc/libdes_p.a comp-c-proflib compat,profile,crypto +./usr/lib/sparc/libdes_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/sparc/libdevmapper.a comp-c-lib compat,lvm +./usr/lib/sparc/libdevmapper.so base-sys-shlib compat,pic,lvm +./usr/lib/sparc/libdevmapper_g.a -unknown- compat,debuglib,lvm +./usr/lib/sparc/libdevmapper_p.a comp-c-proflib compat,profile,lvm +./usr/lib/sparc/libdevmapper_pic.a comp-c-piclib compat,pic,lvm +./usr/lib/sparc/libdm.a comp-c-lib compat +./usr/lib/sparc/libdm.so base-sys-shlib compat,pic +./usr/lib/sparc/libdm_g.a -unknown- compat,debuglib +./usr/lib/sparc/libdm_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libdm_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libdns.a comp-c-lib compat +./usr/lib/sparc/libdns.so base-sys-shlib compat,pic +./usr/lib/sparc/libdns_g.a -unknown- compat,debuglib +./usr/lib/sparc/libdns_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libdns_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libdns_sd.a comp-c-lib compat,mdns +./usr/lib/sparc/libdns_sd.so base-mdns-shlib compat,pic,mdns +./usr/lib/sparc/libdns_sd_g.a -unknown- compat,debuglib,mdns +./usr/lib/sparc/libdns_sd_p.a comp-c-proflib compat,profile,mdns +./usr/lib/sparc/libdns_sd_pic.a comp-c-piclib compat,pic,mdns +./usr/lib/sparc/libdwarf.a comp-c-lib compat +./usr/lib/sparc/libdwarf.so base-sys-shlib compat,pic +./usr/lib/sparc/libdwarf_g.a -unknown- compat,debuglib +./usr/lib/sparc/libdwarf_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libdwarf_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libedit.a comp-c-lib compat +./usr/lib/sparc/libedit.so base-sys-shlib compat,pic +./usr/lib/sparc/libedit_g.a -unknown- compat,debuglib +./usr/lib/sparc/libedit_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libedit_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libelf.a comp-c-lib compat +./usr/lib/sparc/libelf.so base-sys-shlib compat,pic +./usr/lib/sparc/libelf_g.a -unknown- compat,debuglib +./usr/lib/sparc/libelf_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libelf_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libevent.a comp-c-lib compat +./usr/lib/sparc/libevent.so base-sys-shlib compat,pic +./usr/lib/sparc/libevent_g.a -unknown- compat,debuglib +./usr/lib/sparc/libevent_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libevent_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libexecinfo.a comp-c-lib compat +./usr/lib/sparc/libexecinfo.so base-sys-shlib compat,pic +./usr/lib/sparc/libexecinfo_g.a -unknown- compat,debuglib +./usr/lib/sparc/libexecinfo_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libexecinfo_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libexpat.a comp-c-lib compat +./usr/lib/sparc/libexpat.so base-sys-shlib compat,pic +./usr/lib/sparc/libexpat_g.a -unknown- compat,debuglib +./usr/lib/sparc/libexpat_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libexpat_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libfetch.a comp-c-lib compat +./usr/lib/sparc/libfetch.so base-sys-shlib compat,pic +./usr/lib/sparc/libfetch_g.a -unknown- compat,debuglib +./usr/lib/sparc/libfetch_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libfetch_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libfl.a comp-c-lib compat +./usr/lib/sparc/libfl_g.a -unknown- compat,debuglib +./usr/lib/sparc/libfl_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libform.a comp-c-lib compat +./usr/lib/sparc/libform.so base-sys-shlib compat,pic +./usr/lib/sparc/libform_g.a -unknown- compat,debuglib +./usr/lib/sparc/libform_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libform_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libgcc.a comp-c-lib compat,gcccmds +./usr/lib/sparc/libgcc_eh.a comp-c-lib compat,pic,gcccmds +./usr/lib/sparc/libgcc_eh_g.a -unknown- compat,debuglib,pic,gcccmds +./usr/lib/sparc/libgcc_eh_p.a comp-c-proflib obsolete +./usr/lib/sparc/libgcc_eh_pic.a comp-c-piclib obsolete +./usr/lib/sparc/libgcc_g.a -unknown- compat,debuglib,gcccmds +./usr/lib/sparc/libgcc_p.a comp-c-proflib obsolete +./usr/lib/sparc/libgcc_pic.a comp-c-piclib obsolete +./usr/lib/sparc/libgcc_s.a comp-obsolete obsolete +./usr/lib/sparc/libgcc_s.so base-sys-shlib compat,pic,gcccmds +./usr/lib/sparc/libgcc_s_g.a comp-obsolete obsolete +./usr/lib/sparc/libgcc_s_p.a comp-obsolete obsolete +./usr/lib/sparc/libgcc_s_pic.a comp-obsolete obsolete +./usr/lib/sparc/libgcov.a comp-c-lib compat,gcccmds +./usr/lib/sparc/libgcov_g.a comp-obsolete obsolete +./usr/lib/sparc/libgcov_p.a comp-obsolete obsolete +./usr/lib/sparc/libgcov_pic.a comp-obsolete obsolete +./usr/lib/sparc/libgmp.a comp-c-lib obsolete +./usr/lib/sparc/libgmp.so base-sys-shlib obsolete +./usr/lib/sparc/libgmp_g.a -unknown- obsolete +./usr/lib/sparc/libgmp_p.a comp-c-proflib obsolete +./usr/lib/sparc/libgmp_pic.a comp-c-piclib obsolete +./usr/lib/sparc/libgnumalloc.a comp-c-lib compat +./usr/lib/sparc/libgnumalloc.so base-sys-shlib compat,pic +./usr/lib/sparc/libgnumalloc_g.a -unknown- compat,debuglib +./usr/lib/sparc/libgnumalloc_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libgnumalloc_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libgomp.a comp-c-lib compat,gcc=45 +./usr/lib/sparc/libgomp.so base-sys-shlib compat,pic,gcc=45 +./usr/lib/sparc/libgomp_g.a -unknown- compat,debuglib,gcc=45 +./usr/lib/sparc/libgomp_p.a comp-c-proflib compat,profile,gcc=45 +./usr/lib/sparc/libgomp_pic.a comp-c-piclib compat,pic,gcc=45 +./usr/lib/sparc/libgssapi.a comp-c-lib compat,kerberos +./usr/lib/sparc/libgssapi.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libgssapi_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libgssapi_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libgssapi_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libhdb.a comp-c-lib compat,kerberos +./usr/lib/sparc/libhdb.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libhdb_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libhdb_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libhdb_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libheimbase.a comp-c-lib compat,kerberos +./usr/lib/sparc/libheimbase.so comp-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libheimbase_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/sparc/libheimbase_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libheimbase_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/sparc/libheimntlm.a comp-c-lib compat,kerberos +./usr/lib/sparc/libheimntlm.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libheimntlm_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libheimntlm_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libheimntlm_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libhx509.a comp-c-lib compat,kerberos +./usr/lib/sparc/libhx509.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libhx509_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libhx509_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libhx509_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libiberty.a comp-obsolete obsolete +./usr/lib/sparc/libiberty_g.a comp-obsolete obsolete +./usr/lib/sparc/libiberty_p.a comp-obsolete obsolete +./usr/lib/sparc/libiberty_pic.a comp-obsolete obsolete +./usr/lib/sparc/libintl.a comp-c-lib compat +./usr/lib/sparc/libintl.so base-sys-shlib compat,pic +./usr/lib/sparc/libintl_g.a -unknown- compat,debuglib +./usr/lib/sparc/libintl_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libintl_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libipsec.a comp-c-lib compat +./usr/lib/sparc/libipsec.so base-sys-shlib compat,pic +./usr/lib/sparc/libipsec_g.a -unknown- compat,debuglib +./usr/lib/sparc/libipsec_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libipsec_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libisc.a comp-c-lib compat +./usr/lib/sparc/libisc.so base-sys-shlib compat,pic +./usr/lib/sparc/libisc_g.a -unknown- compat,debuglib +./usr/lib/sparc/libisc_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libisc_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libisccc.a comp-c-lib compat +./usr/lib/sparc/libisccc.so base-sys-shlib compat,pic +./usr/lib/sparc/libisccc_g.a -unknown- compat,debuglib +./usr/lib/sparc/libisccc_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libisccc_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libisccfg.a comp-c-lib compat +./usr/lib/sparc/libisccfg.so base-sys-shlib compat,pic +./usr/lib/sparc/libisccfg_g.a -unknown- compat,debuglib +./usr/lib/sparc/libisccfg_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libisccfg_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libiscsi.a comp-c-lib compat,iscsi +./usr/lib/sparc/libiscsi.so base-sys-shlib compat,pic,iscsi +./usr/lib/sparc/libiscsi_g.a -unknown- compat,debuglib,iscsi +./usr/lib/sparc/libiscsi_p.a comp-c-proflib compat,profile,iscsi +./usr/lib/sparc/libiscsi_pic.a comp-c-piclib compat,pic,iscsi +./usr/lib/sparc/libisns.a comp-c-lib compat +./usr/lib/sparc/libisns.so comp-sys-shlib compat +./usr/lib/sparc/libisns_g.a comp-c-piclib compat,debuglib +./usr/lib/sparc/libisns_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libisns_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libkadm5clnt.a comp-c-lib compat,kerberos +./usr/lib/sparc/libkadm5clnt.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libkadm5clnt_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libkadm5clnt_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libkadm5clnt_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libkadm5srv.a comp-c-lib compat,kerberos +./usr/lib/sparc/libkadm5srv.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libkadm5srv_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libkadm5srv_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libkadm5srv_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libkafs.a comp-c-lib compat,kerberos +./usr/lib/sparc/libkafs.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libkafs_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libkafs_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libkafs_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libkdc.a comp-c-lib compat,kerberos +./usr/lib/sparc/libkdc.so comp-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libkdc_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/sparc/libkdc_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libkdc_pic.a comp-c-proflib compat,pic,kerberos +./usr/lib/sparc/libkrb5.a comp-c-lib compat,kerberos +./usr/lib/sparc/libkrb5.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libkrb5_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libkrb5_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libkrb5_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libkvm.a comp-c-lib compat +./usr/lib/sparc/libkvm.so base-sys-shlib compat,pic +./usr/lib/sparc/libkvm_g.a -unknown- compat,debuglib +./usr/lib/sparc/libkvm_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libkvm_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libl.a comp-c-lib compat +./usr/lib/sparc/libl_g.a -unknown- compat,debuglib +./usr/lib/sparc/libl_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libl_pic.a comp-obsolete obsolete +./usr/lib/sparc/liblber.a comp-c-lib compat,ldap +./usr/lib/sparc/liblber.so base-sys-shlib compat,pic,ldap +./usr/lib/sparc/liblber_g.a -unknown- compat,debuglib,ldap +./usr/lib/sparc/liblber_p.a comp-c-proflib compat,profile,ldap +./usr/lib/sparc/liblber_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/sparc/libldap.a comp-c-lib compat,ldap +./usr/lib/sparc/libldap.so base-sys-shlib compat,pic,ldap +./usr/lib/sparc/libldap_g.a -unknown- compat,debuglib,ldap +./usr/lib/sparc/libldap_p.a comp-c-proflib compat,profile,ldap +./usr/lib/sparc/libldap_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/sparc/libldap_r.a comp-c-lib compat,ldap +./usr/lib/sparc/libldap_r.so base-sys-shlib compat,pic,ldap +./usr/lib/sparc/libldap_r_g.a -unknown- compat,debuglib,ldap +./usr/lib/sparc/libldap_r_p.a comp-c-proflib compat,profile,ldap +./usr/lib/sparc/libldap_r_pic.a comp-c-piclib compat,pic,ldap +./usr/lib/sparc/liblua.a comp-c-lib compat +./usr/lib/sparc/liblua_g.a -unknown- compat,debuglib +./usr/lib/sparc/liblua_p.a comp-c-proflib compat,profile +./usr/lib/sparc/liblua_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/liblwres.a comp-c-lib compat +./usr/lib/sparc/liblwres.so base-sys-shlib compat,pic +./usr/lib/sparc/liblwres_g.a -unknown- compat,debuglib +./usr/lib/sparc/liblwres_p.a comp-c-proflib compat,profile +./usr/lib/sparc/liblwres_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/liblzf.a comp-c-lib compat +./usr/lib/sparc/liblzf.so base-sys-shlib compat,pic +./usr/lib/sparc/liblzf_g.a -unknown- compat,debuglib +./usr/lib/sparc/liblzf_p.a comp-c-proflib compat,profile +./usr/lib/sparc/liblzf_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/liblzma.a comp-c-lib compat +./usr/lib/sparc/liblzma.so base-sys-shlib compat,pic +./usr/lib/sparc/liblzma_g.a -unknown- compat,debuglib +./usr/lib/sparc/liblzma_p.a comp-c-proflib compat,profile +./usr/lib/sparc/liblzma_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libm.a comp-c-lib compat +./usr/lib/sparc/libm.so base-sys-shlib compat,pic +./usr/lib/sparc/libm_g.a -unknown- compat,debuglib +./usr/lib/sparc/libm_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libm_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libmagic.a comp-c-lib compat +./usr/lib/sparc/libmagic.so comp-sys-shlib compat,pic +./usr/lib/sparc/libmagic_g.a -unknown- compat,debuglib +./usr/lib/sparc/libmagic_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libmagic_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libmenu.a comp-c-lib compat +./usr/lib/sparc/libmenu.so base-sys-shlib compat,pic +./usr/lib/sparc/libmenu_g.a -unknown- compat,debuglib +./usr/lib/sparc/libmenu_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libmenu_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libmj.a comp-c-lib compat,crypto +./usr/lib/sparc/libmj.so comp-sys-shlib compat,pic,crypto +./usr/lib/sparc/libmj_g.a -unknown- compat,debuglib,crypto +./usr/lib/sparc/libmj_p.a comp-c-proflib compat,profile,crypto +./usr/lib/sparc/libmj_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/sparc/libmpc.a comp-c-lib obsolete +./usr/lib/sparc/libmpc.so base-sys-shlib obsolete +./usr/lib/sparc/libmpc_g.a -unknown- obsolete +./usr/lib/sparc/libmpc_p.a comp-c-proflib obsolete +./usr/lib/sparc/libmpc_pic.a comp-c-piclib obsolete +./usr/lib/sparc/libmpfr.a comp-c-lib obsolete +./usr/lib/sparc/libmpfr.so base-sys-shlib obsolete +./usr/lib/sparc/libmpfr_g.a -unknown- obsolete +./usr/lib/sparc/libmpfr_p.a comp-c-proflib obsolete +./usr/lib/sparc/libmpfr_pic.a comp-c-piclib obsolete +./usr/lib/sparc/libnetpgp.a comp-c-lib compat,crypto +./usr/lib/sparc/libnetpgp.so comp-sys-shlib compat,pic,crypto +./usr/lib/sparc/libnetpgp_g.a -unknown- compat,debuglib,crypto +./usr/lib/sparc/libnetpgp_p.a comp-c-proflib compat,profile,crypto +./usr/lib/sparc/libnetpgp_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/sparc/libnpf.a comp-c-lib compat,npf +./usr/lib/sparc/libnpf.so comp-sys-shlib compat,pic,npf +./usr/lib/sparc/libnpf_g.a -unknown- compat,debuglib,npf +./usr/lib/sparc/libnpf_p.a comp-c-proflib compat,profile,npf +./usr/lib/sparc/libnpf_pic.a comp-c-piclib compat,pic,npf +./usr/lib/sparc/libobjc.a comp-c-lib compat,gcccmds +./usr/lib/sparc/libobjc.so base-sys-shlib compat,pic,gcccmds +./usr/lib/sparc/libobjc_g.a -unknown- compat,debuglib,gcccmds +./usr/lib/sparc/libobjc_p.a comp-c-proflib compat,profile,gcccmds +./usr/lib/sparc/libobjc_pic.a comp-c-piclib compat,pic,gcccmds +./usr/lib/sparc/libopcodes.a comp-obsolete obsolete +./usr/lib/sparc/libopcodes.so base-obsolete obsolete +./usr/lib/sparc/libopcodes_g.a comp-obsolete obsolete +./usr/lib/sparc/libopcodes_p.a comp-obsolete obsolete +./usr/lib/sparc/libopcodes_pic.a comp-obsolete obsolete +./usr/lib/sparc/libossaudio.a comp-c-lib compat +./usr/lib/sparc/libossaudio.so base-sys-shlib compat,pic +./usr/lib/sparc/libossaudio_g.a -unknown- compat,debuglib +./usr/lib/sparc/libossaudio_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libossaudio_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libp2k.a comp-c-lib compat,rump +./usr/lib/sparc/libp2k.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/libp2k_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/libp2k_p.a comp-c-proflib compat,profile,rump +./usr/lib/sparc/libp2k_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/libpam.a comp-c-lib compat +./usr/lib/sparc/libpam.so base-sys-shlib compat,pic +./usr/lib/sparc/libpam_g.a comp-obsolete obsolete +./usr/lib/sparc/libpam_p.a comp-obsolete obsolete +./usr/lib/sparc/libpam_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libpcap.a comp-c-lib compat +./usr/lib/sparc/libpcap.so base-sys-shlib compat,pic +./usr/lib/sparc/libpcap_g.a -unknown- compat,debuglib +./usr/lib/sparc/libpcap_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libpcap_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libpci.a comp-c-lib compat +./usr/lib/sparc/libpci.so base-sys-shlib compat,pic +./usr/lib/sparc/libpci_g.a -unknown- compat,debuglib +./usr/lib/sparc/libpci_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libpci_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libperfuse.a comp-c-lib compat +./usr/lib/sparc/libperfuse.so comp-sys-shlib compat,pic +./usr/lib/sparc/libperfuse_g.a comp-c-proflib compat,debuglib +./usr/lib/sparc/libperfuse_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libperfuse_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libposix.a comp-c-lib compat +./usr/lib/sparc/libposix.so base-sys-shlib compat,pic +./usr/lib/sparc/libposix_g.a -unknown- compat,debuglib +./usr/lib/sparc/libposix_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libposix_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libppath.a comp-c-lib compat +./usr/lib/sparc/libppath.so comp-sys-shlib compat,pic +./usr/lib/sparc/libppath_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libppath_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libprop.a comp-c-lib compat +./usr/lib/sparc/libprop.so base-sys-shlib compat,pic +./usr/lib/sparc/libprop_g.a -unknown- compat,debuglib +./usr/lib/sparc/libprop_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libprop_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libpthread.a comp-c-lib compat +./usr/lib/sparc/libpthread.so base-sys-shlib compat,pic +./usr/lib/sparc/libpthread_dbg.a comp-c-lib compat +./usr/lib/sparc/libpthread_dbg.so base-sys-shlib compat,pic +./usr/lib/sparc/libpthread_dbg_g.a -unknown- compat,debuglib +./usr/lib/sparc/libpthread_dbg_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libpthread_dbg_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libpthread_g.a -unknown- compat,debuglib +./usr/lib/sparc/libpthread_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libpthread_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libpuffs.a comp-c-lib compat +./usr/lib/sparc/libpuffs.so base-sys-shlib compat,pic +./usr/lib/sparc/libpuffs_g.a -unknown- compat,debuglib +./usr/lib/sparc/libpuffs_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libpuffs_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libquota.a comp-c-lib compat +./usr/lib/sparc/libquota.so base-sys-shlib compat,pic +./usr/lib/sparc/libquota_g.a -unknown- compat,debuglib +./usr/lib/sparc/libquota_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libquota_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libradius.a comp-c-lib compat +./usr/lib/sparc/libradius.so base-sys-shlib compat,pic +./usr/lib/sparc/libradius_g.a -unknown- compat,debuglib +./usr/lib/sparc/libradius_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libradius_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/librefuse.a comp-c-lib compat +./usr/lib/sparc/librefuse.so base-sys-shlib compat,pic +./usr/lib/sparc/librefuse_g.a -unknown- compat,debuglib +./usr/lib/sparc/librefuse_p.a comp-c-proflib compat,profile +./usr/lib/sparc/librefuse_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libresolv.a comp-c-lib compat +./usr/lib/sparc/libresolv.so base-sys-shlib compat,pic +./usr/lib/sparc/libresolv_g.a -unknown- compat,debuglib +./usr/lib/sparc/libresolv_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libresolv_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/librmt.a comp-c-lib compat +./usr/lib/sparc/librmt_g.a comp-obsolete obsolete +./usr/lib/sparc/librmt_p.a comp-obsolete obsolete +./usr/lib/sparc/librmt_pic.a comp-obsolete obsolete +./usr/lib/sparc/libroken.a comp-c-lib compat,kerberos +./usr/lib/sparc/libroken.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libroken_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libroken_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libroken_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/librpcsvc.a comp-c-lib compat +./usr/lib/sparc/librpcsvc.so base-sys-shlib compat,pic +./usr/lib/sparc/librpcsvc_g.a -unknown- compat,debuglib +./usr/lib/sparc/librpcsvc_p.a comp-c-proflib compat,profile +./usr/lib/sparc/librpcsvc_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/librt.a comp-c-lib compat +./usr/lib/sparc/librt.so base-sys-shlib compat,pic +./usr/lib/sparc/librt_g.a -unknown- compat,debuglib +./usr/lib/sparc/librt_p.a comp-c-proflib compat,profile +./usr/lib/sparc/librt_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/librump.a comp-c-lib compat,rump +./usr/lib/sparc/librump.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/librump_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/librump_p.a comp-c-proflib compat,profile,rump +./usr/lib/sparc/librump_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/librumpclient.a comp-c-lib compat,rump +./usr/lib/sparc/librumpclient.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/librumpclient_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/librumpclient_p.a comp-c-proflib compat,profile,rump +./usr/lib/sparc/librumpclient_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/librumpcrypto.a comp-obsolete obsolete,rump +./usr/lib/sparc/librumpcrypto.so base-obsolete obsolete,rump +./usr/lib/sparc/librumpcrypto_g.a comp-obsolete obsolete,rump +./usr/lib/sparc/librumpcrypto_p.a comp-obsolete obsolete,rump +./usr/lib/sparc/librumpcrypto_pic.a comp-obsolete obsolete,rump +./usr/lib/sparc/librumpdev.a comp-c-lib compat,rump +./usr/lib/sparc/librumpdev.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/librumpdev_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/librumpdev_p.a comp-c-proflib compat,profile,rump +./usr/lib/sparc/librumpdev_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/librumphijack.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/librumphijack_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/librumphijack_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/librumpnet.a comp-c-lib compat,rump +./usr/lib/sparc/librumpnet.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/librumpnet_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/librumpnet_p.a comp-c-proflib compat,profile,rump +./usr/lib/sparc/librumpnet_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/librumpuser.a comp-c-lib compat,rump +./usr/lib/sparc/librumpuser.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/librumpuser_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/librumpuser_p.a comp-c-proflib compat,profile,rump +./usr/lib/sparc/librumpuser_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/librumpvfs.a comp-c-lib compat,rump +./usr/lib/sparc/librumpvfs.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/librumpvfs_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/librumpvfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/sparc/librumpvfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/libsaslc.a comp-c-lib compat,crypto +./usr/lib/sparc/libsaslc.so base-sys-shlib compat,pic,crypto +./usr/lib/sparc/libsaslc_g.a -unknown- compat,debuglib,crypto +./usr/lib/sparc/libsaslc_p.a comp-c-proflib compat,profile,crypto +./usr/lib/sparc/libsaslc_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/sparc/libsdp.a comp-obsolete obsolete +./usr/lib/sparc/libsdp.so base-obsolete obsolete +./usr/lib/sparc/libsdp_g.a comp-obsolete obsolete +./usr/lib/sparc/libsdp_p.a comp-obsolete obsolete +./usr/lib/sparc/libsdp_pic.a comp-obsolete obsolete +./usr/lib/sparc/libskey.a comp-c-lib compat,skey +./usr/lib/sparc/libskey.so base-sys-shlib compat,pic,skey +./usr/lib/sparc/libskey_g.a -unknown- compat,debuglib,skey +./usr/lib/sparc/libskey_p.a comp-c-proflib compat,profile,skey +./usr/lib/sparc/libskey_pic.a comp-c-piclib compat,pic,skey +./usr/lib/sparc/libsl.a comp-c-lib compat,kerberos +./usr/lib/sparc/libsl.so base-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libsl_g.a -unknown- compat,debuglib,kerberos +./usr/lib/sparc/libsl_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libsl_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libsqlite3.a comp-c-lib compat +./usr/lib/sparc/libsqlite3.so base-sys-shlib compat,pic +./usr/lib/sparc/libsqlite3_g.a -unknown- compat,debuglib +./usr/lib/sparc/libsqlite3_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libsqlite3_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libss.a comp-c-lib obsolete +./usr/lib/sparc/libss.so base-sys-shlib obsolete +./usr/lib/sparc/libss_g.a -unknown- obsolete +./usr/lib/sparc/libss_p.a comp-c-proflib obsolete +./usr/lib/sparc/libss_pic.a comp-c-piclib obsolete +./usr/lib/sparc/libssh.a comp-c-lib compat,crypto +./usr/lib/sparc/libssh.so base-sys-shlib compat,pic,crypto +./usr/lib/sparc/libssh_g.a -unknown- compat,debuglib,crypto +./usr/lib/sparc/libssh_p.a comp-c-proflib compat,profile,crypto +./usr/lib/sparc/libssh_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/sparc/libssl.a comp-c-lib compat,crypto +./usr/lib/sparc/libssl.so base-sys-shlib compat,pic,crypto +./usr/lib/sparc/libssl_g.a -unknown- compat,debuglib,crypto +./usr/lib/sparc/libssl_p.a comp-c-proflib compat,profile,crypto +./usr/lib/sparc/libssl_pic.a comp-c-piclib compat,pic,crypto +./usr/lib/sparc/libstdc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/sparc/libstdc++.so base-sys-shlib compat,pic,cxx,gcccmds +./usr/lib/sparc/libstdc++_g.a -unknown- compat,debuglib,cxx,gcccmds +./usr/lib/sparc/libstdc++_p.a comp-c-proflib compat,profile,cxx,gcccmds +./usr/lib/sparc/libstdc++_pic.a comp-c-piclib compat,pic,cxx,gcccmds +./usr/lib/sparc/libsupc++.a comp-c-lib compat,cxx,gcccmds +./usr/lib/sparc/libsupc++.so base-obsolete obsolete +./usr/lib/sparc/libsupc++_g.a -unknown- compat,debuglib,gcccmds +./usr/lib/sparc/libsupc++_pic.a comp-obsolete obsolete +./usr/lib/sparc/libtermcap.a comp-c-lib compat +./usr/lib/sparc/libtermcap.so base-sys-shlib compat,pic +./usr/lib/sparc/libtermcap_g.a obsolete compat,obsolete +./usr/lib/sparc/libtermcap_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libtermcap_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libterminfo.a comp-c-lib compat +./usr/lib/sparc/libterminfo.so base-sys-shlib compat,pic +./usr/lib/sparc/libterminfo_g.a -unknown- compat,debuglib +./usr/lib/sparc/libterminfo_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libterminfo_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libtermlib.a comp-c-lib compat +./usr/lib/sparc/libtermlib.so base-sys-shlib compat,pic +./usr/lib/sparc/libtermlib_g.a obsolete compat,obsolete +./usr/lib/sparc/libtermlib_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libtermlib_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libtre.a comp-c-lib compat +./usr/lib/sparc/libtre.so base-sys-shlib compat,pic +./usr/lib/sparc/libtre_g.a obsolete compat,obsolete +./usr/lib/sparc/libtre_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libtre_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libukfs.a comp-c-lib compat,rump +./usr/lib/sparc/libukfs.so base-sys-shlib compat,pic,rump +./usr/lib/sparc/libukfs_g.a -unknown- compat,debuglib,rump +./usr/lib/sparc/libukfs_p.a comp-c-proflib compat,profile,rump +./usr/lib/sparc/libukfs_pic.a comp-c-piclib compat,pic,rump +./usr/lib/sparc/libusbhid.a comp-c-lib compat +./usr/lib/sparc/libusbhid.so base-sys-shlib compat,pic +./usr/lib/sparc/libusbhid_g.a -unknown- compat,debuglib +./usr/lib/sparc/libusbhid_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libusbhid_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libutil.a comp-c-lib compat +./usr/lib/sparc/libutil.so base-sys-shlib compat,pic +./usr/lib/sparc/libutil_g.a -unknown- compat,debuglib +./usr/lib/sparc/libutil_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libutil_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/libvers.a comp-obsolete obsolete +./usr/lib/sparc/libvers_g.a comp-obsolete obsolete +./usr/lib/sparc/libvers_p.a comp-obsolete obsolete +./usr/lib/sparc/libvers_pic.a comp-obsolete obsolete +./usr/lib/sparc/libwind.a comp-c-lib compat,kerberos +./usr/lib/sparc/libwind.so comp-sys-shlib compat,pic,kerberos +./usr/lib/sparc/libwind_g.a comp-c-proflib compat,debuglib,kerberos +./usr/lib/sparc/libwind_p.a comp-c-proflib compat,profile,kerberos +./usr/lib/sparc/libwind_pic.a comp-c-piclib compat,pic,kerberos +./usr/lib/sparc/libwrap.a comp-c-lib compat +./usr/lib/sparc/libwrap.so base-sys-shlib compat,pic +./usr/lib/sparc/libwrap_g.a -unknown- compat,debuglib +./usr/lib/sparc/libwrap_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libwrap_pic.a comp-c-piclib compat,pic +./usr/lib/sparc/liby.a comp-c-lib compat +./usr/lib/sparc/liby_g.a -unknown- compat,debuglib +./usr/lib/sparc/liby_p.a comp-c-proflib compat,profile +./usr/lib/sparc/liby_pic.a comp-obsolete obsolete +./usr/lib/sparc/libz.a comp-c-lib compat +./usr/lib/sparc/libz.so base-sys-shlib compat,pic +./usr/lib/sparc/libz_g.a -unknown- compat,debuglib +./usr/lib/sparc/libz_p.a comp-c-proflib compat,profile +./usr/lib/sparc/libz_pic.a comp-c-piclib compat,pic +./usr/libdata/debug/sbin/edlabel.debug comp-sysutil-debug obsolete +./usr/libdata/debug/usr/bin/fdformat.debug comp-util-debug debug +./usr/libdata/debug/usr/lib/sparc/i18n/libBIG5.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libDECHanyu.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libEUC.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libEUCTW.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libGBK2K.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libHZ.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libISO2022.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libJOHAB.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libMSKanji.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libUES.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libUTF1632.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libUTF7.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libUTF8.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libVIQR.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libZW.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libiconv_none.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libiconv_std.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libmapper_646.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libmapper_none.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libmapper_parallel.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libmapper_serial.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libmapper_std.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/i18n/libmapper_zone.so.5.0.debug comp-i18n-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libamu.so.4.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libarchive.so.3.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libasn1.so.8.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libasn1.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libatf-c.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/sparc/libatf-c++.so.0.0.debug comp-compat-shlib compat,pic,atf,debug +./usr/libdata/debug/usr/lib/sparc/libbfd.so.12.0.debug comp-compat-shlib compat,pic,binutils,debug +./usr/libdata/debug/usr/lib/sparc/libbind9.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libbluetooth.so.4.2.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libbsdmalloc.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libbz2.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libc.so.12.185.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libcom_err.so.6.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libcom_err.so.7.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libcrypt.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libcrypto.so.8.0.debug comp-compat-shlib compat,pic,debug,crypto +./usr/libdata/debug/usr/lib/sparc/libcurses.so.7.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libdes.so.8.1.debug comp-compat-shlib compat,pic,debug,crypto +./usr/libdata/debug/usr/lib/sparc/libdevmapper.so.1.0.debug comp-compat-shlib compat,pic,debug,lvm +./usr/libdata/debug/usr/lib/sparc/libdm.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libdns.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libdns_sd.so.0.0.debug comp-compat-shlib compat,pic,debug,mdns +./usr/libdata/debug/usr/lib/sparc/libdwarf.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libedit.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libelf.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libevent.so.3.2.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libexecinfo.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libexpat.so.2.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libfetch.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libform.so.6.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libgcc_s.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libgnumalloc.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libgomp.so.1.0.debug comp-compat-shlib compat,pic,debug,gcc=45 +./usr/libdata/debug/usr/lib/sparc/libgssapi.so.10.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libgssapi.so.9.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libhdb.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libhdb.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libheimbase.so.1.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libheimntlm.so.3.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libheimntlm.so.4.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libhx509.so.5.0.debug comp-compat-shlib compat,pic,debug,kerberos +./usr/libdata/debug/usr/lib/sparc/libintl.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libipsec.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libisc.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libisccc.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libisccfg.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libiscsi.so.2.0.debug comp-compat-shlib compat,pic,debug,iscsi +./usr/libdata/debug/usr/lib/sparc/libisns.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libkadm5clnt.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libkadm5clnt.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libkadm5srv.so.13.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libkadm5srv.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libkafs.so.11.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libkafs.so.12.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libkdc.so.2.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libkrb5.so.24.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libkrb5.so.26.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libkvm.so.6.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/liblber.so.3.2.debug comp-compat-shlib compat,pic,debug,ldap +./usr/libdata/debug/usr/lib/sparc/libldap.so.4.2.debug comp-compat-shlib compat,pic,debug,ldap +./usr/libdata/debug/usr/lib/sparc/libldap_r.so.4.2.debug comp-compat-shlib compat,pic,debug,ldap +./usr/libdata/debug/usr/lib/sparc/liblua.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/liblwres.so.5.7.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/liblzf.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/liblzma.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libm.so.0.10.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libmagic.so.3.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libmenu.so.6.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libmj.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libnetpgp.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libnpf.so.0.0.debug comp-compat-shlib compat,pic,debug,npf +./usr/libdata/debug/usr/lib/sparc/libobjc.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libopcodes.so.5.0.debug comp-compat-shlib compat,pic,binutils,debug +./usr/libdata/debug/usr/lib/sparc/libossaudio.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libp2k.so.2.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/libpam.so.3.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libpcap.so.4.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libpci.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libperfuse.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libposix.so.0.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libppath.so.0.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libprop.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libpthread.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libpthread_dbg.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libpuffs.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libquota.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libradius.so.4.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/librefuse.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libresolv.so.2.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libroken.so.14.0.debug comp-compat-shlib compat,pic,kerberos,debug,obsolete +./usr/libdata/debug/usr/lib/sparc/libroken.so.19.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/librpcsvc.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/librt.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/librump.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/librumpclient.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/librumpcrypto.so.0.0.debug comp-obsolete obsolete,rump +./usr/libdata/debug/usr/lib/sparc/librumpdev.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/librumphijack.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/librumpnet.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/librumpuser.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/librumpvfs.so.0.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/libsaslc.so.0.0.debug comp-compat-shlib compat,pic,debug,crypto +./usr/libdata/debug/usr/lib/sparc/libskey.so.2.0.debug comp-compat-shlib compat,pic,debug,skey +./usr/libdata/debug/usr/lib/sparc/libsl.so.5.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libsqlite3.so.1.1.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libss.so.6.0.debug comp-compat-shlib obsolete +./usr/libdata/debug/usr/lib/sparc/libssh.so.19.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libssl.so.10.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libstdc++.so.7.0.debug comp-compat-shlib gcc=4,compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libstdc++.so.7.1.debug comp-compat-shlib gcc=45,compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libterminfo.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libtre.so.0.8.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libukfs.so.1.0.debug comp-compat-shlib compat,pic,debug,rump +./usr/libdata/debug/usr/lib/sparc/libusbhid.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libutil.so.7.21.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libwind.so.0.0.debug comp-compat-shlib compat,pic,kerberos,debug +./usr/libdata/debug/usr/lib/sparc/libwrap.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/lib/sparc/libz.so.1.0.debug comp-compat-shlib compat,pic,debug +./usr/libdata/debug/usr/sbin/eeprom.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ofctl.debug comp-sysutil-debug debug +./usr/libdata/ldscripts/elf32_sparc.x comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xbn comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xc comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xd comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xdc comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xdw comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xn comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xr comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xs comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xsc comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xsw comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xu comp-util-bin binutils +./usr/libdata/ldscripts/elf32_sparc.xw comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.x comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xbn comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xc comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xd comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xdc comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xdw comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xn comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xr comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xs comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xsc comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xsw comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xu comp-util-bin binutils +./usr/libdata/ldscripts/elf64_sparc.xw comp-util-bin binutils +./usr/libdata/ldscripts/sparcnbsd.x comp-util-bin binutils +./usr/libdata/ldscripts/sparcnbsd.xbn comp-util-bin binutils +./usr/libdata/ldscripts/sparcnbsd.xn comp-util-bin binutils +./usr/libdata/ldscripts/sparcnbsd.xr comp-util-bin binutils +./usr/libdata/ldscripts/sparcnbsd.xu comp-util-bin binutils diff --git a/distrib/sets/lists/comp/md.sun2 b/distrib/sets/lists/comp/md.sun2 new file mode 100644 index 000000000..3cc14ae79 --- /dev/null +++ b/distrib/sets/lists/comp/md.sun2 @@ -0,0 +1,72 @@ +# $NetBSD: md.sun2,v 1.19 2011/07/17 20:54:32 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/sun2 comp-c-include +./usr/include/sun2/_G_config.h comp-obsolete obsolete +./usr/include/sun2/ansi.h comp-c-include +./usr/include/sun2/aout_machdep.h comp-c-include +./usr/include/sun2/asm.h comp-c-include +./usr/include/sun2/autoconf.h comp-c-include +./usr/include/sun2/bswap.h comp-c-include +./usr/include/sun2/cdefs.h comp-c-include +./usr/include/sun2/cpu.h comp-c-include +./usr/include/sun2/db_machdep.h comp-obsolete obsolete +./usr/include/sun2/disklabel.h comp-c-include +./usr/include/sun2/dvma.h comp-c-include +./usr/include/sun2/eeprom.h comp-c-include +./usr/include/sun2/elf_machdep.h comp-c-include +./usr/include/sun2/endian.h comp-c-include +./usr/include/sun2/endian_machdep.h comp-c-include +./usr/include/sun2/fbio.h comp-c-include +./usr/include/sun2/float.h comp-c-include +./usr/include/sun2/frame.h comp-c-include +./usr/include/sun2/idprom.h comp-c-include +./usr/include/sun2/ieee.h comp-c-include +./usr/include/sun2/ieeefp.h comp-c-include +./usr/include/sun2/int_const.h comp-c-include +./usr/include/sun2/int_fmtio.h comp-c-include +./usr/include/sun2/int_limits.h comp-c-include +./usr/include/sun2/int_mwgwtypes.h comp-c-include +./usr/include/sun2/int_types.h comp-c-include +./usr/include/sun2/intr.h comp-c-include +./usr/include/sun2/kbd.h comp-c-include +./usr/include/sun2/kbio.h comp-c-include +./usr/include/sun2/kcore.h comp-c-include +./usr/include/sun2/leds.h comp-c-include +./usr/include/sun2/limits.h comp-c-include +./usr/include/sun2/lock.h comp-c-include +./usr/include/sun2/math.h comp-c-include +./usr/include/sun2/mcontext.h comp-c-include +./usr/include/sun2/mon.h comp-c-include +./usr/include/sun2/mutex.h comp-c-include +./usr/include/sun2/param.h comp-c-include +./usr/include/sun2/pcb.h comp-c-include +./usr/include/sun2/pmap.h comp-c-include +./usr/include/sun2/pmc.h comp-c-include +./usr/include/sun2/proc.h comp-c-include +./usr/include/sun2/profile.h comp-c-include +./usr/include/sun2/promlib.h comp-c-include +./usr/include/sun2/psl.h comp-c-include +./usr/include/sun2/pte.h comp-c-include +./usr/include/sun2/ptrace.h comp-c-include +./usr/include/sun2/reg.h comp-c-include +./usr/include/sun2/rwlock.h comp-c-include +./usr/include/sun2/setjmp.h comp-c-include +./usr/include/sun2/signal.h comp-c-include +./usr/include/sun2/stdarg.h comp-obsolete obsolete +./usr/include/sun2/svr4_machdep.h comp-obsolete obsolete +./usr/include/sun2/trap.h comp-c-include +./usr/include/sun2/types.h comp-c-include +./usr/include/sun2/varargs.h comp-obsolete obsolete +./usr/include/sun2/vmparam.h comp-c-include +./usr/include/sun2/vuid_event.h comp-c-include +./usr/include/sun2/wchar_limits.h comp-c-include +./usr/include/sun2/z8530var.h comp-c-include +./usr/include/sun68k comp-c-include +./usr/include/sun68k/bus.h comp-c-include +./usr/include/sun68k/cpu.h comp-c-include +./usr/include/sun68k/disklabel.h comp-c-include +./usr/include/sun68k/idprom.h comp-c-include +./usr/include/sun68k/intr.h comp-c-include +./usr/include/sun68k/mon.h comp-c-include +./usr/include/sun68k/psl.h comp-c-include +./usr/libdata/debug/sbin/edlabel.debug comp-sysutil-debug obsolete diff --git a/distrib/sets/lists/comp/md.sun3 b/distrib/sets/lists/comp/md.sun3 new file mode 100644 index 000000000..bb6f4f9ce --- /dev/null +++ b/distrib/sets/lists/comp/md.sun3 @@ -0,0 +1,84 @@ +# $NetBSD: md.sun3,v 1.61 2011/07/17 20:54:32 joerg Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/sun3 comp-c-include +./usr/include/sun3/_G_config.h comp-obsolete obsolete +./usr/include/sun3/ansi.h comp-c-include +./usr/include/sun3/aout_machdep.h comp-c-include +./usr/include/sun3/asm.h comp-c-include +./usr/include/sun3/autoconf.h comp-c-include +./usr/include/sun3/bswap.h comp-c-include +./usr/include/sun3/cdefs.h comp-c-include +./usr/include/sun3/cg2reg.h comp-c-include +./usr/include/sun3/cpu.h comp-c-include +./usr/include/sun3/db_machdep.h comp-obsolete obsolete +./usr/include/sun3/disklabel.h comp-c-include +./usr/include/sun3/dvma.h comp-c-include +./usr/include/sun3/dvma3.h comp-c-include +./usr/include/sun3/dvma3x.h comp-c-include +./usr/include/sun3/eeprom.h comp-c-include +./usr/include/sun3/elf_machdep.h comp-c-include +./usr/include/sun3/endian.h comp-c-include +./usr/include/sun3/endian_machdep.h comp-c-include +./usr/include/sun3/fbio.h comp-obsolete obsolete +./usr/include/sun3/float.h comp-c-include +./usr/include/sun3/frame.h comp-c-include +./usr/include/sun3/idprom.h comp-c-include +./usr/include/sun3/ieee.h comp-c-include +./usr/include/sun3/ieeefp.h comp-c-include +./usr/include/sun3/int_const.h comp-c-include +./usr/include/sun3/int_fmtio.h comp-c-include +./usr/include/sun3/int_limits.h comp-c-include +./usr/include/sun3/int_mwgwtypes.h comp-c-include +./usr/include/sun3/int_types.h comp-c-include +./usr/include/sun3/intr.h comp-c-include +./usr/include/sun3/kbd.h comp-c-include +./usr/include/sun3/kbio.h comp-c-include +./usr/include/sun3/kcore.h comp-c-include +./usr/include/sun3/leds.h comp-c-include +./usr/include/sun3/limits.h comp-c-include +./usr/include/sun3/lock.h comp-c-include +./usr/include/sun3/math.h comp-c-include +./usr/include/sun3/mc68851.h comp-c-include +./usr/include/sun3/mcontext.h comp-c-include +./usr/include/sun3/mon.h comp-c-include +./usr/include/sun3/mutex.h comp-c-include +./usr/include/sun3/param.h comp-c-include +./usr/include/sun3/param3.h comp-c-include +./usr/include/sun3/param3x.h comp-c-include +./usr/include/sun3/pcb.h comp-c-include +./usr/include/sun3/pmap.h comp-c-include +./usr/include/sun3/pmap3.h comp-c-include +./usr/include/sun3/pmap3x.h comp-c-include +./usr/include/sun3/pmc.h comp-c-include +./usr/include/sun3/proc.h comp-c-include +./usr/include/sun3/profile.h comp-c-include +./usr/include/sun3/psl.h comp-c-include +./usr/include/sun3/pte.h comp-c-include +./usr/include/sun3/pte3.h comp-c-include +./usr/include/sun3/pte3x.h comp-c-include +./usr/include/sun3/ptrace.h comp-c-include +./usr/include/sun3/reg.h comp-c-include +./usr/include/sun3/rwlock.h comp-c-include +./usr/include/sun3/setjmp.h comp-c-include +./usr/include/sun3/signal.h comp-c-include +./usr/include/sun3/stdarg.h comp-obsolete obsolete +./usr/include/sun3/svr4_machdep.h comp-obsolete obsolete +./usr/include/sun3/trap.h comp-c-include +./usr/include/sun3/types.h comp-c-include +./usr/include/sun3/varargs.h comp-obsolete obsolete +./usr/include/sun3/vmparam.h comp-c-include +./usr/include/sun3/vmparam3.h comp-c-include +./usr/include/sun3/vmparam3x.h comp-c-include +./usr/include/sun3/vuid_event.h comp-c-include +./usr/include/sun3/wchar_limits.h comp-c-include +./usr/include/sun3/z8530var.h comp-c-include +./usr/include/sun68k comp-c-include +./usr/include/sun68k/bus.h comp-c-include +./usr/include/sun68k/cpu.h comp-c-include +./usr/include/sun68k/disklabel.h comp-c-include +./usr/include/sun68k/idprom.h comp-c-include +./usr/include/sun68k/intr.h comp-c-include +./usr/include/sun68k/mon.h comp-c-include +./usr/include/sun68k/psl.h comp-c-include +./usr/libdata/debug/sbin/edlabel.debug comp-sysutil-debug obsolete +./usr/libdata/debug/usr/sbin/eeprom.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/md.vax b/distrib/sets/lists/comp/md.vax new file mode 100644 index 000000000..09556184b --- /dev/null +++ b/distrib/sets/lists/comp/md.vax @@ -0,0 +1,79 @@ +# $NetBSD: md.vax,v 1.37 2011/11/10 17:18:22 chs Exp $ +./usr/include/ieeefp.h comp-obsolete obsolete +./usr/include/gcc-4.5/tgmath.h comp-c-include gcccmds,gcc=45 +./usr/include/vax comp-c-include +./usr/include/vax/_G_config.h comp-obsolete obsolete +./usr/include/vax/ansi.h comp-c-include +./usr/include/vax/aout_machdep.h comp-c-include +./usr/include/vax/asm.h comp-c-include +./usr/include/vax/bswap.h comp-c-include +./usr/include/vax/bus.h comp-c-include +./usr/include/vax/byte_swap.h comp-c-include +./usr/include/vax/cdefs.h comp-c-include +./usr/include/vax/clock.h comp-c-include +./usr/include/vax/coff_machdep.h comp-c-include +./usr/include/vax/cpu.h comp-c-include +./usr/include/vax/db_machdep.h comp-obsolete obsolete +./usr/include/vax/disklabel.h comp-c-include +./usr/include/vax/elf_machdep.h comp-c-include +./usr/include/vax/endian.h comp-c-include +./usr/include/vax/endian_machdep.h comp-c-include +./usr/include/vax/float.h comp-c-include +./usr/include/vax/frame.h comp-c-include +./usr/include/vax/ibcs2_machdep.h comp-c-include +./usr/include/vax/int_const.h comp-c-include +./usr/include/vax/int_fmtio.h comp-c-include +./usr/include/vax/int_limits.h comp-c-include +./usr/include/vax/int_mwgwtypes.h comp-c-include +./usr/include/vax/int_types.h comp-c-include +./usr/include/vax/ioa.h comp-c-include +./usr/include/vax/ka410.h comp-c-include +./usr/include/vax/ka420.h comp-c-include +./usr/include/vax/ka43.h comp-c-include +./usr/include/vax/ka630.h comp-c-include +./usr/include/vax/ka650.h comp-c-include +./usr/include/vax/ka750.h comp-c-include +./usr/include/vax/ka820.h comp-c-include +./usr/include/vax/lcgreg.h comp-c-include +./usr/include/vax/leds.h comp-c-include +./usr/include/vax/limits.h comp-c-include +./usr/include/vax/lock.h comp-c-include +./usr/include/vax/macros.h comp-c-include +./usr/include/vax/math.h comp-c-include +./usr/include/vax/mcontext.h comp-c-include +./usr/include/vax/mutex.h comp-c-include +./usr/include/vax/mtpr.h comp-c-include +./usr/include/vax/nexus.h comp-c-include +./usr/include/vax/param.h comp-c-include +./usr/include/vax/pcb.h comp-c-include +./usr/include/vax/pmap.h comp-c-include +./usr/include/vax/pmc.h comp-c-include +./usr/include/vax/proc.h comp-c-include +./usr/include/vax/profile.h comp-c-include +./usr/include/vax/psl.h comp-c-include +./usr/include/vax/pte.h comp-c-include +./usr/include/vax/ptrace.h comp-c-include +./usr/include/vax/qdioctl.h comp-c-include +./usr/include/vax/qdreg.h comp-c-include +./usr/include/vax/qduser.h comp-c-include +./usr/include/vax/qevent.h comp-c-include +./usr/include/vax/reg.h comp-c-include +./usr/include/vax/rpb.h comp-c-include +./usr/include/vax/rsp.h comp-c-include +./usr/include/vax/rwlock.h comp-c-include +./usr/include/vax/scb.h comp-c-include +./usr/include/vax/setjmp.h comp-c-include +./usr/include/vax/sid.h comp-c-include +./usr/include/vax/signal.h comp-c-include +./usr/include/vax/stdarg.h comp-obsolete obsolete +./usr/include/vax/trap.h comp-c-include +./usr/include/vax/types.h comp-c-include +./usr/include/vax/uvax.h comp-c-include +./usr/include/vax/varargs.h comp-obsolete obsolete +./usr/include/vax/vaxfp.h comp-c-include +./usr/include/vax/vmparam.h comp-c-include +./usr/include/vax/vsbus.h comp-c-include +./usr/include/vax/wchar_limits.h comp-c-include +./usr/lib/c++rt0.o comp-obsolete obsolete +./usr/lib/scrt0.o comp-obsolete obsolete +./usr/libdata/debug/sbin/ldconfig.debug comp-sysutil-debug debug,pic diff --git a/distrib/sets/lists/comp/md.x68k b/distrib/sets/lists/comp/md.x68k new file mode 100644 index 000000000..629a278a0 --- /dev/null +++ b/distrib/sets/lists/comp/md.x68k @@ -0,0 +1,78 @@ +# $NetBSD: md.x68k,v 1.59 2011/11/19 12:27:42 isaki Exp $ +./usr/include/ieeefp.h comp-c-include +./usr/include/x68k comp-c-include +./usr/include/x68k/_G_config.h comp-obsolete obsolete +./usr/include/x68k/ansi.h comp-c-include +./usr/include/x68k/aout_machdep.h comp-c-include +./usr/include/x68k/asm.h comp-c-include +./usr/include/x68k/bootinfo.h comp-c-include +./usr/include/x68k/bsd_audioio.h comp-obsolete obsolete +./usr/include/x68k/bswap.h comp-c-include +./usr/include/x68k/bus.h comp-c-include +./usr/include/x68k/cdefs.h comp-c-include +./usr/include/x68k/cpu.h comp-c-include +./usr/include/x68k/cpufunc.h comp-c-include +./usr/include/x68k/db_machdep.h comp-obsolete obsolete +./usr/include/x68k/disklabel.h comp-c-include +./usr/include/x68k/elf_machdep.h comp-c-include +./usr/include/x68k/endian.h comp-c-include +./usr/include/x68k/endian_machdep.h comp-c-include +./usr/include/x68k/float.h comp-c-include +./usr/include/x68k/frame.h comp-c-include +./usr/include/x68k/grfioctl.h comp-c-include +./usr/include/x68k/ieee.h comp-c-include +./usr/include/x68k/ieeefp.h comp-c-include +./usr/include/x68k/int_const.h comp-c-include +./usr/include/x68k/int_fmtio.h comp-c-include +./usr/include/x68k/int_limits.h comp-c-include +./usr/include/x68k/int_mwgwtypes.h comp-c-include +./usr/include/x68k/int_types.h comp-c-include +./usr/include/x68k/intr.h comp-obsolete obsolete +./usr/include/x68k/iteioctl.h comp-c-include +./usr/include/x68k/kbd.h comp-c-include +./usr/include/x68k/kbdmap.h comp-c-include +./usr/include/x68k/kbio.h comp-c-include +./usr/include/x68k/kcore.h comp-c-include +./usr/include/x68k/limits.h comp-c-include +./usr/include/x68k/lock.h comp-c-include +./usr/include/x68k/math.h comp-c-include +./usr/include/x68k/mcontext.h comp-c-include +./usr/include/x68k/mutex.h comp-c-include +./usr/include/x68k/opmbellio.h comp-c-include +./usr/include/x68k/opmreg.h comp-c-include +./usr/include/x68k/param.h comp-c-include +./usr/include/x68k/parioctl.h comp-c-include +./usr/include/x68k/pcb.h comp-c-include +./usr/include/x68k/pci_machdep.h comp-obsolete obsolete +./usr/include/x68k/pmap.h comp-c-include +./usr/include/x68k/pmc.h comp-c-include +./usr/include/x68k/powioctl.h comp-obsolete obsolete +./usr/include/x68k/proc.h comp-c-include +./usr/include/x68k/profile.h comp-c-include +./usr/include/x68k/psl.h comp-c-include +./usr/include/x68k/pte.h comp-c-include +./usr/include/x68k/ptrace.h comp-c-include +./usr/include/x68k/reg.h comp-c-include +./usr/include/x68k/remote-sl.h comp-c-include +./usr/include/x68k/rwlock.h comp-c-include +./usr/include/x68k/setjmp.h comp-c-include +./usr/include/x68k/signal.h comp-c-include +./usr/include/x68k/sram.h comp-c-include +./usr/include/x68k/stdarg.h comp-obsolete obsolete +./usr/include/x68k/svr4_machdep.h comp-obsolete obsolete +./usr/include/x68k/trap.h comp-c-include +./usr/include/x68k/types.h comp-c-include +./usr/include/x68k/varargs.h comp-obsolete obsolete +./usr/include/x68k/vmparam.h comp-c-include +./usr/include/x68k/vuid_event.h comp-c-include +./usr/include/x68k/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/bin/bellctrl.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/loadfont.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/loadkmap.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/palette.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/rtcalarm.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tvctrl.debug comp-util-debug debug +./usr/libdata/debug/usr/mdec/installboot.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/mdec/newdisk.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/memswitch.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/poffd.debug comp-obsolete obsolete diff --git a/distrib/sets/lists/comp/md.zaurus b/distrib/sets/lists/comp/md.zaurus new file mode 100644 index 000000000..f02f0bb66 --- /dev/null +++ b/distrib/sets/lists/comp/md.zaurus @@ -0,0 +1,52 @@ +# $NetBSD: md.zaurus,v 1.9 2011/07/19 15:12:26 dyoung Exp $ +./usr/include/zaurus comp-c-include +./usr/include/zaurus/ansi.h comp-c-include +./usr/include/zaurus/aout_machdep.h comp-c-include +./usr/include/zaurus/apmvar.h comp-c-include +./usr/include/zaurus/asm.h comp-c-include +./usr/include/zaurus/bswap.h comp-c-include +./usr/include/zaurus/bus.h comp-obsolete obsolete +./usr/include/zaurus/cdefs.h comp-c-include +./usr/include/zaurus/cpu.h comp-c-include +./usr/include/zaurus/disklabel.h comp-c-include +./usr/include/zaurus/elf_machdep.h comp-c-include +./usr/include/zaurus/endian.h comp-c-include +./usr/include/zaurus/endian_machdep.h comp-c-include +./usr/include/zaurus/float.h comp-c-include +./usr/include/zaurus/fp.h comp-c-include +./usr/include/zaurus/frame.h comp-c-include +./usr/include/zaurus/ieee.h comp-c-include +./usr/include/zaurus/ieeefp.h comp-c-include +./usr/include/zaurus/int_const.h comp-c-include +./usr/include/zaurus/int_fmtio.h comp-c-include +./usr/include/zaurus/int_limits.h comp-c-include +./usr/include/zaurus/int_mwgwtypes.h comp-c-include +./usr/include/zaurus/int_types.h comp-c-include +./usr/include/zaurus/intr.h comp-c-include +./usr/include/zaurus/ipkdb.h comp-obsolete obsolete +./usr/include/zaurus/limits.h comp-c-include +./usr/include/zaurus/lock.h comp-c-include +./usr/include/zaurus/math.h comp-c-include +./usr/include/zaurus/mcontext.h comp-c-include +./usr/include/zaurus/mutex.h comp-c-include +./usr/include/zaurus/param.h comp-c-include +./usr/include/zaurus/pcb.h comp-c-include +./usr/include/zaurus/pmap.h comp-c-include +./usr/include/zaurus/pmc.h comp-c-include +./usr/include/zaurus/proc.h comp-c-include +./usr/include/zaurus/profile.h comp-c-include +./usr/include/zaurus/ptrace.h comp-c-include +./usr/include/zaurus/reg.h comp-c-include +./usr/include/zaurus/rwlock.h comp-c-include +./usr/include/zaurus/setjmp.h comp-c-include +./usr/include/zaurus/signal.h comp-c-include +./usr/include/zaurus/stdarg.h comp-obsolete obsolete +./usr/include/zaurus/sysarch.h comp-c-include +./usr/include/zaurus/trap.h comp-c-include +./usr/include/zaurus/types.h comp-c-include +./usr/include/zaurus/varargs.h comp-obsolete obsolete +./usr/include/zaurus/vmparam.h comp-c-include +./usr/include/zaurus/wchar_limits.h comp-c-include +./usr/libdata/debug/usr/sbin/apm.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/apmd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/tpctl.debug comp-sysutil-debug debug diff --git a/distrib/sets/lists/comp/mi b/distrib/sets/lists/comp/mi new file mode 100644 index 000000000..cb7ede567 --- /dev/null +++ b/distrib/sets/lists/comp/mi @@ -0,0 +1,23764 @@ +# $NetBSD: mi,v 1.1783 2012/10/02 01:47:39 christos Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.comp comp-sys-root +./usr/bin/addr2line comp-debug-bin binutils +./usr/bin/ar comp-util-bin binutils +./usr/bin/as comp-util-bin binutils +./usr/bin/asa comp-fortran-bin +./usr/bin/atf-compile comp-obsolete obsolete +./usr/bin/c++ comp-cxx-bin gcccmds +./usr/bin/c++filt comp-cxx-bin binutils +./usr/bin/c89 comp-c-bin +./usr/bin/c99 comp-c-bin +./usr/bin/cc comp-c-bin gcccmds +./usr/bin/clang comp-c-bin llvm +./usr/bin/clang++ comp-c-bin llvm +./usr/bin/clang-cpp comp-c-bin llvm +./usr/bin/clang-tblgen comp-c-bin llvm +./usr/bin/config comp-util-bin +./usr/bin/crunchgen comp-c-bin +./usr/bin/crunchide comp-c-bin +./usr/bin/ctfconvert comp-util-bin dtrace +./usr/bin/ctfdump comp-util-bin dtrace +./usr/bin/ctfmerge comp-util-bin dtrace +./usr/bin/cvs comp-cvs-bin cvs +./usr/bin/cvsbug comp-cvs-bin cvs +./usr/bin/elfedit comp-util-bin binutils +./usr/bin/f77 comp-fortran-bin gcc=3,gcccmds +./usr/bin/f77 comp-obsolete gcc=4,obsolete +./usr/bin/fgen comp-util-bin +./usr/bin/flex comp-c-bin +./usr/bin/flex++ comp-cxx-bin +./usr/bin/fort77 comp-fortran-bin gcc=3,gcccmds +./usr/bin/fort77 comp-obsolete gcc=4,obsolete +./usr/bin/fpr comp-fortran-bin +./usr/bin/g++ comp-cxx-bin gcccmds +./usr/bin/g77 comp-fortran-bin gcc=3,gcccmds +./usr/bin/g77 comp-obsolete gcc=4,obsolete +./usr/bin/gcc comp-c-bin gcccmds +./usr/bin/gcore comp-debug-bin +./usr/bin/gcov comp-debug-bin gcccmds +./usr/bin/gdb comp-debug-bin gdb +./usr/bin/gdbtui comp-debug-bin gdb +./usr/bin/genassym comp-util-bin +./usr/bin/genclass comp-obsolete obsolete +./usr/bin/gettext comp-c-bin +./usr/bin/gettextize comp-obsolete obsolete +./usr/bin/gprof comp-debug-bin binutils +./usr/bin/lex comp-c-bin +./usr/bin/lint comp-c-bin +./usr/bin/llvm-tblgen comp-c-bin llvm +./usr/bin/lorder comp-util-bin +./usr/bin/luac comp-util-bin +./usr/bin/menuc comp-c-bin +./usr/bin/mkstr comp-c-bin +./usr/bin/mkubootimage comp-util-bin +./usr/bin/msgattrib comp-c-bin +./usr/bin/msgc comp-c-bin +./usr/bin/msgcat comp-c-bin +./usr/bin/msgcmp comp-c-bin +./usr/bin/msgcomm comp-c-bin +./usr/bin/msgconv comp-c-bin +./usr/bin/msgen comp-c-bin +./usr/bin/msgexec comp-c-bin +./usr/bin/msgfmt comp-c-bin +./usr/bin/msginit comp-c-bin +./usr/bin/msgmerge comp-c-bin +./usr/bin/msgunfmt comp-c-bin +./usr/bin/msguniq comp-c-bin +./usr/bin/nbperf comp-util-bin +./usr/bin/nm comp-util-bin binutils +./usr/bin/objcopy comp-util-bin binutils +./usr/bin/objdump comp-util-bin binutils +./usr/bin/pcc comp-c-bin pcc +./usr/bin/protoize comp-c-bin gcc=4,gcccmds +./usr/bin/protoize comp-obsolete gcc=45,obsolete +./usr/bin/ranlib comp-util-bin binutils +./usr/bin/rcs2log comp-cvs-bin cvs +./usr/bin/readelf comp-util-bin binutils +./usr/bin/rpcgen comp-c-bin +./usr/bin/size comp-util-bin binutils +./usr/bin/strings comp-util-bin binutils +./usr/bin/strip comp-util-bin binutils +./usr/bin/tsort comp-util-bin +./usr/bin/unifdef comp-util-bin +./usr/bin/unifdefall comp-util-bin +./usr/bin/unprotoize comp-c-bin gcc=4,gcccmds +./usr/bin/unprotoize comp-obsolete gcc=45,obsolete +./usr/bin/xgettext comp-c-bin +./usr/bin/xstr comp-c-bin +./usr/bin/yacc comp-c-bin +./usr/include/a.out.h comp-c-include +./usr/include/adosfs/adosfs.h comp-c-include +./usr/include/aio.h comp-c-include +./usr/include/altq/altq.h comp-c-include +./usr/include/altq/altq_afmap.h comp-c-include +./usr/include/altq/altq_blue.h comp-c-include +./usr/include/altq/altq_cbq.h comp-c-include +./usr/include/altq/altq_cdnr.h comp-c-include +./usr/include/altq/altq_classq.h comp-c-include +./usr/include/altq/altq_conf.h comp-c-include +./usr/include/altq/altq_fifoq.h comp-c-include +./usr/include/altq/altq_flowvalve.h comp-c-include +./usr/include/altq/altq_hfsc.h comp-c-include +./usr/include/altq/altq_jobs.h comp-c-include +./usr/include/altq/altq_priq.h comp-c-include +./usr/include/altq/altq_red.h comp-c-include +./usr/include/altq/altq_rio.h comp-c-include +./usr/include/altq/altq_rmclass.h comp-c-include +./usr/include/altq/altq_rmclass_debug.h comp-c-include +./usr/include/altq/altq_var.h comp-c-include +./usr/include/altq/altq_wfq.h comp-c-include +./usr/include/altq/altqconf.h comp-c-include +./usr/include/altq/if_altq.h comp-c-include +./usr/include/ar.h comp-c-include +./usr/include/archive.h comp-c-include +./usr/include/archive_entry.h comp-c-include +./usr/include/arpa/ftp.h comp-c-include +./usr/include/arpa/inet.h comp-c-include +./usr/include/arpa/nameser.h comp-c-include +./usr/include/arpa/nameser_compat.h comp-c-include +./usr/include/arpa/telnet.h comp-c-include +./usr/include/arpa/tftp.h comp-c-include +./usr/include/assert.h comp-c-include +./usr/include/atf comp-obsolete obsolete +./usr/include/atf-c comp-atf-include +./usr/include/atf-c++ comp-atf-include +./usr/include/atf-c++.hpp comp-atf-include atf +./usr/include/atf-c++/application.hpp comp-obsolete obsolete +./usr/include/atf-c++/atffile.hpp comp-obsolete obsolete +./usr/include/atf-c++/build.hpp comp-atf-include atf +./usr/include/atf-c++/check.hpp comp-atf-include atf +./usr/include/atf-c++/config.hpp comp-atf-include atf +./usr/include/atf-c++/env.hpp comp-obsolete obsolete +./usr/include/atf-c++/exceptions.hpp comp-obsolete obsolete +./usr/include/atf-c++/expand.hpp comp-obsolete obsolete +./usr/include/atf-c++/formats.hpp comp-obsolete obsolete +./usr/include/atf-c++/fs.hpp comp-obsolete obsolete +./usr/include/atf-c++/io.hpp comp-obsolete obsolete +./usr/include/atf-c++/macros.hpp comp-atf-include atf +./usr/include/atf-c++/parser.hpp comp-obsolete obsolete +./usr/include/atf-c++/process.hpp comp-obsolete obsolete +./usr/include/atf-c++/sanity.hpp comp-obsolete obsolete +./usr/include/atf-c++/signals.hpp comp-obsolete obsolete +./usr/include/atf-c++/tests.hpp comp-atf-include atf +./usr/include/atf-c++/text.hpp comp-obsolete obsolete +./usr/include/atf-c++/ui.hpp comp-obsolete obsolete +./usr/include/atf-c++/user.hpp comp-obsolete obsolete +./usr/include/atf-c++/utils.hpp comp-atf-include atf +./usr/include/atf-c.h comp-atf-include atf +./usr/include/atf-c/build.h comp-atf-include atf +./usr/include/atf-c/check.h comp-atf-include atf +./usr/include/atf-c/config.h comp-atf-include atf +./usr/include/atf-c/defs.h comp-atf-include atf +./usr/include/atf-c/dynstr.h comp-obsolete obsolete +./usr/include/atf-c/env.h comp-obsolete obsolete +./usr/include/atf-c/error.h comp-atf-include atf +./usr/include/atf-c/error_fwd.h comp-atf-include atf +./usr/include/atf-c/expand.h comp-obsolete obsolete +./usr/include/atf-c/fs.h comp-obsolete obsolete +./usr/include/atf-c/io.h comp-obsolete obsolete +./usr/include/atf-c/list.h comp-obsolete obsolete +./usr/include/atf-c/macros.h comp-atf-include atf +./usr/include/atf-c/map.h comp-obsolete obsolete +./usr/include/atf-c/object.h comp-obsolete obsolete +./usr/include/atf-c/process.h comp-obsolete obsolete +./usr/include/atf-c/sanity.h comp-obsolete obsolete +./usr/include/atf-c/signals.h comp-obsolete obsolete +./usr/include/atf-c/tc.h comp-atf-include atf +./usr/include/atf-c/tcr.h comp-obsolete obsolete +./usr/include/atf-c/text.h comp-obsolete obsolete +./usr/include/atf-c/tp.h comp-atf-include atf +./usr/include/atf-c/ui.h comp-obsolete obsolete +./usr/include/atf-c/user.h comp-obsolete obsolete +./usr/include/atf-c/utils.h comp-atf-include atf +./usr/include/atf.hpp comp-obsolete obsolete +./usr/include/atf/application.hpp comp-obsolete obsolete +./usr/include/atf/atffile.hpp comp-obsolete obsolete +./usr/include/atf/config.hpp comp-obsolete obsolete +./usr/include/atf/env.hpp comp-obsolete obsolete +./usr/include/atf/exceptions.hpp comp-obsolete obsolete +./usr/include/atf/expand.hpp comp-obsolete obsolete +./usr/include/atf/formats.hpp comp-obsolete obsolete +./usr/include/atf/fs.hpp comp-obsolete obsolete +./usr/include/atf/io.hpp comp-obsolete obsolete +./usr/include/atf/macros.hpp comp-obsolete obsolete +./usr/include/atf/parser.hpp comp-obsolete obsolete +./usr/include/atf/sanity.hpp comp-obsolete obsolete +./usr/include/atf/signals.hpp comp-obsolete obsolete +./usr/include/atf/tests.hpp comp-obsolete obsolete +./usr/include/atf/text.hpp comp-obsolete obsolete +./usr/include/atf/ui.hpp comp-obsolete obsolete +./usr/include/atf/user.hpp comp-obsolete obsolete +./usr/include/atf/utils.hpp comp-obsolete obsolete +./usr/include/atomic.h comp-c-include +./usr/include/bfd comp-obsolete obsolete +./usr/include/bfd/ansidecl.h comp-obsolete obsolete +./usr/include/bfd/bfd.h comp-obsolete obsolete +./usr/include/bfd/libiberty.h comp-obsolete obsolete +./usr/include/bitstring.h comp-c-include +./usr/include/bluetooth.h comp-c-include +./usr/include/bm.h comp-c-include +./usr/include/bzlib.h comp-c-include +./usr/include/cdbr.h comp-c-include +./usr/include/cdbw.h comp-c-include +./usr/include/cdk/alphalist.h comp-obsolete obsolete +./usr/include/cdk/binding.h comp-obsolete obsolete +./usr/include/cdk/buttonbox.h comp-obsolete obsolete +./usr/include/cdk/calendar.h comp-obsolete obsolete +./usr/include/cdk/cdk.h comp-obsolete obsolete +./usr/include/cdk/cdk_config.h comp-obsolete obsolete +./usr/include/cdk/cdk_objs.h comp-obsolete obsolete +./usr/include/cdk/cdk_util.h comp-obsolete obsolete +./usr/include/cdk/cdkscreen.h comp-obsolete obsolete +./usr/include/cdk/curdefs.h comp-obsolete obsolete +./usr/include/cdk/dialog.h comp-obsolete obsolete +./usr/include/cdk/draw.h comp-obsolete obsolete +./usr/include/cdk/entry.h comp-obsolete obsolete +./usr/include/cdk/fselect.h comp-obsolete obsolete +./usr/include/cdk/graph.h comp-obsolete obsolete +./usr/include/cdk/histogram.h comp-obsolete obsolete +./usr/include/cdk/itemlist.h comp-obsolete obsolete +./usr/include/cdk/label.h comp-obsolete obsolete +./usr/include/cdk/marquee.h comp-obsolete obsolete +./usr/include/cdk/matrix.h comp-obsolete obsolete +./usr/include/cdk/mentry.h comp-obsolete obsolete +./usr/include/cdk/menu.h comp-obsolete obsolete +./usr/include/cdk/radio.h comp-obsolete obsolete +./usr/include/cdk/scale.h comp-obsolete obsolete +./usr/include/cdk/scroll.h comp-obsolete obsolete +./usr/include/cdk/selection.h comp-obsolete obsolete +./usr/include/cdk/slider.h comp-obsolete obsolete +./usr/include/cdk/swindow.h comp-obsolete obsolete +./usr/include/cdk/template.h comp-obsolete obsolete +./usr/include/cdk/viewer.h comp-obsolete obsolete +./usr/include/complex.h comp-c-include +./usr/include/cpio.h comp-c-include +./usr/include/crypto/cryptodev.h comp-c-include +./usr/include/crypto/rmd160.h comp-obsolete obsolete +./usr/include/crypto/sha2.h comp-obsolete obsolete +./usr/include/ctype.h comp-c-include +./usr/include/curses.h comp-c-include +./usr/include/db.h comp-c-include +./usr/include/des.h comp-c-include crypto +./usr/include/dev/apm/apmbios.h comp-c-include +./usr/include/dev/apm/apmio.h comp-c-include +./usr/include/dev/ata/atareg.h comp-c-include +./usr/include/dev/ata/atavar.h comp-c-include +./usr/include/dev/ata/satareg.h comp-c-include +./usr/include/dev/ata/wdvar.h comp-obsolete obsolete +./usr/include/dev/auconv.h comp-obsolete obsolete +./usr/include/dev/audio_if.h comp-obsolete obsolete +./usr/include/dev/audiovar.h comp-obsolete obsolete +./usr/include/dev/biovar.h comp-c-include +./usr/include/dev/bluetooth comp-c-include +./usr/include/dev/bluetooth/bcsp.h comp-c-include +./usr/include/dev/bluetooth/btdev.h comp-c-include +./usr/include/dev/bluetooth/bthidev.h comp-c-include +./usr/include/dev/bluetooth/bthset.h comp-obsolete obsolete +./usr/include/dev/bluetooth/btsco.h comp-c-include +./usr/include/dev/bluetooth/btuart.h comp-obsolete obsolete +./usr/include/dev/ccdvar.h comp-c-include +./usr/include/dev/cgdvar.h comp-c-include +./usr/include/dev/clock_subr.h comp-obsolete obsolete +./usr/include/dev/cons.h comp-obsolete obsolete +./usr/include/dev/dec/clockvar.h comp-obsolete obsolete +./usr/include/dev/dec/dec_boot.h comp-c-include +./usr/include/dev/dec/lk201.h comp-c-include +./usr/include/dev/dec/mcclock_pad32.h comp-obsolete obsolete +./usr/include/dev/dec/mcclockvar.h comp-obsolete obsolete +./usr/include/dev/dm/netbsd-dm.h comp-c-include +./usr/include/dev/dmover/dmover_io.h comp-c-include +./usr/include/dev/dtv/dtvio.h comp-c-include +./usr/include/dev/dtv/dtvio_demux.h comp-c-include +./usr/include/dev/dtv/dtvio_frontend.h comp-c-include +./usr/include/dev/eisa/ahbreg.h comp-obsolete obsolete +./usr/include/dev/eisa/eisadevs.h comp-obsolete obsolete +./usr/include/dev/eisa/eisadevs_data.h comp-obsolete obsolete +./usr/include/dev/eisa/eisareg.h comp-obsolete obsolete +./usr/include/dev/eisa/eisavar.h comp-obsolete obsolete +./usr/include/dev/filemon/filemon.h comp-c-include +./usr/include/dev/fssvar.h comp-c-include +./usr/include/dev/hpc/hpcfbio.h comp-c-include +./usr/include/dev/i2c/i2c_bus.h comp-obsolete obsolete +./usr/include/dev/i2c/i2c_eeprom.h comp-obsolete obsolete +./usr/include/dev/i2c/i2c_io.h comp-c-include +./usr/include/dev/i2o/i2o.h comp-c-include +./usr/include/dev/i2o/iopio.h comp-c-include +./usr/include/dev/i2o/iopvar.h comp-obsolete obsolete +./usr/include/dev/ic/ad1848reg.h comp-obsolete obsolete +./usr/include/dev/ic/ahareg.h comp-obsolete obsolete +./usr/include/dev/ic/ahavar.h comp-obsolete obsolete +./usr/include/dev/ic/aic6360reg.h comp-obsolete obsolete +./usr/include/dev/ic/aic6360var.h comp-obsolete obsolete +./usr/include/dev/ic/aic77xxreg.h comp-obsolete obsolete +./usr/include/dev/ic/aic77xxvar.h comp-obsolete obsolete +./usr/include/dev/ic/aic7xxxreg.h comp-obsolete obsolete +./usr/include/dev/ic/aic7xxxvar.h comp-obsolete obsolete +./usr/include/dev/ic/am7930reg.h comp-obsolete obsolete +./usr/include/dev/ic/am7990reg.h comp-obsolete obsolete +./usr/include/dev/ic/am7990var.h comp-obsolete obsolete +./usr/include/dev/ic/athioctl.h comp-c-include +./usr/include/dev/ic/awictl.h comp-obsolete obsolete +./usr/include/dev/ic/bhareg.h comp-obsolete obsolete +./usr/include/dev/ic/bhavar.h comp-obsolete obsolete +./usr/include/dev/ic/bt431reg.h comp-obsolete obsolete +./usr/include/dev/ic/bt459reg.h comp-obsolete obsolete +./usr/include/dev/ic/bt463reg.h comp-obsolete obsolete +./usr/include/dev/ic/bt485reg.h comp-obsolete obsolete +./usr/include/dev/ic/bt8xx.h comp-c-include +./usr/include/dev/ic/cacreg.h comp-obsolete obsolete +./usr/include/dev/ic/cacvar.h comp-obsolete obsolete +./usr/include/dev/ic/cd1190reg.h comp-obsolete obsolete +./usr/include/dev/ic/cd1400reg.h comp-obsolete obsolete +./usr/include/dev/ic/comreg.h comp-obsolete obsolete +./usr/include/dev/ic/comvar.h comp-obsolete obsolete +./usr/include/dev/ic/cs4231reg.h comp-obsolete obsolete +./usr/include/dev/ic/cyreg.h comp-obsolete obsolete +./usr/include/dev/ic/cyvar.h comp-obsolete obsolete +./usr/include/dev/ic/dc21040reg.h comp-obsolete obsolete +./usr/include/dev/ic/dl10019reg.h comp-obsolete obsolete +./usr/include/dev/ic/dp8390reg.h comp-obsolete obsolete +./usr/include/dev/ic/dp8390var.h comp-obsolete obsolete +./usr/include/dev/ic/dptreg.h comp-obsolete obsolete +./usr/include/dev/ic/dptvar.h comp-obsolete obsolete +./usr/include/dev/ic/ds.h comp-obsolete obsolete +./usr/include/dev/ic/elink3reg.h comp-obsolete obsolete +./usr/include/dev/ic/elink3var.h comp-obsolete obsolete +./usr/include/dev/ic/hayespreg.h comp-obsolete obsolete +./usr/include/dev/ic/hd44780var.h comp-c-include +./usr/include/dev/ic/i8042reg.h comp-obsolete obsolete +./usr/include/dev/ic/i82365reg.h comp-obsolete obsolete +./usr/include/dev/ic/i82365var.h comp-obsolete obsolete +./usr/include/dev/ic/i8237reg.h comp-obsolete obsolete +./usr/include/dev/ic/i8253reg.h comp-obsolete obsolete +./usr/include/dev/ic/i82586reg.h comp-obsolete obsolete +./usr/include/dev/ic/i82586var.h comp-obsolete obsolete +./usr/include/dev/ic/i82595reg.h comp-obsolete obsolete +./usr/include/dev/ic/icp_ioctl.h comp-c-include +./usr/include/dev/ic/icpreg.h comp-c-include +./usr/include/dev/ic/ics2101reg.h comp-obsolete obsolete +./usr/include/dev/ic/ims332reg.h comp-obsolete obsolete +./usr/include/dev/ic/intersil7170.h comp-obsolete obsolete +./usr/include/dev/ic/interwavereg.h comp-obsolete obsolete +./usr/include/dev/ic/interwavevar.h comp-obsolete obsolete +./usr/include/dev/ic/isp_ioctl.h comp-c-include +./usr/include/dev/ic/isp_netbsd.h comp-obsolete obsolete +./usr/include/dev/ic/ispmbox.h comp-obsolete obsolete +./usr/include/dev/ic/ispreg.h comp-obsolete obsolete +./usr/include/dev/ic/ispvar.h comp-obsolete obsolete +./usr/include/dev/ic/lemacreg.h comp-obsolete obsolete +./usr/include/dev/ic/lemacvar.h comp-obsolete obsolete +./usr/include/dev/ic/lptreg.h comp-obsolete obsolete +./usr/include/dev/ic/lptvar.h comp-obsolete obsolete +./usr/include/dev/ic/mb86960reg.h comp-obsolete obsolete +./usr/include/dev/ic/mb86960var.h comp-obsolete obsolete +./usr/include/dev/ic/mc146818reg.h comp-obsolete obsolete +./usr/include/dev/ic/mc68450reg.h comp-obsolete obsolete +./usr/include/dev/ic/mc6845reg.h comp-obsolete obsolete +./usr/include/dev/ic/midwayreg.h comp-obsolete obsolete +./usr/include/dev/ic/midwayvar.h comp-obsolete obsolete +./usr/include/dev/ic/mlxio.h comp-c-include +./usr/include/dev/ic/mlxreg.h comp-c-include +./usr/include/dev/ic/mlxvar.h comp-obsolete obsolete +./usr/include/dev/ic/ncr5380reg.h comp-obsolete obsolete +./usr/include/dev/ic/ncr5380var.h comp-obsolete obsolete +./usr/include/dev/ic/ncr53c400reg.h comp-obsolete obsolete +./usr/include/dev/ic/ncr53c9xreg.h comp-obsolete obsolete +./usr/include/dev/ic/ncr53c9xvar.h comp-obsolete obsolete +./usr/include/dev/ic/ne2000reg.h comp-obsolete obsolete +./usr/include/dev/ic/ne2000var.h comp-obsolete obsolete +./usr/include/dev/ic/nec765reg.h comp-obsolete obsolete +./usr/include/dev/ic/ns16450reg.h comp-obsolete obsolete +./usr/include/dev/ic/ns16550reg.h comp-obsolete obsolete +./usr/include/dev/ic/opl3sa3.h comp-obsolete obsolete +./usr/include/dev/ic/opl3sa3reg.h comp-obsolete obsolete +./usr/include/dev/ic/pcdisplay.h comp-obsolete obsolete +./usr/include/dev/ic/pcdisplayvar.h comp-obsolete obsolete +./usr/include/dev/ic/pckbcvar.h comp-obsolete obsolete +./usr/include/dev/ic/pdqreg.h comp-obsolete obsolete +./usr/include/dev/ic/pdqvar.h comp-obsolete obsolete +./usr/include/dev/ic/rrunnerreg.h comp-c-include +./usr/include/dev/ic/rrunnervar.h comp-c-include +./usr/include/dev/ic/smc83c170reg.h comp-obsolete obsolete +./usr/include/dev/ic/smc83c170var.h comp-obsolete obsolete +./usr/include/dev/ic/smc90cx6reg.h comp-obsolete obsolete +./usr/include/dev/ic/smc91cxxreg.h comp-obsolete obsolete +./usr/include/dev/ic/smc91cxxvar.h comp-obsolete obsolete +./usr/include/dev/ic/smc93cx6var.h comp-obsolete obsolete +./usr/include/dev/ic/st16650reg.h comp-obsolete obsolete +./usr/include/dev/ic/tms320av110reg.h comp-obsolete obsolete +./usr/include/dev/ic/tms320av110var.h comp-obsolete obsolete +./usr/include/dev/ic/uhareg.h comp-obsolete obsolete +./usr/include/dev/ic/uhavar.h comp-obsolete obsolete +./usr/include/dev/ic/vgareg.h comp-obsolete obsolete +./usr/include/dev/ic/vgavar.h comp-obsolete obsolete +./usr/include/dev/ic/wdcreg.h comp-c-include +./usr/include/dev/ic/wdcvar.h comp-obsolete obsolete +./usr/include/dev/ic/wi_ieee.h comp-c-include +./usr/include/dev/ic/z8530reg.h comp-obsolete obsolete +./usr/include/dev/ic/z8530sc.h comp-obsolete obsolete +./usr/include/dev/ieee1394/fwiso_ioctl.h comp-obsolete obsolete +./usr/include/dev/ir/irdaio.h comp-c-include +./usr/include/dev/irdaio.h comp-obsolete obsolete +./usr/include/dev/isa/ad1848var.h comp-obsolete obsolete +./usr/include/dev/isa/ahareg.h comp-obsolete obsolete +./usr/include/dev/isa/ariareg.h comp-obsolete obsolete +./usr/include/dev/isa/btreg.h comp-obsolete obsolete +./usr/include/dev/isa/com_multi.h comp-obsolete obsolete +./usr/include/dev/isa/comreg.h comp-obsolete obsolete +./usr/include/dev/isa/comvar.h comp-obsolete obsolete +./usr/include/dev/isa/cs4231var.h comp-obsolete obsolete +./usr/include/dev/isa/elink.h comp-obsolete obsolete +./usr/include/dev/isa/esp_isavar.h comp-obsolete obsolete +./usr/include/dev/isa/espvar.h comp-obsolete obsolete +./usr/include/dev/isa/gusreg.h comp-obsolete obsolete +./usr/include/dev/isa/ics2101var.h comp-obsolete obsolete +./usr/include/dev/isa/if_aireg.h comp-obsolete obsolete +./usr/include/dev/isa/if_ecreg.h comp-obsolete obsolete +./usr/include/dev/isa/if_edreg.h comp-obsolete obsolete +./usr/include/dev/isa/if_efreg.h comp-obsolete obsolete +./usr/include/dev/isa/if_egreg.h comp-obsolete obsolete +./usr/include/dev/isa/if_elreg.h comp-obsolete obsolete +./usr/include/dev/isa/if_epreg.h comp-obsolete obsolete +./usr/include/dev/isa/if_fereg.h comp-obsolete obsolete +./usr/include/dev/isa/if_ie507.h comp-obsolete obsolete +./usr/include/dev/isa/if_ieatt.h comp-obsolete obsolete +./usr/include/dev/isa/if_iee16.h comp-obsolete obsolete +./usr/include/dev/isa/if_ixreg.h comp-obsolete obsolete +./usr/include/dev/isa/if_levar.h comp-obsolete obsolete +./usr/include/dev/isa/if_wereg.h comp-obsolete obsolete +./usr/include/dev/isa/isadmareg.h comp-obsolete obsolete +./usr/include/dev/isa/isadmavar.h comp-obsolete obsolete +./usr/include/dev/isa/isareg.h comp-obsolete obsolete +./usr/include/dev/isa/isavar.h comp-obsolete obsolete +./usr/include/dev/isa/isvio.h comp-c-include +./usr/include/dev/isa/lptreg.h comp-obsolete obsolete +./usr/include/dev/isa/madreg.h comp-obsolete obsolete +./usr/include/dev/isa/mcdreg.h comp-obsolete obsolete +./usr/include/dev/isa/pasreg.h comp-obsolete obsolete +./usr/include/dev/isa/pcdisplayvar.h comp-obsolete obsolete +./usr/include/dev/isa/pckbcvar.h comp-obsolete obsolete +./usr/include/dev/isa/pcppireg.h comp-obsolete obsolete +./usr/include/dev/isa/pcppivar.h comp-obsolete obsolete +./usr/include/dev/isa/pssreg.h comp-obsolete obsolete +./usr/include/dev/isa/satlinkio.h comp-c-include +./usr/include/dev/isa/satlinkreg.h comp-obsolete obsolete +./usr/include/dev/isa/sbdspvar.h comp-obsolete obsolete +./usr/include/dev/isa/sbreg.h comp-obsolete obsolete +./usr/include/dev/isa/sbvar.h comp-obsolete obsolete +./usr/include/dev/isa/spkrio.h comp-c-include +./usr/include/dev/isa/vga_isavar.h comp-obsolete obsolete +./usr/include/dev/isa/wdlink.h comp-obsolete obsolete +./usr/include/dev/isa/wdreg.h comp-obsolete obsolete +./usr/include/dev/isa/wdsreg.h comp-obsolete obsolete +./usr/include/dev/isa/weaselreg.h comp-obsolete obsolete +./usr/include/dev/isa/wssreg.h comp-obsolete obsolete +./usr/include/dev/isa/wssvar.h comp-obsolete obsolete +./usr/include/dev/isa/wtreg.h comp-c-include +./usr/include/dev/isa/ymvar.h comp-obsolete obsolete +./usr/include/dev/isapnp/if_levar.h comp-obsolete obsolete +./usr/include/dev/isapnp/isapnpreg.h comp-obsolete obsolete +./usr/include/dev/isapnp/isapnpvar.h comp-obsolete obsolete +./usr/include/dev/iscsi/iscsi.h comp-c-include iscsi +./usr/include/dev/iscsi/iscsi_ioctl.h comp-c-include iscsi +./usr/include/dev/iscsi/iscsi_perf.h comp-c-include iscsi +./usr/include/dev/iscsi/iscsi_test.h comp-c-include iscsi +./usr/include/dev/keylock.h comp-c-include +./usr/include/dev/kttcpio.h comp-c-include +./usr/include/dev/lockstat.h comp-c-include +./usr/include/dev/md.h comp-c-include +./usr/include/dev/microcode/aic7xxx/aic7xxx_reg.h comp-obsolete obsolete +./usr/include/dev/microcode/aic7xxx/aic7xxx_seq.h comp-obsolete obsolete +./usr/include/dev/microcode/isp/asm_pci.h comp-obsolete obsolete +./usr/include/dev/microcode/isp/asm_sbus.h comp-obsolete obsolete +./usr/include/dev/mii/generic_phy.h comp-obsolete obsolete +./usr/include/dev/mii/icsphyreg.h comp-obsolete obsolete +./usr/include/dev/mii/inphyreg.h comp-obsolete obsolete +./usr/include/dev/mii/iophyreg.h comp-obsolete obsolete +./usr/include/dev/mii/lxtphyreg.h comp-obsolete obsolete +./usr/include/dev/mii/mii.h comp-obsolete obsolete +./usr/include/dev/mii/mii_adapter.h comp-obsolete obsolete +./usr/include/dev/mii/mii_adapters_id.h comp-obsolete obsolete +./usr/include/dev/mii/mii_phy.h comp-obsolete obsolete +./usr/include/dev/mii/miivar.h comp-obsolete obsolete +./usr/include/dev/mii/nsphyreg.h comp-obsolete obsolete +./usr/include/dev/mii/nsphyterreg.h comp-obsolete obsolete +./usr/include/dev/mii/qsphyreg.h comp-obsolete obsolete +./usr/include/dev/mii/tlphy.h comp-obsolete obsolete +./usr/include/dev/mii/tlphyreg.h comp-obsolete obsolete +./usr/include/dev/mii/tlphyvar.h comp-obsolete obsolete +./usr/include/dev/mii/tqphyreg.h comp-obsolete obsolete +./usr/include/dev/mulaw.h comp-obsolete obsolete +./usr/include/dev/ofisa/ofisavar.h comp-obsolete obsolete +./usr/include/dev/ofw/ofw_pci.h comp-obsolete obsolete +./usr/include/dev/ofw/openfirm.h comp-obsolete obsolete +./usr/include/dev/ofw/openfirmio.h comp-c-include +./usr/include/dev/pci/amrio.h comp-c-include +./usr/include/dev/pci/amrreg.h comp-c-include +./usr/include/dev/pci/hdaudio/hdaudioio.h comp-c-include +./usr/include/dev/pci/hdaudio/hdaudioreg.h comp-c-include +./usr/include/dev/pci/if_devar.h comp-obsolete obsolete +./usr/include/dev/pci/if_fxpreg.h comp-obsolete obsolete +./usr/include/dev/pci/if_fxpvar.h comp-obsolete obsolete +./usr/include/dev/pci/if_levar.h comp-obsolete obsolete +./usr/include/dev/pci/if_lmc.h comp-c-include +./usr/include/dev/pci/if_lmc_types.h comp-obsolete obsolete +./usr/include/dev/pci/if_lmcioctl.h comp-obsolete obsolete +./usr/include/dev/pci/if_lmcvar.h comp-obsolete obsolete +./usr/include/dev/pci/if_tlregs.h comp-obsolete obsolete +./usr/include/dev/pci/mlyio.h comp-c-include +./usr/include/dev/pci/mlyreg.h comp-c-include +./usr/include/dev/pci/ncr_reg.h comp-obsolete obsolete +./usr/include/dev/pci/ncrreg.h comp-obsolete obsolete +./usr/include/dev/pci/pcidevs.h comp-c-include +./usr/include/dev/pci/pcidevs_data.h comp-c-include +./usr/include/dev/pci/pciidereg.h comp-obsolete obsolete +./usr/include/dev/pci/pciidevar.h comp-obsolete obsolete +./usr/include/dev/pci/pciio.h comp-c-include +./usr/include/dev/pci/pcireg.h comp-c-include +./usr/include/dev/pci/pcivar.h comp-obsolete obsolete +./usr/include/dev/pci/ppbreg.h comp-obsolete obsolete +./usr/include/dev/pci/tgareg.h comp-c-include +./usr/include/dev/pci/tgavar.h comp-obsolete obsolete +./usr/include/dev/pci/tweio.h comp-c-include +./usr/include/dev/pci/twereg.h comp-c-include +./usr/include/dev/pci/vga_pcivar.h comp-obsolete obsolete +./usr/include/dev/pckbc/pckbdreg.h comp-c-include +./usr/include/dev/pckbc/pckbdvar.h comp-obsolete obsolete +./usr/include/dev/pckbc/psmreg.h comp-obsolete obsolete +./usr/include/dev/pcmcia/if_cnwioctl.h comp-c-include +./usr/include/dev/pcmcia/if_rayreg.h comp-c-include +./usr/include/dev/pcmcia/if_wi_ieee.h comp-obsolete obsolete +./usr/include/dev/pcmcia/pcmciachip.h comp-obsolete obsolete +./usr/include/dev/pcmcia/pcmciareg.h comp-obsolete obsolete +./usr/include/dev/pcmcia/pcmciavar.h comp-obsolete obsolete +./usr/include/dev/pud/pud_msgif.h comp-c-include +./usr/include/dev/putter/putter.h comp-c-include +./usr/include/dev/raidframe/raidframeio.h comp-c-include +./usr/include/dev/raidframe/raidframevar.h comp-c-include +./usr/include/dev/ramdisk.h comp-obsolete obsolete +./usr/include/dev/rcons/raster.h comp-obsolete obsolete +./usr/include/dev/rcons/rcons.h comp-obsolete obsolete +./usr/include/dev/rcons/rcons_subr.h comp-obsolete obsolete +./usr/include/dev/sbus/mbppio.h comp-c-include +./usr/include/dev/scsipi/atapi_all.h comp-obsolete obsolete +./usr/include/dev/scsipi/atapi_cd.h comp-obsolete obsolete +./usr/include/dev/scsipi/atapi_disk.h comp-obsolete obsolete +./usr/include/dev/scsipi/atapiconf.h comp-obsolete obsolete +./usr/include/dev/scsipi/cd_link.h comp-obsolete obsolete +./usr/include/dev/scsipi/cdvar.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsi_all.h comp-c-include +./usr/include/dev/scsipi/scsi_cd.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsi_changer.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsi_ctron_ether.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsi_disk.h comp-c-include +./usr/include/dev/scsipi/scsi_message.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsi_scanner.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsi_spc.h comp-c-include +./usr/include/dev/scsipi/scsi_tape.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsiconf.h comp-c-include +./usr/include/dev/scsipi/scsipi_all.h comp-c-include +./usr/include/dev/scsipi/scsipi_base.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsipi_cd.h comp-c-include +./usr/include/dev/scsipi/scsipi_debug.h comp-c-include +./usr/include/dev/scsipi/scsipi_disk.h comp-obsolete obsolete +./usr/include/dev/scsipi/scsipiconf.h comp-c-include +./usr/include/dev/scsipi/sdvar.h comp-obsolete obsolete +./usr/include/dev/scsipi/ses.h comp-c-include +./usr/include/dev/scsipi/ss_mustek.h comp-obsolete obsolete +./usr/include/dev/scsipi/ssvar.h comp-obsolete obsolete +./usr/include/dev/sun/disklabel.h comp-c-include +./usr/include/dev/sun/eeprom.h comp-c-include +./usr/include/dev/sun/event_var.h comp-obsolete obsolete +./usr/include/dev/sun/fbio.h comp-c-include +./usr/include/dev/sun/idprom.h comp-c-include +./usr/include/dev/sun/kbd_reg.h comp-c-include +./usr/include/dev/sun/kbd_tables.h comp-obsolete obsolete +./usr/include/dev/sun/kbd_xlate.h comp-obsolete obsolete +./usr/include/dev/sun/kbio.h comp-c-include +./usr/include/dev/sun/sun_boot.h comp-obsolete obsolete +./usr/include/dev/sun/vuid_event.h comp-c-include +./usr/include/dev/tc/ascvar.h comp-obsolete obsolete +./usr/include/dev/tc/clockvar.h comp-obsolete obsolete +./usr/include/dev/tc/if_levar.h comp-obsolete obsolete +./usr/include/dev/tc/ioasicreg.h comp-obsolete obsolete +./usr/include/dev/tc/ioasicvar.h comp-obsolete obsolete +./usr/include/dev/tc/sfbreg.h comp-c-include +./usr/include/dev/tc/sticio.h comp-c-include +./usr/include/dev/tc/sticreg.h comp-c-include +./usr/include/dev/tc/sticvar.h comp-obsolete obsolete +./usr/include/dev/tc/tcdevs.h comp-obsolete obsolete +./usr/include/dev/tc/tcdevs_data.h comp-obsolete obsolete +./usr/include/dev/tc/tcdsreg.h comp-obsolete obsolete +./usr/include/dev/tc/tcdsvar.h comp-obsolete obsolete +./usr/include/dev/tc/tcreg.h comp-obsolete obsolete +./usr/include/dev/tc/tcvar.h comp-obsolete obsolete +./usr/include/dev/usb/ukyopon.h comp-c-include +./usr/include/dev/usb/urio.h comp-c-include +./usr/include/dev/usb/usb.h comp-c-include +./usr/include/dev/usb/usbcdc.h comp-obsolete obsolete +./usr/include/dev/usb/usbdevs.h comp-obsolete obsolete +./usr/include/dev/usb/usbhid.h comp-c-include +./usr/include/dev/usb/utoppy.h comp-c-include +./usr/include/dev/vinum/request.h comp-obsolete obsolete +./usr/include/dev/vinum/statetexts.h comp-obsolete obsolete +./usr/include/dev/vinum/vinumext.h comp-obsolete obsolete +./usr/include/dev/vinum/vinumhdr.h comp-obsolete obsolete +./usr/include/dev/vinum/vinumio.h comp-obsolete obsolete +./usr/include/dev/vinum/vinumkw.h comp-obsolete obsolete +./usr/include/dev/vinum/vinumobj.h comp-obsolete obsolete +./usr/include/dev/vinum/vinumstate.h comp-obsolete obsolete +./usr/include/dev/vinum/vinumutil.h comp-obsolete obsolete +./usr/include/dev/vinum/vinumvar.h comp-obsolete obsolete +./usr/include/dev/vme/vmevar.h comp-obsolete obsolete +./usr/include/dev/vme/xdreg.h comp-obsolete obsolete +./usr/include/dev/vme/xdvar.h comp-obsolete obsolete +./usr/include/dev/vme/xio.h comp-c-include +./usr/include/dev/vme/xyreg.h comp-obsolete obsolete +./usr/include/dev/vme/xyvar.h comp-obsolete obsolete +./usr/include/dev/vndioctl.h comp-obsolete obsolete +./usr/include/dev/vndvar.h comp-c-include +./usr/include/dev/vnioctl.h comp-obsolete obsolete +./usr/include/dev/wscons/ascii.h comp-obsolete obsolete +./usr/include/dev/wscons/wscons_callbacks.h comp-obsolete obsolete +./usr/include/dev/wscons/wscons_raster.h comp-obsolete obsolete +./usr/include/dev/wscons/wscons_rfont.h comp-obsolete obsolete +./usr/include/dev/wscons/wsconsio.h comp-c-include +./usr/include/dev/wscons/wsdisplay_usl_io.h comp-c-include +./usr/include/dev/wscons/wsdisplayvar.h comp-obsolete obsolete +./usr/include/dev/wscons/wsemulvar.h comp-obsolete obsolete +./usr/include/dev/wscons/wseventvar.h comp-obsolete obsolete +./usr/include/dev/wscons/wskbdvar.h comp-obsolete obsolete +./usr/include/dev/wscons/wsksymdef.h comp-c-include +./usr/include/dev/wscons/wsksymvar.h comp-c-include +./usr/include/dev/wscons/wsmousevar.h comp-obsolete obsolete +./usr/include/dirent.h comp-c-include +./usr/include/disktab.h comp-c-include +./usr/include/dlfcn.h comp-c-include +./usr/include/dm.h comp-c-include +./usr/include/dns_sd.h comp-mdns-include mdns +./usr/include/dwarf.h comp-c-include +./usr/include/elf.h comp-c-include +./usr/include/err.h comp-c-include +./usr/include/errno.h comp-c-include +./usr/include/eti.h comp-c-include +./usr/include/evdns.h comp-c-include +./usr/include/event-config.h comp-c-include +./usr/include/event.h comp-c-include +./usr/include/evhttp.h comp-c-include +./usr/include/evrpc.h comp-c-include +./usr/include/evutil.h comp-c-include +./usr/include/execinfo.h comp-c-include +./usr/include/expat.h comp-c-include +./usr/include/expat_external.h comp-c-include +./usr/include/fcntl.h comp-c-include +./usr/include/fenv.h comp-c-include +./usr/include/fetch.h comp-c-include +./usr/include/filecorefs/filecore_mount.h comp-c-include +./usr/include/float.h comp-c-include +./usr/include/fmtmsg.h comp-c-include +./usr/include/fnmatch.h comp-c-include +./usr/include/form.h comp-c-include +./usr/include/frame.h comp-obsolete obsolete +./usr/include/fs/efs/efs.h comp-c-include +./usr/include/fs/efs/efs_mount.h comp-c-include +./usr/include/fs/efs/efs_sb.h comp-c-include +./usr/include/fs/hfs/hfs.h comp-c-include +./usr/include/fs/hfs/libhfs.h comp-c-include +./usr/include/fs/hfsp/hfsp.h comp-obsolete obsolete +./usr/include/fs/hfsp/libhfsp.h comp-obsolete obsolete +./usr/include/fs/nilfs/nilfs_fs.h comp-c-include +./usr/include/fs/nilfs/nilfs_mount.h comp-c-include +./usr/include/fs/ptyfs/ptyfs.h comp-c-include +./usr/include/fs/puffs/puffs_msgif.h comp-puffs-include +./usr/include/fs/smbfs/smbfs.h comp-c-include +./usr/include/fs/sysvbfs/bfs.h comp-c-include +./usr/include/fs/sysvbfs/sysvbfs_args.h comp-c-include +./usr/include/fs/tmpfs/tmpfs_args.h comp-c-include +./usr/include/fs/udf/ecma167-udf.h comp-c-include +./usr/include/fs/udf/udf_mount.h comp-c-include +./usr/include/fs/v7fs/v7fs.h comp-c-include +./usr/include/fs/v7fs/v7fs_args.h comp-c-include +./usr/include/fstab.h comp-c-include +./usr/include/fts.h comp-c-include +./usr/include/ftw.h comp-c-include +./usr/include/fuse.h comp-refuse-include +./usr/include/fuse_opt.h comp-refuse-include +./usr/include/g++/ACG.h comp-obsolete obsolete +./usr/include/g++/AllocRing.h comp-obsolete obsolete +./usr/include/g++/Binomial.h comp-obsolete obsolete +./usr/include/g++/BitSet.h comp-obsolete obsolete +./usr/include/g++/BitString.h comp-obsolete obsolete +./usr/include/g++/Complex.h comp-obsolete obsolete +./usr/include/g++/CursesW.h comp-obsolete obsolete +./usr/include/g++/DLList.h comp-obsolete obsolete +./usr/include/g++/DiscUnif.h comp-obsolete obsolete +./usr/include/g++/Erlang.h comp-obsolete obsolete +./usr/include/g++/Fix.h comp-obsolete obsolete +./usr/include/g++/Fix16.h comp-obsolete obsolete +./usr/include/g++/Fix24.h comp-obsolete obsolete +./usr/include/g++/FlexLexer.h comp-cxx-include +./usr/include/g++/Geom.h comp-obsolete obsolete +./usr/include/g++/GetOpt.h comp-obsolete obsolete +./usr/include/g++/HypGeom.h comp-obsolete obsolete +./usr/include/g++/Incremental.h comp-obsolete obsolete +./usr/include/g++/Integer.h comp-obsolete obsolete +./usr/include/g++/LogNorm.h comp-obsolete obsolete +./usr/include/g++/MLCG.h comp-obsolete obsolete +./usr/include/g++/NegExp.h comp-obsolete obsolete +./usr/include/g++/Normal.h comp-obsolete obsolete +./usr/include/g++/Obstack.h comp-obsolete obsolete +./usr/include/g++/Pix.h comp-obsolete obsolete +./usr/include/g++/PlotFile.h comp-obsolete obsolete +./usr/include/g++/Poisson.h comp-obsolete obsolete +./usr/include/g++/RNG.h comp-obsolete obsolete +./usr/include/g++/Random.h comp-obsolete obsolete +./usr/include/g++/Rational.h comp-obsolete obsolete +./usr/include/g++/Regex.h comp-obsolete obsolete +./usr/include/g++/RndInt.h comp-obsolete obsolete +./usr/include/g++/SFile.h comp-obsolete obsolete +./usr/include/g++/SLList.h comp-obsolete obsolete +./usr/include/g++/SmplHist.h comp-obsolete obsolete +./usr/include/g++/SmplStat.h comp-obsolete obsolete +./usr/include/g++/String.h comp-obsolete obsolete +./usr/include/g++/Uniform.h comp-obsolete obsolete +./usr/include/g++/Weibull.h comp-obsolete obsolete +./usr/include/g++/_G_config.h comp-obsolete obsolete +./usr/include/g++/algo.h comp-obsolete obsolete +./usr/include/g++/algobase.h comp-obsolete obsolete +./usr/include/g++/algorithm comp-cxx-include gcc,cxx +./usr/include/g++/alloc.h comp-obsolete obsolete +./usr/include/g++/array comp-cxx-include gcc=45,cxx +./usr/include/g++/atomic comp-cxx-include gcc=45,cxx +./usr/include/g++/backward/algo.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/algo.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/algobase.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/algobase.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/alloc.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/alloc.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/auto_ptr.h comp-cxx-include gcc=45,cxx +./usr/include/g++/backward/backward_warning.h comp-cxx-include gcc,cxx +./usr/include/g++/backward/binders.h comp-cxx-include gcc=45,cxx +./usr/include/g++/backward/bvector.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/bvector.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/complex.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/complex.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/defalloc.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/defalloc.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/deque.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/deque.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/fstream.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/fstream.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/function.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/function.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/hash_fun.h comp-cxx-include gcc=45,cxx +./usr/include/g++/backward/hash_map comp-cxx-include gcc=45,cxx +./usr/include/g++/backward/hash_map.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/hash_map.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/hash_set comp-cxx-include gcc=45,cxx +./usr/include/g++/backward/hash_set.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/hash_set.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/hashtable.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/hashtable.h comp-cxx-include gcc=45,cxx +./usr/include/g++/backward/heap.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/heap.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/iomanip.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/iomanip.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/iostream.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/iostream.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/istream.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/istream.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/iterator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/iterator.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/list.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/list.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/map.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/map.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/multimap.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/multimap.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/multiset.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/multiset.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/new.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/new.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/ostream.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/ostream.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/pair.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/pair.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/queue.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/queue.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/rope.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/rope.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/set.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/set.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/slist.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/slist.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/stack.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/stack.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/stream.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/stream.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/streambuf.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/streambuf.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/strstream comp-cxx-include gcc,cxx +./usr/include/g++/backward/tempbuf.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/tempbuf.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/tree.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/tree.h comp-obsolete gcc=45,obsolete +./usr/include/g++/backward/vector.h comp-cxx-include gcc=4,cxx +./usr/include/g++/backward/vector.h comp-obsolete gcc=45,obsolete +./usr/include/g++/bitdo1.h comp-obsolete obsolete +./usr/include/g++/bitdo2.h comp-obsolete obsolete +./usr/include/g++/bitprims.h comp-obsolete obsolete +./usr/include/g++/bits/algorithmfwd.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/atomic_0.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/atomic_2.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/atomic_base.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/atomic_word.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/atomic_word.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/atomicfwd_c.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/atomicfwd_cxx.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/atomicity.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/atomicity.h comp-obsolete gcc=45,obsolete +./usr/include/g++/bits/basic_file.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/basic_ios.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/basic_ios.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/basic_string.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/basic_string.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/boost_concept_check.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/c++0x_warning.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/c++allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/c++allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/c++config.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/c++io.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/c++locale.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/char_traits.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/cmath.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/codecvt.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/codecvt_specializations.h comp-cxx-include gcc=3,cxx +./usr/include/g++/bits/codecvt_specializations.h comp-obsolete gcc=4,obsolete +./usr/include/g++/bits/concept_check.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/concurrence.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/concurrence.h comp-obsolete gcc=45,obsolete +./usr/include/g++/bits/cpp_type_traits.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/cpu_defines.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/cpu_defines.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/ctype_base.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/ctype_inline.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/ctype_noninline.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/cxxabi_tweaks.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/cxxabi_tweaks.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/deque.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/error_constants.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/extc++.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/forward_list.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/forward_list.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/fpos.h comp-cxx-include gcc=3,cxx +./usr/include/g++/bits/fpos.h comp-obsolete gcc=4,obsolete +./usr/include/g++/bits/fstream.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/functexcept.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/functional_hash.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/gslice.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/gslice_array.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/gthr-default.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/gthr-posix.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/gthr-single.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/gthr-tpf.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/gthr-tpf.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/gthr.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/hashtable.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/hashtable_policy.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/indirect_array.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/ios_base.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/istream.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/list.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/locale_classes.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/locale_classes.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/locale_facets.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/locale_facets.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/locale_facets_nonio.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/locale_facets_nonio.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/localefwd.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/mask_array.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/messages_members.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/move.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/os_defines.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/ostream.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/ostream_insert.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/postypes.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/postypes.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/pthread_allocimpl.h comp-cxx-include gcc=3,cxx +./usr/include/g++/bits/pthread_allocimpl.h comp-obsolete gcc=4,obsolete +./usr/include/g++/bits/random.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/random.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/shared_ptr.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/shared_ptr_base.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/slice_array.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/sstream.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/stdc++.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/stdtr1c++.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/stl_algo.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_algobase.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_alloc.h comp-cxx-include gcc=3,cxx +./usr/include/g++/bits/stl_alloc.h comp-obsolete gcc=4,obsolete +./usr/include/g++/bits/stl_bvector.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_construct.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_deque.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_function.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_heap.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_iterator.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_iterator_base_funcs.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_iterator_base_types.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_list.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_map.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_multimap.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_multiset.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_numeric.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_pair.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_pthread_alloc.h comp-cxx-include gcc=3,cxx +./usr/include/g++/bits/stl_pthread_alloc.h comp-obsolete gcc=4,obsolete +./usr/include/g++/bits/stl_queue.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_raw_storage_iter.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_relops.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_set.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_stack.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_tempbuf.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_threads.h comp-cxx-include gcc=3,cxx +./usr/include/g++/bits/stl_threads.h comp-obsolete gcc=4,obsolete +./usr/include/g++/bits/stl_tree.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_uninitialized.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stl_vector.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stream_iterator.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/streambuf.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/streambuf_iterator.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/stringfwd.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/time_members.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/type_traits.h comp-cxx-include gcc=3,cxx +./usr/include/g++/bits/type_traits.h comp-obsolete gcc=4,obsolete +./usr/include/g++/bits/unique_ptr.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/unordered_map.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/unordered_set.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/valarray_after.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/valarray_after.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/valarray_array.h comp-cxx-include gcc,cxx +./usr/include/g++/bits/valarray_array.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bits/valarray_before.h comp-cxx-include gcc=4,cxx +./usr/include/g++/bits/valarray_before.h comp-cxx-include gcc=45,cxx +./usr/include/g++/bits/valarray_meta.h comp-cxx-include gcc=3,cxx +./usr/include/g++/bits/valarray_meta.h comp-obsolete gcc=4,obsolete +./usr/include/g++/bits/vector.tcc comp-cxx-include gcc,cxx +./usr/include/g++/bitset comp-cxx-include gcc,cxx +./usr/include/g++/bool.h comp-obsolete obsolete +./usr/include/g++/builtin.h comp-obsolete obsolete +./usr/include/g++/builtinbuf.h comp-obsolete obsolete +./usr/include/g++/bvector.h comp-obsolete obsolete +./usr/include/g++/c++config.h comp-cxx-include gcc=4,cxx +./usr/include/g++/c++config.h comp-obsolete gcc=45,obsolete +./usr/include/g++/cassert comp-cxx-include gcc,cxx +./usr/include/g++/ccomplex comp-cxx-include gcc=45,cxx +./usr/include/g++/cctype comp-cxx-include gcc,cxx +./usr/include/g++/cerrno comp-cxx-include gcc,cxx +./usr/include/g++/cfenv comp-cxx-include gcc=45,cxx +./usr/include/g++/cfloat comp-cxx-include gcc,cxx +./usr/include/g++/chrono comp-cxx-include gcc=45,cxx +./usr/include/g++/cinttypes comp-cxx-include gcc=45,cxx +./usr/include/g++/ciso646 comp-cxx-include gcc,cxx +./usr/include/g++/climits comp-cxx-include gcc,cxx +./usr/include/g++/clocale comp-cxx-include gcc,cxx +./usr/include/g++/cmath comp-cxx-include gcc,cxx +./usr/include/g++/compare.h comp-obsolete obsolete +./usr/include/g++/complex comp-cxx-include gcc,cxx +./usr/include/g++/complex.h comp-obsolete gcc=45,cxx +./usr/include/g++/condition_variable comp-cxx-include gcc=45,cxx +./usr/include/g++/csetjmp comp-cxx-include gcc,cxx +./usr/include/g++/csignal comp-cxx-include gcc,cxx +./usr/include/g++/cstdarg comp-cxx-include gcc,cxx +./usr/include/g++/cstdbool comp-cxx-include gcc=45,cxx +./usr/include/g++/cstddef comp-cxx-include gcc,cxx +./usr/include/g++/cstdint comp-cxx-include gcc=45,cxx +./usr/include/g++/cstdio comp-cxx-include gcc,cxx +./usr/include/g++/cstdlib comp-cxx-include gcc,cxx +./usr/include/g++/cstring comp-cxx-include gcc,cxx +./usr/include/g++/ctgmath comp-cxx-include gcc=45,cxx +./usr/include/g++/ctime comp-cxx-include gcc,cxx +./usr/include/g++/cwchar comp-cxx-include gcc,cxx +./usr/include/g++/cwctype comp-cxx-include gcc,cxx +./usr/include/g++/cxxabi-forced.h comp-cxx-include gcc=45,cxx +./usr/include/g++/cxxabi.h comp-cxx-include gcc,cxx +./usr/include/g++/debug/bitset comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/bitset comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/debug.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/debug.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/deque comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/deque comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/formatter.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/formatter.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/functions.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/functions.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/hash_map comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/hash_map comp-obsolete gcc=45,obsolete +./usr/include/g++/debug/hash_map.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/hash_map.h comp-obsolete gcc=45,obsolete +./usr/include/g++/debug/hash_multimap.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/hash_multimap.h comp-obsolete gcc=45,obsolete +./usr/include/g++/debug/hash_multiset.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/hash_multiset.h comp-obsolete gcc=45,obsolete +./usr/include/g++/debug/hash_set comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/hash_set comp-obsolete gcc=45,obsolete +./usr/include/g++/debug/hash_set.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/hash_set.h comp-obsolete gcc=45,obsolete +./usr/include/g++/debug/list comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/list comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/macros.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/macros.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/map comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/map comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/map.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/map.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/multimap.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/multimap.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/multiset.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/multiset.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/safe_base.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/safe_base.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/safe_iterator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/safe_iterator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/safe_iterator.tcc comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/safe_iterator.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/safe_sequence.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/safe_sequence.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/set comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/set comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/set.h comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/set.h comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/string comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/string comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/unordered_map comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/unordered_set comp-cxx-include gcc=45,cxx +./usr/include/g++/debug/vector comp-cxx-include gcc=4,cxx +./usr/include/g++/debug/vector comp-cxx-include gcc=45,cxx +./usr/include/g++/decimal/decimal comp-cxx-include gcc=45,cxx +./usr/include/g++/decimal/decimal.h comp-cxx-include gcc=45,cxx +./usr/include/g++/defalloc.h comp-obsolete obsolete +./usr/include/g++/deque comp-cxx-include gcc,cxx +./usr/include/g++/deque.h comp-obsolete obsolete +./usr/include/g++/editbuf.h comp-obsolete obsolete +./usr/include/g++/exception comp-cxx-include gcc,cxx +./usr/include/g++/exception_defines.h comp-cxx-include gcc,cxx +./usr/include/g++/exception_ptr.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/algorithm comp-cxx-include gcc,cxx +./usr/include/g++/ext/array_allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/array_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/atomicity.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/bitmap_allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/bitmap_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/cast.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/codecvt_specializations.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/codecvt_specializations.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/concurrence.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/debug_allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/debug_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/enc_filebuf.h comp-cxx-include gcc=3,cxx +./usr/include/g++/ext/enc_filebuf.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/enc_filebuf.h comp-obsolete gcc=4,obsolete +./usr/include/g++/ext/extptr_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/functional comp-cxx-include gcc,cxx +./usr/include/g++/ext/hash_fun.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/hash_fun.h comp-obsolete gcc=45,obsolete +./usr/include/g++/ext/hash_map comp-cxx-include gcc,cxx +./usr/include/g++/ext/hash_set comp-cxx-include gcc,cxx +./usr/include/g++/ext/hashtable.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/hashtable.h comp-obsolete gcc=45,obsolete +./usr/include/g++/ext/iterator comp-cxx-include gcc,cxx +./usr/include/g++/ext/malloc_allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/malloc_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/memory comp-cxx-include gcc,cxx +./usr/include/g++/ext/mt_allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/mt_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/new_allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/new_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/numeric comp-cxx-include gcc,cxx +./usr/include/g++/ext/numeric_traits.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/pod_char_traits.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/pod_char_traits.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/pointer.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/pool_allocator.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/pool_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/rb_tree comp-cxx-include gcc,cxx +./usr/include/g++/ext/rc_string_base.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/rc_string_base.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/rope comp-cxx-include gcc,cxx +./usr/include/g++/ext/ropeimpl.h comp-cxx-include gcc,cxx +./usr/include/g++/ext/slist comp-cxx-include gcc,cxx +./usr/include/g++/ext/sso_string_base.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/sso_string_base.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/stdio_filebuf.h comp-cxx-include gcc,cxx +./usr/include/g++/ext/stdio_sync_filebuf.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/stdio_sync_filebuf.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/stl_hash_fun.h comp-cxx-include gcc=3,cxx +./usr/include/g++/ext/stl_hash_fun.h comp-obsolete gcc=4,obsolete +./usr/include/g++/ext/stl_hashtable.h comp-cxx-include gcc=3,cxx +./usr/include/g++/ext/stl_hashtable.h comp-obsolete gcc=4,obsolete +./usr/include/g++/ext/stl_rope.h comp-cxx-include gcc=3,cxx +./usr/include/g++/ext/stl_rope.h comp-obsolete gcc=4,obsolete +./usr/include/g++/ext/string_conversions.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/throw_allocator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/type_traits.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/typelist.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/typelist.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/vstring.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/vstring.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/vstring.tcc comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/vstring.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/vstring_fwd.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/vstring_fwd.h comp-cxx-include gcc=45,cxx +./usr/include/g++/ext/vstring_util.h comp-cxx-include gcc=4,cxx +./usr/include/g++/ext/vstring_util.h comp-cxx-include gcc=45,cxx +./usr/include/g++/faralloc.h comp-obsolete obsolete +./usr/include/g++/fdeque.h comp-obsolete obsolete +./usr/include/g++/fenv.h comp-cxx-include gcc=45,cxx +./usr/include/g++/flist.h comp-obsolete obsolete +./usr/include/g++/floatio.h comp-obsolete obsolete +./usr/include/g++/fmap.h comp-obsolete obsolete +./usr/include/g++/fmultmap.h comp-obsolete obsolete +./usr/include/g++/fmultset.h comp-obsolete obsolete +./usr/include/g++/forward_list comp-cxx-include gcc=45,cxx +./usr/include/g++/fset.h comp-obsolete obsolete +./usr/include/g++/fstream comp-cxx-include gcc,cxx +./usr/include/g++/fstream.h comp-obsolete obsolete +./usr/include/g++/function.h comp-obsolete obsolete +./usr/include/g++/functional comp-cxx-include gcc,cxx +./usr/include/g++/future comp-cxx-include gcc=45,cxx +./usr/include/g++/gen comp-obsolete obsolete +./usr/include/g++/gen/AVLMap.ccP comp-obsolete obsolete +./usr/include/g++/gen/AVLMap.hP comp-obsolete obsolete +./usr/include/g++/gen/AVLSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/AVLSet.hP comp-obsolete obsolete +./usr/include/g++/gen/AVec.ccP comp-obsolete obsolete +./usr/include/g++/gen/AVec.hP comp-obsolete obsolete +./usr/include/g++/gen/BSTSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/BSTSet.hP comp-obsolete obsolete +./usr/include/g++/gen/Bag.ccP comp-obsolete obsolete +./usr/include/g++/gen/Bag.hP comp-obsolete obsolete +./usr/include/g++/gen/CHBag.ccP comp-obsolete obsolete +./usr/include/g++/gen/CHBag.hP comp-obsolete obsolete +./usr/include/g++/gen/CHMap.ccP comp-obsolete obsolete +./usr/include/g++/gen/CHMap.hP comp-obsolete obsolete +./usr/include/g++/gen/CHNode.ccP comp-obsolete obsolete +./usr/include/g++/gen/CHNode.hP comp-obsolete obsolete +./usr/include/g++/gen/CHSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/CHSet.hP comp-obsolete obsolete +./usr/include/g++/gen/DLDeque.ccP comp-obsolete obsolete +./usr/include/g++/gen/DLDeque.hP comp-obsolete obsolete +./usr/include/g++/gen/DLList.ccP comp-obsolete obsolete +./usr/include/g++/gen/DLList.hP comp-obsolete obsolete +./usr/include/g++/gen/Deque.ccP comp-obsolete obsolete +./usr/include/g++/gen/Deque.hP comp-obsolete obsolete +./usr/include/g++/gen/FPQueue.ccP comp-obsolete obsolete +./usr/include/g++/gen/FPQueue.hP comp-obsolete obsolete +./usr/include/g++/gen/FPStack.ccP comp-obsolete obsolete +./usr/include/g++/gen/FPStack.hP comp-obsolete obsolete +./usr/include/g++/gen/FPlex.ccP comp-obsolete obsolete +./usr/include/g++/gen/FPlex.hP comp-obsolete obsolete +./usr/include/g++/gen/List.ccP comp-obsolete obsolete +./usr/include/g++/gen/List.hP comp-obsolete obsolete +./usr/include/g++/gen/MPlex.ccP comp-obsolete obsolete +./usr/include/g++/gen/MPlex.hP comp-obsolete obsolete +./usr/include/g++/gen/Map.ccP comp-obsolete obsolete +./usr/include/g++/gen/Map.hP comp-obsolete obsolete +./usr/include/g++/gen/OSLBag.ccP comp-obsolete obsolete +./usr/include/g++/gen/OSLBag.hP comp-obsolete obsolete +./usr/include/g++/gen/OSLSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/OSLSet.hP comp-obsolete obsolete +./usr/include/g++/gen/OXPBag.ccP comp-obsolete obsolete +./usr/include/g++/gen/OXPBag.hP comp-obsolete obsolete +./usr/include/g++/gen/OXPSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/OXPSet.hP comp-obsolete obsolete +./usr/include/g++/gen/PHPQ.ccP comp-obsolete obsolete +./usr/include/g++/gen/PHPQ.hP comp-obsolete obsolete +./usr/include/g++/gen/PQ.ccP comp-obsolete obsolete +./usr/include/g++/gen/PQ.hP comp-obsolete obsolete +./usr/include/g++/gen/PSList.hP comp-obsolete obsolete +./usr/include/g++/gen/PVec.hP comp-obsolete obsolete +./usr/include/g++/gen/Plex.ccP comp-obsolete obsolete +./usr/include/g++/gen/Plex.hP comp-obsolete obsolete +./usr/include/g++/gen/Queue.ccP comp-obsolete obsolete +./usr/include/g++/gen/Queue.hP comp-obsolete obsolete +./usr/include/g++/gen/RAVLMap.ccP comp-obsolete obsolete +./usr/include/g++/gen/RAVLMap.hP comp-obsolete obsolete +./usr/include/g++/gen/RPlex.ccP comp-obsolete obsolete +./usr/include/g++/gen/RPlex.hP comp-obsolete obsolete +./usr/include/g++/gen/SLBag.ccP comp-obsolete obsolete +./usr/include/g++/gen/SLBag.hP comp-obsolete obsolete +./usr/include/g++/gen/SLList.ccP comp-obsolete obsolete +./usr/include/g++/gen/SLList.hP comp-obsolete obsolete +./usr/include/g++/gen/SLQueue.ccP comp-obsolete obsolete +./usr/include/g++/gen/SLQueue.hP comp-obsolete obsolete +./usr/include/g++/gen/SLSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/SLSet.hP comp-obsolete obsolete +./usr/include/g++/gen/SLStack.ccP comp-obsolete obsolete +./usr/include/g++/gen/SLStack.hP comp-obsolete obsolete +./usr/include/g++/gen/Set.ccP comp-obsolete obsolete +./usr/include/g++/gen/Set.hP comp-obsolete obsolete +./usr/include/g++/gen/SkipBag.ccP comp-obsolete obsolete +./usr/include/g++/gen/SkipBag.hP comp-obsolete obsolete +./usr/include/g++/gen/SkipMap.ccP comp-obsolete obsolete +./usr/include/g++/gen/SkipMap.hP comp-obsolete obsolete +./usr/include/g++/gen/SkipSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/SkipSet.hP comp-obsolete obsolete +./usr/include/g++/gen/SplayBag.ccP comp-obsolete obsolete +./usr/include/g++/gen/SplayBag.hP comp-obsolete obsolete +./usr/include/g++/gen/SplayMap.ccP comp-obsolete obsolete +./usr/include/g++/gen/SplayMap.hP comp-obsolete obsolete +./usr/include/g++/gen/SplayNode.ccP comp-obsolete obsolete +./usr/include/g++/gen/SplayNode.hP comp-obsolete obsolete +./usr/include/g++/gen/SplayPQ.ccP comp-obsolete obsolete +./usr/include/g++/gen/SplayPQ.hP comp-obsolete obsolete +./usr/include/g++/gen/SplaySet.ccP comp-obsolete obsolete +./usr/include/g++/gen/SplaySet.hP comp-obsolete obsolete +./usr/include/g++/gen/Stack.ccP comp-obsolete obsolete +./usr/include/g++/gen/Stack.hP comp-obsolete obsolete +./usr/include/g++/gen/VHBag.ccP comp-obsolete obsolete +./usr/include/g++/gen/VHBag.hP comp-obsolete obsolete +./usr/include/g++/gen/VHMap.ccP comp-obsolete obsolete +./usr/include/g++/gen/VHMap.hP comp-obsolete obsolete +./usr/include/g++/gen/VHSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/VHSet.hP comp-obsolete obsolete +./usr/include/g++/gen/VOHSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/VOHSet.hP comp-obsolete obsolete +./usr/include/g++/gen/VQueue.ccP comp-obsolete obsolete +./usr/include/g++/gen/VQueue.hP comp-obsolete obsolete +./usr/include/g++/gen/VStack.ccP comp-obsolete obsolete +./usr/include/g++/gen/VStack.hP comp-obsolete obsolete +./usr/include/g++/gen/Vec.ccP comp-obsolete obsolete +./usr/include/g++/gen/Vec.hP comp-obsolete obsolete +./usr/include/g++/gen/XPBag.ccP comp-obsolete obsolete +./usr/include/g++/gen/XPBag.hP comp-obsolete obsolete +./usr/include/g++/gen/XPDeque.ccP comp-obsolete obsolete +./usr/include/g++/gen/XPDeque.hP comp-obsolete obsolete +./usr/include/g++/gen/XPPQ.ccP comp-obsolete obsolete +./usr/include/g++/gen/XPPQ.hP comp-obsolete obsolete +./usr/include/g++/gen/XPQueue.ccP comp-obsolete obsolete +./usr/include/g++/gen/XPQueue.hP comp-obsolete obsolete +./usr/include/g++/gen/XPSet.ccP comp-obsolete obsolete +./usr/include/g++/gen/XPSet.hP comp-obsolete obsolete +./usr/include/g++/gen/XPStack.ccP comp-obsolete obsolete +./usr/include/g++/gen/XPStack.hP comp-obsolete obsolete +./usr/include/g++/gen/XPlex.ccP comp-obsolete obsolete +./usr/include/g++/gen/XPlex.hP comp-obsolete obsolete +./usr/include/g++/gen/defs.hP comp-obsolete obsolete +./usr/include/g++/gen/intSList.hP comp-obsolete obsolete +./usr/include/g++/gen/intVec.hP comp-obsolete obsolete +./usr/include/g++/generic.h comp-obsolete obsolete +./usr/include/g++/getpagesize.h comp-obsolete obsolete +./usr/include/g++/hash_map comp-obsolete obsolete +./usr/include/g++/hash_map.h comp-obsolete obsolete +./usr/include/g++/hash_set comp-obsolete obsolete +./usr/include/g++/hash_set.h comp-obsolete obsolete +./usr/include/g++/hashtable.h comp-obsolete obsolete +./usr/include/g++/hdeque.h comp-obsolete obsolete +./usr/include/g++/heap.h comp-obsolete obsolete +./usr/include/g++/hlist.h comp-obsolete obsolete +./usr/include/g++/hmap.h comp-obsolete obsolete +./usr/include/g++/hmultmap.h comp-obsolete obsolete +./usr/include/g++/hmultset.h comp-obsolete obsolete +./usr/include/g++/hset.h comp-obsolete obsolete +./usr/include/g++/hugalloc.h comp-obsolete obsolete +./usr/include/g++/hvector.h comp-obsolete obsolete +./usr/include/g++/indstream.h comp-obsolete obsolete +./usr/include/g++/initializer_list comp-cxx-include gcc=45,cxx +./usr/include/g++/iolibio.h comp-obsolete obsolete +./usr/include/g++/iomanip comp-cxx-include gcc,cxx +./usr/include/g++/iomanip.h comp-obsolete obsolete +./usr/include/g++/ioprivate.h comp-obsolete obsolete +./usr/include/g++/ios comp-cxx-include gcc,cxx +./usr/include/g++/iosfwd comp-cxx-include gcc,cxx +./usr/include/g++/iostdio.h comp-obsolete obsolete +./usr/include/g++/iostream comp-cxx-include gcc,cxx +./usr/include/g++/iostream.h comp-obsolete obsolete +./usr/include/g++/iostreamP.h comp-obsolete obsolete +./usr/include/g++/istream comp-cxx-include gcc,cxx +./usr/include/g++/istream.h comp-obsolete obsolete +./usr/include/g++/iterator comp-cxx-include gcc,cxx +./usr/include/g++/iterator.h comp-obsolete obsolete +./usr/include/g++/lbvector.h comp-obsolete obsolete +./usr/include/g++/ldeque.h comp-obsolete obsolete +./usr/include/g++/libc.h comp-obsolete obsolete +./usr/include/g++/libio.h comp-obsolete obsolete +./usr/include/g++/libioP.h comp-obsolete obsolete +./usr/include/g++/limits comp-cxx-include gcc,cxx +./usr/include/g++/list comp-cxx-include gcc,cxx +./usr/include/g++/list.h comp-obsolete obsolete +./usr/include/g++/llist.h comp-obsolete obsolete +./usr/include/g++/lmap.h comp-obsolete obsolete +./usr/include/g++/lmultmap.h comp-obsolete obsolete +./usr/include/g++/lmultset.h comp-obsolete obsolete +./usr/include/g++/lngalloc.h comp-obsolete obsolete +./usr/include/g++/locale comp-cxx-include gcc,cxx +./usr/include/g++/lset.h comp-obsolete obsolete +./usr/include/g++/map comp-cxx-include gcc,cxx +./usr/include/g++/map.h comp-obsolete obsolete +./usr/include/g++/memory comp-cxx-include gcc,cxx +./usr/include/g++/minmax.h comp-obsolete obsolete +./usr/include/g++/multimap.h comp-obsolete obsolete +./usr/include/g++/multiset.h comp-obsolete obsolete +./usr/include/g++/mutex comp-cxx-include gcc=45,cxx +./usr/include/g++/neralloc.h comp-obsolete obsolete +./usr/include/g++/nested_exception.h comp-cxx-include gcc=45,cxx +./usr/include/g++/new comp-cxx-include gcc,cxx +./usr/include/g++/new.h comp-obsolete obsolete +./usr/include/g++/nmap.h comp-obsolete obsolete +./usr/include/g++/nmultmap.h comp-obsolete obsolete +./usr/include/g++/nmultset.h comp-obsolete obsolete +./usr/include/g++/nset.h comp-obsolete obsolete +./usr/include/g++/numeric comp-cxx-include gcc,cxx +./usr/include/g++/osfcn.h comp-obsolete obsolete +./usr/include/g++/ostream comp-cxx-include gcc,cxx +./usr/include/g++/ostream.h comp-obsolete obsolete +./usr/include/g++/pair.h comp-obsolete obsolete +./usr/include/g++/parallel/algo.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/algobase.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/algorithm comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/algorithmfwd.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/balanced_quicksort.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/base.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/basic_iterator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/checkers.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/compatibility.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/compiletime_settings.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/equally_split.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/features.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/find.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/find_selectors.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/for_each.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/for_each_selectors.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/iterator.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/list_partition.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/losertree.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/merge.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/multiseq_selection.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/multiway_merge.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/multiway_mergesort.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/numeric comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/numericfwd.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/omp_loop.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/omp_loop_static.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/par_loop.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/parallel.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/partial_sum.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/partition.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/queue.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/quicksort.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/random_number.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/random_shuffle.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/search.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/set_operations.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/settings.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/sort.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/tags.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/types.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/unique_copy.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parallel/workstealing.h comp-cxx-include gcc=45,cxx +./usr/include/g++/parsestream.h comp-obsolete obsolete +./usr/include/g++/pfstream.h comp-obsolete obsolete +./usr/include/g++/procbuf.h comp-obsolete obsolete +./usr/include/g++/projectn.h comp-obsolete obsolete +./usr/include/g++/pthread_alloc comp-obsolete obsolete +./usr/include/g++/pthread_alloc.h comp-obsolete obsolete +./usr/include/g++/queue comp-cxx-include gcc,cxx +./usr/include/g++/random comp-cxx-include gcc=45,cxx +./usr/include/g++/random.cc comp-obsolete obsolete +./usr/include/g++/ratio comp-cxx-include gcc=45,cxx +./usr/include/g++/regex comp-cxx-include gcc=45,cxx +./usr/include/g++/regex.h comp-obsolete obsolete +./usr/include/g++/rope comp-obsolete obsolete +./usr/include/g++/rope.h comp-obsolete obsolete +./usr/include/g++/ropeimpl.h comp-obsolete obsolete +./usr/include/g++/rx.h comp-obsolete obsolete +./usr/include/g++/set comp-cxx-include gcc,cxx +./usr/include/g++/set.h comp-obsolete obsolete +./usr/include/g++/slist comp-obsolete obsolete +./usr/include/g++/slist.h comp-obsolete obsolete +./usr/include/g++/sstream comp-cxx-include gcc,cxx +./usr/include/g++/stack comp-cxx-include gcc,cxx +./usr/include/g++/stack.h comp-obsolete obsolete +./usr/include/g++/std comp-obsolete obsolete +./usr/include/g++/std.h comp-obsolete obsolete +./usr/include/g++/std/bastring.cc comp-obsolete obsolete +./usr/include/g++/std/bastring.h comp-obsolete obsolete +./usr/include/g++/std/bastring_inst.h comp-obsolete obsolete +./usr/include/g++/std/cassert.h comp-obsolete obsolete +./usr/include/g++/std/cctype.h comp-obsolete obsolete +./usr/include/g++/std/cerrno.h comp-obsolete obsolete +./usr/include/g++/std/cfloat.h comp-obsolete obsolete +./usr/include/g++/std/cinst.h comp-obsolete obsolete +./usr/include/g++/std/ciso646.h comp-obsolete obsolete +./usr/include/g++/std/climits.h comp-obsolete obsolete +./usr/include/g++/std/clocale.h comp-obsolete obsolete +./usr/include/g++/std/cmath.h comp-obsolete obsolete +./usr/include/g++/std/complex.h comp-obsolete obsolete +./usr/include/g++/std/complext.cc comp-obsolete obsolete +./usr/include/g++/std/complext.h comp-obsolete obsolete +./usr/include/g++/std/complext_inst.h comp-obsolete obsolete +./usr/include/g++/std/csetjmp.h comp-obsolete obsolete +./usr/include/g++/std/csignal.h comp-obsolete obsolete +./usr/include/g++/std/cstdarg.h comp-obsolete obsolete +./usr/include/g++/std/cstddef.h comp-obsolete obsolete +./usr/include/g++/std/cstdio.h comp-obsolete obsolete +./usr/include/g++/std/cstdlib.h comp-obsolete obsolete +./usr/include/g++/std/cstring.h comp-obsolete obsolete +./usr/include/g++/std/ctime.h comp-obsolete obsolete +./usr/include/g++/std/cwchar.h comp-obsolete obsolete +./usr/include/g++/std/cwctype.h comp-obsolete obsolete +./usr/include/g++/std/dcomplex.h comp-obsolete obsolete +./usr/include/g++/std/exception.h comp-obsolete obsolete +./usr/include/g++/std/fcomplex.h comp-obsolete obsolete +./usr/include/g++/std/gslice.h comp-obsolete obsolete +./usr/include/g++/std/gslice_array.h comp-obsolete obsolete +./usr/include/g++/std/indirect_array.h comp-obsolete obsolete +./usr/include/g++/std/ldcomplex.h comp-obsolete obsolete +./usr/include/g++/std/mask_array.h comp-obsolete obsolete +./usr/include/g++/std/new.h comp-obsolete obsolete +./usr/include/g++/std/sinst.h comp-obsolete obsolete +./usr/include/g++/std/slice.h comp-obsolete obsolete +./usr/include/g++/std/slice_array.h comp-obsolete obsolete +./usr/include/g++/std/std_valarray.h comp-obsolete obsolete +./usr/include/g++/std/stddef.h comp-obsolete obsolete +./usr/include/g++/std/stdexcept.h comp-obsolete obsolete +./usr/include/g++/std/straits.h comp-obsolete obsolete +./usr/include/g++/std/string.h comp-obsolete obsolete +./usr/include/g++/std/typeinfo.h comp-obsolete obsolete +./usr/include/g++/std/valarray_array.h comp-obsolete obsolete +./usr/include/g++/std/valarray_array.tcc comp-obsolete obsolete +./usr/include/g++/std/valarray_meta.h comp-obsolete obsolete +./usr/include/g++/stdatomic.h comp-cxx-include gcc=45,cxx +./usr/include/g++/stddef comp-obsolete obsolete +./usr/include/g++/stdexcept comp-cxx-include gcc,cxx +./usr/include/g++/stdiostream.h comp-obsolete obsolete +./usr/include/g++/stl.h comp-obsolete obsolete +./usr/include/g++/stl_algo.h comp-obsolete obsolete +./usr/include/g++/stl_algobase.h comp-obsolete obsolete +./usr/include/g++/stl_alloc.h comp-obsolete obsolete +./usr/include/g++/stl_bvector.h comp-obsolete obsolete +./usr/include/g++/stl_config.h comp-obsolete obsolete +./usr/include/g++/stl_construct.h comp-obsolete obsolete +./usr/include/g++/stl_deque.h comp-obsolete obsolete +./usr/include/g++/stl_function.h comp-obsolete obsolete +./usr/include/g++/stl_hash_fun.h comp-obsolete obsolete +./usr/include/g++/stl_hash_map.h comp-obsolete obsolete +./usr/include/g++/stl_hash_set.h comp-obsolete obsolete +./usr/include/g++/stl_hashtable.h comp-obsolete obsolete +./usr/include/g++/stl_heap.h comp-obsolete obsolete +./usr/include/g++/stl_iterator.h comp-obsolete obsolete +./usr/include/g++/stl_list.h comp-obsolete obsolete +./usr/include/g++/stl_map.h comp-obsolete obsolete +./usr/include/g++/stl_multimap.h comp-obsolete obsolete +./usr/include/g++/stl_multiset.h comp-obsolete obsolete +./usr/include/g++/stl_numeric.h comp-obsolete obsolete +./usr/include/g++/stl_pair.h comp-obsolete obsolete +./usr/include/g++/stl_queue.h comp-obsolete obsolete +./usr/include/g++/stl_raw_storage_iter.h comp-obsolete obsolete +./usr/include/g++/stl_relops.h comp-obsolete obsolete +./usr/include/g++/stl_rope.h comp-obsolete obsolete +./usr/include/g++/stl_set.h comp-obsolete obsolete +./usr/include/g++/stl_slist.h comp-obsolete obsolete +./usr/include/g++/stl_stack.h comp-obsolete obsolete +./usr/include/g++/stl_tempbuf.h comp-obsolete obsolete +./usr/include/g++/stl_tree.h comp-obsolete obsolete +./usr/include/g++/stl_uninitialized.h comp-obsolete obsolete +./usr/include/g++/stl_vector.h comp-obsolete obsolete +./usr/include/g++/strclass.h comp-obsolete obsolete +./usr/include/g++/stream.h comp-obsolete obsolete +./usr/include/g++/streambuf comp-cxx-include gcc,cxx +./usr/include/g++/streambuf.h comp-obsolete obsolete +./usr/include/g++/strfile.h comp-obsolete obsolete +./usr/include/g++/string comp-cxx-include gcc,cxx +./usr/include/g++/strstream comp-obsolete obsolete +./usr/include/g++/strstream.h comp-obsolete obsolete +./usr/include/g++/swap.h comp-obsolete obsolete +./usr/include/g++/sysent.h comp-obsolete obsolete +./usr/include/g++/system_error comp-cxx-include gcc=45,cxx +./usr/include/g++/tempbuf.cc comp-obsolete obsolete +./usr/include/g++/tempbuf.h comp-obsolete obsolete +./usr/include/g++/tgmath.h comp-cxx-include gcc=45,cxx +./usr/include/g++/thread comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/array comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/array comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/bessel_function.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/beta_function.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/bind_iterate.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/bind_iterate.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/bind_repeat.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/bind_repeat.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/boost_shared_ptr.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/boost_shared_ptr.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/ccomplex comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cctype comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cfenv comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cfloat comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cinttypes comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/climits comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cmath comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/complex comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/complex.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cstdarg comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cstdbool comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cstdint comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cstdio comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cstdlib comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/ctgmath comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/ctime comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/ctype.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cwchar comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/cwctype comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/ell_integral.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/exp_integral.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/fenv.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/float.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/functional comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/functional comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/functional_hash.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/functional_iterate.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/functional_iterate.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/gamma.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/hashtable comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/hashtable comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/hashtable.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/hashtable_policy.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/hypergeometric.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/inttypes.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/legendre_function.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/limits.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/math.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/memory comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/memory comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/modified_bessel_func.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/mu_iterate.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/mu_iterate.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/poly_hermite.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/poly_laguerre.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/random comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/random.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/random.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/ref_fwd.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/ref_fwd.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/ref_wrap_iterate.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/ref_wrap_iterate.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/regex comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/repeat.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/repeat.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/riemann_zeta.tcc comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/shared_ptr.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/special_function_util.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/stdarg.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/stdbool.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/stdint.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/stdio.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/stdlib.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/tgmath.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/tuple comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/tuple comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/tuple_iterate.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/tuple_iterate.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/type_traits comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/type_traits comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/type_traits_fwd.h comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/type_traits_fwd.h comp-obsolete gcc=45,obsolete +./usr/include/g++/tr1/unordered_map comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/unordered_map comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/unordered_map.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/unordered_set comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/unordered_set comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/unordered_set.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/utility comp-cxx-include gcc=4,cxx +./usr/include/g++/tr1/utility comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/wchar.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1/wctype.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/array comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/boost_sp_counted_base.h comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cctype comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cfenv comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cinttypes comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cmath comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/complex comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cstdint comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cstdio comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cstdlib comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cwchar comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/cwctype comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/regex comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/type_traits comp-cxx-include gcc=45,cxx +./usr/include/g++/tr1_impl/utility comp-cxx-include gcc=45,cxx +./usr/include/g++/tree.cc comp-obsolete obsolete +./usr/include/g++/tree.h comp-obsolete obsolete +./usr/include/g++/tuple comp-cxx-include gcc=45,cxx +./usr/include/g++/type_traits comp-cxx-include gcc=45,cxx +./usr/include/g++/type_traits.h comp-obsolete obsolete +./usr/include/g++/typeinfo comp-cxx-include gcc,cxx +./usr/include/g++/typemacros.h comp-obsolete obsolete +./usr/include/g++/unordered_map comp-cxx-include gcc=45,cxx +./usr/include/g++/unordered_set comp-cxx-include gcc=45,cxx +./usr/include/g++/utility comp-cxx-include gcc,cxx +./usr/include/g++/valarray comp-cxx-include gcc,cxx +./usr/include/g++/values.h comp-obsolete obsolete +./usr/include/g++/vector comp-cxx-include gcc,cxx +./usr/include/g++/vector.h comp-obsolete obsolete +./usr/include/gcc-4.5/mf-runtime.h comp-gcc-include gcc=45 +./usr/include/gcc-4.5/omp.h comp-gcc-include gcc=45 +./usr/include/gelf.h comp-c-include +./usr/include/getopt.h comp-c-include +./usr/include/glob.h comp-c-include +./usr/include/gmp.h comp-cxx-include obsolete +./usr/include/grp.h comp-c-include +./usr/include/gssapi.h comp-krb5-include kerberos +./usr/include/gssapi/gssapi.h comp-krb5-include kerberos +./usr/include/gssapi/gssapi_krb5.h comp-krb5-include kerberos +./usr/include/gssapi/gssapi_ntlm.h comp-krb5-include kerberos +./usr/include/gssapi/gssapi_oid.h comp-krb5-include kerberos +./usr/include/gssapi/gssapi_spnego.h comp-krb5-include kerberos +./usr/include/hesiod.h comp-c-include +./usr/include/histedit.h comp-c-include +./usr/include/history.h comp-obsolete obsolete +./usr/include/iconv.h comp-c-include +./usr/include/ifaddrs.h comp-c-include +./usr/include/inttypes.h comp-c-include +./usr/include/iscsi.h comp-c-include iscsi +./usr/include/isns.h comp-c-include +./usr/include/isns_defs.h comp-c-include +./usr/include/iso646.h comp-c-include +./usr/include/isofs/cd9660/cd9660_extern.h comp-c-include +./usr/include/isofs/cd9660/cd9660_mount.h comp-c-include +./usr/include/isofs/cd9660/cd9660_node.h comp-c-include +./usr/include/isofs/cd9660/cd9660_rrip.h comp-c-include +./usr/include/isofs/cd9660/iso.h comp-c-include +./usr/include/isofs/cd9660/iso_rrip.h comp-c-include +./usr/include/kadm5/admin.h comp-krb5-include kerberos +./usr/include/kadm5/kadm5-private.h comp-krb5-include kerberos +./usr/include/kadm5/kadm5-protos.h comp-krb5-include kerberos +./usr/include/kadm5/kadm5-pwcheck.h comp-krb5-include kerberos +./usr/include/kadm5/kadm5_err.h comp-krb5-include kerberos +./usr/include/kadm5/private.h comp-krb5-include kerberos +./usr/include/kerberosIV/des.h comp-obsolete obsolete +./usr/include/kerberosIV/kadm.h comp-obsolete obsolete +./usr/include/kerberosIV/kadm_err.h comp-obsolete obsolete +./usr/include/kerberosIV/kafs.h comp-obsolete obsolete +./usr/include/kerberosIV/klog.h comp-obsolete obsolete +./usr/include/kerberosIV/krb-archaeology.h comp-obsolete obsolete +./usr/include/kerberosIV/krb-protos.h comp-obsolete obsolete +./usr/include/kerberosIV/krb.h comp-obsolete obsolete +./usr/include/kerberosIV/krb_db.h comp-obsolete obsolete +./usr/include/kerberosIV/krb_err.h comp-obsolete obsolete +./usr/include/kerberosIV/kstream.h comp-obsolete obsolete +./usr/include/kerberosIV/ktypes.h comp-obsolete obsolete +./usr/include/kerberosIV/prot.h comp-obsolete obsolete +./usr/include/krb5.h comp-krb5-include kerberos +./usr/include/krb5/asn1-common.h comp-krb5-include kerberos +./usr/include/krb5/asn1.h comp-obsolete obsolete +./usr/include/krb5/asn1_err.h comp-krb5-include kerberos +./usr/include/krb5/base64.h comp-krb5-include kerberos +./usr/include/krb5/cms_asn1.h comp-krb5-include kerberos +./usr/include/krb5/com_err.h comp-krb5-include kerberos +./usr/include/krb5/com_right.h comp-krb5-include kerberos +./usr/include/krb5/crmf_asn1.h comp-obsolete obsolete +./usr/include/krb5/der-protos.h comp-krb5-include kerberos +./usr/include/krb5/der.h comp-krb5-include kerberos +./usr/include/krb5/digest_asn1.h comp-krb5-include kerberos +./usr/include/krb5/getarg.h comp-krb5-include kerberos +./usr/include/krb5/hdb-private.h comp-obsolete obsolete +./usr/include/krb5/hdb-protos.h comp-krb5-include kerberos +./usr/include/krb5/hdb.h comp-krb5-include kerberos +./usr/include/krb5/hdb_asn1.h comp-krb5-include kerberos +./usr/include/krb5/hdb_err.h comp-krb5-include kerberos +./usr/include/krb5/heim_asn1.h comp-krb5-include kerberos +./usr/include/krb5/heim_err.h comp-krb5-include kerberos +./usr/include/krb5/heimbase.h comp-krb5-include kerberos +./usr/include/krb5/heimntlm-protos.h comp-krb5-include kerberos +./usr/include/krb5/heimntlm.h comp-krb5-include kerberos +./usr/include/krb5/hex.h comp-krb5-include kerberos +./usr/include/krb5/hx509-private.h comp-obsolete obsolete +./usr/include/krb5/hx509-protos.h comp-krb5-include kerberos +./usr/include/krb5/hx509.h comp-krb5-include kerberos +./usr/include/krb5/hx509_err.h comp-krb5-include kerberos +./usr/include/krb5/k524_err.h comp-krb5-include kerberos +./usr/include/krb5/kadm5_err.h comp-obsolete obsolete +./usr/include/krb5/kafs.h comp-krb5-include kerberos +./usr/include/krb5/kcm-protos.h comp-krb5-include kerberos +./usr/include/krb5/kcm.h comp-krb5-include kerberos +./usr/include/krb5/kdc-protos.h comp-krb5-include kerberos +./usr/include/krb5/kdc.h comp-krb5-include kerberos +./usr/include/krb5/krb5-private.h comp-krb5-include kerberos +./usr/include/krb5/krb5-protos.h comp-krb5-include kerberos +./usr/include/krb5/krb5-types.h comp-krb5-include kerberos +./usr/include/krb5/krb5-v4compat.h comp-krb5-include kerberos +./usr/include/krb5/krb5.h comp-krb5-include kerberos +./usr/include/krb5/krb5_asn1.h comp-krb5-include kerberos +./usr/include/krb5/krb5_ccapi.h comp-krb5-include kerberos +./usr/include/krb5/krb5_err.h comp-krb5-include kerberos +./usr/include/krb5/krb_err.h comp-krb5-include kerberos +./usr/include/krb5/kx509_asn1.h comp-krb5-include kerberos +./usr/include/krb5/ntlm_err.h comp-krb5-include kerberos +./usr/include/krb5/ocsp_asn1.h comp-krb5-include kerberos +./usr/include/krb5/parse_bytes.h comp-krb5-include kerberos +./usr/include/krb5/parse_time.h comp-krb5-include kerberos +./usr/include/krb5/parse_units.h comp-krb5-include kerberos +./usr/include/krb5/pkcs10_asn1.h comp-krb5-include kerberos +./usr/include/krb5/pkcs12_asn1.h comp-krb5-include kerberos +./usr/include/krb5/pkcs8_asn1.h comp-krb5-include kerberos +./usr/include/krb5/pkcs9_asn1.h comp-krb5-include kerberos +./usr/include/krb5/pkinit_asn1.h comp-krb5-include kerberos +./usr/include/krb5/resolve.h comp-krb5-include kerberos +./usr/include/krb5/rfc2459_asn1.h comp-krb5-include kerberos +./usr/include/krb5/roken-common.h comp-krb5-include kerberos +./usr/include/krb5/roken.h comp-krb5-include kerberos +./usr/include/krb5/rtbl.h comp-krb5-include kerberos +./usr/include/krb5/sl.h comp-krb5-include kerberos +./usr/include/krb5/ss.h comp-obsolete obsolete +./usr/include/krb5/wind.h comp-krb5-include kerberos +./usr/include/krb5/wind_err.h comp-krb5-include kerberos +./usr/include/krb5/xdbm.h comp-krb5-include kerberos +./usr/include/kvm.h comp-c-include +./usr/include/langinfo.h comp-c-include +./usr/include/lauxlib.h comp-c-include +./usr/include/lber.h comp-ldap-include ldap +./usr/include/lber_types.h comp-ldap-include ldap +./usr/include/ldap.h comp-ldap-include ldap +./usr/include/ldap_cdefs.h comp-ldap-include ldap +./usr/include/ldap_features.h comp-ldap-include ldap +./usr/include/ldap_schema.h comp-ldap-include ldap +./usr/include/ldap_utf8.h comp-ldap-include ldap +./usr/include/libdwarf.h comp-c-include +./usr/include/libelf.h comp-c-include +./usr/include/libgen.h comp-c-include +./usr/include/libintl.h comp-c-include +./usr/include/libmilter/mfapi.h comp-obsolete obsolete +./usr/include/libmilter/mfdef.h comp-obsolete obsolete +./usr/include/limits.h comp-c-include +./usr/include/link.h comp-c-include +./usr/include/link_aout.h comp-c-include +./usr/include/link_elf.h comp-c-include +./usr/include/locale.h comp-c-include +./usr/include/login_cap.h comp-c-include +./usr/include/lua.h comp-c-include +./usr/include/luaconf.h comp-c-include +./usr/include/lualib.h comp-c-include +./usr/include/lwp.h comp-c-include +./usr/include/lzf.h comp-c-include +./usr/include/lzfP.h comp-c-include +./usr/include/lzma.h comp-c-include +./usr/include/lzma/base.h comp-c-include +./usr/include/lzma/bcj.h comp-c-include +./usr/include/lzma/block.h comp-c-include +./usr/include/lzma/check.h comp-c-include +./usr/include/lzma/container.h comp-c-include +./usr/include/lzma/delta.h comp-c-include +./usr/include/lzma/filter.h comp-c-include +./usr/include/lzma/hardware.h comp-c-include +./usr/include/lzma/index.h comp-c-include +./usr/include/lzma/index_hash.h comp-c-include +./usr/include/lzma/lzma.h comp-c-include +./usr/include/lzma/stream_flags.h comp-c-include +./usr/include/lzma/version.h comp-c-include +./usr/include/lzma/vli.h comp-c-include +./usr/include/magic.h comp-c-include +./usr/include/malloc.h comp-c-include +./usr/include/math.h comp-c-include +./usr/include/md2.h comp-c-include +./usr/include/md4.h comp-c-include +./usr/include/md5.h comp-c-include +./usr/include/memory.h comp-c-include +./usr/include/menu.h comp-c-include +./usr/include/milter/mfapi.h comp-obsolete obsolete +./usr/include/milter/mfdef.h comp-obsolete obsolete +./usr/include/miscfs/fdesc/fdesc.h comp-c-include +./usr/include/miscfs/fifofs/fifo.h comp-c-include +./usr/include/miscfs/genfs/genfs.h comp-c-include +./usr/include/miscfs/genfs/genfs_node.h comp-c-include +./usr/include/miscfs/genfs/layer.h comp-c-include +./usr/include/miscfs/kernfs/kernfs.h comp-c-include +./usr/include/miscfs/nullfs/null.h comp-c-include +./usr/include/miscfs/overlay/overlay.h comp-c-include +./usr/include/miscfs/portal/portal.h comp-obsolete obsolete +./usr/include/miscfs/procfs/procfs.h comp-c-include +./usr/include/miscfs/specfs/specdev.h comp-c-include +./usr/include/miscfs/syncfs/syncfs.h comp-c-include +./usr/include/miscfs/umapfs/umap.h comp-c-include +./usr/include/miscfs/union/union.h comp-c-include +./usr/include/mj.h comp-c-include crypto +./usr/include/mntopts.h comp-c-include +./usr/include/monetary.h comp-c-include +./usr/include/mpc-log.h comp-c-include obsolete +./usr/include/mpc.h comp-c-include obsolete +./usr/include/mpf2mpfr.h comp-c-include obsolete +./usr/include/mpfr.h comp-c-include obsolete +./usr/include/mpool.h comp-c-include +./usr/include/mqueue.h comp-c-include +./usr/include/msdosfs/bootsect.h comp-c-include +./usr/include/msdosfs/bpb.h comp-c-include +./usr/include/msdosfs/denode.h comp-c-include +./usr/include/msdosfs/direntry.h comp-c-include +./usr/include/msdosfs/fat.h comp-c-include +./usr/include/msdosfs/msdosfsmount.h comp-c-include +./usr/include/ndbm.h comp-c-include +./usr/include/net/agr/if_agrioctl.h comp-c-include +./usr/include/net/bpf.h comp-c-include +./usr/include/net/bpfdesc.h comp-c-include +./usr/include/net/bpf_jit.h comp-c-include obsolete +./usr/include/net/dlt.h comp-c-include +./usr/include/net/ethertypes.h comp-c-include +./usr/include/net/if.h comp-c-include +./usr/include/net/if_arc.h comp-c-include +./usr/include/net/if_arp.h comp-c-include +./usr/include/net/if_atm.h comp-c-include +./usr/include/net/if_bridgevar.h comp-c-include +./usr/include/net/if_dl.h comp-c-include +./usr/include/net/if_ether.h comp-c-include +./usr/include/net/if_etherip.h comp-c-include +./usr/include/net/if_fddi.h comp-c-include +./usr/include/net/if_gif.h comp-c-include +./usr/include/net/if_gre.h comp-c-include +./usr/include/net/if_hippi.h comp-c-include +./usr/include/net/if_ieee1394.h comp-c-include +./usr/include/net/if_ieee80211.h comp-obsolete obsolete +./usr/include/net/if_llc.h comp-c-include +./usr/include/net/if_media.h comp-c-include +./usr/include/net/if_mpls.h comp-c-include +./usr/include/net/if_pflog.h comp-c-include +./usr/include/net/if_ppp.h comp-c-include +./usr/include/net/if_pppoe.h comp-c-include +./usr/include/net/if_pppvar.h comp-obsolete obsolete +./usr/include/net/if_slvar.h comp-obsolete obsolete +./usr/include/net/if_sppp.h comp-c-include +./usr/include/net/if_srt.h comp-c-include +./usr/include/net/if_stf.h comp-c-include +./usr/include/net/if_stripvar.h comp-obsolete obsolete +./usr/include/net/if_tap.h comp-c-include +./usr/include/net/if_token.h comp-c-include +./usr/include/net/if_tun.h comp-c-include +./usr/include/net/if_types.h comp-c-include +./usr/include/net/if_vlanvar.h comp-c-include +./usr/include/net/net_stats.h comp-c-include +./usr/include/net/netisr.h comp-c-include +./usr/include/net/npf.h comp-c-include +./usr/include/net/npf_ncode.h comp-c-include +./usr/include/net/pfil.h comp-c-include +./usr/include/net/pfkeyv2.h comp-c-include +./usr/include/net/pfvar.h comp-c-include +./usr/include/net/ppp-comp.h comp-c-include +./usr/include/net/ppp_defs.h comp-c-include +./usr/include/net/radix.h comp-c-include +./usr/include/net/raw_cb.h comp-c-include +./usr/include/net/route.h comp-c-include +./usr/include/net/slcompress.h comp-c-include +./usr/include/net/slip.h comp-c-include +./usr/include/net/zlib.h comp-c-include +./usr/include/net80211/_ieee80211.h comp-c-include +./usr/include/net80211/ieee80211.h comp-c-include +./usr/include/net80211/ieee80211_channel.h comp-obsolete obsolete +./usr/include/net80211/ieee80211_compat.h comp-obsolete obsolete +./usr/include/net80211/ieee80211_crypto.h comp-c-include +./usr/include/net80211/ieee80211_ioctl.h comp-c-include +./usr/include/net80211/ieee80211_netbsd.h comp-c-include +./usr/include/net80211/ieee80211_node.h comp-c-include +./usr/include/net80211/ieee80211_proto.h comp-c-include +./usr/include/net80211/ieee80211_radiotap.h comp-c-include +./usr/include/net80211/ieee80211_rssadapt.h comp-c-include +./usr/include/net80211/ieee80211_sysctl.h comp-c-include +./usr/include/net80211/ieee80211_var.h comp-c-include +./usr/include/netatalk/aarp.h comp-c-include +./usr/include/netatalk/at.h comp-c-include +./usr/include/netatalk/at_extern.h comp-c-include +./usr/include/netatalk/at_var.h comp-c-include +./usr/include/netatalk/ddp.h comp-c-include +./usr/include/netatalk/ddp_var.h comp-c-include +./usr/include/netatalk/phase2.h comp-c-include +./usr/include/netbt/bluetooth.h comp-c-include +./usr/include/netbt/hci.h comp-c-include +./usr/include/netbt/l2cap.h comp-c-include +./usr/include/netbt/rfcomm.h comp-c-include +./usr/include/netbt/sco.h comp-c-include +./usr/include/netccitt/dll.h comp-obsolete obsolete +./usr/include/netccitt/hd_var.h comp-obsolete obsolete +./usr/include/netccitt/hdlc.h comp-obsolete obsolete +./usr/include/netccitt/llc_var.h comp-obsolete obsolete +./usr/include/netccitt/pk.h comp-obsolete obsolete +./usr/include/netccitt/pk_extern.h comp-obsolete obsolete +./usr/include/netccitt/pk_var.h comp-obsolete obsolete +./usr/include/netccitt/x25.h comp-obsolete obsolete +./usr/include/netccitt/x25acct.h comp-obsolete obsolete +./usr/include/netccitt/x25err.h comp-obsolete obsolete +./usr/include/netconfig.h comp-c-include +./usr/include/netdb.h comp-c-include +./usr/include/netgroup.h comp-c-include +./usr/include/netinet/icmp6.h comp-c-include +./usr/include/netinet/icmp_var.h comp-c-include +./usr/include/netinet/if_arc.h comp-obsolete obsolete +./usr/include/netinet/if_atm.h comp-c-include +./usr/include/netinet/if_ether.h comp-c-include +./usr/include/netinet/if_inarp.h comp-c-include +./usr/include/netinet/igmp.h comp-c-include +./usr/include/netinet/igmp_var.h comp-c-include +./usr/include/netinet/in.h comp-c-include +./usr/include/netinet/in_gif.h comp-c-include +./usr/include/netinet/in_pcb.h comp-c-include +./usr/include/netinet/in_pcb_hdr.h comp-c-include +./usr/include/netinet/in_route.h comp-obsolete obsolete +./usr/include/netinet/in_selsrc.h comp-c-include +./usr/include/netinet/in_systm.h comp-c-include +./usr/include/netinet/in_var.h comp-c-include +./usr/include/netinet/ip.h comp-c-include +./usr/include/netinet/ip6.h comp-c-include +./usr/include/netinet/ip_auth.h comp-ipf-include ipfilter +./usr/include/netinet/ip_carp.h comp-c-include +./usr/include/netinet/ip_compat.h comp-c-include +./usr/include/netinet/ip_ecn.h comp-c-include +./usr/include/netinet/ip_encap.h comp-c-include +./usr/include/netinet/ip_fil.h comp-ipf-include ipfilter +./usr/include/netinet/ip_frag.h comp-ipf-include ipfilter +./usr/include/netinet/ip_gre.h comp-obsolete obsolete +./usr/include/netinet/ip_htable.h comp-ipf-include ipfilter +./usr/include/netinet/ip_icmp.h comp-c-include +./usr/include/netinet/ip_lookup.h comp-ipf-include ipfilter +./usr/include/netinet/ip_mroute.h comp-c-include +./usr/include/netinet/ip_nat.h comp-ipf-include ipfilter +./usr/include/netinet/ip_pool.h comp-ipf-include ipfilter +./usr/include/netinet/ip_proxy.h comp-ipf-include ipfilter +./usr/include/netinet/ip_rules.h comp-obsolete obsolete +./usr/include/netinet/ip_scan.h comp-ipf-include ipfilter +./usr/include/netinet/ip_state.h comp-ipf-include ipfilter +./usr/include/netinet/ip_sync.h comp-ipf-include ipfilter +./usr/include/netinet/ip_var.h comp-c-include +./usr/include/netinet/ipf_rb.h comp-ipf-include ipfilter +./usr/include/netinet/ipl.h comp-ipf-include ipfilter +./usr/include/netinet/pim.h comp-c-include +./usr/include/netinet/pim_var.h comp-c-include +./usr/include/netinet/portalgo.h comp-c-include +./usr/include/netinet/rfc6056.h comp-obsolete obsolete +./usr/include/netinet/tcp.h comp-c-include +./usr/include/netinet/tcp_debug.h comp-c-include +./usr/include/netinet/tcp_fsm.h comp-c-include +./usr/include/netinet/tcp_seq.h comp-c-include +./usr/include/netinet/tcp_timer.h comp-c-include +./usr/include/netinet/tcp_var.h comp-c-include +./usr/include/netinet/tcp_vtw.h comp-c-include +./usr/include/netinet/tcpip.h comp-c-include +./usr/include/netinet/udp.h comp-c-include +./usr/include/netinet/udp_var.h comp-c-include +./usr/include/netinet6/ah.h comp-obsolete obsolete +./usr/include/netinet6/esp.h comp-obsolete obsolete +./usr/include/netinet6/icmp6.h comp-obsolete obsolete +./usr/include/netinet6/in6.h comp-c-include +./usr/include/netinet6/in6_gif.h comp-c-include +./usr/include/netinet6/in6_ifattach.h comp-c-include +./usr/include/netinet6/in6_pcb.h comp-c-include +./usr/include/netinet6/in6_var.h comp-c-include +./usr/include/netinet6/ip6.h comp-obsolete obsolete +./usr/include/netinet6/ip6_mroute.h comp-c-include +./usr/include/netinet6/ip6_var.h comp-c-include +./usr/include/netinet6/ip6protosw.h comp-c-include +./usr/include/netinet6/ipcomp.h comp-obsolete obsolete +./usr/include/netinet6/ipsec.h comp-c-include +./usr/include/netinet6/mld6_var.h comp-c-include +./usr/include/netinet6/nd6.h comp-c-include +./usr/include/netinet6/pim6.h comp-c-include +./usr/include/netinet6/pim6_var.h comp-c-include +./usr/include/netinet6/raw_ip6.h comp-c-include +./usr/include/netinet6/udp6.h comp-c-include +./usr/include/netinet6/udp6_var.h comp-c-include +./usr/include/netipsec/ah_var.h comp-c-include +./usr/include/netipsec/esp_var.h comp-c-include +./usr/include/netipsec/ipcomp_var.h comp-c-include +./usr/include/netipsec/ipip_var.h comp-c-include +./usr/include/netipsec/ipsec.h comp-c-include +./usr/include/netipsec/ipsec_var.h comp-c-include +./usr/include/netipsec/keydb.h comp-obsolete obsolete +./usr/include/netipsec/keysock.h comp-c-include +./usr/include/netisdn/i4b_cause.h comp-c-include +./usr/include/netisdn/i4b_debug.h comp-c-include +./usr/include/netisdn/i4b_ioctl.h comp-c-include +./usr/include/netisdn/i4b_rbch_ioctl.h comp-c-include +./usr/include/netisdn/i4b_tel_ioctl.h comp-c-include +./usr/include/netisdn/i4b_trace.h comp-c-include +./usr/include/netiso/argo_debug.h comp-c-include +./usr/include/netiso/clnl.h comp-c-include +./usr/include/netiso/clnp.h comp-c-include +./usr/include/netiso/clnp_stat.h comp-c-include +./usr/include/netiso/cltp_var.h comp-c-include +./usr/include/netiso/cons.h comp-c-include +./usr/include/netiso/cons_pcb.h comp-obsolete obsolete +./usr/include/netiso/eonvar.h comp-c-include +./usr/include/netiso/esis.h comp-c-include +./usr/include/netiso/idrp_var.h comp-c-include +./usr/include/netiso/iso.h comp-c-include +./usr/include/netiso/iso_errno.h comp-c-include +./usr/include/netiso/iso_pcb.h comp-c-include +./usr/include/netiso/iso_snpac.h comp-c-include +./usr/include/netiso/iso_var.h comp-c-include +./usr/include/netiso/tp_clnp.h comp-c-include +./usr/include/netiso/tp_events.h comp-c-include +./usr/include/netiso/tp_ip.h comp-c-include +./usr/include/netiso/tp_meas.h comp-c-include +./usr/include/netiso/tp_param.h comp-c-include +./usr/include/netiso/tp_pcb.h comp-c-include +./usr/include/netiso/tp_seq.h comp-c-include +./usr/include/netiso/tp_stat.h comp-c-include +./usr/include/netiso/tp_states.h comp-c-include +./usr/include/netiso/tp_timer.h comp-c-include +./usr/include/netiso/tp_tpdu.h comp-c-include +./usr/include/netiso/tp_trace.h comp-c-include +./usr/include/netiso/tp_user.h comp-c-include +./usr/include/netiso/tp_var.h comp-c-include +./usr/include/netiso/tuba_table.h comp-obsolete obsolete +./usr/include/netkey/key.h comp-obsolete obsolete +./usr/include/netkey/key_debug.h comp-obsolete obsolete +./usr/include/netkey/key_var.h comp-obsolete obsolete +./usr/include/netkey/keydb.h comp-obsolete obsolete +./usr/include/netkey/keysock.h comp-c-include +./usr/include/netkey/keyv2.h comp-obsolete obsolete +./usr/include/netmpls/mpls.h comp-c-include +./usr/include/netnatm/natm.h comp-c-include +./usr/include/netns/idp.h comp-obsolete obsolete +./usr/include/netns/idp_var.h comp-obsolete obsolete +./usr/include/netns/ns.h comp-obsolete obsolete +./usr/include/netns/ns_error.h comp-obsolete obsolete +./usr/include/netns/ns_if.h comp-obsolete obsolete +./usr/include/netns/ns_pcb.h comp-obsolete obsolete +./usr/include/netns/ns_var.h comp-obsolete obsolete +./usr/include/netns/sp.h comp-obsolete obsolete +./usr/include/netns/spidp.h comp-obsolete obsolete +./usr/include/netns/spp_debug.h comp-obsolete obsolete +./usr/include/netns/spp_timer.h comp-obsolete obsolete +./usr/include/netns/spp_var.h comp-obsolete obsolete +./usr/include/netpgp.h comp-c-include crypto +./usr/include/netsmb/iconv.h comp-c-include +./usr/include/netsmb/netbios.h comp-c-include +./usr/include/netsmb/smb.h comp-c-include +./usr/include/netsmb/smb_conn.h comp-c-include +./usr/include/netsmb/smb_dev.h comp-c-include +./usr/include/nfs/krpc.h comp-c-include +./usr/include/nfs/nfs.h comp-c-include +./usr/include/nfs/nfs_var.h comp-obsolete obsolete +./usr/include/nfs/nfsdiskless.h comp-c-include +./usr/include/nfs/nfsm_subs.h comp-c-include +./usr/include/nfs/nfsmount.h comp-c-include +./usr/include/nfs/nfsnode.h comp-c-include +./usr/include/nfs/nfsproto.h comp-c-include +./usr/include/nfs/nfsrtt.h comp-c-include +./usr/include/nfs/nfsrvcache.h comp-c-include +./usr/include/nfs/nfsv2.h comp-obsolete obsolete +./usr/include/nfs/nqnfs.h comp-obsolete obsolete +./usr/include/nfs/rpcv2.h comp-c-include +./usr/include/nfs/xdr_subs.h comp-c-include +./usr/include/nl_types.h comp-c-include +./usr/include/nlist.h comp-c-include +./usr/include/npf.h comp-npf-include npf +./usr/include/nsswitch.h comp-c-include +./usr/include/ntfs/ntfs.h comp-c-include +./usr/include/ntfs/ntfs_compr.h comp-obsolete obsolete +./usr/include/ntfs/ntfs_extern.h comp-obsolete obsolete +./usr/include/ntfs/ntfs_ihash.h comp-obsolete obsolete +./usr/include/ntfs/ntfs_inode.h comp-c-include +./usr/include/ntfs/ntfs_subr.h comp-obsolete obsolete +./usr/include/ntfs/ntfs_vfsops.h comp-obsolete obsolete +./usr/include/ntfs/ntfsmount.h comp-c-include +./usr/include/null.h comp-obsolete obsolete +./usr/include/objc/NXConstStr.h comp-c-include gcc +./usr/include/objc/Object.h comp-c-include gcc +./usr/include/objc/Protocol.h comp-c-include gcc +./usr/include/objc/encoding.h comp-c-include gcc +./usr/include/objc/hash.h comp-c-include gcc +./usr/include/objc/list.h comp-obsolete obsolete +./usr/include/objc/objc-api.h comp-c-include gcc +./usr/include/objc/objc-decls.h comp-cxx-include gcc=4 +./usr/include/objc/objc-decls.h comp-cxx-include gcc=45,cxx +./usr/include/objc/objc-list.h comp-c-include gcc +./usr/include/objc/objc.h comp-c-include gcc +./usr/include/objc/sarray.h comp-c-include gcc +./usr/include/objc/thr.h comp-c-include gcc +./usr/include/objc/typedstream.h comp-c-include gcc +./usr/include/openpgpsdk/accumulate.h comp-obsolete obsolete +./usr/include/openpgpsdk/armour.h comp-obsolete obsolete +./usr/include/openpgpsdk/callback.h comp-obsolete obsolete +./usr/include/openpgpsdk/compress.h comp-obsolete obsolete +./usr/include/openpgpsdk/configure.h comp-obsolete obsolete +./usr/include/openpgpsdk/create.h comp-obsolete obsolete +./usr/include/openpgpsdk/crypto.h comp-obsolete obsolete +./usr/include/openpgpsdk/defs.h comp-obsolete obsolete +./usr/include/openpgpsdk/errors.h comp-obsolete obsolete +./usr/include/openpgpsdk/final.h comp-obsolete obsolete +./usr/include/openpgpsdk/hash.h comp-obsolete obsolete +./usr/include/openpgpsdk/keyring.h comp-obsolete obsolete +./usr/include/openpgpsdk/lists.h comp-obsolete obsolete +./usr/include/openpgpsdk/memory.h comp-obsolete obsolete +./usr/include/openpgpsdk/openpgpsdk.h comp-obsolete obsolete +./usr/include/openpgpsdk/packet-parse.h comp-obsolete obsolete +./usr/include/openpgpsdk/packet-show-cast.h comp-obsolete obsolete +./usr/include/openpgpsdk/packet-show.h comp-obsolete obsolete +./usr/include/openpgpsdk/packet.h comp-obsolete obsolete +./usr/include/openpgpsdk/random.h comp-obsolete obsolete +./usr/include/openpgpsdk/readerwriter.h comp-obsolete obsolete +./usr/include/openpgpsdk/signature.h comp-obsolete obsolete +./usr/include/openpgpsdk/std_print.h comp-obsolete obsolete +./usr/include/openpgpsdk/streamwriter.h comp-obsolete obsolete +./usr/include/openpgpsdk/types.h comp-obsolete obsolete +./usr/include/openpgpsdk/util.h comp-obsolete obsolete +./usr/include/openpgpsdk/validate.h comp-obsolete obsolete +./usr/include/openpgpsdk/version.h comp-obsolete obsolete +./usr/include/openpgpsdk/writer.h comp-obsolete obsolete +./usr/include/openpgpsdk/writer_armoured.h comp-obsolete obsolete +./usr/include/openssl/aes.h comp-c-include crypto +./usr/include/openssl/asn1.h comp-c-include crypto +./usr/include/openssl/asn1_mac.h comp-c-include crypto +./usr/include/openssl/asn1t.h comp-c-include crypto +./usr/include/openssl/bio.h comp-c-include crypto +./usr/include/openssl/blowfish.h comp-c-include crypto +./usr/include/openssl/bn.h comp-c-include crypto +./usr/include/openssl/buffer.h comp-c-include crypto +./usr/include/openssl/camellia.h comp-c-include crypto +./usr/include/openssl/cast.h comp-c-include crypto +./usr/include/openssl/cmac.h comp-c-include crypto +./usr/include/openssl/cms.h comp-c-include crypto +./usr/include/openssl/comp.h comp-c-include crypto +./usr/include/openssl/conf.h comp-c-include crypto +./usr/include/openssl/conf_api.h comp-c-include crypto +./usr/include/openssl/crypto.h comp-c-include crypto +./usr/include/openssl/des.h comp-c-include crypto +./usr/include/openssl/dh.h comp-c-include crypto +./usr/include/openssl/dsa.h comp-c-include crypto +./usr/include/openssl/dso.h comp-c-include crypto +./usr/include/openssl/dtls1.h comp-c-include crypto +./usr/include/openssl/e_os.h comp-obsolete obsolete +./usr/include/openssl/e_os2.h comp-c-include crypto +./usr/include/openssl/ebcdic.h comp-c-include crypto +./usr/include/openssl/ec.h comp-c-include crypto +./usr/include/openssl/ecdh.h comp-c-include crypto +./usr/include/openssl/ecdsa.h comp-c-include crypto +./usr/include/openssl/engine.h comp-c-include crypto +./usr/include/openssl/err.h comp-c-include crypto +./usr/include/openssl/evp.h comp-c-include crypto +./usr/include/openssl/fips.h comp-obsolete obsolete +./usr/include/openssl/fips_rand.h comp-obsolete obsolete +./usr/include/openssl/hmac.h comp-c-include crypto +./usr/include/openssl/idea.h comp-c-include crypto +./usr/include/openssl/krb5_asn.h comp-c-include crypto +./usr/include/openssl/kssl.h comp-c-include crypto +./usr/include/openssl/lhash.h comp-c-include crypto +./usr/include/openssl/md2.h comp-c-include crypto +./usr/include/openssl/md4.h comp-c-include crypto +./usr/include/openssl/md5.h comp-c-include crypto +./usr/include/openssl/mdc2.h comp-c-include crypto +./usr/include/openssl/modes.h comp-c-include crypto +./usr/include/openssl/obj_mac.h comp-c-include crypto +./usr/include/openssl/objects.h comp-c-include crypto +./usr/include/openssl/ocsp.h comp-c-include crypto +./usr/include/openssl/opensslconf.h comp-c-include crypto +./usr/include/openssl/opensslv.h comp-c-include crypto +./usr/include/openssl/ossl_typ.h comp-c-include crypto +./usr/include/openssl/pem.h comp-c-include crypto +./usr/include/openssl/pem2.h comp-c-include crypto +./usr/include/openssl/pkcs12.h comp-c-include crypto +./usr/include/openssl/pkcs7.h comp-c-include crypto +./usr/include/openssl/pq_compat.h comp-obsolete obsolete +./usr/include/openssl/pqueue.h comp-c-include crypto +./usr/include/openssl/rand.h comp-c-include crypto +./usr/include/openssl/rc2.h comp-c-include crypto +./usr/include/openssl/rc4.h comp-c-include crypto +./usr/include/openssl/rc5.h comp-c-include crypto +./usr/include/openssl/ripemd.h comp-c-include crypto +./usr/include/openssl/rsa.h comp-c-include crypto +./usr/include/openssl/rsaref.h comp-obsolete obsolete +./usr/include/openssl/safestack.h comp-c-include crypto +./usr/include/openssl/seed.h comp-c-include crypto +./usr/include/openssl/sha.h comp-c-include crypto +./usr/include/openssl/srp.h comp-c-include crypto +./usr/include/openssl/srtp.h comp-c-include crypto +./usr/include/openssl/ssl.h comp-c-include crypto +./usr/include/openssl/ssl2.h comp-c-include crypto +./usr/include/openssl/ssl23.h comp-c-include crypto +./usr/include/openssl/ssl3.h comp-c-include crypto +./usr/include/openssl/stack.h comp-c-include crypto +./usr/include/openssl/store.h comp-c-include crypto +./usr/include/openssl/symhacks.h comp-c-include crypto +./usr/include/openssl/tls1.h comp-c-include crypto +./usr/include/openssl/tmdiff.h comp-obsolete obsolete +./usr/include/openssl/ts.h comp-c-include crypto +./usr/include/openssl/txt_db.h comp-c-include crypto +./usr/include/openssl/ui.h comp-c-include crypto +./usr/include/openssl/ui_compat.h comp-c-include crypto +./usr/include/openssl/whrlpool.h comp-c-include crypto +./usr/include/openssl/x509.h comp-c-include crypto +./usr/include/openssl/x509_vfy.h comp-c-include crypto +./usr/include/openssl/x509v3.h comp-c-include crypto +./usr/include/paths.h comp-c-include +./usr/include/pcap-namedb.h comp-c-include +./usr/include/pcap.h comp-c-include +./usr/include/pcap/bpf.h comp-c-include +./usr/include/pcap/namedb.h comp-c-include +./usr/include/pcap/pcap.h comp-c-include +./usr/include/pci.h comp-c-include +./usr/include/perfuse.h comp-c-include +./usr/include/poll.h comp-c-include +./usr/include/ppath/ppath.h comp-c-include +./usr/include/ppath/ppath_impl.h comp-c-include +./usr/include/prop/plistref.h comp-c-include +./usr/include/prop/prop_array.h comp-c-include +./usr/include/prop/prop_bool.h comp-c-include +./usr/include/prop/prop_data.h comp-c-include +./usr/include/prop/prop_dictionary.h comp-c-include +./usr/include/prop/prop_ingest.h comp-c-include +./usr/include/prop/prop_number.h comp-c-include +./usr/include/prop/prop_object.h comp-c-include +./usr/include/prop/prop_string.h comp-c-include +./usr/include/prop/proplib.h comp-c-include +./usr/include/protocols/dumprestore.h comp-c-include +./usr/include/protocols/routed.h comp-c-include +./usr/include/protocols/rwhod.h comp-c-include +./usr/include/protocols/talkd.h comp-c-include +./usr/include/protocols/timed.h comp-c-include +./usr/include/pthread.h comp-c-include +./usr/include/pthread_dbg.h comp-c-include +./usr/include/pthread_queue.h comp-c-include +./usr/include/pthread_types.h comp-c-include +./usr/include/puffs.h comp-puffs-include +./usr/include/puffsdump.h comp-puffs-include +./usr/include/pwd.h comp-c-include +./usr/include/quota.h comp-c-include +./usr/include/quota/quota.h comp-obsolete obsolete +./usr/include/quota/quotaprop.h comp-obsolete obsolete +./usr/include/radlib.h comp-c-include +./usr/include/radlib_vs.h comp-c-include +./usr/include/randomid.h comp-c-include +./usr/include/ranlib.h comp-c-include +./usr/include/re_comp.h comp-c-include +./usr/include/readline.h comp-obsolete obsolete +./usr/include/readline/history.h comp-c-include +./usr/include/readline/readline.h comp-c-include +./usr/include/regex.h comp-c-include +./usr/include/regexp.h comp-c-include +./usr/include/res_update.h comp-c-include +./usr/include/resolv.h comp-c-include +./usr/include/rmd160.h comp-c-include +./usr/include/rmt.h comp-c-include +./usr/include/rpc/auth.h comp-c-include +./usr/include/rpc/auth_unix.h comp-c-include +./usr/include/rpc/clnt.h comp-c-include +./usr/include/rpc/clnt_soc.h comp-c-include +./usr/include/rpc/nettype.h comp-c-include +./usr/include/rpc/pmap_clnt.h comp-c-include +./usr/include/rpc/pmap_prot.h comp-c-include +./usr/include/rpc/pmap_rmt.h comp-c-include +./usr/include/rpc/raw.h comp-c-include +./usr/include/rpc/rpc.h comp-c-include +./usr/include/rpc/rpc_com.h comp-c-include +./usr/include/rpc/rpc_msg.h comp-c-include +./usr/include/rpc/rpcb_clnt.h comp-c-include +./usr/include/rpc/rpcb_prot.h comp-c-include +./usr/include/rpc/rpcent.h comp-c-include +./usr/include/rpc/svc.h comp-c-include +./usr/include/rpc/svc_auth.h comp-c-include +./usr/include/rpc/svc_soc.h comp-c-include +./usr/include/rpc/types.h comp-c-include +./usr/include/rpc/xdr.h comp-c-include +./usr/include/rpcsvc/bootparam_prot.h comp-c-include +./usr/include/rpcsvc/bootparam_prot.x comp-c-include +./usr/include/rpcsvc/klm_prot.h comp-c-include +./usr/include/rpcsvc/klm_prot.x comp-c-include +./usr/include/rpcsvc/mount.h comp-c-include +./usr/include/rpcsvc/mount.x comp-c-include +./usr/include/rpcsvc/nfs_prot.h comp-c-include +./usr/include/rpcsvc/nfs_prot.x comp-c-include +./usr/include/rpcsvc/nlm_prot.h comp-c-include +./usr/include/rpcsvc/nlm_prot.x comp-c-include +./usr/include/rpcsvc/rex.h comp-c-include +./usr/include/rpcsvc/rex.x comp-c-include +./usr/include/rpcsvc/rnusers.h comp-c-include +./usr/include/rpcsvc/rnusers.x comp-c-include +./usr/include/rpcsvc/rquota.h comp-c-include +./usr/include/rpcsvc/rquota.x comp-c-include +./usr/include/rpcsvc/rstat.h comp-c-include +./usr/include/rpcsvc/rstat.x comp-c-include +./usr/include/rpcsvc/rusers.h comp-c-include +./usr/include/rpcsvc/rusers.x comp-c-include +./usr/include/rpcsvc/rwall.h comp-c-include +./usr/include/rpcsvc/rwall.x comp-c-include +./usr/include/rpcsvc/sm_inter.h comp-c-include +./usr/include/rpcsvc/sm_inter.x comp-c-include +./usr/include/rpcsvc/spray.h comp-c-include +./usr/include/rpcsvc/spray.x comp-c-include +./usr/include/rpcsvc/yp.h comp-c-include +./usr/include/rpcsvc/yp.x comp-c-include +./usr/include/rpcsvc/yp_prot.h comp-c-include +./usr/include/rpcsvc/ypclnt.h comp-c-include +./usr/include/rpcsvc/yppasswd.h comp-c-include +./usr/include/rpcsvc/yppasswd.x comp-c-include +./usr/include/rump/p2k.h comp-puffs-include rump +./usr/include/rump/rump.h comp-c-include rump +./usr/include/rump/rump_namei.h comp-c-include rump +./usr/include/rump/rump_syscalls.h comp-c-include rump +./usr/include/rump/rump_syscalls_compat.h comp-c-include rump +./usr/include/rump/rumpclient.h comp-c-include rump +./usr/include/rump/rumpdefs.h comp-c-include rump +./usr/include/rump/rumpkern_if_pub.h comp-c-include rump +./usr/include/rump/rumpnet_if_pub.h comp-c-include rump +./usr/include/rump/rumpuser.h comp-c-include rump +./usr/include/rump/rumpvfs_if_pub.h comp-c-include rump +./usr/include/rump/rumpvnode_if.h comp-c-include rump +./usr/include/rump/scsitest.h comp-c-include rump +./usr/include/rump/ukfs.h comp-c-include rump +./usr/include/sa.h comp-obsolete obsolete +./usr/include/saslc.h comp-c-include crypto +./usr/include/sched.h comp-c-include +./usr/include/sdp.h comp-c-include +./usr/include/search.h comp-c-include +./usr/include/security/openpam.h comp-c-include pam +./usr/include/security/openpam_attr.h comp-c-include pam +./usr/include/security/openpam_version.h comp-c-include pam +./usr/include/security/pam_appl.h comp-c-include pam +./usr/include/security/pam_constants.h comp-c-include pam +./usr/include/security/pam_mod_misc.h comp-c-include pam +./usr/include/security/pam_modules.h comp-c-include pam +./usr/include/security/pam_types.h comp-c-include pam +./usr/include/semaphore.h comp-c-include +./usr/include/setjmp.h comp-c-include +./usr/include/sgtty.h comp-c-include +./usr/include/sha1.h comp-c-include +./usr/include/sha2.h comp-c-include +./usr/include/signal.h comp-c-include +./usr/include/skey.h comp-c-include skey +./usr/include/smbfs comp-obsolete obsolete +./usr/include/soundcard.h comp-c-include +./usr/include/spawn.h comp-c-include +./usr/include/sqlite3.h comp-c-include +./usr/include/sqlite3ext.h comp-c-include +./usr/include/ssp/ssp.h comp-c-include +./usr/include/ssp/stdio.h comp-c-include +./usr/include/ssp/string.h comp-c-include +./usr/include/ssp/strings.h comp-c-include +./usr/include/ssp/unistd.h comp-c-include +./usr/include/stab.h comp-c-include +./usr/include/stdarg.h comp-c-include +./usr/include/stdbool.h comp-c-include +./usr/include/stddef.h comp-c-include +./usr/include/stdint.h comp-c-include +./usr/include/stdio.h comp-c-include +./usr/include/stdlib.h comp-c-include +./usr/include/string.h comp-c-include +./usr/include/stringlist.h comp-c-include +./usr/include/strings.h comp-c-include +./usr/include/struct.h comp-c-include +./usr/include/sys/acct.h comp-c-include +./usr/include/sys/agpio.h comp-c-include +./usr/include/sys/aio.h comp-c-include +./usr/include/sys/ansi.h comp-c-include +./usr/include/sys/aout_mids.h comp-c-include +./usr/include/sys/ataio.h comp-c-include +./usr/include/sys/atomic.h comp-c-include +./usr/include/sys/audioio.h comp-c-include +./usr/include/sys/bitops.h comp-c-include +./usr/include/sys/bootblock.h comp-c-include +./usr/include/sys/bootinfo.h comp-obsolete obsolete +./usr/include/sys/bswap.h comp-c-include +./usr/include/sys/buf.h comp-c-include +./usr/include/sys/bufq.h comp-obsolete obsolete +./usr/include/sys/bus.h comp-obsolete obsolete +./usr/include/sys/callback.h comp-c-include +./usr/include/sys/callout.h comp-c-include +./usr/include/sys/cc_microtime.h comp-obsolete obsolete +./usr/include/sys/cdefs.h comp-c-include +./usr/include/sys/cdefs_aout.h comp-c-include +./usr/include/sys/cdefs_elf.h comp-c-include +./usr/include/sys/cdio.h comp-c-include +./usr/include/sys/chio.h comp-c-include +./usr/include/sys/clist.h comp-obsolete obsolete +./usr/include/sys/clockctl.h comp-c-include +./usr/include/sys/condvar.h comp-c-include +./usr/include/sys/conf.h comp-c-include +./usr/include/sys/core.h comp-c-include +./usr/include/sys/cpu_data.h comp-obsolete obsolete +./usr/include/sys/cpufreq.h comp-c-include +./usr/include/sys/cpuio.h comp-c-include +./usr/include/sys/ctype_bits.h comp-c-include +./usr/include/sys/ctype_inline.h comp-c-include +./usr/include/sys/device.h comp-c-include +./usr/include/sys/device_if.h comp-c-include +./usr/include/sys/dir.h comp-c-include +./usr/include/sys/dirent.h comp-c-include +./usr/include/sys/disk.h comp-c-include +./usr/include/sys/disklabel.h comp-c-include +./usr/include/sys/disklabel_acorn.h comp-c-include +./usr/include/sys/disklabel_gpt.h comp-c-include +./usr/include/sys/disklabel_mbr.h comp-obsolete obsolete +./usr/include/sys/disklabel_rdb.h comp-c-include +./usr/include/sys/dkbad.h comp-c-include +./usr/include/sys/dkio.h comp-c-include +./usr/include/sys/dkstat.h comp-c-include +./usr/include/sys/dmap.h comp-obsolete obsolete +./usr/include/sys/domain.h comp-c-include +./usr/include/sys/drvctlio.h comp-c-include +./usr/include/sys/dvdio.h comp-c-include +./usr/include/sys/endian.h comp-c-include +./usr/include/sys/envsys.h comp-c-include +./usr/include/sys/errno.h comp-c-include +./usr/include/sys/evcnt.h comp-c-include +./usr/include/sys/event.h comp-c-include +./usr/include/sys/exec.h comp-c-include +./usr/include/sys/exec_aout.h comp-c-include +./usr/include/sys/exec_coff.h comp-c-include +./usr/include/sys/exec_ecoff.h comp-c-include +./usr/include/sys/exec_elf.h comp-c-include +./usr/include/sys/exec_script.h comp-c-include +./usr/include/sys/extattr.h comp-c-include +./usr/include/sys/extent.h comp-c-include +./usr/include/sys/fcntl.h comp-c-include +./usr/include/sys/fd_set.h comp-c-include +./usr/include/sys/fdio.h comp-c-include +./usr/include/sys/featuretest.h comp-c-include +./usr/include/sys/file.h comp-c-include +./usr/include/sys/filedesc.h comp-c-include +./usr/include/sys/filio.h comp-c-include +./usr/include/sys/flashio.h comp-c-include +./usr/include/sys/float_ieee.h comp-obsolete obsolete +./usr/include/sys/float_ieee754.h comp-c-include +./usr/include/sys/fnv_hash.h comp-obsolete obsolete +./usr/include/sys/fstypes.h comp-c-include +./usr/include/sys/gcq.h comp-c-include +./usr/include/sys/gmon.h comp-c-include +./usr/include/sys/gpio.h comp-c-include +./usr/include/sys/hash.h comp-c-include +./usr/include/sys/ieee754.h comp-c-include +./usr/include/sys/inttypes.h comp-c-include +./usr/include/sys/ioccom.h comp-c-include +./usr/include/sys/ioctl.h comp-c-include +./usr/include/sys/ioctl_compat.h comp-c-include +./usr/include/sys/iostat.h comp-c-include +./usr/include/sys/ipc.h comp-c-include +./usr/include/sys/joystick.h comp-c-include +./usr/include/sys/kcore.h comp-c-include +./usr/include/sys/kcpuset.h comp-c-include +./usr/include/sys/kernel.h comp-obsolete obsolete +./usr/include/sys/keylock.h comp-obsolete obsolete +./usr/include/sys/kgdb.h comp-c-include +./usr/include/sys/kmem.h comp-c-include +./usr/include/sys/ksem.h comp-c-include +./usr/include/sys/ksyms.h comp-c-include +./usr/include/sys/ktrace.h comp-c-include +./usr/include/sys/lkm.h comp-obsolete obsolete +./usr/include/sys/localedef.h comp-c-include +./usr/include/sys/lock.h comp-c-include +./usr/include/sys/lockf.h comp-c-include +./usr/include/sys/lwp.h comp-c-include +./usr/include/sys/lwpctl.h comp-c-include +./usr/include/sys/malloc.h comp-c-include +./usr/include/sys/mallocvar.h comp-c-include +./usr/include/sys/map.h comp-obsolete obsolete +./usr/include/sys/mbuf.h comp-c-include +./usr/include/sys/md4.h comp-c-include +./usr/include/sys/md5.h comp-c-include +./usr/include/sys/midiio.h comp-c-include +./usr/include/sys/mman.h comp-c-include +./usr/include/sys/module.h comp-c-include +./usr/include/sys/mount.h comp-c-include +./usr/include/sys/mqueue.h comp-c-include +./usr/include/sys/msg.h comp-c-include +./usr/include/sys/msgbuf.h comp-c-include +./usr/include/sys/mtio.h comp-c-include +./usr/include/sys/mutex.h comp-c-include +./usr/include/sys/namei.h comp-c-include +./usr/include/sys/null.h comp-c-include +./usr/include/sys/optstr.h comp-obsolete obsolete +./usr/include/sys/param.h comp-c-include +./usr/include/sys/pcu.h comp-c-include +./usr/include/sys/pipe.h comp-c-include +./usr/include/sys/pmc.h comp-c-include +./usr/include/sys/pmf.h comp-obsolete obsolete +./usr/include/sys/poll.h comp-c-include +./usr/include/sys/pool.h comp-c-include +./usr/include/sys/power.h comp-c-include +./usr/include/sys/proc.h comp-c-include +./usr/include/sys/properties.h comp-obsolete obsolete +./usr/include/sys/protosw.h comp-c-include +./usr/include/sys/pset.h comp-c-include +./usr/include/sys/ptrace.h comp-c-include +./usr/include/sys/ptree.h comp-c-include +./usr/include/sys/queue.h comp-c-include +./usr/include/sys/quota.h comp-c-include +./usr/include/sys/quotactl.h comp-c-include +./usr/include/sys/radioio.h comp-c-include +./usr/include/sys/ras.h comp-c-include +./usr/include/sys/rb.h comp-obsolete obsolete +./usr/include/sys/rbtree.h comp-c-include +./usr/include/sys/reboot.h comp-c-include +./usr/include/sys/resource.h comp-c-include +./usr/include/sys/resourcevar.h comp-c-include +./usr/include/sys/rmd160.h comp-c-include +./usr/include/sys/rnd.h comp-c-include +./usr/include/sys/rwlock.h comp-c-include +./usr/include/sys/sa.h comp-obsolete obsolete +./usr/include/sys/satypes.h comp-obsolete obsolete +./usr/include/sys/scanio.h comp-c-include +./usr/include/sys/sched.h comp-c-include +./usr/include/sys/scsiio.h comp-c-include +./usr/include/sys/sdt.h comp-c-include +./usr/include/sys/select.h comp-c-include +./usr/include/sys/selinfo.h comp-c-include +./usr/include/sys/sem.h comp-c-include +./usr/include/sys/sha1.h comp-c-include +./usr/include/sys/sha2.h comp-c-include +./usr/include/sys/shm.h comp-c-include +./usr/include/sys/siginfo.h comp-c-include +./usr/include/sys/signal.h comp-c-include +./usr/include/sys/signalvar.h comp-c-include +./usr/include/sys/sigtypes.h comp-c-include +./usr/include/sys/simplelock.h comp-c-include +./usr/include/sys/sleepq.h comp-c-include +./usr/include/sys/socket.h comp-c-include +./usr/include/sys/socketvar.h comp-c-include +./usr/include/sys/sockio.h comp-c-include +./usr/include/sys/soundcard.h comp-c-include +./usr/include/sys/spawn.h comp-c-include +./usr/include/sys/specificdata.h comp-c-include +./usr/include/sys/stat.h comp-c-include +./usr/include/sys/statvfs.h comp-c-include +./usr/include/sys/stdarg.h comp-c-include +./usr/include/sys/stdint.h comp-c-include +./usr/include/sys/swap.h comp-c-include +./usr/include/sys/syncobj.h comp-c-include +./usr/include/sys/syscall.h comp-c-include +./usr/include/sys/syscallargs.h comp-c-include +./usr/include/sys/sysctl.h comp-c-include +./usr/include/sys/syslimits.h comp-c-include +./usr/include/sys/syslog.h comp-c-include +./usr/include/sys/systm.h comp-obsolete obsolete +./usr/include/sys/systrace.h comp-obsolete obsolete +./usr/include/sys/tablet.h comp-obsolete obsolete +./usr/include/sys/tape.h comp-c-include +./usr/include/sys/termios.h comp-c-include +./usr/include/sys/time.h comp-c-include +./usr/include/sys/timeb.h comp-c-include +./usr/include/sys/timepps.h comp-c-include +./usr/include/sys/times.h comp-c-include +./usr/include/sys/timex.h comp-c-include +./usr/include/sys/tls.h comp-c-include +./usr/include/sys/tprintf.h comp-obsolete obsolete +./usr/include/sys/trace.h comp-c-include +./usr/include/sys/tree.h comp-c-include +./usr/include/sys/tty.h comp-c-include +./usr/include/sys/ttychars.h comp-c-include +./usr/include/sys/ttycom.h comp-c-include +./usr/include/sys/ttydefaults.h comp-c-include +./usr/include/sys/ttydev.h comp-c-include +./usr/include/sys/types.h comp-c-include +./usr/include/sys/ucontext.h comp-c-include +./usr/include/sys/ucred.h comp-c-include +./usr/include/sys/uio.h comp-c-include +./usr/include/sys/un.h comp-c-include +./usr/include/sys/unistd.h comp-c-include +./usr/include/sys/unpcb.h comp-c-include +./usr/include/sys/user.h comp-c-include +./usr/include/sys/utsname.h comp-c-include +./usr/include/sys/uuid.h comp-c-include +./usr/include/sys/vadvise.h comp-c-include +./usr/include/sys/vcmd.h comp-obsolete obsolete +./usr/include/sys/verified_exec.h comp-c-include +./usr/include/sys/videoio.h comp-c-include +./usr/include/sys/vlimit.h comp-obsolete obsolete +./usr/include/sys/vmmeter.h comp-c-include +./usr/include/sys/vnode.h comp-c-include +./usr/include/sys/vnode_if.h comp-c-include +./usr/include/sys/vsio.h comp-obsolete obsolete +./usr/include/sys/wait.h comp-c-include +./usr/include/sys/wapbl.h comp-c-include +./usr/include/sys/wapbl_replay.h comp-c-include +./usr/include/sys/wdog.h comp-c-include +./usr/include/sys/xattr.h comp-c-include +./usr/include/sysexits.h comp-c-include +./usr/include/syslog.h comp-c-include +./usr/include/tar.h comp-c-include +./usr/include/tcpd.h comp-c-include +./usr/include/term.h comp-c-include +./usr/include/termcap.h comp-c-include +./usr/include/termios.h comp-c-include +./usr/include/threadlib.h comp-obsolete obsolete +./usr/include/time.h comp-c-include +./usr/include/ttyent.h comp-c-include +./usr/include/tzfile.h comp-c-include +./usr/include/ucontext.h comp-c-include +./usr/include/ufs/ext2fs/ext2fs.h comp-c-include +./usr/include/ufs/ext2fs/ext2fs_dinode.h comp-c-include +./usr/include/ufs/ext2fs/ext2fs_dir.h comp-c-include +./usr/include/ufs/ext2fs/ext2fs_extern.h comp-c-include +./usr/include/ufs/ffs/ffs_extern.h comp-c-include +./usr/include/ufs/ffs/fs.h comp-c-include +./usr/include/ufs/lfs/lfs.h comp-c-include +./usr/include/ufs/lfs/lfs_extern.h comp-c-include +./usr/include/ufs/mfs/mfs_extern.h comp-c-include +./usr/include/ufs/mfs/mfsiom.h comp-obsolete obsolete +./usr/include/ufs/mfs/mfsnode.h comp-c-include +./usr/include/ufs/ufs/dinode.h comp-c-include +./usr/include/ufs/ufs/dir.h comp-c-include +./usr/include/ufs/ufs/dirhash.h comp-obsolete obsolete +./usr/include/ufs/ufs/extattr.h comp-c-include +./usr/include/ufs/ufs/inode.h comp-c-include +./usr/include/ufs/ufs/quota.h comp-c-include +./usr/include/ufs/ufs/quota1.h comp-c-include +./usr/include/ufs/ufs/quota2.h comp-c-include +./usr/include/ufs/ufs/ufs_bswap.h comp-c-include +./usr/include/ufs/ufs/ufs_extern.h comp-c-include +./usr/include/ufs/ufs/ufs_wapbl.h comp-c-include +./usr/include/ufs/ufs/ufsmount.h comp-c-include +./usr/include/ulimit.h comp-c-include +./usr/include/unctrl.h comp-c-include +./usr/include/unistd.h comp-c-include +./usr/include/usb.h comp-obsolete obsolete +./usr/include/usbhid.h comp-c-include +./usr/include/util.h comp-c-include +./usr/include/utime.h comp-c-include +./usr/include/utmp.h comp-c-include +./usr/include/utmpx.h comp-c-include +./usr/include/uuid.h comp-c-include +./usr/include/uvm/uvm.h comp-c-include +./usr/include/uvm/uvm_amap.h comp-c-include +./usr/include/uvm/uvm_amap_i.h comp-obsolete obsolete +./usr/include/uvm/uvm_anon.h comp-c-include +./usr/include/uvm/uvm_aobj.h comp-c-include +./usr/include/uvm/uvm_device.h comp-c-include +./usr/include/uvm/uvm_extern.h comp-c-include +./usr/include/uvm/uvm_fault.h comp-c-include +./usr/include/uvm/uvm_fault_i.h comp-c-include +./usr/include/uvm/uvm_glue.h comp-c-include +./usr/include/uvm/uvm_inherit.h comp-obsolete obsolete +./usr/include/uvm/uvm_km.h comp-c-include +./usr/include/uvm/uvm_loan.h comp-c-include +./usr/include/uvm/uvm_map.h comp-c-include +./usr/include/uvm/uvm_map_i.h comp-obsolete obsolete +./usr/include/uvm/uvm_object.h comp-c-include +./usr/include/uvm/uvm_page.h comp-c-include +./usr/include/uvm/uvm_page_i.h comp-obsolete obsolete +./usr/include/uvm/uvm_pager.h comp-c-include +./usr/include/uvm/uvm_pager_i.h comp-obsolete obsolete +./usr/include/uvm/uvm_param.h comp-c-include +./usr/include/uvm/uvm_pdaemon.h comp-c-include +./usr/include/uvm/uvm_pglist.h comp-c-include +./usr/include/uvm/uvm_pmap.h comp-c-include +./usr/include/uvm/uvm_prot.h comp-c-include +./usr/include/uvm/uvm_stat.h comp-c-include +./usr/include/uvm/uvm_swap.h comp-c-include +./usr/include/uvm/uvm_vnode.h comp-obsolete obsolete +./usr/include/varargs.h comp-obsolete obsolete +./usr/include/vis.h comp-c-include +./usr/include/vm/device_pager.h comp-obsolete obsolete +./usr/include/vm/lock.h comp-obsolete obsolete +./usr/include/vm/pglist.h comp-obsolete obsolete +./usr/include/vm/pmap.h comp-obsolete obsolete +./usr/include/vm/swap_pager.h comp-obsolete obsolete +./usr/include/vm/vm.h comp-obsolete obsolete +./usr/include/vm/vm_conf.h comp-obsolete obsolete +./usr/include/vm/vm_extern.h comp-obsolete obsolete +./usr/include/vm/vm_inherit.h comp-obsolete obsolete +./usr/include/vm/vm_kern.h comp-obsolete obsolete +./usr/include/vm/vm_map.h comp-obsolete obsolete +./usr/include/vm/vm_object.h comp-obsolete obsolete +./usr/include/vm/vm_page.h comp-obsolete obsolete +./usr/include/vm/vm_pageout.h comp-obsolete obsolete +./usr/include/vm/vm_pager.h comp-obsolete obsolete +./usr/include/vm/vm_param.h comp-obsolete obsolete +./usr/include/vm/vm_prot.h comp-obsolete obsolete +./usr/include/vm/vm_swap.h comp-obsolete obsolete +./usr/include/vm/vnode_pager.h comp-obsolete obsolete +./usr/include/wchar.h comp-c-include +./usr/include/wctype.h comp-c-include +./usr/include/wordexp.h comp-c-include +./usr/include/zconf.h comp-c-include +./usr/include/zlib.h comp-c-include +./usr/lib/crt0.o comp-c-lib +./usr/lib/gcrt0.o comp-c-lib +./usr/lib/i18n/libBIG5.a comp-i18n-lib +./usr/lib/i18n/libBIG5_g.a -unknown- debuglib +./usr/lib/i18n/libDECHanyu.a comp-i18n-lib +./usr/lib/i18n/libDECHanyu_g.a -unknown- debuglib +./usr/lib/i18n/libEUC.a comp-i18n-lib +./usr/lib/i18n/libEUCTW.a comp-i18n-lib +./usr/lib/i18n/libEUCTW_g.a -unknown- debuglib +./usr/lib/i18n/libEUC_g.a -unknown- debuglib +./usr/lib/i18n/libGBK2K.a comp-i18n-lib +./usr/lib/i18n/libGBK2K_g.a -unknown- debuglib +./usr/lib/i18n/libHZ.a comp-i18n-lib +./usr/lib/i18n/libHZ_g.a -unknown- debuglib +./usr/lib/i18n/libISO2022.a comp-i18n-lib +./usr/lib/i18n/libISO2022_g.a -unknown- debuglib +./usr/lib/i18n/libJOHAB.a comp-i18n-lib +./usr/lib/i18n/libJOHAB_g.a -unknown- debuglib +./usr/lib/i18n/libMSKanji.a comp-i18n-lib +./usr/lib/i18n/libMSKanji_g.a -unknown- debuglib +./usr/lib/i18n/libUES.a comp-i18n-lib +./usr/lib/i18n/libUES_g.a -unknown- debuglib +./usr/lib/i18n/libUTF1632.a comp-i18n-lib +./usr/lib/i18n/libUTF1632_g.a -unknown- debuglib +./usr/lib/i18n/libUTF7.a comp-i18n-lib +./usr/lib/i18n/libUTF7_g.a -unknown- debuglib +./usr/lib/i18n/libUTF8.a comp-i18n-lib +./usr/lib/i18n/libUTF8_g.a -unknown- debuglib +./usr/lib/i18n/libVIQR.a comp-i18n-lib +./usr/lib/i18n/libVIQR_g.a -unknown- debuglib +./usr/lib/i18n/libZW.a comp-i18n-lib +./usr/lib/i18n/libZW_g.a -unknown- debuglib +./usr/lib/i18n/libiconv_none.a comp-i18n-lib +./usr/lib/i18n/libiconv_none_g.a -unknown- debuglib +./usr/lib/i18n/libiconv_std.a comp-i18n-lib +./usr/lib/i18n/libiconv_std_g.a -unknown- debuglib +./usr/lib/i18n/libmapper_646.a comp-i18n-lib +./usr/lib/i18n/libmapper_646_g.a -unknown- debuglib +./usr/lib/i18n/libmapper_none.a comp-i18n-lib +./usr/lib/i18n/libmapper_none_g.a -unknown- debuglib +./usr/lib/i18n/libmapper_parallel.a comp-i18n-lib +./usr/lib/i18n/libmapper_parallel_g.a -unknown- debuglib +./usr/lib/i18n/libmapper_serial.a comp-i18n-lib +./usr/lib/i18n/libmapper_serial_g.a -unknown- debuglib +./usr/lib/i18n/libmapper_std.a comp-i18n-lib +./usr/lib/i18n/libmapper_std_g.a -unknown- debuglib +./usr/lib/i18n/libmapper_zone.a comp-i18n-lib +./usr/lib/i18n/libmapper_zone_g.a -unknown- debuglib +./usr/lib/libamu.a comp-obsolete obsolete +./usr/lib/libamu_g.a comp-obsolete obsolete +./usr/lib/libamu_p.a comp-obsolete obsolete +./usr/lib/libamu_pic.a comp-obsolete obsolete +./usr/lib/libarchive.a comp-c-lib +./usr/lib/libarchive_g.a -unknown- debuglib +./usr/lib/libarchive_p.a comp-c-proflib profile +./usr/lib/libasn1.a comp-krb5-lib kerberos +./usr/lib/libasn1_g.a -unknown- debuglib,kerberos +./usr/lib/libasn1_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libatf-c++.a comp-atf-lib atf +./usr/lib/libatf-c++_g.a -unknown- atf,debuglib +./usr/lib/libatf-c++_p.a comp-atf-lib atf,profile +./usr/lib/libatf-c.a comp-atf-lib atf +./usr/lib/libatf-c_g.a -unknown- atf,debuglib +./usr/lib/libatf-c_p.a comp-atf-lib atf,profile +./usr/lib/libatf.a comp-obsolete obsolete +./usr/lib/libatf_p.a comp-obsolete obsolete +./usr/lib/libavl.a comp-zfs-lib zfs +./usr/lib/libavl_g.a -unknown- debuglib,zfs +./usr/lib/libavl_p.a comp-zfs-proflib profile,zfs +./usr/lib/libbfd.a comp-obsolete obsolete +./usr/lib/libbfd_g.a -unknown- debuglib,binutils +./usr/lib/libbind9.a comp-bind-lib +./usr/lib/libbind9_g.a -unknown- debuglib +./usr/lib/libbind9_p.a comp-bind-proflib profile +./usr/lib/libbluetooth.a comp-c-lib +./usr/lib/libbluetooth_g.a -unknown- debuglib +./usr/lib/libbluetooth_p.a comp-c-proflib profile +./usr/lib/libbsdmalloc.a comp-c-lib +./usr/lib/libbsdmalloc_g.a -unknown- debuglib +./usr/lib/libbsdmalloc_p.a comp-c-proflib profile +./usr/lib/libbz2.a comp-c-lib +./usr/lib/libbz2_g.a -unknown- debuglib +./usr/lib/libbz2_p.a comp-c-proflib profile +./usr/lib/libc.a comp-c-lib +./usr/lib/libc_g.a -unknown- debuglib +./usr/lib/libc_p.a comp-c-proflib profile +./usr/lib/libcdk.a comp-obsolete obsolete +./usr/lib/libcdk_p.a comp-obsolete obsolete +./usr/lib/libcom_err.a comp-krb5-lib kerberos +./usr/lib/libcom_err_g.a -unknown- debuglib,kerberos +./usr/lib/libcom_err_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libcompat.a comp-c-lib +./usr/lib/libcompat_g.a -unknown- debuglib +./usr/lib/libcompat_p.a comp-c-proflib profile +./usr/lib/libcrypt.a comp-c-lib +./usr/lib/libcrypt_g.a -unknown- debuglib +./usr/lib/libcrypt_p.a comp-c-proflib profile +./usr/lib/libcrypto.a comp-c-lib crypto +./usr/lib/libcrypto_g.a -unknown- debuglib,crypto +./usr/lib/libcrypto_idea.a comp-obsolete obsolete +./usr/lib/libcrypto_idea_g.a comp-obsolete obsolete +./usr/lib/libcrypto_idea_p.a comp-obsolete obsolete +./usr/lib/libcrypto_mdc2.a comp-obsolete obsolete +./usr/lib/libcrypto_mdc2_g.a comp-obsolete obsolete +./usr/lib/libcrypto_mdc2_p.a comp-obsolete obsolete +./usr/lib/libcrypto_p.a comp-c-proflib profile,crypto +./usr/lib/libcrypto_rc5.a comp-c-lib crypto_rc5 +./usr/lib/libcrypto_rc5_g.a -unknown- debuglib,crypto_rc5 +./usr/lib/libcrypto_rc5_p.a comp-c-proflib profile,crypto_rc5 +./usr/lib/libctf.a comp-c-lib dtrace +./usr/lib/libctf_g.a -unknown- dtrace,debuglib +./usr/lib/libctf_p.a comp-c-proflib dtrace,profile +./usr/lib/libcurses.a comp-c-lib +./usr/lib/libcurses_g.a -unknown- debuglib +./usr/lib/libcurses_p.a comp-c-proflib profile +./usr/lib/libdes.a comp-c-lib crypto +./usr/lib/libdes_g.a -unknown- debuglib,crypto +./usr/lib/libdes_p.a comp-c-proflib profile,crypto +./usr/lib/libdevmapper.a comp-lvm-lib lvm +./usr/lib/libdevmapper_g.a -unknown- debuglib,lvm +./usr/lib/libdevmapper_p.a comp-lvm-proflib profile,lvm +./usr/lib/libdm.a comp-c-lib +./usr/lib/libdm_g.a -unknown- debuglib +./usr/lib/libdm_p.a comp-c-proflib profile +./usr/lib/libdns.a comp-bind-lib +./usr/lib/libdns_g.a -unknown- debuglib +./usr/lib/libdns_p.a comp-bind-proflib profile +./usr/lib/libdns_sd.a comp-mdns-lib mdns +./usr/lib/libdns_sd_g.a -unknown- debuglib,mdns +./usr/lib/libdns_sd_p.a comp-mdns-proflib profile,mdns +./usr/lib/libdtrace.a comp-c-lib dtrace +./usr/lib/libdtrace_g.a -unknown- dtrace,debuglib +./usr/lib/libdtrace_p.a comp-c-proflib dtrace,profile +./usr/lib/libdwarf.a comp-c-lib +./usr/lib/libdwarf_g.a -unknown- debuglib +./usr/lib/libdwarf_p.a comp-c-proflib profile +./usr/lib/libedit.a comp-c-lib +./usr/lib/libedit_g.a -unknown- debuglib +./usr/lib/libedit_p.a comp-c-proflib profile +./usr/lib/libelf.a comp-c-lib +./usr/lib/libelf_g.a -unknown- debuglib +./usr/lib/libelf_p.a comp-c-proflib profile +./usr/lib/libevent.a comp-c-lib +./usr/lib/libevent_g.a -unknown- debuglib +./usr/lib/libevent_p.a comp-c-proflib profile +./usr/lib/libexecinfo.a comp-c-lib +./usr/lib/libexecinfo_g.a -unknown- debuglib +./usr/lib/libexecinfo_p.a comp-c-proflib profile +./usr/lib/libexpat.a comp-c-lib +./usr/lib/libexpat_g.a -unknown- debuglib +./usr/lib/libexpat_p.a comp-c-proflib profile +./usr/lib/libfetch.a comp-c-lib +./usr/lib/libfetch_g.a -unknown- debuglib +./usr/lib/libfetch_p.a comp-c-proflib profile +./usr/lib/libfl.a comp-c-lib +./usr/lib/libfl_g.a -unknown- debuglib +./usr/lib/libfl_p.a comp-c-proflib profile +./usr/lib/libform.a comp-c-lib +./usr/lib/libform_g.a -unknown- debuglib +./usr/lib/libform_p.a comp-c-proflib profile +./usr/lib/libfrtbegin.a comp-c-lib gcc=3 +./usr/lib/libfrtbegin.a comp-obsolete gcc=4,obsolete +./usr/lib/libg++_p.a comp-obsolete obsolete +./usr/lib/libg++_pic.a comp-obsolete obsolete +./usr/lib/libg++a comp-obsolete obsolete +./usr/lib/libg2c.a comp-fortran-lib gcc=3 +./usr/lib/libg2c.a comp-obsolete gcc=4,obsolete +./usr/lib/libg2c_p.a comp-fortran-proflib gcc=3,profile +./usr/lib/libg2c_p.a comp-obsolete gcc=4,obsolete +./usr/lib/libgcc.a comp-c-lib gcccmds +./usr/lib/libgcc_eh_g.a -unknown- debuglib,gcccmds +./usr/lib/libgcc_g.a -unknown- debuglib,gcccmds +./usr/lib/libgcc_p.a comp-c-proflib obsolete +./usr/lib/libgcc_s.a comp-obsolete obsolete +./usr/lib/libgcc_s_g.a -unknown- debuglib,gcccmds +./usr/lib/libgcov.a comp-c-lib gcccmds +./usr/lib/libgcov_g.a -unknown- debuglib,gcccmds +./usr/lib/libgmp.a -unknown- obsolete +./usr/lib/libgmp.a comp-c-lib obsolete +./usr/lib/libgmp_p.a comp-c-proflib obsolete +./usr/lib/libgnumalloc.a comp-c-lib +./usr/lib/libgnumalloc_g.a -unknown- debuglib +./usr/lib/libgnumalloc_p.a comp-c-proflib profile +./usr/lib/libgomp.a comp-c-lib gcc=45 +./usr/lib/libgomp.spec comp-c-lib gcc=45 +./usr/lib/libgomp_g.a -unknown- debuglib,gcc=45 +./usr/lib/libgomp_p.a comp-c-proflib profile,gcc=45 +./usr/lib/libgssapi.a comp-krb5-lib kerberos +./usr/lib/libgssapi_g.a -unknown- debuglib,kerberos +./usr/lib/libgssapi_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libhdb.a comp-c-lib kerberos +./usr/lib/libhdb_g.a -unknown- debuglib,kerberos +./usr/lib/libhdb_p.a comp-c-proflib profile,kerberos +./usr/lib/libheimbase.a comp-krb5-lib kerberos +./usr/lib/libheimbase_g.a -unknown- debuglib,kerberos +./usr/lib/libheimbase_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libheimntlm.a comp-krb5-lib kerberos +./usr/lib/libheimntlm_g.a -unknown- debuglib,kerberos +./usr/lib/libheimntlm_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libhx509.a comp-krb5-lib kerberos +./usr/lib/libhx509_g.a -unknown- debuglib,kerberos +./usr/lib/libhx509_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libiberty_g.a -unknown- debuglib,binutils +./usr/lib/libintl.a comp-c-lib +./usr/lib/libintl_g.a -unknown- debuglib +./usr/lib/libintl_p.a comp-c-proflib profile +./usr/lib/libipsec.a comp-c-lib +./usr/lib/libipsec_g.a -unknown- debuglib +./usr/lib/libipsec_p.a comp-c-proflib profile +./usr/lib/libisc.a comp-bind-lib +./usr/lib/libisc_g.a -unknown- debuglib +./usr/lib/libisc_p.a comp-bind-lib profile +./usr/lib/libisccc.a comp-bind-lib +./usr/lib/libisccc_g.a -unknown- debuglib +./usr/lib/libisccc_p.a comp-bind-proflib profile +./usr/lib/libisccfg.a comp-bind-lib +./usr/lib/libisccfg_g.a -unknown- debuglib +./usr/lib/libisccfg_p.a comp-bind-proflib profile +./usr/lib/libiscsi.a comp-iscsi-lib iscsi +./usr/lib/libiscsi_g.a -unknown- debuglib,iscsi +./usr/lib/libiscsi_p.a comp-iscsi-proflib profile,iscsi +./usr/lib/libisns.a comp-isns-lib +./usr/lib/libisns_g.a comp-isns-lib debuglib +./usr/lib/libisns_p.a comp-isns-proflib profile +./usr/lib/libkadm.a comp-obsolete obsolete +./usr/lib/libkadm5clnt.a comp-krb5-lib kerberos +./usr/lib/libkadm5clnt_g.a -unknown- debuglib,kerberos +./usr/lib/libkadm5clnt_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libkadm5srv.a comp-krb5-lib kerberos +./usr/lib/libkadm5srv_g.a -unknown- debuglib,kerberos +./usr/lib/libkadm5srv_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libkadm_p.a comp-obsolete obsolete +./usr/lib/libkafs.a comp-krb5-lib kerberos +./usr/lib/libkafs_g.a -unknown- debuglib,kerberos +./usr/lib/libkafs_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libkdb.a comp-obsolete obsolete +./usr/lib/libkdb_p.a comp-obsolete obsolete +./usr/lib/libkdc.a comp-krb5-lib kerberos +./usr/lib/libkdc_g.a -unknown- debuglib,kerberos +./usr/lib/libkdc_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libkrb.a comp-obsolete obsolete +./usr/lib/libkrb5.a comp-krb5-lib kerberos +./usr/lib/libkrb5_g.a -unknown- debuglib,kerberos +./usr/lib/libkrb5_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libkrb_p.a comp-obsolete obsolete +./usr/lib/libkstream.a comp-obsolete obsolete +./usr/lib/libkstream_p.a comp-obsolete obsolete +./usr/lib/libkvm.a comp-c-lib +./usr/lib/libkvm_g.a -unknown- debuglib +./usr/lib/libkvm_p.a comp-c-proflib profile +./usr/lib/libl.a comp-c-lib +./usr/lib/libl_g.a -unknown- debuglib +./usr/lib/libl_p.a comp-c-proflib profile +./usr/lib/liblber.a comp-ldap-lib ldap +./usr/lib/liblber_g.a -unknown- debuglib,ldap +./usr/lib/liblber_p.a comp-ldap-proflib profile,ldap +./usr/lib/libldap.a comp-ldap-lib ldap +./usr/lib/libldap_g.a -unknown- debuglib,ldap +./usr/lib/libldap_p.a comp-ldap-proflib profile,ldap +./usr/lib/libldap_r.a comp-ldap-lib ldap +./usr/lib/libldap_r_g.a -unknown- debuglib,ldap +./usr/lib/libldap_r_p.a comp-ldap-proflib profile,ldap +./usr/lib/liblua.a comp-c-lib +./usr/lib/liblua_g.a -unknown- debuglib +./usr/lib/liblua_p.a comp-c-proflib profile +./usr/lib/liblwres.a comp-bind-lib +./usr/lib/liblwres_g.a -unknown- debuglib +./usr/lib/liblwres_p.a comp-bind-proflib profile +./usr/lib/liblzf.a comp-c-lib +./usr/lib/liblzf_g.a -unknown- debuglib +./usr/lib/liblzf_p.a comp-c-proflib profile +./usr/lib/liblzma.a comp-c-lib +./usr/lib/liblzma_g.a -unknown- debuglib +./usr/lib/liblzma_p.a comp-c-proflib profile +./usr/lib/libm.a comp-c-lib +./usr/lib/libm_g.a -unknown- debuglib +./usr/lib/libm_p.a comp-c-proflib profile +./usr/lib/libmagic.a comp-c-lib +./usr/lib/libmagic_g.a -unknown- debuglib +./usr/lib/libmagic_p.a comp-c-proflib profile +./usr/lib/libmenu.a comp-c-lib +./usr/lib/libmenu_g.a -unknown- debuglib +./usr/lib/libmenu_p.a comp-c-proflib profile +./usr/lib/libmilter.a comp-obsolete obsolete +./usr/lib/libmj.a comp-c-lib crypto +./usr/lib/libmj_g.a -unknown- debuglib +./usr/lib/libmj_p.a comp-c-proflib profile,crypto +./usr/lib/libmpc.a -unknown- obsolete +./usr/lib/libmpc.a comp-c-lib obsolete +./usr/lib/libmpc_p.a comp-c-proflib obsolete +./usr/lib/libmpfr.a -unknown- obsolete +./usr/lib/libmpfr.a comp-c-lib obsolete +./usr/lib/libmpfr_p.a comp-c-proflib obsolete +./usr/lib/libmudflap.a comp-c-lib gcc=45 +./usr/lib/libmudflap_g.a -unknown- gcc=45,debuglib +./usr/lib/libmudflap_p.a comp-c-proflib gcc=45,profile +./usr/lib/libmudflapth.a comp-c-lib gcc=45 +./usr/lib/libmudflapth_g.a -unknown- gcc=45,debuglib +./usr/lib/libmudflapth_p.a comp-c-proflib gcc=45,profile +./usr/lib/libnetpgp.a comp-c-lib crypto +./usr/lib/libnetpgp_g.a -unknown- debuglib +./usr/lib/libnetpgp_p.a comp-c-proflib profile,crypto +./usr/lib/libnpf.a comp-npf-lib npf +./usr/lib/libnpf_g.a -unknown- debuglib +./usr/lib/libnpf_p.a comp-npf-proflib profile,npf +./usr/lib/libntp.a comp-obsolete obsolete +./usr/lib/libntp_p.a comp-obsolete obsolete +./usr/lib/libntp_pic.a comp-obsolete obsolete +./usr/lib/libnvpair.a comp-zfs-lib zfs +./usr/lib/libnvpair_g.a -unknown- debuglib,zfs +./usr/lib/libnvpair_p.a comp-zfs-proflib profile,zfs +./usr/lib/libobjc.a comp-objc-lib gcccmds +./usr/lib/libobjc_g.a -unknown- debuglib,gcccmds +./usr/lib/libobjc_p.a comp-objc-proflib profile,gcccmds +./usr/lib/libopcodes_g.a comp-obsolete debuglib,binutils +./usr/lib/libopenpgpsdk.a comp-obsolete obsolete +./usr/lib/libopenpgpsdk_g.a comp-obsolete obsolete +./usr/lib/libopenpgpsdk_p.a comp-obsolete obsolete +./usr/lib/libossaudio.a comp-c-lib +./usr/lib/libossaudio_g.a -unknown- debuglib +./usr/lib/libossaudio_p.a comp-c-proflib profile +./usr/lib/libp2k.a comp-puffs-lib rump +./usr/lib/libp2k_g.a -unknown- debuglib,rump +./usr/lib/libp2k_p.a comp-puffs-proflib profile,rump +./usr/lib/libpam.a comp-c-lib pam +./usr/lib/libpam_g.a -unknown- pam,debuglib +./usr/lib/libpcap.a comp-c-lib +./usr/lib/libpcap_g.a -unknown- debuglib +./usr/lib/libpcap_p.a comp-c-proflib profile +./usr/lib/libpcc.a comp-obsolete obsolete +./usr/lib/libpcc_g.a -unknown- obsolete +./usr/lib/libpcc_p.a comp-obsolete obsolete +./usr/lib/libpci.a comp-c-lib +./usr/lib/libpci_g.a -unknown- debuglib +./usr/lib/libpci_p.a comp-c-proflib profile +./usr/lib/libperfuse.a comp-perfuse-lib +./usr/lib/libperfuse_g.a comp-perfuse-lib debuglib +./usr/lib/libperfuse_p.a comp-perfuse-proflib profile +./usr/lib/libposix.a comp-c-lib +./usr/lib/libposix_g.a -unknown- debuglib +./usr/lib/libposix_p.a comp-c-proflib profile +./usr/lib/libppath.a comp-c-lib +./usr/lib/libppath_g.a -unknown- debuglib +./usr/lib/libppath_p.a comp-c-proflib profile +./usr/lib/libprop.a comp-c-lib +./usr/lib/libprop_g.a -unknown- debuglib +./usr/lib/libprop_p.a comp-c-proflib profile +./usr/lib/libpthread.a comp-c-lib +./usr/lib/libpthread_dbg.a comp-c-lib +./usr/lib/libpthread_dbg_g.a -unknown- debuglib +./usr/lib/libpthread_dbg_p.a comp-c-proflib profile +./usr/lib/libpthread_g.a -unknown- debuglib +./usr/lib/libpthread_p.a comp-c-proflib profile +./usr/lib/libpuffs.a comp-puffs-lib +./usr/lib/libpuffs_g.a -unknown- debuglib +./usr/lib/libpuffs_p.a comp-puffs-proflib profile +./usr/lib/libquota.a comp-c-lib +./usr/lib/libquota_g.a -unknown- debuglib +./usr/lib/libquota_p.a comp-c-proflib profile +./usr/lib/libradius.a comp-c-lib +./usr/lib/libradius_g.a -unknown- debuglib +./usr/lib/libradius_p.a comp-c-proflib profile +./usr/lib/librefuse.a comp-refuse-lib +./usr/lib/librefuse_g.a -unknown- debuglib +./usr/lib/librefuse_p.a comp-refuse-proflib profile +./usr/lib/libresolv.a comp-c-lib +./usr/lib/libresolv_g.a -unknown- debuglib +./usr/lib/libresolv_p.a comp-c-proflib profile +./usr/lib/librmt.a comp-c-lib +./usr/lib/librmt_g.a -unknown- debuglib +./usr/lib/libroken.a comp-krb5-lib kerberos +./usr/lib/libroken_g.a -unknown- debuglib,kerberos +./usr/lib/libroken_p.a comp-krb5-proflib profile,kerberos +./usr/lib/librpcsvc.a comp-c-lib +./usr/lib/librpcsvc_g.a -unknown- debuglib +./usr/lib/librpcsvc_p.a comp-c-proflib profile +./usr/lib/librt.a comp-c-lib +./usr/lib/librt_g.a -unknown- debuglib +./usr/lib/librt_p.a comp-c-proflib profile +./usr/lib/librump.a comp-c-lib rump +./usr/lib/librump_g.a -unknown- debuglib,rump +./usr/lib/librump_p.a comp-c-proflib profile,rump +./usr/lib/librumpclient.a comp-c-lib rump +./usr/lib/librumpclient_g.a -unknown- debuglib,rump +./usr/lib/librumpclient_p.a comp-c-proflib profile,rump +./usr/lib/librumpcrypto.a comp-obsolete obsolete +./usr/lib/librumpcrypto_g.a comp-obsolete obsolete +./usr/lib/librumpcrypto_p.a comp-obsolete obsolete +./usr/lib/librumpdev.a comp-c-lib rump +./usr/lib/librumpdev_audio.a comp-c-lib rump +./usr/lib/librumpdev_audio_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_audio_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_bpf.a comp-c-lib rump +./usr/lib/librumpdev_bpf_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_bpf_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_cgd.a comp-c-lib rump +./usr/lib/librumpdev_cgd_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_cgd_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_disk.a comp-c-lib rump +./usr/lib/librumpdev_disk_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_disk_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_dm.a comp-c-lib rump +./usr/lib/librumpdev_dm_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_dm_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_drvctl.a comp-c-lib rump +./usr/lib/librumpdev_drvctl_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_drvctl_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_fss.a comp-c-lib rump +./usr/lib/librumpdev_fss_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_fss_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_md.a comp-c-lib rump +./usr/lib/librumpdev_md_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_md_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_netsmb.a comp-c-lib rump +./usr/lib/librumpdev_netsmb_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_netsmb_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_pad.a comp-c-lib rump +./usr/lib/librumpdev_pad_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_pad_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_pud.a comp-c-lib rump +./usr/lib/librumpdev_pud_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_pud_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_putter.a comp-c-lib rump +./usr/lib/librumpdev_putter_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_putter_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_raidframe.a comp-c-lib rump +./usr/lib/librumpdev_raidframe_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_raidframe_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_rnd.a comp-c-lib rump +./usr/lib/librumpdev_rnd_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_rnd_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_scsipi.a comp-c-lib rump +./usr/lib/librumpdev_scsipi_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_scsipi_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_scsitest.a comp-c-lib rump +./usr/lib/librumpdev_scsitest_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_scsitest_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_sysmon.a comp-c-lib rump +./usr/lib/librumpdev_sysmon_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_sysmon_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_ubt.a comp-c-lib rump +./usr/lib/librumpdev_ubt_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_ubt_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_ucom.a comp-c-lib rump +./usr/lib/librumpdev_ucom_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_ucom_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_ugenhc.a comp-c-lib rump +./usr/lib/librumpdev_ugenhc_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_ugenhc_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_ulpt.a comp-c-lib rump +./usr/lib/librumpdev_ulpt_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_ulpt_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_umass.a comp-c-lib rump +./usr/lib/librumpdev_umass_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_umass_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_usb.a comp-c-lib rump +./usr/lib/librumpdev_usb_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_usb_p.a comp-c-proflib profile,rump +./usr/lib/librumpdev_wscons.a comp-c-lib rump +./usr/lib/librumpdev_wscons_g.a -unknown- debuglib,rump +./usr/lib/librumpdev_wscons_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_cd9660.a comp-c-lib rump +./usr/lib/librumpfs_cd9660_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_cd9660_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_efs.a comp-c-lib rump +./usr/lib/librumpfs_efs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_efs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_ext2fs.a comp-c-lib rump +./usr/lib/librumpfs_ext2fs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_ext2fs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_fdesc.a comp-c-lib rump +./usr/lib/librumpfs_fdesc_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_fdesc_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_ffs.a comp-c-lib rump +./usr/lib/librumpfs_ffs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_ffs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_hfs.a comp-c-lib rump +./usr/lib/librumpfs_hfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_hfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_kernfs.a comp-c-lib rump +./usr/lib/librumpfs_kernfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_kernfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_lfs.a comp-c-lib rump +./usr/lib/librumpfs_lfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_lfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_mfs.a comp-c-lib rump +./usr/lib/librumpfs_mfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_mfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_msdos.a comp-c-lib rump +./usr/lib/librumpfs_msdos_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_msdos_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_nfs.a comp-c-lib rump +./usr/lib/librumpfs_nfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_nfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_nfsserver.a comp-c-lib rump +./usr/lib/librumpfs_nfsserver_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_nfsserver_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_nilfs.a comp-c-lib rump +./usr/lib/librumpfs_nilfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_nilfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_ntfs.a comp-c-lib rump +./usr/lib/librumpfs_ntfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_ntfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_null.a comp-c-lib rump +./usr/lib/librumpfs_null_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_null_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_nullfs.a comp-obsolete obsolete +./usr/lib/librumpfs_nullfs_g.a comp-obsolete obsolete +./usr/lib/librumpfs_nullfs_p.a comp-obsolete obsolete +./usr/lib/librumpfs_ptyfs.a comp-c-lib rump +./usr/lib/librumpfs_ptyfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_ptyfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_smbfs.a comp-c-lib rump +./usr/lib/librumpfs_smbfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_smbfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_syspuffs.a comp-c-lib rump +./usr/lib/librumpfs_syspuffs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_syspuffs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_sysvbfs.a comp-c-lib rump +./usr/lib/librumpfs_sysvbfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_sysvbfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_tmpfs.a comp-c-lib rump +./usr/lib/librumpfs_tmpfs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_tmpfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_udf.a comp-c-lib rump +./usr/lib/librumpfs_udf_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_udf_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_ufs.a comp-obsolete obsolete +./usr/lib/librumpfs_ufs_g.a comp-obsolete obsolete +./usr/lib/librumpfs_ufs_p.a comp-obsolete obsolete +./usr/lib/librumpfs_umap.a comp-c-lib rump +./usr/lib/librumpfs_umap_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_umap_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_umapfs.a comp-obsolete obsolete +./usr/lib/librumpfs_umapfs_g.a comp-obsolete obsolete +./usr/lib/librumpfs_umapfs_p.a comp-obsolete obsolete +./usr/lib/librumpfs_union.a comp-c-lib rump +./usr/lib/librumpfs_union_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_union_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_v7fs.a comp-c-lib rump +./usr/lib/librumpfs_v7fs_g.a -unknown- debuglib,rump +./usr/lib/librumpfs_v7fs_p.a comp-c-proflib profile,rump +./usr/lib/librumpfs_zfs.a comp-c-lib zfs,rump +./usr/lib/librumpfs_zfs_g.a -unknown- zfs,debuglib,rump +./usr/lib/librumpfs_zfs_p.a comp-c-piclib zfs,profile,rump +./usr/lib/librumphijack_g.a -unknown- debuglib,rump +./usr/lib/librumpkern_crypto.a comp-c-lib rump +./usr/lib/librumpkern_crypto_g.a -unknown- debuglib,rump +./usr/lib/librumpkern_crypto_p.a comp-c-proflib profile,rump +./usr/lib/librumpkern_ksem.a comp-obsolete obsolete +./usr/lib/librumpkern_ksem_g.a comp-obsolete obsolete +./usr/lib/librumpkern_ksem_p.a comp-obsolete obsolete +./usr/lib/librumpkern_solaris.a comp-c-lib zfs,rump +./usr/lib/librumpkern_solaris_g.a -unknown- debuglib,zfs,rump +./usr/lib/librumpkern_solaris_p.a comp-c-proflib profile,zfs,rump +./usr/lib/librumpkern_tty.a comp-c-lib rump +./usr/lib/librumpkern_tty_g.a -unknown- debuglib,rump +./usr/lib/librumpkern_tty_p.a comp-c-proflib profile,rump +./usr/lib/librumpkern_z.a comp-c-lib rump +./usr/lib/librumpkern_z_g.a -unknown- debuglib,rump +./usr/lib/librumpkern_z_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet.a comp-c-lib rump +./usr/lib/librumpnet_agr.a comp-c-lib rump +./usr/lib/librumpnet_agr_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_agr_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_bridge.a comp-c-lib rump +./usr/lib/librumpnet_bridge_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_bridge_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_local.a comp-c-lib rump +./usr/lib/librumpnet_local_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_local_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_net.a comp-c-lib rump +./usr/lib/librumpnet_net80211.a comp-c-lib rump +./usr/lib/librumpnet_net80211_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_net80211_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_net_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_net_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_netbt.a comp-c-lib rump +./usr/lib/librumpnet_netbt_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_netbt_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_netinet.a comp-c-lib rump +./usr/lib/librumpnet_netinet_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_netinet_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_npf.a comp-c-lib rump +./usr/lib/librumpnet_npf_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_npf_p.a comp-c-lib profile,rump +./usr/lib/librumpnet_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_shmif.a comp-c-lib rump +./usr/lib/librumpnet_shmif_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_shmif_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_sockin.a comp-c-lib rump +./usr/lib/librumpnet_sockin_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_sockin_p.a comp-c-proflib profile,rump +./usr/lib/librumpnet_virtif.a comp-c-lib rump +./usr/lib/librumpnet_virtif_g.a -unknown- debuglib,rump +./usr/lib/librumpnet_virtif_p.a comp-c-proflib profile,rump +./usr/lib/librumpuser.a comp-c-lib rump +./usr/lib/librumpuser_g.a -unknown- debuglib,rump +./usr/lib/librumpuser_p.a comp-c-proflib profile,rump +./usr/lib/librumpvfs.a comp-c-lib rump +./usr/lib/librumpvfs_fifofs.a comp-c-lib rump +./usr/lib/librumpvfs_fifofs_g.a -unknown- debuglib,rump +./usr/lib/librumpvfs_fifofs_p.a comp-c-proflib profile,rump +./usr/lib/librumpvfs_g.a -unknown- debuglib,rump +./usr/lib/librumpvfs_layerfs.a comp-c-lib rump +./usr/lib/librumpvfs_layerfs_g.a -unknown- debuglib,rump +./usr/lib/librumpvfs_layerfs_p.a comp-c-proflib profile,rump +./usr/lib/librumpvfs_p.a comp-c-proflib profile,rump +./usr/lib/libsaslc.a comp-c-clib crypto +./usr/lib/libsaslc_g.a -unknown- crypto,debuglib +./usr/lib/libsaslc_p.a comp-c-proflib crypto,profile +./usr/lib/libsdp.a comp-obsolete obsolete +./usr/lib/libsdp_g.a -obsolete obsolete +./usr/lib/libsdp_p.a comp-obsolete obsolete +./usr/lib/libskey.a comp-c-lib skey +./usr/lib/libskey_g.a -unknown- debuglib,skey +./usr/lib/libskey_p.a comp-c-proflib profile,skey +./usr/lib/libsl.a comp-krb5-lib kerberos +./usr/lib/libsl_g.a -unknown- kerberos,debuglib +./usr/lib/libsl_p.a comp-krb5-proflib profile,kerberos +./usr/lib/libsm.a comp-obsolete obsolete +./usr/lib/libsqlite3.a comp-c-clib +./usr/lib/libsqlite3_g.a -unknown- debuglib +./usr/lib/libsqlite3_p.a comp-c-proflib profile +./usr/lib/libss.a comp-obsolete obsolete +./usr/lib/libss_g.a -unknown- obsolete +./usr/lib/libss_p.a comp-obsolete obsolete +./usr/lib/libssh.a comp-c-lib crypto +./usr/lib/libssh_g.a -unknown- debuglib +./usr/lib/libssh_p.a comp-c-proflib profile,crypto +./usr/lib/libssl.a comp-c-lib crypto +./usr/lib/libssl_g.a -unknown- debuglib +./usr/lib/libssl_p.a comp-c-proflib profile,crypto +./usr/lib/libssp.a comp-obsolete obsolete +./usr/lib/libssp_p.a comp-obsolete obsolete +./usr/lib/libstdc++.a comp-cxx-lib cxx,gcccmds +./usr/lib/libstdc++_g.a -unknown- debuglib,cxx,gcccmds +./usr/lib/libstdc++_p.a comp-cxx-proflib profile,cxx,gcccmds +./usr/lib/libsupc++.a comp-cxx-lib cxx,gcccmds +./usr/lib/libsupc++_g.a -unknown- debuglib,cxx,gcccmds +./usr/lib/libtelnet.a comp-obsolete obsolete +./usr/lib/libtelnet.so comp-obsolete obsolete +./usr/lib/libtelnet_p.a comp-obsolete obsolete +./usr/lib/libtelnet_pic.a comp-obsolete obsolete +./usr/lib/libtermcap.a comp-c-lib +./usr/lib/libtermcap_g.a comp-obsolete obsolete +./usr/lib/libtermcap_p.a comp-c-proflib profile +./usr/lib/libterminfo.a comp-c-lib +./usr/lib/libterminfo_g.a -unknown- debuglib +./usr/lib/libterminfo_p.a comp-c-proflib profile +./usr/lib/libtermlib.a comp-c-lib +./usr/lib/libtermlib_p.a comp-c-proflib profile +./usr/lib/libtre.a comp-c-lib +./usr/lib/libtre_g.a comp-c-proflib debuglib +./usr/lib/libtre_p.a comp-c-proflib profile +./usr/lib/libukfs.a comp-c-lib rump +./usr/lib/libukfs_g.a -unknown- debuglib,rump +./usr/lib/libukfs_p.a comp-c-proflib profile,rump +./usr/lib/libumem.a comp-zfs-lib zfs +./usr/lib/libumem_g.a -unknown- debuglib,zfs +./usr/lib/libumem_p.a comp-zfs-proflib profile,zfs +./usr/lib/libusb.a comp-obsolete obsolete +./usr/lib/libusb_p.a comp-obsolete obsolete +./usr/lib/libusb_pic.a comp-obsolete obsolete +./usr/lib/libusbhid.a comp-c-lib +./usr/lib/libusbhid_g.a -unknown- debuglib +./usr/lib/libusbhid_p.a comp-c-proflib profile +./usr/lib/libutil.a comp-c-lib +./usr/lib/libutil_g.a -unknown- debuglib +./usr/lib/libutil_p.a comp-c-proflib profile +./usr/lib/libuutil.a comp-zfs-lib zfs +./usr/lib/libuutil_g.a -unknown- debuglib,zfs +./usr/lib/libuutil_p.a comp-zfs-proflib profile,zfs +./usr/lib/libvers_g.a -unknown- kerberos,debuglib +./usr/lib/libwind.a comp-krb5-lib kerberos +./usr/lib/libwind_g.a -unknown- kerberos,debuglib +./usr/lib/libwind_p.a comp-krb5-proflib kerberos,profile +./usr/lib/libwrap.a comp-c-lib +./usr/lib/libwrap_g.a -unknown- debuglib +./usr/lib/libwrap_p.a comp-c-proflib profile +./usr/lib/liby.a comp-c-lib +./usr/lib/liby_g.a -unknown- debuglib +./usr/lib/liby_p.a comp-c-proflib profile +./usr/lib/libz.a comp-c-lib +./usr/lib/libz_g.a -unknown- debuglib +./usr/lib/libz_p.a comp-c-proflib profile +./usr/lib/libzfs.a comp-zfs-lib zfs +./usr/lib/libzfs_g.a -unknown- debuglib,zfs +./usr/lib/libzfs_p.a comp-zfs-proflib profile,zfs +./usr/lib/libzpool.a comp-zfs-lib zfs +./usr/lib/libzpool_g.a -unknown- debuglib,zfs +./usr/lib/libzpool_p.a comp-zfs-proflib profile,zfs +./usr/lib/pkgconfig comp-c-lib +./usr/lib/pkgconfig/atf-c++.pc comp-atf-lib atf,share +./usr/lib/pkgconfig/atf-c.pc comp-atf-lib atf,share +./usr/lib/pkgconfig/atf-sh.pc comp-atf-lib atf,share +./usr/lib/pkgconfig/atf.pc comp-obsolete obsolete +./usr/lib/pkgconfig/sqlite3.pc comp-c-lib +./usr/libdata/debug/bin/cat.debug comp-util-debug debug +./usr/libdata/debug/bin/chio.debug comp-util-debug debug +./usr/libdata/debug/bin/chmod.debug comp-util-debug debug +./usr/libdata/debug/bin/cp.debug comp-util-debug debug +./usr/libdata/debug/bin/csh.debug comp-util-debug debug +./usr/libdata/debug/bin/date.debug comp-util-debug debug +./usr/libdata/debug/bin/dd.debug comp-util-debug debug +./usr/libdata/debug/bin/df.debug comp-util-debug debug +./usr/libdata/debug/bin/domainname.debug comp-nis-debug debug +./usr/libdata/debug/bin/echo.debug comp-util-debug debug +./usr/libdata/debug/bin/ed.debug comp-util-debug debug +./usr/libdata/debug/bin/expr.debug comp-util-debug debug +./usr/libdata/debug/bin/hostname.debug comp-util-debug debug +./usr/libdata/debug/bin/kill.debug comp-util-debug debug +./usr/libdata/debug/bin/ksh.debug comp-util-debug debug +./usr/libdata/debug/bin/ln.debug comp-util-debug debug +./usr/libdata/debug/bin/ls.debug comp-util-debug debug +./usr/libdata/debug/bin/mkdir.debug comp-util-debug debug +./usr/libdata/debug/bin/mt.debug comp-util-debug debug +./usr/libdata/debug/bin/mv.debug comp-util-debug debug +./usr/libdata/debug/bin/pax.debug comp-util-debug debug +./usr/libdata/debug/bin/ps.debug comp-util-debug debug +./usr/libdata/debug/bin/pwd.debug comp-util-debug debug +./usr/libdata/debug/bin/rcmd.debug comp-netutil-debug debug +./usr/libdata/debug/bin/rcp.debug comp-netutil-debug debug +./usr/libdata/debug/bin/rm.debug comp-util-debug debug +./usr/libdata/debug/bin/rmdir.debug comp-util-debug debug +./usr/libdata/debug/bin/rump.dd.debug comp-util-debug debug,rump +./usr/libdata/debug/bin/sh.debug comp-util-debug debug +./usr/libdata/debug/bin/sleep.debug comp-util-debug debug +./usr/libdata/debug/bin/stty.debug comp-util-debug debug +./usr/libdata/debug/bin/sync.debug comp-util-debug debug +./usr/libdata/debug/bin/systrace.debug comp-obsolete obsolete +./usr/libdata/debug/bin/test.debug comp-util-debug debug +./usr/libdata/debug/libexec/lfs_cleanerd.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/amrctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/apmlabel.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/atactl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/badsect.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/bioctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/brconfig.debug comp-netutil-debug debug +./usr/libdata/debug/sbin/ccdconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/cgdconfig.debug comp-sysutil-debug crypto,debug +./usr/libdata/debug/sbin/chown.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/clri.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/devpubd.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/dhclient.debug comp-dhclient-debug debug +./usr/libdata/debug/sbin/dhcpcd.debug comp-dhcpcd-debug debug +./usr/libdata/debug/sbin/disklabel.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/dkctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/dkscan_bsdlabel.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/dmctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/dmesg.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/dmsetup.debug comp-sysutil-debug lvm,debug +./usr/libdata/debug/sbin/drvctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/dump.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/dump_lfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/fdisk.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/fsck.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/fsck_ext2fs.debug comp-ext2fs-debug debug +./usr/libdata/debug/sbin/fsck_ffs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/fsck_lfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/fsck_msdos.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/fsck_v7fs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/fsdb.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/fsirand.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/gpt.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/ifconfig.debug comp-netutil-debug debug +./usr/libdata/debug/sbin/init.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/ipf.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/sbin/iscsictl.debug comp-iscsi-debug iscsi,debug +./usr/libdata/debug/sbin/iscsid.debug comp-iscsi-debug iscsi,debug +./usr/libdata/debug/sbin/lvm.debug comp-sysutil-debug lvm,debug +./usr/libdata/debug/sbin/mbrlabel.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mknod.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/modload.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/modstat.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/modunload.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_ados.debug comp-adosfs-debug debug +./usr/libdata/debug/sbin/mount_cd9660.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_chfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_efs.debug comp-efs-debug debug +./usr/libdata/debug/sbin/mount_ext2fs.debug comp-ext2fs-debug debug +./usr/libdata/debug/sbin/mount_fdesc.debug comp-miscfs-debug debug +./usr/libdata/debug/sbin/mount_ffs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_filecore.debug comp-filecorefs-debug debug +./usr/libdata/debug/sbin/mount_hfs.debug comp-hfs-debug debug +./usr/libdata/debug/sbin/mount_kernfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_lfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_msdos.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_nfs.debug comp-nfsclient-debug debug +./usr/libdata/debug/sbin/mount_nilfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_ntfs.debug comp-ntfs-debug debug +./usr/libdata/debug/sbin/mount_null.debug comp-miscfs-debug debug +./usr/libdata/debug/sbin/mount_overlay.debug comp-miscfs-debug debug +./usr/libdata/debug/sbin/mount_portal.debug comp-miscfs-debug debug +./usr/libdata/debug/sbin/mount_procfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_ptyfs.debug comp-miscfs-debug debug +./usr/libdata/debug/sbin/mount_puffs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_smbfs.debug comp-smbfs-debug debug +./usr/libdata/debug/sbin/mount_sysvbfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_tmpfs.debug comp-miscfs-debug debug +./usr/libdata/debug/sbin/mount_udf.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/mount_umap.debug comp-miscfs-debug debug +./usr/libdata/debug/sbin/mount_union.debug comp-miscfs-debug debug +./usr/libdata/debug/sbin/mount_v7fs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/newfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/newfs_ext2fs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/newfs_lfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/newfs_msdos.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/newfs_sysvbfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/newfs_udf.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/newfs_v7fs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/pdisk.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/pfctl.debug comp-pf-debug pf,debug +./usr/libdata/debug/sbin/pflogd.debug comp-pf-debug pf,debug +./usr/libdata/debug/sbin/pfs.debug comp-pf-debug pf,debug +./usr/libdata/debug/sbin/ping.debug comp-netutil-debug debug +./usr/libdata/debug/sbin/ping6.debug comp-netutil-debug use_inet6,debug +./usr/libdata/debug/sbin/pppoectl.debug comp-netutil-debug debug +./usr/libdata/debug/sbin/raidctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/rcorder.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/reboot.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/resize_ffs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/resize_lfs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/restore.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/rndctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/route.debug comp-netutil-debug debug +./usr/libdata/debug/sbin/routed.debug comp-router-debug debug +./usr/libdata/debug/sbin/rtsol.debug comp-netutil-debug use_inet6,debug +./usr/libdata/debug/sbin/rump.cgdconfig.debug comp-sysutil-debug crypto,debug,rump +./usr/libdata/debug/sbin/rump.ifconfig.debug comp-netutil-debug debug,rump +./usr/libdata/debug/sbin/rump.modload.debug comp-sysutil-debug debug,rump +./usr/libdata/debug/sbin/rump.modstat.debug comp-sysutil-debug debug,rump +./usr/libdata/debug/sbin/rump.modunload.debug comp-sysutil-debug debug,rump +./usr/libdata/debug/sbin/rump.ping.debug comp-netutil-debug debug,rump +./usr/libdata/debug/sbin/rump.raidctl.debug comp-sysutil-debug debug,rump +./usr/libdata/debug/sbin/rump.route.debug comp-netutil-debug debug,rump +./usr/libdata/debug/sbin/rump.sysctl.debug comp-sysutil-debug debug,rump +./usr/libdata/debug/sbin/savecore.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/scan_ffs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/scsictl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/setkey.debug comp-netutil-debug debug +./usr/libdata/debug/sbin/shutdown.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/slattach.debug comp-slip-debug debug +./usr/libdata/debug/sbin/svhlabel.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/swapctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/sysctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/tbrconfig.debug comp-router-debug debug +./usr/libdata/debug/sbin/ttyflags.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/tunefs.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/umount.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/veriexecctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/wdogctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/wsconsctl.debug comp-sysutil-debug debug +./usr/libdata/debug/sbin/zfs.debug comp-zfs-debug zfs,debug +./usr/libdata/debug/sbin/zpool.debug comp-zfs-debug zfs,debug +./usr/libdata/debug/usr/bin/addftinfo.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/addr2line.debug comp-debug-debug binutils,debug +./usr/libdata/debug/usr/bin/agrep.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/apply.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/apropos.debug comp-man-debug debug +./usr/libdata/debug/usr/bin/ar.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/arpaname.debug comp-bind-debug debug +./usr/libdata/debug/usr/bin/as.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/asa.debug comp-fortran-debug debug +./usr/libdata/debug/usr/bin/at.debug comp-cron-debug debug +./usr/libdata/debug/usr/bin/atf-check.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/atf-compile.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/atf-config.debug comp-atf-debug atf,debug +./usr/libdata/debug/usr/bin/atf-report.debug comp-atf-debug atf,debug +./usr/libdata/debug/usr/bin/atf-run.debug comp-atf-debug atf,debug +./usr/libdata/debug/usr/bin/atf-sh.debug comp-atf-debug atf,debug +./usr/libdata/debug/usr/bin/atf-version.debug comp-atf-debug atf,debug +./usr/libdata/debug/usr/bin/audiocfg.debug comp-audio-debug debug +./usr/libdata/debug/usr/bin/audioctl.debug comp-audio-debug debug +./usr/libdata/debug/usr/bin/audioplay.debug comp-audio-debug debug +./usr/libdata/debug/usr/bin/audiorecord.debug comp-audio-debug debug +./usr/libdata/debug/usr/bin/awk.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/banner.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/basename.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/bc.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/bdes.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/bin/biff.debug comp-mail-debug debug +./usr/libdata/debug/usr/bin/bthset.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/btkey.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/btpin.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/bzip2.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/bzip2recover.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/c++filt.debug comp-cxx-debug binutils,debug +./usr/libdata/debug/usr/bin/cal.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/calendar.debug comp-calendar-debug debug +./usr/libdata/debug/usr/bin/cap_mkdb.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/cdplay.debug comp-audio-debug debug +./usr/libdata/debug/usr/bin/checknr.debug comp-groff-debug debug +./usr/libdata/debug/usr/bin/chflags.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/chpass.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ci.debug comp-rcs-debug debug +./usr/libdata/debug/usr/bin/cksum.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/cmp.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/co.debug comp-rcs-debug debug +./usr/libdata/debug/usr/bin/col.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/colcrt.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/colrm.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/column.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/comm.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/compile_et.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/compress.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/config.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/cpp.debug comp-util-debug gcccmds,debug +./usr/libdata/debug/usr/bin/crontab.debug comp-cron-debug debug +./usr/libdata/debug/usr/bin/crunchgen.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/crunchide.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/csplit.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/ctags.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/ctfconvert.debug comp-util-debug dtrace,debug +./usr/libdata/debug/usr/bin/ctfdump.debug comp-util-debug dtrace,debug +./usr/libdata/debug/usr/bin/ctfmerge.debug comp-util-debug dtrace,debug +./usr/libdata/debug/usr/bin/cut.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/cvs.debug comp-cvs-debug cvs,debug +./usr/libdata/debug/usr/bin/db.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/dc.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/deroff.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/diff.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/diff3.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/dig.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/dirname.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/dns-sd.debug comp-mdns-debug mdns,debug +./usr/libdata/debug/usr/bin/du.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/eject.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/elfedit.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/env.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/eqn.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/error.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/expand.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/f77.debug comp-fortran-debug gcc=3,gcccmds,debug +./usr/libdata/debug/usr/bin/fgen.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/file.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/fincore.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/find.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/finger.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/fmt.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/fold.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/fort77.debug comp-fortran-debug gcc=3,gcccmds,debug +./usr/libdata/debug/usr/bin/fpr.debug comp-fortran-debug debug +./usr/libdata/debug/usr/bin/from.debug comp-mail-debug debug +./usr/libdata/debug/usr/bin/fsplit.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/fstat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ftp.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/g++.debug comp-cxx-debug gcccmds,debug +./usr/libdata/debug/usr/bin/g77.debug comp-fortran-debug gcc=3,gcccmds,debug +./usr/libdata/debug/usr/bin/gcc.debug comp-c-debug gcccmds,debug +./usr/libdata/debug/usr/bin/gcore.debug comp-debug-debug debug +./usr/libdata/debug/usr/bin/gcov.debug comp-debug-debug gcccmds,debug +./usr/libdata/debug/usr/bin/gdb.debug comp-debug-debug gdb,debug +./usr/libdata/debug/usr/bin/gdbtui.debug comp-debug-debug gdb,debug +./usr/libdata/debug/usr/bin/gencat.debug comp-locale-debug debug +./usr/libdata/debug/usr/bin/getconf.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/getent.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/getextattr.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/getopt.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/gettext.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/gkermit.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/gprof.debug comp-debug-debug binutils,debug +./usr/libdata/debug/usr/bin/grep.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/grn.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/grodvi.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/groff.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/grolbp.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/grolj4.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/grops.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/grotty.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/gss.debug comp-krb5-debug kerberos,debug,obsolete +./usr/libdata/debug/usr/bin/gsstool.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/gzip.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/head.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/hesinfo.debug comp-hesiod-debug hesiod,debug +./usr/libdata/debug/usr/bin/hexdump.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/host.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/hpftodit.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/hxtool.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/iconv.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/id.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ident.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/indent.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/indxbib.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/info.debug comp-texinfo-debug debug +./usr/libdata/debug/usr/bin/infocmp.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/infokey.debug comp-texinfo-debug debug +./usr/libdata/debug/usr/bin/innetgr.debug comp-nis-debug debug +./usr/libdata/debug/usr/bin/install-info.debug comp-texinfo-debug debug +./usr/libdata/debug/usr/bin/install.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ipcrm.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ipcs.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/join.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/jot.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/kcc.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/kdestroy.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/kdump.debug comp-debug-debug debug +./usr/libdata/debug/usr/bin/kgetcred.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/kinit.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/klist.debug comp-krb5-debug kerberos,debug,obsolete +./usr/libdata/debug/usr/bin/kpasswd.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/ktrace.debug comp-debug-debug debug +./usr/libdata/debug/usr/bin/ktruss.debug comp-debug-debug debug +./usr/libdata/debug/usr/bin/lam.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/last.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/lastcomm.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ld.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/ldapcompare.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldapdelete.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldapexop.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldapmodify.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldapmodrdn.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldappasswd.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldapsearch.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldapurl.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldapwhoami.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/bin/ldd.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/leave.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/less.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/lessecho.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/lesskey.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/lex.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/lint.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/lkbib.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/locale.debug comp-locale-debug debug +./usr/libdata/debug/usr/bin/locate.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/lock.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/logger.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/login.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/logname.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/look.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/lookbib.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/lpq.debug comp-lpr-debug debug +./usr/libdata/debug/usr/bin/lpr.debug comp-lpr-debug debug +./usr/libdata/debug/usr/bin/lprm.debug comp-lpr-debug debug +./usr/libdata/debug/usr/bin/lua.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/luac.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/lzf.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/lzmainfo.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/m4.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/mail.debug comp-mail-debug debug +./usr/libdata/debug/usr/bin/make.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/makeinfo.debug comp-texinfo-debug debug +./usr/libdata/debug/usr/bin/man.debug comp-man-debug debug +./usr/libdata/debug/usr/bin/mandoc.debug comp-mdocml-debug debug +./usr/libdata/debug/usr/bin/menuc.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/merge.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/mesg.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/midiplay.debug comp-audio-debug debug +./usr/libdata/debug/usr/bin/mixerctl.debug comp-audio-debug debug +./usr/libdata/debug/usr/bin/mk_cmds.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/mkcsmapper.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/mkdep.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/mkesdb.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/mkfifo.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/mklocale.debug comp-locale-debug debug +./usr/libdata/debug/usr/bin/mkstr.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/mktemp.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/mkubootimage.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/modstat.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/mset.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/msgattrib.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgc.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgcat.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgcmp.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgcomm.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgconv.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgen.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgexec.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgfmt.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msginit.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgmerge.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msgs.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/msgunfmt.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/msguniq.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/nbperf.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/nbsvtool.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/bin/netgroup.debug comp-nis-debug debug +./usr/libdata/debug/usr/bin/netpgp.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/bin/netpgpkeys.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/bin/netpgpverify.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/bin/netstat.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/newgrp.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/newsyslog.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/nfsstat.debug comp-nfsclient-debug debug +./usr/libdata/debug/usr/bin/nice.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/nl.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/nm.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/nohup.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/nslookup.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/nsupdate.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/nvi.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/objcopy.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/objdump.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/openpgp.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/openssl.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/bin/passwd.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/paste.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/patch.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/pathchk.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/pawd.debug comp-amd-debug debug +./usr/libdata/debug/usr/bin/paxctl.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/pcc.debug comp-c-debug pcc,debug +./usr/libdata/debug/usr/bin/pfbtops.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/pic.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/pigz.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/pkill.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/pmap.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/post-grohtml.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/pr.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/pre-grohtml.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/printenv.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/printf.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/progress.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/protoize.debug comp-c-debug gcc=4,gcccmds,debug +./usr/libdata/debug/usr/bin/protoize.debug comp-obsolete gcc=45,obsolete +./usr/libdata/debug/usr/bin/pwhash.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/qsafe.debug comp-util-debug crypto,debug +./usr/libdata/debug/usr/bin/qsieve.debug comp-util-debug crypto,debug +./usr/libdata/debug/usr/bin/qsubst.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/quota.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/radioctl.debug comp-audio-debug debug +./usr/libdata/debug/usr/bin/ranlib.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/rcs.debug comp-rcs-debug debug +./usr/libdata/debug/usr/bin/rcsclean.debug comp-rcs-debug debug +./usr/libdata/debug/usr/bin/rcsdiff.debug comp-rcs-debug debug +./usr/libdata/debug/usr/bin/rcsmerge.debug comp-rcs-debug debug +./usr/libdata/debug/usr/bin/rdist.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/readelf.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/refer.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/renice.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/rev.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/revoke.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/rfcomm_sppd.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/rlog.debug comp-rcs-debug debug +./usr/libdata/debug/usr/bin/rlogin.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/rpcgen.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/rpcinfo.debug comp-rpcutil-debug debug +./usr/libdata/debug/usr/bin/rs.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/rsh.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/rump.dhcpclient.debug comp-util-debug debug,rump +./usr/libdata/debug/usr/bin/rump.halt.debug comp-util-debug debug,rump +./usr/libdata/debug/usr/bin/rump.netstat.debug comp-netutil-debug debug,rump +./usr/libdata/debug/usr/bin/rump.sockstat.debug comp-util-debug debug,rump +./usr/libdata/debug/usr/bin/rump_allserver.debug comp-util-debug debug,rump +./usr/libdata/debug/usr/bin/rump_server.debug comp-util-debug debug,rump +./usr/libdata/debug/usr/bin/rup.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/ruptime.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/rusers.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/rwall.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/rwho.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/scp.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/bin/script.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/sdiff.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/sdpquery.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/sed.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/seq.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/sftp.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/bin/shlock.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/shmif_dumpbus.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/showmount.debug comp-nfsclient-debug debug +./usr/libdata/debug/usr/bin/shuffle.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/size.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/skey.debug comp-util-debug skey,debug +./usr/libdata/debug/usr/bin/skeyinfo.debug comp-util-debug skey,debug +./usr/libdata/debug/usr/bin/skeyinit.debug comp-util-debug skey,debug +./usr/libdata/debug/usr/bin/sockstat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/soelim.debug comp-groff-debug debug +./usr/libdata/debug/usr/bin/sort.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/split.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/sqlite3.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ssh-add.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/bin/ssh-agent.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/bin/ssh-keygen.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/bin/ssh-keyscan.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/bin/ssh.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/bin/stat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/string2key.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/strings.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/strip.debug comp-util-debug binutils,debug +./usr/libdata/debug/usr/bin/su.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/systat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tabs.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tail.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/talk.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/tbl.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/tcopy.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tee.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/telnet.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/texindex.debug comp-texinfo-debug debug +./usr/libdata/debug/usr/bin/tfmtodit.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/tftp.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/tic.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/time.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tip.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tmux.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tn3270.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/top.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/touch.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tpfmt.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tput.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tr.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/troff.debug comp-groff-debug groff,debug +./usr/libdata/debug/usr/bin/tset.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tsort.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/tty.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ul.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/uname.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/unexpand.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/unifdef.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/uniq.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/units.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/unprotoize.debug comp-c-debug gcc=4,gcccmds,debug +./usr/libdata/debug/usr/bin/unprotoize.debug comp-obsolete gcc=45,obsolete +./usr/libdata/debug/usr/bin/unvis.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/unzip.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/usbhidaction.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/usbhidctl.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/users.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/utoppya.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/uucp.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/uudecode.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/uuencode.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/uuidgen.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/uulog.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/uuname.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/uupick.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/uustat.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/uux.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/vacation.debug comp-mail-debug debug +./usr/libdata/debug/usr/bin/verify_krb5_conf.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/bin/vi.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/videoctl.debug comp-video-debug debug +./usr/libdata/debug/usr/bin/vis.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/vmstat.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/vndcompress.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/w.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/wall.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/wc.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/what.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/whatis.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/whereis.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/who.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/whois.debug comp-netutil-debug debug +./usr/libdata/debug/usr/bin/window.debug comp-obsolete obsolete +./usr/libdata/debug/usr/bin/write.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/xargs.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/xgettext.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/xmlwf.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/xstr.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/xz.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/yacc.debug comp-c-debug debug +./usr/libdata/debug/usr/bin/yes.debug comp-util-debug debug +./usr/libdata/debug/usr/bin/ypcat.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/bin/ypmatch.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/bin/ypwhich.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/bin/ztest.debug comp-zfs-debug zfs,debug +./usr/libdata/debug/usr/games/adventure.debug comp-games-debug debug +./usr/libdata/debug/usr/games/arithmetic.debug comp-games-debug debug +./usr/libdata/debug/usr/games/atc.debug comp-games-debug debug +./usr/libdata/debug/usr/games/backgammon.debug comp-games-debug debug +./usr/libdata/debug/usr/games/banner.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/battlestar.debug comp-games-debug debug +./usr/libdata/debug/usr/games/bcd.debug comp-games-debug debug +./usr/libdata/debug/usr/games/boggle.debug comp-games-debug debug +./usr/libdata/debug/usr/games/caesar.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/canfield.debug comp-games-debug debug +./usr/libdata/debug/usr/games/cfscores.debug comp-games-debug debug +./usr/libdata/debug/usr/games/colorbars.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/cribbage.debug comp-games-debug debug +./usr/libdata/debug/usr/games/dab.debug comp-games-debug debug +./usr/libdata/debug/usr/games/dm.debug comp-games-debug debug +./usr/libdata/debug/usr/games/factor.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/fish.debug comp-games-debug debug +./usr/libdata/debug/usr/games/fortune.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/gomoku.debug comp-games-debug debug +./usr/libdata/debug/usr/games/hack.debug comp-games-debug debug +./usr/libdata/debug/usr/games/hangman.debug comp-games-debug debug +./usr/libdata/debug/usr/games/hunt.debug comp-games-debug debug +./usr/libdata/debug/usr/games/huntd.debug comp-games-debug debug +./usr/libdata/debug/usr/games/larn.debug comp-games-debug debug +./usr/libdata/debug/usr/games/mille.debug comp-games-debug debug +./usr/libdata/debug/usr/games/monop.debug comp-games-debug debug +./usr/libdata/debug/usr/games/morse.debug comp-games-debug debug +./usr/libdata/debug/usr/games/number.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/phantasia.debug comp-games-debug debug +./usr/libdata/debug/usr/games/pig.debug comp-games-debug debug +./usr/libdata/debug/usr/games/pom.debug comp-games-debug debug +./usr/libdata/debug/usr/games/ppt.debug comp-games-debug debug +./usr/libdata/debug/usr/games/primes.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/quiz.debug comp-games-debug debug +./usr/libdata/debug/usr/games/rain.debug comp-games-debug debug +./usr/libdata/debug/usr/games/random.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/robots.debug comp-games-debug debug +./usr/libdata/debug/usr/games/rogue.debug comp-games-debug debug +./usr/libdata/debug/usr/games/sail.debug comp-games-debug debug +./usr/libdata/debug/usr/games/snake.debug comp-games-debug debug +./usr/libdata/debug/usr/games/snscore.debug comp-games-debug debug +./usr/libdata/debug/usr/games/strfile.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/teachgammon.debug comp-games-debug debug +./usr/libdata/debug/usr/games/tetris.debug comp-games-debug debug +./usr/libdata/debug/usr/games/trek.debug comp-games-debug debug +./usr/libdata/debug/usr/games/unstr.debug comp-utils-debug debug +./usr/libdata/debug/usr/games/worm.debug comp-games-debug debug +./usr/libdata/debug/usr/games/worms.debug comp-games-debug debug +./usr/libdata/debug/usr/games/wump.debug comp-games-debug debug +./usr/libdata/debug/usr/libexec/atf-check.debug comp-atf-debug atf,debug +./usr/libdata/debug/usr/libexec/atf-cleanup.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/atf-exec.debug comp-atf-debug obsolete +./usr/libdata/debug/usr/libexec/atf-format.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/atf-killpg.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/atrun.debug comp-cron-debug debug +./usr/libdata/debug/usr/libexec/cc1.debug comp-c-debug gcccmds,debug +./usr/libdata/debug/usr/libexec/cc1obj.debug comp-objc-debug gcccmds,debug +./usr/libdata/debug/usr/libexec/cc1plus.debug comp-cxx-debug gcccmds,debug +./usr/libdata/debug/usr/libexec/ccom.debug comp-c-debug pcc,debug +./usr/libdata/debug/usr/libexec/ching/castching.debug comp-games-debug debug +./usr/libdata/debug/usr/libexec/ching/printching.debug comp-games-debug debug +./usr/libdata/debug/usr/libexec/comsat.debug comp-mail-debug debug +./usr/libdata/debug/usr/libexec/cpp.debug comp-obsolete pcc,obsolete +./usr/libdata/debug/usr/libexec/digest-service.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/libexec/f771.debug comp-fortran-debug gcc=3,gcccmds,debug +./usr/libdata/debug/usr/libexec/f771.debug comp-obsolete gcc=4,obsolete +./usr/libdata/debug/usr/libexec/fingerd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/ftp-proxy.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/ftpd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/getNAME.debug comp-man-debug !makemandb,debug +./usr/libdata/debug/usr/libexec/getty.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/libexec/hpropd.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/libexec/httpd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/identd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/ipropd-master.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/libexec/ipropd-slave.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/libexec/kadmind.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/libexec/kpasswdd.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/libexec/lfs_cleanerd.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/lint1.debug comp-c-debug debug +./usr/libdata/debug/usr/libexec/lint2.debug comp-c-debug debug +./usr/libdata/debug/usr/libexec/locate.bigram.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/libexec/locate.code.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/libexec/lpr/lpf.debug comp-lpr-debug debug +./usr/libdata/debug/usr/libexec/mail.local.debug comp-mail-debug debug +./usr/libdata/debug/usr/libexec/makekey.debug comp-crypto-debug debug +./usr/libdata/debug/usr/libexec/makewhatis.debug comp-man-debug !makemandb,debug +./usr/libdata/debug/usr/libexec/ntalkd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/pcpp.debug comp-c-debug pcc,debug +./usr/libdata/debug/usr/libexec/postfix/anvil.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/bounce.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/cleanup.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/discard.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/dnsblog.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/error.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/flush.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/local.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/master.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/oqmgr.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/pickup.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/pipe.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/postscreen.debug comp-postfix-debug postfix,crypto,debug +./usr/libdata/debug/usr/libexec/postfix/proxymap.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/qmgr.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/scache.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/sendmail.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/showq.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/smtp.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/smtpd.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/spawn.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/tlsmgr.debug comp-postfix-debug postfix,crypto,debug +./usr/libdata/debug/usr/libexec/postfix/tlsproxy.debug comp-postfix-debug postfix,crypto,debug +./usr/libdata/debug/usr/libexec/postfix/trivial-rewrite.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/verify.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/postfix/virtual.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/libexec/rexecd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/rlogind.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/rmail.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/rpc.rquotad.debug comp-nfsserver-debug debug +./usr/libdata/debug/usr/libexec/rpc.rstatd.debug comp-rpcserver-debug debug +./usr/libdata/debug/usr/libexec/rpc.rusersd.debug comp-rpcserver-debug debug +./usr/libdata/debug/usr/libexec/rpc.rwalld.debug comp-rpcserver-debug debug +./usr/libdata/debug/usr/libexec/rpc.sprayd.debug comp-rpcserver-debug debug +./usr/libdata/debug/usr/libexec/rshd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/sftp-server.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/libexec/spellprog.debug comp-util-debug debug +./usr/libdata/debug/usr/libexec/ssh-keysign.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/libexec/ssh-pkcs11-helper.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/libexec/telnetd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/tftp-proxy.debug comp-pf-debug pf,debug +./usr/libdata/debug/usr/libexec/tftpd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/libexec/utmp_update.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/libexec/uucp/uucico.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/uucp/uuconv.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/uucp/uuxqt.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/uucpd.debug comp-obsolete obsolete +./usr/libdata/debug/usr/libexec/vfontedpr.debug comp-groff-debug debug +./usr/libdata/debug/usr/sbin/ac.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/accton.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/altqd.debug comp-router-debug debug +./usr/libdata/debug/usr/sbin/altqstat.debug comp-router-debug debug +./usr/libdata/debug/usr/sbin/amd.debug comp-amd-debug debug +./usr/libdata/debug/usr/sbin/amq.debug comp-amd-debug debug +./usr/libdata/debug/usr/sbin/arp.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/audit-packages.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/authpf.debug comp-pf-debug pf,debug +./usr/libdata/debug/usr/sbin/bootpd.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/bootpef.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/bootpgw.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/bootptest.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/btattach.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/btconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/btcontrol.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/btdevctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/bthcid.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/btpand.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/btuartd.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/catman.debug comp-man-debug debug +./usr/libdata/debug/usr/sbin/chat.debug comp-ppp-debug debug +./usr/libdata/debug/usr/sbin/chown.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/chroot.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/chrtbl.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/cnwctl.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/cpuctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/crash.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/cron.debug comp-cron-debug debug +./usr/libdata/debug/usr/sbin/daicctl.debug comp-isdn-debug debug +./usr/libdata/debug/usr/sbin/dbsym.debug comp-sysutil-debug binutils,debug +./usr/libdata/debug/usr/sbin/ddns-confgen.debug comp-bind-bin debug +./usr/libdata/debug/usr/sbin/dev_mkdb.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/dhcpd.debug comp-dhcpd-debug debug +./usr/libdata/debug/usr/sbin/dhcrelay.debug comp-dhcpd-debug debug +./usr/libdata/debug/usr/sbin/diskpart.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/dnssec-dsfromkey.debug comp-bind-debug debug +./usr/libdata/debug/usr/sbin/dnssec-keyfromlabel.debug comp-bind-debug debug +./usr/libdata/debug/usr/sbin/dnssec-keygen.debug comp-bind-debug debug +./usr/libdata/debug/usr/sbin/dnssec-revoke.debug comp-bind-debug debug +./usr/libdata/debug/usr/sbin/dnssec-settime.debug comp-bind-debug debug +./usr/libdata/debug/usr/sbin/dnssec-signzone.debug comp-bind-debug debug +./usr/libdata/debug/usr/sbin/dtmfdecode.debug comp-isdn-debug debug +./usr/libdata/debug/usr/sbin/dtrace.debug comp-util-debug dtrace,debug +./usr/libdata/debug/usr/sbin/dumpfs.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/dumplfs.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/edquota.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/envstat.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/eshconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/extattrctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/faithd.debug comp-router-debug inet6,debug +./usr/libdata/debug/usr/sbin/fixmount.debug comp-nfsclient-debug debug +./usr/libdata/debug/usr/sbin/flashctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/fsinfo.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/fssconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ftp-proxy.debug comp-pf-debug pf,debug +./usr/libdata/debug/usr/sbin/fusermount.debug comp-refuse-debug debug +./usr/libdata/debug/usr/sbin/fwctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/getencstat.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/gpioctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/gspa.debug comp-util-debug debug +./usr/libdata/debug/usr/sbin/hdaudioctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/hlfsd.debug comp-amd-debug debug +./usr/libdata/debug/usr/sbin/hostapd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/hostapd_cli.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/hprop.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/i2cscan.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ifmcstat.debug comp-netutil-debug inet6,debug +./usr/libdata/debug/usr/sbin/ifwatchd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/inetd.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/installboot.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/iopctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/iostat.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ipfs.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/usr/sbin/ipfstat.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/usr/sbin/ipftest.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/usr/sbin/ipmon.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/usr/sbin/ipnat.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/usr/sbin/ippool.debug comp-ipf-root ipfilter,debug +./usr/libdata/debug/usr/sbin/ipresend.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/usr/sbin/iprop-log.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/ipsend.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/usr/sbin/iptest.debug comp-ipf-debug ipfilter,debug +./usr/libdata/debug/usr/sbin/irdaattach.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/iscsi-initiator.debug comp-iscsi-debug iscsi,debug +./usr/libdata/debug/usr/sbin/iscsi-target.debug comp-iscsi-debug iscsi,debug +./usr/libdata/debug/usr/sbin/isdnd.debug comp-isdn-debug debug +./usr/libdata/debug/usr/sbin/isdnmonitor.debug comp-isdn-debug debug +./usr/libdata/debug/usr/sbin/isdntel.debug comp-isdn-debug debug +./usr/libdata/debug/usr/sbin/isdntelctl.debug comp-isdn-debug debug +./usr/libdata/debug/usr/sbin/isdntrace.debug comp-isdn-debug debug +./usr/libdata/debug/usr/sbin/isibootd.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/iwictl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/kadmin.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/kcm.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/kdc.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/kdigest.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/kgmon.debug comp-debug-debug debug +./usr/libdata/debug/usr/sbin/kimpersonate.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/kstash.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/ktutil.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/sbin/lastlogin.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ldpd.debug comp-router-debug debug +./usr/libdata/debug/usr/sbin/link.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/lmcconfig.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/lockstat.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/lpc.debug comp-lpr-debug debug +./usr/libdata/debug/usr/sbin/lpd.debug comp-lpr-debug debug +./usr/libdata/debug/usr/sbin/lptest.debug comp-lpr-debug debug +./usr/libdata/debug/usr/sbin/mailwrapper.debug comp-mailwrapper-debug debug +./usr/libdata/debug/usr/sbin/makedbm.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/makefs.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/makemandb.debug comp-makemandb-debug makemandb,debug +./usr/libdata/debug/usr/sbin/map-mbone.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/mdconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/mdnsd.debug comp-mdns-debug mdns,debug +./usr/libdata/debug/usr/sbin/mdsetimage.debug comp-sysutil-debug binutils,debug +./usr/libdata/debug/usr/sbin/mk-amd-map.debug comp-amd-debug debug +./usr/libdata/debug/usr/sbin/mkalias.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/mknetid.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/mld6query.debug comp-netutil-debug use_inet6,debug +./usr/libdata/debug/usr/sbin/mlxctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/mmcformat.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/mopchk.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/mopcopy.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/mopd.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/mopprobe.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/moptrace.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/mount_9p.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/mount_psshfs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/mount_puffsportal.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/mount_sysctlfs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/mountd.debug comp-nfsserver-debug debug +./usr/libdata/debug/usr/sbin/moused.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/mrinfo.debug comp-router-debug debug +./usr/libdata/debug/usr/sbin/mrouted.debug comp-router-debug debug +./usr/libdata/debug/usr/sbin/mscdlabel.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/mtrace.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/mtree.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/named-checkconf.debug comp-bind-bin debug +./usr/libdata/debug/usr/sbin/named-checkzone.debug comp-bind-bin debug +./usr/libdata/debug/usr/sbin/named-journalprint.debug comp-bind-bin debug +./usr/libdata/debug/usr/sbin/named.debug comp-bind-bin debug +./usr/libdata/debug/usr/sbin/ncdcs.debug comp-sysutil-root binutils,debug +./usr/libdata/debug/usr/sbin/ndbootd.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/ndp.debug comp-netutil-debug inet6,debug +./usr/libdata/debug/usr/sbin/netgroup_mkdb.debug comp-nis-debug debug +./usr/libdata/debug/usr/sbin/nfsd.debug comp-nfsserver-debug debug +./usr/libdata/debug/usr/sbin/npfctl.debug comp-npf-debug npf,debug +./usr/libdata/debug/usr/sbin/npftest.debug comp-npf-debug npf,rump,debug,pic +./usr/libdata/debug/usr/sbin/nsec3hash.debug comp-bind-debug debug +./usr/libdata/debug/usr/sbin/ntp-keygen.debug comp-ntp-debug crypto,debug +./usr/libdata/debug/usr/sbin/ntpd.debug comp-ntp-debug debug +./usr/libdata/debug/usr/sbin/ntpdate.debug comp-ntp-debug debug +./usr/libdata/debug/usr/sbin/ntpdc.debug comp-ntp-debug debug +./usr/libdata/debug/usr/sbin/ntpq.debug comp-ntp-debug debug +./usr/libdata/debug/usr/sbin/ntptime.debug comp-ntp-debug debug +./usr/libdata/debug/usr/sbin/omshell.debug comp-dhcpd-debug debug +./usr/libdata/debug/usr/sbin/pac.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/paxctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/pcictl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/perfused.debug comp-perfuse-debug debug +./usr/libdata/debug/usr/sbin/pkg_add.debug comp-pkgutil-debug debug,crypto +./usr/libdata/debug/usr/sbin/pkg_admin.debug comp-pkgutil-debug debug,crypto +./usr/libdata/debug/usr/sbin/pkg_create.debug comp-pkgutil-debug debug,crypto +./usr/libdata/debug/usr/sbin/pkg_delete.debug comp-pkgutil-debug debug,crypto +./usr/libdata/debug/usr/sbin/pkg_info.debug comp-pkgutil-debug debug,crypto +./usr/libdata/debug/usr/sbin/postalias.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postcat.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postconf.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postdrop.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postfix.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postkick.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postlock.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postlog.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postmap.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postmulti.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postqueue.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/postsuper.debug comp-postfix-debug postfix,debug +./usr/libdata/debug/usr/sbin/powerd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/pppd.debug comp-ppp-debug debug +./usr/libdata/debug/usr/sbin/pppdump.debug comp-ppp-debug debug +./usr/libdata/debug/usr/sbin/pppstats.debug comp-ppp-debug debug +./usr/libdata/debug/usr/sbin/psrset.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/pstat.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/pvcsif.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/pvctxctl.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/pwd_mkdb.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/quot.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/quotacheck.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/quotactl.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/quotaon.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/quotarestore.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/racoon.debug comp-netutil-debug crypto,debug +./usr/libdata/debug/usr/sbin/racoonctl.debug comp-netutil-debug crypto,debug +./usr/libdata/debug/usr/sbin/rarpd.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/rbootd.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/rdate.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/repquota.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/revnetgroup.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/rip6query.debug comp-netutil-debug inet6,debug +./usr/libdata/debug/usr/sbin/rmt.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/rndc-confgen.debug comp-bind-bin debug +./usr/libdata/debug/usr/sbin/rndc.debug comp-bind-bin debug +./usr/libdata/debug/usr/sbin/route6d.debug comp-router-debug use_inet6,debug +./usr/libdata/debug/usr/sbin/rpc.bootparamd.debug comp-bootserver-debug debug +./usr/libdata/debug/usr/sbin/rpc.lockd.debug comp-nfsserver-debug debug +./usr/libdata/debug/usr/sbin/rpc.pcnfsd.debug comp-nfsserver-debug debug +./usr/libdata/debug/usr/sbin/rpc.statd.debug comp-nfsserver-debug debug +./usr/libdata/debug/usr/sbin/rpc.yppasswdd.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/rpcbind.debug comp-rpcbind-debug debug +./usr/libdata/debug/usr/sbin/rtadvd.debug comp-router-debug use_inet6,debug +./usr/libdata/debug/usr/sbin/rtquery.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/rtsold.debug comp-netutil-debug inet6,debug +./usr/libdata/debug/usr/sbin/rump.envstat.debug comp-sysutil-debug debug,rump +./usr/libdata/debug/usr/sbin/rump.powerd.debug comp-sysutil-debug debug,rump +./usr/libdata/debug/usr/sbin/rump.traceroute.debug comp-netutil-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_cd9660.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_efs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_ext2fs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_ffs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_hfs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_lfs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_msdos.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_nfs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_ntfs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_smbfs.debug comp-puffs-debug crypto,debug,rump +./usr/libdata/debug/usr/sbin/rump_syspuffs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_sysvbfs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_tmpfs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_udf.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rump_v7fs.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/sbin/rwhod.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/sa.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/schedctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/screenblank.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/sdpd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/services_mkdb.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/sesd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/setencstat.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/setobjstat.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/sliplogin.debug comp-slip-debug debug +./usr/libdata/debug/usr/sbin/sntp.debug comp-ntp-debug debug +./usr/libdata/debug/usr/sbin/spray.debug comp-rpcutil-debug debug +./usr/libdata/debug/usr/sbin/srtconfig.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/sshd.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/sbin/stdethers.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/stdhosts.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/sti.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/sunlabel.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/sup.debug comp-sup-debug debug +./usr/libdata/debug/usr/sbin/supfilesrv.debug comp-sup-debug debug +./usr/libdata/debug/usr/sbin/supscan.debug comp-sup-debug debug +./usr/libdata/debug/usr/sbin/syslogd.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/tcpdchk.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/tcpdmatch.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/tcpdrop.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/tcpdump.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/timed.debug comp-timed-debug debug +./usr/libdata/debug/usr/sbin/timedc.debug comp-timed-debug debug +./usr/libdata/debug/usr/sbin/tprof.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/traceroute.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/traceroute6.debug comp-netutil-debug use_inet6,debug +./usr/libdata/debug/usr/sbin/trpt.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/trsp.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/unlink.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/usbdevs.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/user.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/uuchk.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/veriexecgen.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/vipw.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/vnconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wake.debug comp-obsolete obsolete +./usr/libdata/debug/usr/sbin/wakeonlan.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/wiconfig.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wire-test.debug comp-netutil-debug debug +./usr/libdata/debug/usr/sbin/wlanctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wpa_cli.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wpa_passphrase.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wpa_supplicant.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wsconscfg.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wsfontload.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wsmoused.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/wsmuxctl.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/ypbind.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/yppoll.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/yppush.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/ypserv.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/ypset.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/yptest.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/ypxfr.debug comp-nis-debug yp,debug +./usr/libdata/debug/usr/sbin/zdb.debug comp-zfs-debug zfs,debug +./usr/libdata/debug/usr/sbin/zdump.debug comp-sysutil-debug debug +./usr/libdata/debug/usr/sbin/zic.debug comp-sysutil-debug debug +./usr/libdata/ldscripts/kmodule comp-util-share binutils,kmod +./usr/libdata/lint/llib-larchive.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lasn1.ln comp-krb5-lintlib lint,kerberos +./usr/libdata/lint/llib-lbind9.ln comp-bind-lintlib lint +./usr/libdata/lint/llib-lbluetooth.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lbsdmalloc.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lbz2.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lc.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lcom_err.ln comp-krb5-lintlib lint,kerberos +./usr/libdata/lint/llib-lcompat.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lcrypt.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lcrypto.ln comp-c-lintlib lint,crypto +./usr/libdata/lint/llib-lcrypto_idea.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lcrypto_mdc2.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lcrypto_rc5.ln comp-c-lintlib lint,crypto_rc5 +./usr/libdata/lint/llib-lcurses.ln comp-c-lintlib lint +./usr/libdata/lint/llib-ldes.ln comp-c-lintlib lint,crypto +./usr/libdata/lint/llib-ldm.ln comp-c-lintlib lint +./usr/libdata/lint/llib-ldns.ln comp-bind-lintlib lint +./usr/libdata/lint/llib-ldns_sd.ln comp-mdns-lintlib lint,mdns +./usr/libdata/lint/llib-ldwarf.ln comp-c-lintlib lint +./usr/libdata/lint/llib-ledit.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lelf.ln comp-c-lintlib lint +./usr/libdata/lint/llib-levent.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lexecinfo.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lexpat.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lfetch.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lform.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lgmp.ln comp-c-lintlib obsolete +./usr/libdata/lint/llib-lgnumalloc.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lgssapi.ln comp-krb5-lintlib lint,kerberos +./usr/libdata/lint/llib-lheimbase.ln comp-krb5-lintlib lint,kerberos +./usr/libdata/lint/llib-lintl.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lipsec.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lisc.ln comp-bind-lintlib lint +./usr/libdata/lint/llib-lisccc.ln comp-bind-lintlib lint +./usr/libdata/lint/llib-lisccfg.ln comp-bind-lintlib lint +./usr/libdata/lint/llib-liscsi.ln comp-c-lintlib lint,iscsi +./usr/libdata/lint/llib-lisns.ln comp-isns-lintlib lint +./usr/libdata/lint/llib-lkdc.ln comp-krb5-lintlib lint,kerberos +./usr/libdata/lint/llib-lkstream.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lkvm.ln comp-c-lintlib lint +./usr/libdata/lint/llib-ll.ln comp-c-lintlib lint +./usr/libdata/lint/llib-llber.ln comp-ldap-lintlib lint,ldap +./usr/libdata/lint/llib-lldap.ln comp-ldap-lintlib lint,ldap +./usr/libdata/lint/llib-lldap_r.ln comp-ldap-lintlib lint,ldap +./usr/libdata/lint/llib-llua.ln comp-c-lintlib lint +./usr/libdata/lint/llib-llwres.ln comp-bind-lintlib lint +./usr/libdata/lint/llib-llzf.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lm.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lmagic.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lmenu.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lmilter.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lmj.ln comp-c-lintlib lint,crypto +./usr/libdata/lint/llib-lmpc.ln comp-c-lintlib obsolete +./usr/libdata/lint/llib-lmpfr.ln comp-c-lintlib obsolete +./usr/libdata/lint/llib-lnetpgp.ln comp-c-lintlib lint,crypto +./usr/libdata/lint/llib-lnpf.ln comp-npf-lintlib lint,npf +./usr/libdata/lint/llib-lntp.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lopenpgpsdk.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lossaudio.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lp2k.ln comp-puffs-lintlib lint,rump +./usr/libdata/lint/llib-lpam.ln comp-c-lintlib lint,pam +./usr/libdata/lint/llib-lpcap.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lpcc.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lpci.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lperfuse.ln comp-perfuse-lintlib lint +./usr/libdata/lint/llib-lposix.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lppath.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lprop.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lpthread.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lpthread_dbg.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lpuffs.ln comp-puffs-lintlib lint +./usr/libdata/lint/llib-lquota.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lradius.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lrefuse.ln comp-refuse-lintlib lint +./usr/libdata/lint/llib-lresolv.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lrmt.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lroken.ln comp-krb5-lintlib lint,kerberos +./usr/libdata/lint/llib-lrpcsvc.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lrt.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lrumpclient.ln comp-c-lintlib lint,rump +./usr/libdata/lint/llib-lrumphijack.ln comp-c-lintlib lint,rump +./usr/libdata/lint/llib-lrumpuser.ln comp-c-lintlib lint,rump +./usr/libdata/lint/llib-lsaslc.ln comp-c-lintlib lint,crypto +./usr/libdata/lint/llib-lsdp.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lskey.ln comp-c-lintlib lint,skey +./usr/libdata/lint/llib-lsm.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lsqlite3.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lssh.ln comp-c-lintlib lint,crypto +./usr/libdata/lint/llib-lssl.ln comp-c-lintlib lint,crypto +./usr/libdata/lint/llib-lssp.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lstdc.ln comp-c-lintlib lint +./usr/libdata/lint/llib-ltelnet.ln comp-obsolete obsolete +./usr/libdata/lint/llib-ltermcap.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lterminfo.ln comp-c-lintlib lint +./usr/libdata/lint/llib-ltre.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lukfs.ln comp-c-lintlib lint,rump +./usr/libdata/lint/llib-lusb.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lusbhid.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lutil.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lwrap.ln comp-c-lintlib lint +./usr/libdata/lint/llib-ly.ln comp-c-lintlib lint +./usr/libdata/lint/llib-lz.ln comp-c-lintlib lint +./usr/libexec/cc1 comp-c-bin gcccmds +./usr/libexec/cc1obj comp-objc-bin gcccmds +./usr/libexec/cc1plus comp-cxx-bin gcccmds +./usr/libexec/ccom comp-c-bin pcc +./usr/libexec/collect2 comp-obsolete obsolete +./usr/libexec/cpp comp-obsolete pcc,obsolete +./usr/libexec/f771 comp-fortran-bin gcc=3,gcccmds +./usr/libexec/f771 comp-obsolete gcc=4,obsolete +./usr/libexec/lint1 comp-c-bin +./usr/libexec/lint2 comp-c-bin +./usr/libexec/pcpp comp-c-bin pcc +./usr/sbin/config comp-obsolete obsolete +./usr/sbin/config.new comp-obsolete obsolete +./usr/sbin/genassym comp-obsolete obsolete +./usr/sbin/gspa comp-util-sbin +./usr/sbin/gspahextoc comp-obsolete obsolete +./usr/sbin/kgmon comp-debug-sbin +./usr/share/ldscripts/elf32_sparc.x comp-obsolete obsolete +./usr/share/ldscripts/elf32_sparc.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf32_sparc.xn comp-obsolete obsolete +./usr/share/ldscripts/elf32_sparc.xr comp-obsolete obsolete +./usr/share/ldscripts/elf32_sparc.xs comp-obsolete obsolete +./usr/share/ldscripts/elf32_sparc.xu comp-obsolete obsolete +./usr/share/ldscripts/elf32bmip.x comp-obsolete obsolete +./usr/share/ldscripts/elf32bmip.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf32bmip.xn comp-obsolete obsolete +./usr/share/ldscripts/elf32bmip.xr comp-obsolete obsolete +./usr/share/ldscripts/elf32bmip.xs comp-obsolete obsolete +./usr/share/ldscripts/elf32bmip.xu comp-obsolete obsolete +./usr/share/ldscripts/elf32lmip.x comp-obsolete obsolete +./usr/share/ldscripts/elf32lmip.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf32lmip.xn comp-obsolete obsolete +./usr/share/ldscripts/elf32lmip.xr comp-obsolete obsolete +./usr/share/ldscripts/elf32lmip.xs comp-obsolete obsolete +./usr/share/ldscripts/elf32lmip.xu comp-obsolete obsolete +./usr/share/ldscripts/elf32ppc.x comp-obsolete obsolete +./usr/share/ldscripts/elf32ppc.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf32ppc.xn comp-obsolete obsolete +./usr/share/ldscripts/elf32ppc.xr comp-obsolete obsolete +./usr/share/ldscripts/elf32ppc.xs comp-obsolete obsolete +./usr/share/ldscripts/elf32ppc.xu comp-obsolete obsolete +./usr/share/ldscripts/elf32shlunx.x comp-obsolete obsolete +./usr/share/ldscripts/elf32shlunx.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf32shlunx.xn comp-obsolete obsolete +./usr/share/ldscripts/elf32shlunx.xr comp-obsolete obsolete +./usr/share/ldscripts/elf32shlunx.xs comp-obsolete obsolete +./usr/share/ldscripts/elf32shlunx.xu comp-obsolete obsolete +./usr/share/ldscripts/elf32shunx.x comp-obsolete obsolete +./usr/share/ldscripts/elf32shunx.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf32shunx.xn comp-obsolete obsolete +./usr/share/ldscripts/elf32shunx.xr comp-obsolete obsolete +./usr/share/ldscripts/elf32shunx.xs comp-obsolete obsolete +./usr/share/ldscripts/elf32shunx.xu comp-obsolete obsolete +./usr/share/ldscripts/elf64_sparc.x comp-obsolete obsolete +./usr/share/ldscripts/elf64_sparc.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf64_sparc.xn comp-obsolete obsolete +./usr/share/ldscripts/elf64_sparc.xr comp-obsolete obsolete +./usr/share/ldscripts/elf64_sparc.xs comp-obsolete obsolete +./usr/share/ldscripts/elf64_sparc.xu comp-obsolete obsolete +./usr/share/ldscripts/elf64alpha.x comp-obsolete obsolete +./usr/share/ldscripts/elf64alpha.xbn comp-obsolete obsolete +./usr/share/ldscripts/elf64alpha.xn comp-obsolete obsolete +./usr/share/ldscripts/elf64alpha.xr comp-obsolete obsolete +./usr/share/ldscripts/elf64alpha.xs comp-obsolete obsolete +./usr/share/ldscripts/elf64alpha.xu comp-obsolete obsolete +./usr/share/ldscripts/kmodule comp-obsolete obsolete +./usr/share/ldscripts/m68kelf.x comp-obsolete obsolete +./usr/share/ldscripts/m68kelf.xbn comp-obsolete obsolete +./usr/share/ldscripts/m68kelf.xn comp-obsolete obsolete +./usr/share/ldscripts/m68kelf.xr comp-obsolete obsolete +./usr/share/ldscripts/m68kelf.xs comp-obsolete obsolete +./usr/share/ldscripts/m68kelf.xu comp-obsolete obsolete +./usr/share/ldscripts/m68kelfnbsd.x comp-obsolete obsolete +./usr/share/ldscripts/m68kelfnbsd.xbn comp-obsolete obsolete +./usr/share/ldscripts/m68kelfnbsd.xn comp-obsolete obsolete +./usr/share/ldscripts/m68kelfnbsd.xr comp-obsolete obsolete +./usr/share/ldscripts/m68kelfnbsd.xs comp-obsolete obsolete +./usr/share/ldscripts/m68kelfnbsd.xu comp-obsolete obsolete +./usr/share/ldscripts/m68knbsd.x comp-obsolete obsolete +./usr/share/ldscripts/m68knbsd.xbn comp-obsolete obsolete +./usr/share/ldscripts/m68knbsd.xn comp-obsolete obsolete +./usr/share/ldscripts/m68knbsd.xr comp-obsolete obsolete +./usr/share/ldscripts/m68knbsd.xu comp-obsolete obsolete +./usr/share/ldscripts/shlunx.x comp-obsolete obsolete +./usr/share/ldscripts/shlunx.xbn comp-obsolete obsolete +./usr/share/ldscripts/shlunx.xn comp-obsolete obsolete +./usr/share/ldscripts/shlunx.xr comp-obsolete obsolete +./usr/share/ldscripts/shlunx.xu comp-obsolete obsolete +./usr/share/ldscripts/shunx.x comp-obsolete obsolete +./usr/share/ldscripts/shunx.xbn comp-obsolete obsolete +./usr/share/ldscripts/shunx.xn comp-obsolete obsolete +./usr/share/ldscripts/shunx.xr comp-obsolete obsolete +./usr/share/ldscripts/shunx.xu comp-obsolete obsolete +./usr/share/ldscripts/sparcnbsd.x comp-obsolete obsolete +./usr/share/ldscripts/sparcnbsd.xbn comp-obsolete obsolete +./usr/share/ldscripts/sparcnbsd.xn comp-obsolete obsolete +./usr/share/ldscripts/sparcnbsd.xr comp-obsolete obsolete +./usr/share/ldscripts/sparcnbsd.xu comp-obsolete obsolete +./usr/share/ldscripts/sun4.x comp-obsolete obsolete +./usr/share/ldscripts/sun4.xbn comp-obsolete obsolete +./usr/share/ldscripts/sun4.xn comp-obsolete obsolete +./usr/share/ldscripts/sun4.xr comp-obsolete obsolete +./usr/share/ldscripts/sun4.xu comp-obsolete obsolete +./usr/share/locale/be/LC_MESSAGES/gettext-tools.mo comp-c_locale-be nls +./usr/share/locale/ca/LC_MESSAGES/gettext-tools.mo comp-c_locale-ca nls +./usr/share/locale/cs/LC_MESSAGES/gettext-tools.mo comp-c_locale-cs nls +./usr/share/locale/da/LC_MESSAGES/gettext-tools.mo comp-c_locale-da nls +./usr/share/locale/da/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/de/LC_MESSAGES/gettext-tools.mo comp-c_locale-de nls +./usr/share/locale/de/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/el/LC_MESSAGES/gettext-tools.mo comp-c_locale-el nls +./usr/share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo comp-c_locale-en@boldquot nls +./usr/share/locale/en@quot/LC_MESSAGES/gettext-tools.mo comp-c_locale-en@quot nls +./usr/share/locale/es/LC_MESSAGES/gettext-tools.mo comp-c_locale-es nls +./usr/share/locale/es/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/et/LC_MESSAGES/gettext-tools.mo comp-c_locale-et nls +./usr/share/locale/fi/LC_MESSAGES/gettext-tools.mo comp-c_locale-fi nls +./usr/share/locale/fr/LC_MESSAGES/gettext-tools.mo comp-c_locale-fr nls +./usr/share/locale/fr/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/gl/LC_MESSAGES/gettext-tools.mo comp-c_locale-gl nls +./usr/share/locale/id/LC_MESSAGES/gettext-tools.mo comp-c_locale-id nls +./usr/share/locale/it/LC_MESSAGES/gettext-tools.mo comp-c_locale-it nls +./usr/share/locale/ja/LC_MESSAGES/gettext-tools.mo comp-c_locale-ja nls +./usr/share/locale/ko/LC_MESSAGES/gettext-tools.mo comp-c_locale-ko nls +./usr/share/locale/ko/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/nl/LC_MESSAGES/gettext-tools.mo comp-c_locale-nl nls +./usr/share/locale/nl/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/nn/LC_MESSAGES/gettext-tools.mo comp-c_locale-nn nls +./usr/share/locale/no/LC_MESSAGES/gettext-tools.mo comp-c_locale-no nls +./usr/share/locale/no/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/no@nynorsk/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/pl/LC_MESSAGES/gettext-tools.mo comp-c_locale-pl nls +./usr/share/locale/pl/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/pt/LC_MESSAGES/gettext-tools.mo comp-c_locale-pr nls +./usr/share/locale/pt/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo comp-c_locale-pt_BR nls +./usr/share/locale/ro/LC_MESSAGES/gettext-tools.mo comp-c_locale-ro nls +./usr/share/locale/ru/LC_MESSAGES/gettext-tools.mo comp-c_locale-ru nls +./usr/share/locale/sk/LC_MESSAGES/gettext-tools.mo comp-c_locale-sk nls +./usr/share/locale/sl/LC_MESSAGES/gettext-tools.mo comp-c_locale-sl nls +./usr/share/locale/sl/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/sr/LC_MESSAGES/gettext-tools.mo comp-c_locale-sr nls +./usr/share/locale/sv/LC_MESSAGES/gettext-tools.mo comp-c_locale-sv nls +./usr/share/locale/sv/LC_MESSAGES/gettext.mo comp-obsolete obsolete +./usr/share/locale/tr/LC_MESSAGES/gettext-tools.mo comp-c_locale-tr nls +./usr/share/locale/uk/LC_MESSAGES/gettext-tools.mo comp-c_locale-uk nls +./usr/share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo comp-c_locale-zh_CN nls +./usr/share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo comp-c_locale-zh_TW nls +./usr/share/man/cat1/addr2line.0 comp-debug-catman binutils,.cat +./usr/share/man/cat1/ar.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/as.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/asa.0 comp-fortran-catman .cat +./usr/share/man/cat1/c++.0 comp-cxx-catman gcccmds,.cat +./usr/share/man/cat1/c++filt.0 comp-cxx-catman binutils,.cat +./usr/share/man/cat1/c89.0 comp-c-catman .cat +./usr/share/man/cat1/c99.0 comp-c-catman .cat +./usr/share/man/cat1/cc.0 comp-c-catman gcccmds,.cat +./usr/share/man/cat1/cccp.0 comp-util-catman gcccmds,.cat +./usr/share/man/cat1/config.0 comp-util-catman .cat +./usr/share/man/cat1/crunchgen.0 comp-c-catman .cat +./usr/share/man/cat1/crunchide.0 comp-c-catman .cat +./usr/share/man/cat1/cvs.0 comp-cvs-catman cvs,.cat +./usr/share/man/cat1/elf2aout.0 comp-sysutil-catman .cat +./usr/share/man/cat1/elf2ecoff.0 comp-sysutil-catman .cat +./usr/share/man/cat1/elfedit.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/f77.0 comp-fortran-catman gcc=3,gcccmds,.cat +./usr/share/man/cat1/f77.0 comp-obsolete gcc=4,obsolete +./usr/share/man/cat1/fgen.0 comp-util-catman .cat +./usr/share/man/cat1/flex.0 comp-c-catman .cat +./usr/share/man/cat1/flexdoc.0 comp-obsolete obsolete +./usr/share/man/cat1/fort77.0 comp-fortran-catman gcc=3,gcccmds,.cat +./usr/share/man/cat1/fort77.0 comp-obsolete gcc=4,obsolete +./usr/share/man/cat1/fpr.0 comp-fortran-catman .cat +./usr/share/man/cat1/g++.0 comp-cxx-catman gcccmds,.cat +./usr/share/man/cat1/g77.0 comp-fortran-catman gcc=3,gcccmds,.cat +./usr/share/man/cat1/g77.0 comp-obsolete gcc=4,obsolete +./usr/share/man/cat1/gcc.0 comp-c-catman gcccmds,.cat +./usr/share/man/cat1/gcore.0 comp-debug-catman .cat +./usr/share/man/cat1/gcov.0 comp-debug-catman gcccmds,.cat +./usr/share/man/cat1/gdb.0 comp-debug-catman gdb,.cat +./usr/share/man/cat1/genassym.0 comp-util-catman .cat +./usr/share/man/cat1/gprof.0 comp-debug-catman binutils,.cat +./usr/share/man/cat1/ld.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/lex.0 comp-c-catman .cat +./usr/share/man/cat1/lexdoc.0 comp-obsolete obsolete +./usr/share/man/cat1/lint.0 comp-c-catman .cat +./usr/share/man/cat1/lorder.0 comp-util-catman .cat +./usr/share/man/cat1/luac.0 comp-util-catman .cat +./usr/share/man/cat1/menuc.0 comp-c-catman .cat +./usr/share/man/cat1/mkstr.0 comp-c-catman .cat +./usr/share/man/cat1/msg_clear.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_display.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_display_add.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_prompt.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_prompt_add.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_prompt_noecho.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_prompt_win.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_standend.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_standout.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_string.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_table_add.0 comp-obsolete obsolete +./usr/share/man/cat1/msg_window.0 comp-obsolete obsolete +./usr/share/man/cat1/msgc.0 comp-c-catman .cat +./usr/share/man/cat1/nbperf.0 comp-util-catman .cat +./usr/share/man/cat1/nm.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/objcopy.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/objdump.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/openssl_ocsp.0 comp-c-catman crypto,.cat +./usr/share/man/cat1/ranlib.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/rcs2log.0 comp-cvs-catman cvs,.cat +./usr/share/man/cat1/readelf.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/rpcgen.0 comp-c-catman .cat +./usr/share/man/cat1/size.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/strings.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/strip.0 comp-util-catman binutils,.cat +./usr/share/man/cat1/tsort.0 comp-c-catman .cat +./usr/share/man/cat1/unifdef.0 comp-c-catman .cat +./usr/share/man/cat1/unifdefall.0 comp-c-catman .cat +./usr/share/man/cat1/xstr.0 comp-c-catman .cat +./usr/share/man/cat1/yacc.0 comp-c-catman .cat +./usr/share/man/cat2/_Exit.0 comp-c-catman .cat +./usr/share/man/cat2/__clone.0 comp-c-catman .cat +./usr/share/man/cat2/__quotactl.0 comp-c-catman .cat +./usr/share/man/cat2/__syscall.0 comp-c-catman .cat +./usr/share/man/cat2/_exit.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_continue.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_create.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_ctl.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_detach.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_exit.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_getname.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_getprivate.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_kill.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_park.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_self.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_setname.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_setprivate.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_suspend.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_unpark.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_unpark_all.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_wait.0 comp-c-catman .cat +./usr/share/man/cat2/_lwp_wakeup.0 comp-c-catman .cat +./usr/share/man/cat2/accept.0 comp-c-catman .cat +./usr/share/man/cat2/access.0 comp-c-catman .cat +./usr/share/man/cat2/acct.0 comp-c-catman .cat +./usr/share/man/cat2/adjtime.0 comp-c-catman .cat +./usr/share/man/cat2/arm32_drain_writebuf.0 comp-obsolete obsolete +./usr/share/man/cat2/arm32_sync_icache.0 comp-obsolete obsolete +./usr/share/man/cat2/arm_drain_writebuf.0 comp-c-catman .cat +./usr/share/man/cat2/arm_sync_icache.0 comp-c-catman .cat +./usr/share/man/cat2/bind.0 comp-c-catman .cat +./usr/share/man/cat2/brk.0 comp-c-catman .cat +./usr/share/man/cat2/chdir.0 comp-c-catman .cat +./usr/share/man/cat2/chflags.0 comp-c-catman .cat +./usr/share/man/cat2/chmod.0 comp-c-catman .cat +./usr/share/man/cat2/chown.0 comp-c-catman .cat +./usr/share/man/cat2/chroot.0 comp-c-catman .cat +./usr/share/man/cat2/clock_getres.0 comp-c-catman .cat +./usr/share/man/cat2/clock_gettime.0 comp-c-catman .cat +./usr/share/man/cat2/clock_nanosleep.0 comp-c-catman .cat +./usr/share/man/cat2/clock_settime.0 comp-c-catman .cat +./usr/share/man/cat2/clone.0 comp-c-catman .cat +./usr/share/man/cat2/close.0 comp-c-catman .cat +./usr/share/man/cat2/connect.0 comp-c-catman .cat +./usr/share/man/cat2/dup.0 comp-c-catman .cat +./usr/share/man/cat2/dup2.0 comp-c-catman .cat +./usr/share/man/cat2/dup3.0 comp-c-catman .cat +./usr/share/man/cat2/errno.0 comp-c-catman .cat +./usr/share/man/cat2/execve.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_delete_fd.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_delete_file.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_delete_link.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_get_fd.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_get_file.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_get_link.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_list_fd.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_list_file.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_list_link.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_set_fd.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_set_file.0 comp-c-catman .cat +./usr/share/man/cat2/extattr_set_link.0 comp-c-catman .cat +./usr/share/man/cat2/fchdir.0 comp-c-catman .cat +./usr/share/man/cat2/fchflags.0 comp-c-catman .cat +./usr/share/man/cat2/fchmod.0 comp-c-catman .cat +./usr/share/man/cat2/fchown.0 comp-c-catman .cat +./usr/share/man/cat2/fchroot.0 comp-c-catman .cat +./usr/share/man/cat2/fcntl.0 comp-c-catman .cat +./usr/share/man/cat2/fdatasync.0 comp-c-catman .cat +./usr/share/man/cat2/fhopen.0 comp-c-catman .cat +./usr/share/man/cat2/fhstat.0 comp-c-catman .cat +./usr/share/man/cat2/fhstatfs.0 comp-obsolete obsolete +./usr/share/man/cat2/fhstatvfs.0 comp-c-catman .cat +./usr/share/man/cat2/fhstatvfs1.0 comp-c-catman .cat +./usr/share/man/cat2/fktrace.0 comp-c-catman .cat +./usr/share/man/cat2/flock.0 comp-c-catman .cat +./usr/share/man/cat2/fork.0 comp-c-catman .cat +./usr/share/man/cat2/fpathconf.0 comp-c-catman .cat +./usr/share/man/cat2/fstat.0 comp-c-catman .cat +./usr/share/man/cat2/fstatfs.0 comp-obsolete obsolete +./usr/share/man/cat2/fstatvfs.0 comp-c-catman .cat +./usr/share/man/cat2/fstatvfs1.0 comp-c-catman .cat +./usr/share/man/cat2/fsync.0 comp-c-catman .cat +./usr/share/man/cat2/fsync_range.0 comp-c-catman .cat +./usr/share/man/cat2/ftruncate.0 comp-c-catman .cat +./usr/share/man/cat2/futimens.0 comp-c-catman .cat +./usr/share/man/cat2/futimes.0 comp-c-catman .cat +./usr/share/man/cat2/getcontext.0 comp-c-catman .cat +./usr/share/man/cat2/getdents.0 comp-c-catman .cat +./usr/share/man/cat2/getdirentries.0 comp-obsolete obsolete +./usr/share/man/cat2/getegid.0 comp-c-catman .cat +./usr/share/man/cat2/geteuid.0 comp-c-catman .cat +./usr/share/man/cat2/getfh.0 comp-c-catman .cat +./usr/share/man/cat2/getfsstat.0 comp-obsolete obsolete +./usr/share/man/cat2/getgid.0 comp-c-catman .cat +./usr/share/man/cat2/getgroups.0 comp-c-catman .cat +./usr/share/man/cat2/getitimer.0 comp-c-catman .cat +./usr/share/man/cat2/getlogin.0 comp-c-catman .cat +./usr/share/man/cat2/getlogin_r.0 comp-c-catman .cat +./usr/share/man/cat2/getpeername.0 comp-c-catman .cat +./usr/share/man/cat2/getpgid.0 comp-c-catman .cat +./usr/share/man/cat2/getpgrp.0 comp-c-catman .cat +./usr/share/man/cat2/getpid.0 comp-c-catman .cat +./usr/share/man/cat2/getppid.0 comp-c-catman .cat +./usr/share/man/cat2/getpriority.0 comp-c-catman .cat +./usr/share/man/cat2/getrlimit.0 comp-c-catman .cat +./usr/share/man/cat2/getrusage.0 comp-c-catman .cat +./usr/share/man/cat2/getsid.0 comp-c-catman .cat +./usr/share/man/cat2/getsockname.0 comp-c-catman .cat +./usr/share/man/cat2/getsockopt.0 comp-c-catman .cat +./usr/share/man/cat2/gettimeofday.0 comp-c-catman .cat +./usr/share/man/cat2/getuid.0 comp-c-catman .cat +./usr/share/man/cat2/getvfsstat.0 comp-c-catman .cat +./usr/share/man/cat2/i386_get_ioperm.0 comp-obsolete obsolete +./usr/share/man/cat2/i386_get_ldt.0 comp-c-catman .cat +./usr/share/man/cat2/i386_get_mtrr.0 comp-c-catman .cat +./usr/share/man/cat2/i386_iopl.0 comp-c-catman .cat +./usr/share/man/cat2/i386_pmc_info.0 comp-c-catman .cat +./usr/share/man/cat2/i386_pmc_read.0 comp-c-catman .cat +./usr/share/man/cat2/i386_pmc_startstop.0 comp-c-catman .cat +./usr/share/man/cat2/i386_set_ioperm.0 comp-obsolete obsolete +./usr/share/man/cat2/i386_set_ldt.0 comp-c-catman .cat +./usr/share/man/cat2/i386_set_mtrr.0 comp-c-catman .cat +./usr/share/man/cat2/i386_vm86.0 comp-c-catman .cat +./usr/share/man/cat2/intro.0 comp-c-catman .cat +./usr/share/man/cat2/ioctl.0 comp-c-catman .cat +./usr/share/man/cat2/issetugid.0 comp-c-catman .cat +./usr/share/man/cat2/kevent.0 comp-c-catman .cat +./usr/share/man/cat2/kill.0 comp-c-catman .cat +./usr/share/man/cat2/kqueue.0 comp-c-catman .cat +./usr/share/man/cat2/ktrace.0 comp-c-catman .cat +./usr/share/man/cat2/lchflags.0 comp-c-catman .cat +./usr/share/man/cat2/lchmod.0 comp-c-catman .cat +./usr/share/man/cat2/lchown.0 comp-c-catman .cat +./usr/share/man/cat2/lfs_bmapv.0 comp-c-catman .cat +./usr/share/man/cat2/lfs_markv.0 comp-c-catman .cat +./usr/share/man/cat2/lfs_segclean.0 comp-c-catman .cat +./usr/share/man/cat2/lfs_segwait.0 comp-c-catman .cat +./usr/share/man/cat2/link.0 comp-c-catman .cat +./usr/share/man/cat2/linkat.0 comp-c-catman .cat +./usr/share/man/cat2/listen.0 comp-c-catman .cat +./usr/share/man/cat2/lseek.0 comp-c-catman .cat +./usr/share/man/cat2/lstat.0 comp-c-catman .cat +./usr/share/man/cat2/lutimes.0 comp-c-catman .cat +./usr/share/man/cat2/m68k_sync_icache.0 comp-c-catman .cat +./usr/share/man/cat2/madvise.0 comp-c-catman .cat +./usr/share/man/cat2/mincore.0 comp-c-catman .cat +./usr/share/man/cat2/minherit.0 comp-c-catman .cat +./usr/share/man/cat2/mkdir.0 comp-c-catman .cat +./usr/share/man/cat2/mkfifo.0 comp-c-catman .cat +./usr/share/man/cat2/mknod.0 comp-c-catman .cat +./usr/share/man/cat2/mlock.0 comp-c-catman .cat +./usr/share/man/cat2/mlockall.0 comp-c-catman .cat +./usr/share/man/cat2/mmap.0 comp-c-catman .cat +./usr/share/man/cat2/modctl.0 comp-c-catman .cat +./usr/share/man/cat2/mount.0 comp-c-catman .cat +./usr/share/man/cat2/mprotect.0 comp-c-catman .cat +./usr/share/man/cat2/mremap.0 comp-c-catman .cat +./usr/share/man/cat2/msgctl.0 comp-c-catman .cat +./usr/share/man/cat2/msgget.0 comp-c-catman .cat +./usr/share/man/cat2/msgrcv.0 comp-c-catman .cat +./usr/share/man/cat2/msgsnd.0 comp-c-catman .cat +./usr/share/man/cat2/msync.0 comp-c-catman .cat +./usr/share/man/cat2/munlock.0 comp-c-catman .cat +./usr/share/man/cat2/munlockall.0 comp-c-catman .cat +./usr/share/man/cat2/munmap.0 comp-c-catman .cat +./usr/share/man/cat2/nanosleep.0 comp-c-catman .cat +./usr/share/man/cat2/nfssvc.0 comp-c-catman .cat +./usr/share/man/cat2/ntp_adjtime.0 comp-c-catman .cat +./usr/share/man/cat2/ntp_gettime.0 comp-c-catman .cat +./usr/share/man/cat2/open.0 comp-c-catman .cat +./usr/share/man/cat2/paccept.0 comp-c-catman .cat +./usr/share/man/cat2/pathconf.0 comp-c-catman .cat +./usr/share/man/cat2/pipe.0 comp-c-catman .cat +./usr/share/man/cat2/pipe2.0 comp-c-catman .cat +./usr/share/man/cat2/pmc_control.0 comp-c-catman .cat +./usr/share/man/cat2/pmc_get_info.0 comp-c-catman .cat +./usr/share/man/cat2/poll.0 comp-c-catman .cat +./usr/share/man/cat2/pollts.0 comp-c-catman .cat +./usr/share/man/cat2/posix_fadvise.0 comp-c-catman .cat +./usr/share/man/cat2/posix_madvise.0 comp-c-catman .cat +./usr/share/man/cat2/pread.0 comp-c-catman .cat +./usr/share/man/cat2/preadv.0 comp-c-catman .cat +./usr/share/man/cat2/profil.0 comp-c-catman .cat +./usr/share/man/cat2/pselect.0 comp-c-catman .cat +./usr/share/man/cat2/ptrace.0 comp-c-catman .cat +./usr/share/man/cat2/pwrite.0 comp-c-catman .cat +./usr/share/man/cat2/pwritev.0 comp-c-catman .cat +./usr/share/man/cat2/quotactl.0 comp-obsolete obsolete +./usr/share/man/cat2/rasctl.0 comp-c-catman .cat +./usr/share/man/cat2/read.0 comp-c-catman .cat +./usr/share/man/cat2/readlink.0 comp-c-catman .cat +./usr/share/man/cat2/readv.0 comp-c-catman .cat +./usr/share/man/cat2/reboot.0 comp-c-catman .cat +./usr/share/man/cat2/recv.0 comp-c-catman .cat +./usr/share/man/cat2/recvfrom.0 comp-c-catman .cat +./usr/share/man/cat2/recvmmsg.0 comp-c-catman .cat +./usr/share/man/cat2/recvmsg.0 comp-c-catman .cat +./usr/share/man/cat2/rename.0 comp-c-catman .cat +./usr/share/man/cat2/revoke.0 comp-c-catman .cat +./usr/share/man/cat2/rmdir.0 comp-c-catman .cat +./usr/share/man/cat2/sa_enable.0 comp-obsolete obsolete +./usr/share/man/cat2/sa_register.0 comp-obsolete obsolete +./usr/share/man/cat2/sa_setconcurrency.0 comp-obsolete obsolete +./usr/share/man/cat2/sa_stacks.0 comp-obsolete obsolete +./usr/share/man/cat2/sa_yield.0 comp-obsolete obsolete +./usr/share/man/cat2/sbrk.0 comp-c-catman .cat +./usr/share/man/cat2/seek.0 comp-c-catman .cat +./usr/share/man/cat2/select.0 comp-c-catman .cat +./usr/share/man/cat2/semctl.0 comp-c-catman .cat +./usr/share/man/cat2/semget.0 comp-c-catman .cat +./usr/share/man/cat2/semop.0 comp-c-catman .cat +./usr/share/man/cat2/send.0 comp-c-catman .cat +./usr/share/man/cat2/sendmmsg.0 comp-c-catman .cat +./usr/share/man/cat2/sendmsg.0 comp-c-catman .cat +./usr/share/man/cat2/sendto.0 comp-c-catman .cat +./usr/share/man/cat2/setcontext.0 comp-c-catman .cat +./usr/share/man/cat2/setegid.0 comp-c-catman .cat +./usr/share/man/cat2/seteuid.0 comp-c-catman .cat +./usr/share/man/cat2/setgid.0 comp-c-catman .cat +./usr/share/man/cat2/setgroups.0 comp-c-catman .cat +./usr/share/man/cat2/setitimer.0 comp-c-catman .cat +./usr/share/man/cat2/setlogin.0 comp-c-catman .cat +./usr/share/man/cat2/setpgid.0 comp-c-catman .cat +./usr/share/man/cat2/setpgrp.0 comp-c-catman .cat +./usr/share/man/cat2/setpriority.0 comp-c-catman .cat +./usr/share/man/cat2/setregid.0 comp-c-catman .cat +./usr/share/man/cat2/setreuid.0 comp-c-catman .cat +./usr/share/man/cat2/setrlimit.0 comp-c-catman .cat +./usr/share/man/cat2/setsid.0 comp-c-catman .cat +./usr/share/man/cat2/setsockopt.0 comp-c-catman .cat +./usr/share/man/cat2/settimeofday.0 comp-c-catman .cat +./usr/share/man/cat2/setuid.0 comp-c-catman .cat +./usr/share/man/cat2/shmat.0 comp-c-catman .cat +./usr/share/man/cat2/shmctl.0 comp-c-catman .cat +./usr/share/man/cat2/shmdt.0 comp-c-catman .cat +./usr/share/man/cat2/shmget.0 comp-c-catman .cat +./usr/share/man/cat2/shutdown.0 comp-c-catman .cat +./usr/share/man/cat2/sigaction.0 comp-c-catman .cat +./usr/share/man/cat2/sigaltstack.0 comp-c-catman .cat +./usr/share/man/cat2/siginfo.0 comp-c-catman .cat +./usr/share/man/cat2/sigpending.0 comp-c-catman .cat +./usr/share/man/cat2/sigprocmask.0 comp-c-catman .cat +./usr/share/man/cat2/sigqueue.0 comp-c-catman .cat +./usr/share/man/cat2/sigqueueinfo.0 comp-c-catman .cat +./usr/share/man/cat2/sigreturn.0 comp-obsolete obsolete +./usr/share/man/cat2/sigstack.0 comp-c-catman .cat +./usr/share/man/cat2/sigsuspend.0 comp-c-catman .cat +./usr/share/man/cat2/sigtimedwait.0 comp-c-catman .cat +./usr/share/man/cat2/sigwait.0 comp-c-catman .cat +./usr/share/man/cat2/sigwaitinfo.0 comp-c-catman .cat +./usr/share/man/cat2/socket.0 comp-c-catman .cat +./usr/share/man/cat2/socketpair.0 comp-c-catman .cat +./usr/share/man/cat2/stat.0 comp-c-catman .cat +./usr/share/man/cat2/statfs.0 comp-obsolete obsolete +./usr/share/man/cat2/statvfs.0 comp-c-catman .cat +./usr/share/man/cat2/statvfs1.0 comp-c-catman .cat +./usr/share/man/cat2/swapctl.0 comp-c-catman .cat +./usr/share/man/cat2/swapon.0 comp-obsolete obsolete +./usr/share/man/cat2/symlink.0 comp-c-catman .cat +./usr/share/man/cat2/sync.0 comp-c-catman .cat +./usr/share/man/cat2/sysarch.0 comp-c-catman .cat +./usr/share/man/cat2/syscall.0 comp-c-catman .cat +./usr/share/man/cat2/timer_create.0 comp-c-catman .cat +./usr/share/man/cat2/timer_delete.0 comp-c-catman .cat +./usr/share/man/cat2/timer_getoverrun.0 comp-c-catman .cat +./usr/share/man/cat2/timer_gettime.0 comp-c-catman .cat +./usr/share/man/cat2/timer_settime.0 comp-c-catman .cat +./usr/share/man/cat2/truncate.0 comp-c-catman .cat +./usr/share/man/cat2/ucontext.0 comp-c-catman .cat +./usr/share/man/cat2/umask.0 comp-c-catman .cat +./usr/share/man/cat2/undelete.0 comp-c-catman .cat +./usr/share/man/cat2/unlink.0 comp-c-catman .cat +./usr/share/man/cat2/unmount.0 comp-c-catman .cat +./usr/share/man/cat2/utimensat.0 comp-c-catman .cat +./usr/share/man/cat2/utimes.0 comp-c-catman .cat +./usr/share/man/cat2/utrace.0 comp-c-catman .cat +./usr/share/man/cat2/uuidgen.0 comp-c-catman .cat +./usr/share/man/cat2/vfork.0 comp-c-catman .cat +./usr/share/man/cat2/wait.0 comp-c-catman .cat +./usr/share/man/cat2/wait3.0 comp-c-catman .cat +./usr/share/man/cat2/wait4.0 comp-c-catman .cat +./usr/share/man/cat2/waitpid.0 comp-c-catman .cat +./usr/share/man/cat2/write.0 comp-c-catman .cat +./usr/share/man/cat2/writev.0 comp-c-catman .cat +./usr/share/man/cat2/x86_64_get_mtrr.0 comp-c-catman .cat +./usr/share/man/cat2/x86_64_iopl.0 comp-c-catman .cat +./usr/share/man/cat2/x86_64_set_mtrr.0 comp-c-catman .cat +./usr/share/man/cat3/ASN1_OBJECT_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ASN1_STRING_length.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ASN1_STRING_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ASN1_STRING_print_ex.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ASN1_generate_nconf.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_ctrl.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_f_base64.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_f_buffer.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_f_cipher.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_f_md.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_f_null.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_f_ssl.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_find_type.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_new_bio_pair.0 comp-obsolete obsolete +./usr/share/man/cat3/BIO_push.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_read.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_s_accept.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_s_bio.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_s_connect.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_s_fd.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_s_file.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_s_mem.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_s_null.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_s_socket.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_set_callback.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BIO_should_retry.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_BLINDING_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_CTX_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_CTX_start.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_add.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_add_word.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_bn2bin.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_cmp.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_copy.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_generate_prime.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_mod_inverse.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_mod_mul_montgomery.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_mod_mul_reciprocal.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_num_bytes.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_rand.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_set_bit.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_swap.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/BN_zero.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/CIRCLEQ_EMPTY.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_ENTRY.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_FIRST.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_FOREACH.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_FOREACH_REVERSE.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_HEAD_INITIALIZER.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_INIT.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_INSERT_AFTER.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_INSERT_BEFORE.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_INSERT_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_INSERT_TAIL.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_LAST.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_LOOP_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_LOOP_PREV.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_PREV.0 comp-c-catman .cat +./usr/share/man/cat3/CIRCLEQ_REMOVE.0 comp-c-catman .cat +./usr/share/man/cat3/CMSG_DATA.0 comp-c-catman .cat +./usr/share/man/cat3/CMSG_FIRSTHDR.0 comp-c-catman .cat +./usr/share/man/cat3/CMSG_LEN.0 comp-c-catman .cat +./usr/share/man/cat3/CMSG_NXTHDR.0 comp-c-catman .cat +./usr/share/man/cat3/CMSG_SPACE.0 comp-c-catman .cat +./usr/share/man/cat3/CONF_modules_free.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/CONF_modules_load_file.0 comp-c-man crypto,.cat +./usr/share/man/cat3/CRYPTO_set_ex_data.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DH_generate_key.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DH_generate_parameters.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DH_get_ex_new_index.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DH_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DH_set_method.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DH_size.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_SIG_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_do_sign.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_dup_DH.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_generate_key.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_generate_parameters.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_get_ex_new_index.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_set_method.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_sign.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DSA_size.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/DTTOIF.0 comp-c-catman .cat +./usr/share/man/cat3/ERR_GET_LIB.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_clear_error.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_error_string.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_get_error.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_load_crypto_strings.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_load_strings.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_print_errors.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_put_error.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_remove_state.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ERR_set_mark.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_BytesToKey.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_DigestInit.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_EncryptInit.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_OpenInit.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_PKEY_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_PKEY_set1_RSA.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_SealInit.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_SignInit.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/EVP_VerifyInit.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/GCQ_DEQUEUED_FIRST.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_FIRST_COND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_FIRST_COND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_FIRST_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_LAST.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_LAST_COND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_LAST_COND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_LAST_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_NEXT.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_NEXT_COND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_NEXT_COND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_NEXT_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_PREV.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_PREV_COND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_PREV_COND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_DEQUEUED_PREV_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FIND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FIND_REV.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FIND_REV_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FIND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_DEQUEUED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_DEQUEUED_REV.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_DEQUEUED_REV_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_DEQUEUED_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_NVAR.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_NVAR_REV.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_NVAR_REV_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_NVAR_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_REV.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_REV_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_RO.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_RO_REV.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_RO_REV_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_RO_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_FOREACH_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_FIRST.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_FIRST_COND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_FIRST_COND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_FIRST_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_LAST.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_LAST_COND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_LAST_COND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_LAST_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_NEXT.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_NEXT_COND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_NEXT_COND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_NEXT_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_PREV.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_PREV_COND.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_PREV_COND_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_GOT_PREV_TYPED.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_INIT.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_INIT_HEAD.0 comp-sys-catman .cat +./usr/share/man/cat3/GCQ_ITEM.0 comp-sys-catman .cat +./usr/share/man/cat3/IFTODT.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_EMPTY.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_ENTRY.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_FIRST.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_FOREACH.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_HEAD_INITIALIZER.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_INIT.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_INSERT_AFTER.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_INSERT_BEFORE.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_INSERT_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/LIST_REMOVE.0 comp-c-catman .cat +./usr/share/man/cat3/MAX.0 comp-c-catman .cat +./usr/share/man/cat3/MD2Data.0 comp-c-catman .cat +./usr/share/man/cat3/MD2End.0 comp-c-catman .cat +./usr/share/man/cat3/MD2File.0 comp-c-catman .cat +./usr/share/man/cat3/MD2FileChunk.0 comp-c-catman .cat +./usr/share/man/cat3/MD2Final.0 comp-c-catman .cat +./usr/share/man/cat3/MD2Init.0 comp-c-catman .cat +./usr/share/man/cat3/MD2Transform.0 comp-c-catman .cat +./usr/share/man/cat3/MD2Update.0 comp-c-catman .cat +./usr/share/man/cat3/MD4Data.0 comp-c-catman .cat +./usr/share/man/cat3/MD4End.0 comp-c-catman .cat +./usr/share/man/cat3/MD4File.0 comp-c-catman .cat +./usr/share/man/cat3/MD4Final.0 comp-c-catman .cat +./usr/share/man/cat3/MD4Init.0 comp-c-catman .cat +./usr/share/man/cat3/MD4Update.0 comp-c-catman .cat +./usr/share/man/cat3/MD5Data.0 comp-c-catman .cat +./usr/share/man/cat3/MD5End.0 comp-c-catman .cat +./usr/share/man/cat3/MD5File.0 comp-c-catman .cat +./usr/share/man/cat3/MD5Final.0 comp-c-catman .cat +./usr/share/man/cat3/MD5Init.0 comp-c-catman .cat +./usr/share/man/cat3/MD5Update.0 comp-c-catman .cat +./usr/share/man/cat3/MD5_Init.0 comp-obsolete obsolete +./usr/share/man/cat3/MIN.0 comp-c-catman .cat +./usr/share/man/cat3/OBJ_nid2obj.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/OPENSSL_Applink.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/OPENSSL_VERSION_NUMBER.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/OPENSSL_config.0 comp-c-man crypto,.cat +./usr/share/man/cat3/OPENSSL_ia32cap.0 comp-c-man crypto,.cat +./usr/share/man/cat3/OPENSSL_load_builtin_modules.0 comp-c-man crypto,.cat +./usr/share/man/cat3/OpenSSL_add_all_algorithms.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/PKCS12_create.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/PKCS12_parse.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/PKCS7_decrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/PKCS7_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/PKCS7_sign.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/PKCS7_verify.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RAND_add.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RAND_bytes.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RAND_cleanup.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RAND_egd.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RAND_load_file.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RAND_seed.0 comp-obsolete obsolete +./usr/share/man/cat3/RAND_set_rand_method.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RB_EMPTY.0 comp-c-catman .cat +./usr/share/man/cat3/RB_ENTRY.0 comp-c-catman .cat +./usr/share/man/cat3/RB_FIND.0 comp-c-catman .cat +./usr/share/man/cat3/RB_FOREACH.0 comp-c-catman .cat +./usr/share/man/cat3/RB_GENERATE.0 comp-c-catman .cat +./usr/share/man/cat3/RB_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/RB_INIT.0 comp-c-catman .cat +./usr/share/man/cat3/RB_INITIALIZER.0 comp-c-catman .cat +./usr/share/man/cat3/RB_INSERT.0 comp-c-catman .cat +./usr/share/man/cat3/RB_LEFT.0 comp-c-catman .cat +./usr/share/man/cat3/RB_MAX.0 comp-c-catman .cat +./usr/share/man/cat3/RB_MIN.0 comp-c-catman .cat +./usr/share/man/cat3/RB_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/RB_PARENT.0 comp-c-catman .cat +./usr/share/man/cat3/RB_PROTOTYPE.0 comp-c-catman .cat +./usr/share/man/cat3/RB_REMOVE.0 comp-c-catman .cat +./usr/share/man/cat3/RB_RIGHT.0 comp-c-catman .cat +./usr/share/man/cat3/RB_ROOT.0 comp-c-catman .cat +./usr/share/man/cat3/RMD160Data.0 comp-c-catman .cat +./usr/share/man/cat3/RMD160End.0 comp-c-catman .cat +./usr/share/man/cat3/RMD160File.0 comp-c-catman .cat +./usr/share/man/cat3/RMD160Final.0 comp-c-catman .cat +./usr/share/man/cat3/RMD160Init.0 comp-c-catman .cat +./usr/share/man/cat3/RMD160Transform.0 comp-c-catman .cat +./usr/share/man/cat3/RMD160Update.0 comp-c-catman .cat +./usr/share/man/cat3/RSA_blinding_on.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_check_key.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_generate_key.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_get_ex_new_index.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_padding_add_PKCS1_type_1.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_print.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_private_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_public_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_set_method.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_sign.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_sign_ASN1_OCTET_STRING.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/RSA_size.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SDP_GET128.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_GET16.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_GET32.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_GET64.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_GET8.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_PUT128.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_PUT16.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_PUT32.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_PUT64.0 comp-obsolete obsolete +./usr/share/man/cat3/SDP_PUT8.0 comp-obsolete obsolete +./usr/share/man/cat3/SHA1Data.0 comp-c-catman .cat +./usr/share/man/cat3/SHA1End.0 comp-c-catman .cat +./usr/share/man/cat3/SHA1File.0 comp-c-catman .cat +./usr/share/man/cat3/SHA1FileChunk.0 comp-c-catman .cat +./usr/share/man/cat3/SHA1Final.0 comp-c-catman .cat +./usr/share/man/cat3/SHA1Init.0 comp-c-catman .cat +./usr/share/man/cat3/SHA1Transform.0 comp-c-catman .cat +./usr/share/man/cat3/SHA1Update.0 comp-c-catman .cat +./usr/share/man/cat3/SHA224_Data.0 comp-c-catman .cat +./usr/share/man/cat3/SHA224_End.0 comp-c-catman .cat +./usr/share/man/cat3/SHA224_File.0 comp-c-catman .cat +./usr/share/man/cat3/SHA224_FileChunk.0 comp-c-catman .cat +./usr/share/man/cat3/SHA224_Final.0 comp-c-catman .cat +./usr/share/man/cat3/SHA224_Init.0 comp-c-catman .cat +./usr/share/man/cat3/SHA224_Transform.0 comp-c-catman .cat +./usr/share/man/cat3/SHA224_Update.0 comp-c-catman .cat +./usr/share/man/cat3/SHA256_Data.0 comp-c-catman .cat +./usr/share/man/cat3/SHA256_End.0 comp-c-catman .cat +./usr/share/man/cat3/SHA256_File.0 comp-c-catman .cat +./usr/share/man/cat3/SHA256_FileChunk.0 comp-c-catman .cat +./usr/share/man/cat3/SHA256_Final.0 comp-c-catman .cat +./usr/share/man/cat3/SHA256_Init.0 comp-c-catman .cat +./usr/share/man/cat3/SHA256_Transform.0 comp-c-catman .cat +./usr/share/man/cat3/SHA256_Update.0 comp-c-catman .cat +./usr/share/man/cat3/SHA384_Data.0 comp-c-catman .cat +./usr/share/man/cat3/SHA384_End.0 comp-c-catman .cat +./usr/share/man/cat3/SHA384_File.0 comp-c-catman .cat +./usr/share/man/cat3/SHA384_FileChunk.0 comp-c-catman .cat +./usr/share/man/cat3/SHA384_Final.0 comp-c-catman .cat +./usr/share/man/cat3/SHA384_Init.0 comp-c-catman .cat +./usr/share/man/cat3/SHA384_Transform.0 comp-c-catman .cat +./usr/share/man/cat3/SHA384_Update.0 comp-c-catman .cat +./usr/share/man/cat3/SHA512_Data.0 comp-c-catman .cat +./usr/share/man/cat3/SHA512_End.0 comp-c-catman .cat +./usr/share/man/cat3/SHA512_File.0 comp-c-catman .cat +./usr/share/man/cat3/SHA512_FileChunk.0 comp-c-catman .cat +./usr/share/man/cat3/SHA512_Final.0 comp-c-catman .cat +./usr/share/man/cat3/SHA512_Init.0 comp-c-catman .cat +./usr/share/man/cat3/SHA512_Transform.0 comp-c-catman .cat +./usr/share/man/cat3/SHA512_Update.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_EMPTY.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_ENTRY.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_FIRST.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_FOREACH.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_HEAD_INITIALIZER.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_INIT.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_INSERT_AFTER.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_INSERT_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_INSERT_TAIL.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_REMOVE.0 comp-c-catman .cat +./usr/share/man/cat3/SIMPLEQ_REMOVE_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_EMPTY.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_ENTRY.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_FIRST.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_FOREACH.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_HEAD_INITIALIZER.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_INIT.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_INSERT_AFTER.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_INSERT_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_REMOVE.0 comp-c-catman .cat +./usr/share/man/cat3/SLIST_REMOVE_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/SMIME_read_PKCS7.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SMIME_write_PKCS7.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SPLAY_EMPTY.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_ENTRY.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_FIND.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_FOREACH.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_GENERATE.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_INIT.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_INITIALIZER.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_INSERT.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_LEFT.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_MAX.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_MIN.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_PROTOTYPE.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_REMOVE.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_RIGHT.0 comp-c-catman .cat +./usr/share/man/cat3/SPLAY_ROOT.0 comp-c-catman .cat +./usr/share/man/cat3/SSL_CIPHER_get_name.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_COMP_add_compression_method.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_add_extra_chain_cert.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_add_session.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_ctrl.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_flush_sessions.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_free.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_get_ex_new_index.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_get_verify_mode.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_load_verify_locations.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_sess_number.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_sess_set_cache_size.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_sess_set_get_cb.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_sessions.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_cert_store.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_cert_verify_callback.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_cipher_list.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_client_CA_list.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_client_cert_cb.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_default_passwd_cb.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_generate_session_id.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_info_callback.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_max_cert_list.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_mode.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_msg_callback.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_options.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_quiet_shutdown.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_session_cache_mode.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_session_id_context.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_ssl_version.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_timeout.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_tmp_dh_callback.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_tmp_rsa_callback.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_set_verify.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_CTX_use_certificate.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_SESSION_free.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_SESSION_get_ex_new_index.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_SESSION_get_time.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_accept.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_alert_type_string.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_clear.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_connect.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_do_handshake.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_free.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_SSL_CTX.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_ciphers.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_client_CA_list.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_current_cipher.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_default_timeout.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_error.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_ex_data_X509_STORE_CTX_idx.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_ex_new_index.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_fd.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_peer_cert_chain.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_peer_certificate.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_rbio.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_session.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_verify_result.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_get_version.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_library_init.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_load_client_CA_file.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_pending.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_read.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_rstate_string.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_session_reused.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_set_bio.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_set_connect_state.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_set_fd.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_set_session.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_set_shutdown.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_set_verify_result.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_shutdown.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_state_string.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_want.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/SSL_write.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/STAILQ_EMPTY.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_ENTRY.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_FIRST.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_FOREACH.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_HEAD_INITIALIZER.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_INIT.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_INSERT_AFTER.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_INSERT_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_INSERT_TAIL.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_REMOVE.0 comp-c-catman .cat +./usr/share/man/cat3/STAILQ_REMOVE_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_EMPTY.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_ENTRY.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_FIRST.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_FOREACH.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_FOREACH_REVERSE.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_HEAD_INITIALIZER.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_INIT.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_INSERT_AFTER.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_INSERT_BEFORE.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_INSERT_HEAD.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_INSERT_TAIL.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_LAST.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_NEXT.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_PREV.0 comp-c-catman .cat +./usr/share/man/cat3/TAILQ_REMOVE.0 comp-c-catman .cat +./usr/share/man/cat3/TIMESPEC_TO_TIMEVAL.0 comp-c-catman .cat +./usr/share/man/cat3/TIMEVAL_TO_TIMESPEC.0 comp-c-catman .cat +./usr/share/man/cat3/X509_NAME_ENTRY_get_object.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_NAME_add_entry_by_txt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_NAME_get_index_by_NID.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_NAME_print_ex.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_STORE_CTX_get_error.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_STORE_CTX_get_ex_new_index.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_STORE_CTX_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_STORE_CTX_set_verify_cb.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_STORE_set_verify_cb_func.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_VERIFY_PARAM_set_flags.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_new.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/X509_verify_cert.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/_DIAGASSERT.0 comp-c-catman .cat +./usr/share/man/cat3/__BIT.0 comp-c-catman .cat +./usr/share/man/cat3/__BITS.0 comp-c-catman .cat +./usr/share/man/cat3/__CONCAT.0 comp-c-catman .cat +./usr/share/man/cat3/__KERNEL_RCSID.0 comp-c-catman .cat +./usr/share/man/cat3/__RCSID.0 comp-c-catman .cat +./usr/share/man/cat3/__SHIFTIN.0 comp-c-catman .cat +./usr/share/man/cat3/__SHIFTOUT.0 comp-c-catman .cat +./usr/share/man/cat3/__SHIFTOUT_MASK.0 comp-c-catman .cat +./usr/share/man/cat3/__STRING.0 comp-c-catman .cat +./usr/share/man/cat3/__UNCONST.0 comp-c-catman .cat +./usr/share/man/cat3/__UNVOLATILE.0 comp-c-catman .cat +./usr/share/man/cat3/__aligned.0 comp-c-catman .cat +./usr/share/man/cat3/__alignof__.0 comp-c-catman .cat +./usr/share/man/cat3/__arraycount.0 comp-c-catman .cat +./usr/share/man/cat3/__builtin_constant_p.0 comp-c-catman .cat +./usr/share/man/cat3/__builtin_frame_address.0 comp-c-catman .cat +./usr/share/man/cat3/__builtin_object_size.0 comp-c-catman .cat +./usr/share/man/cat3/__builtin_prefetch.0 comp-c-catman .cat +./usr/share/man/cat3/__builtin_return_address.0 comp-c-catman .cat +./usr/share/man/cat3/__builtin_types_compatible_p.0 comp-c-catman .cat +./usr/share/man/cat3/__cacheline_aligned.0 comp-c-catman .cat +./usr/share/man/cat3/__constfunc.0 comp-c-catman .cat +./usr/share/man/cat3/__dead.0 comp-c-catman .cat +./usr/share/man/cat3/__insn_barrier.0 comp-c-catman .cat +./usr/share/man/cat3/__noinline.0 comp-c-catman .cat +./usr/share/man/cat3/__packed.0 comp-c-catman .cat +./usr/share/man/cat3/__predict_false.0 comp-c-catman .cat +./usr/share/man/cat3/__predict_true.0 comp-c-catman .cat +./usr/share/man/cat3/__pure.0 comp-c-catman .cat +./usr/share/man/cat3/__read_mostly.0 comp-c-catman .cat +./usr/share/man/cat3/__section.0 comp-c-catman .cat +./usr/share/man/cat3/__svc_getcallercreds.0 comp-c-catman .cat +./usr/share/man/cat3/__unused.0 comp-c-catman .cat +./usr/share/man/cat3/__used.0 comp-c-catman .cat +./usr/share/man/cat3/_longjmp.0 comp-c-catman .cat +./usr/share/man/cat3/_lwp_makecontext.0 comp-c-catman .cat +./usr/share/man/cat3/_setjmp.0 comp-c-catman .cat +./usr/share/man/cat3/a64l.0 comp-c-catman .cat +./usr/share/man/cat3/abort.0 comp-c-catman .cat +./usr/share/man/cat3/abs.0 comp-c-catman .cat +./usr/share/man/cat3/acos.0 comp-c-catman .cat +./usr/share/man/cat3/acosf.0 comp-c-catman .cat +./usr/share/man/cat3/acosh.0 comp-c-catman .cat +./usr/share/man/cat3/acoshf.0 comp-c-catman .cat +./usr/share/man/cat3/addch.0 comp-c-catman .cat +./usr/share/man/cat3/addchnstr.0 comp-c-catman .cat +./usr/share/man/cat3/addchstr.0 comp-c-catman .cat +./usr/share/man/cat3/addnstr.0 comp-c-catman .cat +./usr/share/man/cat3/addr.0 comp-c-catman .cat +./usr/share/man/cat3/addstr.0 comp-c-catman .cat +./usr/share/man/cat3/affinity.0 comp-c-catman .cat +./usr/share/man/cat3/aio.0 comp-c-catman .cat +./usr/share/man/cat3/aio_cancel.0 comp-c-catman .cat +./usr/share/man/cat3/aio_error.0 comp-c-catman .cat +./usr/share/man/cat3/aio_fsync.0 comp-c-catman .cat +./usr/share/man/cat3/aio_read.0 comp-c-catman .cat +./usr/share/man/cat3/aio_return.0 comp-c-catman .cat +./usr/share/man/cat3/aio_suspend.0 comp-c-catman .cat +./usr/share/man/cat3/aio_write.0 comp-c-catman .cat +./usr/share/man/cat3/alarm.0 comp-c-catman .cat +./usr/share/man/cat3/alloca.0 comp-c-catman .cat +./usr/share/man/cat3/allocaddrinfo.0 comp-c-catman .cat +./usr/share/man/cat3/alphasort.0 comp-c-catman .cat +./usr/share/man/cat3/arc4random.0 comp-c-catman .cat +./usr/share/man/cat3/archive.0 comp-c-catman .cat +./usr/share/man/cat3/archive_clear_error.0 comp-c-catman .cat +./usr/share/man/cat3/archive_compression.0 comp-c-catman .cat +./usr/share/man/cat3/archive_compression_name.0 comp-c-catman .cat +./usr/share/man/cat3/archive_copy_error.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_acl_add_entry.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_acl_add_entry_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_acl_clear.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_acl_count.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_acl_next.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_acl_next_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_acl_reset.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_acl_text_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_atime.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_atime_nsec.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_clear.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_clone.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_fflags_text.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_fflags_text_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_gname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_gname_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_hardlink.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_hardlink_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_link.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_link_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_pathname_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_sourcepath.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_stat.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_symlink.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_symlink_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_uname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_copy_uname_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_dev.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_devmajor.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_devminor.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_fflags.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_fflags_text.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_filetype.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_free.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_gid.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_gname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_gname_w.0 comp-obsolete obsolete +./usr/share/man/cat3/archive_entry_hardlink.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_ino.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_mode.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_mtime.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_mtime_nsec.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_new.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_nlink.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_pathname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_pathname_w.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_rdev.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_rdevmajor.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_rdevminor.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_atime.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_ctime.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_dev.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_devmajor.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_devminor.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_fflags.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_filetype.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_gid.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_gname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_hardlink.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_link.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_mode.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_mtime.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_nlink.0 comp-obsolete obsolete +./usr/share/man/cat3/archive_entry_set_pathname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_rdev.0 comp-obsolete obsolete +./usr/share/man/cat3/archive_entry_set_rdevmajor.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_rdevminor.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_size.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_symlink.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_uid.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_set_uname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_size.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_sourcepath.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_stat.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_symlink.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_uid.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_uname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_entry_uname_w.0 comp-obsolete obsolete +./usr/share/man/cat3/archive_errno.0 comp-c-catman .cat +./usr/share/man/cat3/archive_error_string.0 comp-c-catman .cat +./usr/share/man/cat3/archive_file_count.0 comp-c-catman .cat +./usr/share/man/cat3/archive_format.0 comp-c-catman .cat +./usr/share/man/cat3/archive_format_name.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_close.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_data.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_data_block.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_data_into_buffer.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_data_into_fd.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_data_skip.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_gname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_new.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_set_entry_from_file.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_set_gname_lookup.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_set_standard_lookup.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_set_symlink_hybrid.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_set_symlink_logical.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_set_symlink_physical.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_set_uname_lookup.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_disk_uname.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_extract.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_extract2.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_extract_set_progress_callback.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_extract_set_skip_file.0 comp-obsolete obsolete +./usr/share/man/cat3/archive_read_finish.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_new.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_next_header.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_next_header2.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_open.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_open2.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_open_FILE.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_open_fd.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_open_file.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_open_filename.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_open_memory.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_set_filter_options.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_set_format_options.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_set_options.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_all.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_bzip2.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_compress.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_gzip.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_lzma.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_none.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_program.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_program_signature.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_compression_xz.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_all.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_ar.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_cpio.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_empty.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_iso9660.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_mtree.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_raw.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_tar.0 comp-c-catman .cat +./usr/share/man/cat3/archive_read_support_format_zip.0 comp-c-catman .cat +./usr/share/man/cat3/archive_set_error.0 comp-c-catman .cat +./usr/share/man/cat3/archive_util.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_close.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_data.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_disk.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_disk_new.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_disk_set_group_lookup.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_disk_set_options.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_disk_set_skip_file.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_disk_set_standard_lookup.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_disk_set_user_lookup.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_finish.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_finish_entry.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_get_bytes_in_last_block.0 comp-obsolete obsolete +./usr/share/man/cat3/archive_write_get_bytes_per_block.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_header.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_new.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_open.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_open_FILE.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_open_fd.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_open_file.0 comp-obsolete obsolete +./usr/share/man/cat3/archive_write_open_filename.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_open_memory.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_options.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_bytes_in_last_block.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_bytes_per_block.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_callbacks.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_compression_bzip2.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_compression_compress.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_compression_gzip.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_compression_none.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_compression_program.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_compressor_options.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_format_cpio.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_format_pax.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_format_pax_restricted.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_format_shar.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_format_shar_binary.0 comp-c-catman .cat +./usr/share/man/cat3/archive_write_set_format_ustar.0 comp-c-catman .cat +./usr/share/man/cat3/asctime.0 comp-c-catman .cat +./usr/share/man/cat3/asctime_r.0 comp-c-catman .cat +./usr/share/man/cat3/asin.0 comp-c-catman .cat +./usr/share/man/cat3/asinf.0 comp-c-catman .cat +./usr/share/man/cat3/asinh.0 comp-c-catman .cat +./usr/share/man/cat3/asinhf.0 comp-c-catman .cat +./usr/share/man/cat3/asprintf.0 comp-c-catman .cat +./usr/share/man/cat3/assert.0 comp-c-catman .cat +./usr/share/man/cat3/assume_default_colors.0 comp-c-catman .cat +./usr/share/man/cat3/atan.0 comp-c-catman .cat +./usr/share/man/cat3/atan2.0 comp-c-catman .cat +./usr/share/man/cat3/atan2f.0 comp-c-catman .cat +./usr/share/man/cat3/atanf.0 comp-c-catman .cat +./usr/share/man/cat3/atanh.0 comp-c-catman .cat +./usr/share/man/cat3/atanhf.0 comp-c-catman .cat +./usr/share/man/cat3/atexit.0 comp-c-catman .cat +./usr/share/man/cat3/atf-c++-api.0 comp-atf-catman .cat,atf +./usr/share/man/cat3/atf-c-api.0 comp-atf-catman .cat,atf +./usr/share/man/cat3/atf-sh-api.0 comp-atf-catman .cat,atf +./usr/share/man/cat3/atof.0 comp-c-catman .cat +./usr/share/man/cat3/atoi.0 comp-c-catman .cat +./usr/share/man/cat3/atol.0 comp-c-catman .cat +./usr/share/man/cat3/atoll.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_32.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_32_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_64.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_64_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_int.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_int_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_long.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_long_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_ptr.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_add_ptr_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and_32.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and_32_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and_64.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and_64_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and_uint.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and_uint_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and_ulong.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_and_ulong_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_32.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_32_ni.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_64.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_64_ni.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_ptr.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_ptr_ni.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_uint.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_uint_ni.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_ulong.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_cas_ulong_ni.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_32.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_32_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_64.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_64_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_ptr.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_ptr_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_uint.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_uint_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_ulong.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_dec_ulong_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_32.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_32_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_64.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_64_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_ptr.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_ptr_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_uint.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_uint_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_ulong.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_inc_ulong_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_ops.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or_32.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or_32_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or_64.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or_64_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or_uint.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or_uint_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or_ulong.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_or_ulong_nv.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_swap.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_swap_32.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_swap_64.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_swap_ptr.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_swap_uint.0 comp-c-catman .cat +./usr/share/man/cat3/atomic_swap_ulong.0 comp-c-catman .cat +./usr/share/man/cat3/attr_get.0 comp-c-catman .cat +./usr/share/man/cat3/attr_off.0 comp-c-catman .cat +./usr/share/man/cat3/attr_on.0 comp-c-catman .cat +./usr/share/man/cat3/attr_set.0 comp-c-catman .cat +./usr/share/man/cat3/attribute.0 comp-c-catman .cat +./usr/share/man/cat3/attroff.0 comp-c-catman .cat +./usr/share/man/cat3/attron.0 comp-c-catman .cat +./usr/share/man/cat3/attrset.0 comp-c-catman .cat +./usr/share/man/cat3/auth_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/authnone_create.0 comp-c-catman .cat +./usr/share/man/cat3/authsys_create.0 comp-c-catman .cat +./usr/share/man/cat3/authsys_create_default.0 comp-c-catman .cat +./usr/share/man/cat3/authunix_create.0 comp-c-catman .cat +./usr/share/man/cat3/authunix_create_default.0 comp-c-catman .cat +./usr/share/man/cat3/backtrace.0 comp-c-catman .cat +./usr/share/man/cat3/backtrace_symbols.0 comp-c-catman .cat +./usr/share/man/cat3/backtrace_symbols_fd.0 comp-c-catman .cat +./usr/share/man/cat3/backtrace_symbols_fd_fmt.0 comp-c-catman .cat +./usr/share/man/cat3/backtrace_symbols_fmt.0 comp-c-catman .cat +./usr/share/man/cat3/basename.0 comp-c-catman .cat +./usr/share/man/cat3/bcmp.0 comp-c-catman .cat +./usr/share/man/cat3/bcopy.0 comp-c-catman .cat +./usr/share/man/cat3/beep.0 comp-c-catman .cat +./usr/share/man/cat3/ber_alloc_t.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_bvarray_add.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_bvarray_free.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_bvdup.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_bvecadd.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_bvecfree.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_bvfree.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_bvstr.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_bvstrdup.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_dupbv.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_first_element.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_flush.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_free.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_get_bitstring.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_get_boolean.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_get_enum.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_get_int.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_get_next.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_get_null.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_get_stringa.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_get_stringb.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_next_element.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_peek_tag.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_printf.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_put_enum.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_put_int.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_put_null.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_put_ostring.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_put_seq.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_put_set.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_put_string.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_scanf.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_skip_tag.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_start_set.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ber_str2bv.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/bind_textdomain_codeset.0 comp-c-catman .cat +./usr/share/man/cat3/bindresvport.0 comp-c-catman .cat +./usr/share/man/cat3/bindresvport_sa.0 comp-c-catman .cat +./usr/share/man/cat3/bindtextdomain.0 comp-c-catman .cat +./usr/share/man/cat3/bit_alloc.0 comp-c-catman .cat +./usr/share/man/cat3/bit_clear.0 comp-c-catman .cat +./usr/share/man/cat3/bit_decl.0 comp-c-catman .cat +./usr/share/man/cat3/bit_ffc.0 comp-c-catman .cat +./usr/share/man/cat3/bit_ffs.0 comp-c-catman .cat +./usr/share/man/cat3/bit_nclear.0 comp-c-catman .cat +./usr/share/man/cat3/bit_nset.0 comp-c-catman .cat +./usr/share/man/cat3/bit_set.0 comp-c-catman .cat +./usr/share/man/cat3/bit_test.0 comp-c-catman .cat +./usr/share/man/cat3/bitops.0 comp-c-catman .cat +./usr/share/man/cat3/bits.0 comp-c-catman .cat +./usr/share/man/cat3/bitstr_size.0 comp-c-catman .cat +./usr/share/man/cat3/bitstring.0 comp-c-catman .cat +./usr/share/man/cat3/bkgd.0 comp-c-catman .cat +./usr/share/man/cat3/bkgdset.0 comp-c-catman .cat +./usr/share/man/cat3/blowfish.0 comp-obsolete obsolete +./usr/share/man/cat3/bluetooth.0 comp-c-catman .cat +./usr/share/man/cat3/bm.0 comp-c-catman .cat +./usr/share/man/cat3/bm_comp.0 comp-c-catman .cat +./usr/share/man/cat3/bm_exec.0 comp-c-catman .cat +./usr/share/man/cat3/bm_free.0 comp-c-catman .cat +./usr/share/man/cat3/bn.0 comp-obsolete obsolete +./usr/share/man/cat3/bn_internal.0 comp-obsolete obsolete +./usr/share/man/cat3/border.0 comp-c-catman .cat +./usr/share/man/cat3/box.0 comp-c-catman .cat +./usr/share/man/cat3/bsearch.0 comp-c-catman .cat +./usr/share/man/cat3/bstring.0 comp-c-catman .cat +./usr/share/man/cat3/bswap.0 comp-c-catman .cat +./usr/share/man/cat3/bswap16.0 comp-c-catman .cat +./usr/share/man/cat3/bswap32.0 comp-c-catman .cat +./usr/share/man/cat3/bswap64.0 comp-c-catman .cat +./usr/share/man/cat3/bt_aton.0 comp-c-catman .cat +./usr/share/man/cat3/bt_closeconfig.0 comp-obsolete obsolete +./usr/share/man/cat3/bt_dev.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devaddr.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devenum.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devfilter.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devfilter_evt_clr.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devfilter_evt_set.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devfilter_evt_tst.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devfilter_pkt_clr.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devfilter_pkt_set.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devfilter_pkt_tst.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devinfo.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devinquiry.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devname.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devopen.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devrecv.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devreq.0 comp-c-catman .cat +./usr/share/man/cat3/bt_devsend.0 comp-c-catman .cat +./usr/share/man/cat3/bt_eachconfig.0 comp-obsolete obsolete +./usr/share/man/cat3/bt_endhostent.0 comp-c-catman .cat +./usr/share/man/cat3/bt_endprotoent.0 comp-c-catman .cat +./usr/share/man/cat3/bt_freeconfig.0 comp-obsolete obsolete +./usr/share/man/cat3/bt_getconfig.0 comp-obsolete obsolete +./usr/share/man/cat3/bt_gethostbyaddr.0 comp-c-catman .cat +./usr/share/man/cat3/bt_gethostbyname.0 comp-c-catman .cat +./usr/share/man/cat3/bt_gethostent.0 comp-c-catman .cat +./usr/share/man/cat3/bt_getprotobyname.0 comp-c-catman .cat +./usr/share/man/cat3/bt_getprotobynumber.0 comp-c-catman .cat +./usr/share/man/cat3/bt_getprotoent.0 comp-c-catman .cat +./usr/share/man/cat3/bt_ntoa.0 comp-c-catman .cat +./usr/share/man/cat3/bt_openconfig.0 comp-obsolete obsolete +./usr/share/man/cat3/bt_printconfig.0 comp-obsolete obsolete +./usr/share/man/cat3/bt_sethostent.0 comp-c-catman .cat +./usr/share/man/cat3/bt_setprotoent.0 comp-c-catman .cat +./usr/share/man/cat3/btowc.0 comp-c-catman .cat +./usr/share/man/cat3/btree.0 comp-c-catman .cat +./usr/share/man/cat3/buffer.0 comp-obsolete obsolete +./usr/share/man/cat3/bufferevent_base_set.0 comp-c-catman .cat +./usr/share/man/cat3/bufferevent_disable.0 comp-c-catman .cat +./usr/share/man/cat3/bufferevent_enable.0 comp-c-catman .cat +./usr/share/man/cat3/bufferevent_free.0 comp-c-catman .cat +./usr/share/man/cat3/bufferevent_new.0 comp-c-catman .cat +./usr/share/man/cat3/bufferevent_read.0 comp-c-catman .cat +./usr/share/man/cat3/bufferevent_settimeout.0 comp-c-catman .cat +./usr/share/man/cat3/bufferevent_write.0 comp-c-catman .cat +./usr/share/man/cat3/bufferevent_write_buffer.0 comp-c-catman .cat +./usr/share/man/cat3/byteorder.0 comp-c-catman .cat +./usr/share/man/cat3/bzero.0 comp-c-catman .cat +./usr/share/man/cat3/cabs.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cabsf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cacos.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cacosf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cacosh.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cacoshf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/calloc.0 comp-c-catman .cat +./usr/share/man/cat3/callrpc.0 comp-c-catman .cat +./usr/share/man/cat3/can_change_color.0 comp-c-catman .cat +./usr/share/man/cat3/can_change_colors.0 comp-obsolete obsolete +./usr/share/man/cat3/carg.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cargf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/casin.0 comp-c-catman complex,.cat +./usr/share/man/cat3/casinf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/casinh.0 comp-c-catman complex,.cat +./usr/share/man/cat3/casinhf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/catan.0 comp-c-catman complex,.cat +./usr/share/man/cat3/catanf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/catanh.0 comp-c-catman complex,.cat +./usr/share/man/cat3/catanhf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/catclose.0 comp-c-catman .cat +./usr/share/man/cat3/catgets.0 comp-c-catman .cat +./usr/share/man/cat3/catopen.0 comp-c-catman .cat +./usr/share/man/cat3/cbreak.0 comp-c-catman .cat +./usr/share/man/cat3/cbrt.0 comp-c-catman .cat +./usr/share/man/cat3/cbrtf.0 comp-c-catman .cat +./usr/share/man/cat3/ccos.0 comp-c-catman complex,.cat +./usr/share/man/cat3/ccosf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/ccosh.0 comp-c-catman complex,.cat +./usr/share/man/cat3/ccoshf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cdbr.0 comp-c-catman .cat +./usr/share/man/cat3/cdbr_close.0 comp-c-catman .cat +./usr/share/man/cat3/cdbr_entries.0 comp-c-catman .cat +./usr/share/man/cat3/cdbr_find.0 comp-c-catman .cat +./usr/share/man/cat3/cdbr_get.0 comp-c-catman .cat +./usr/share/man/cat3/cdbr_open.0 comp-c-catman .cat +./usr/share/man/cat3/cdbw.0 comp-c-catman .cat +./usr/share/man/cat3/cdbw_close.0 comp-c-catman .cat +./usr/share/man/cat3/cdbw_open.0 comp-c-catman .cat +./usr/share/man/cat3/cdbw_output.0 comp-c-catman .cat +./usr/share/man/cat3/cdbw_put.0 comp-c-catman .cat +./usr/share/man/cat3/cdbw_put_data.0 comp-c-catman .cat +./usr/share/man/cat3/cdbw_put_key.0 comp-c-catman .cat +./usr/share/man/cat3/cdefs.0 comp-c-catman .cat +./usr/share/man/cat3/cdk.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_alphalist.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_binding.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_buttonbox.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_calendar.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_cdk.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_dialog.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_display.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_fselect.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_graph.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_histogram.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_itemlist.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_label.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_marquee.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_matrix.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_mentry.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_menu.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_misc.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_radio.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_scale.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_screen.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_scroll.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_selection.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_slider.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_swindow.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_template.0 comp-obsolete obsolete +./usr/share/man/cat3/cdk_viewer.0 comp-obsolete obsolete +./usr/share/man/cat3/ceil.0 comp-c-catman .cat +./usr/share/man/cat3/ceilf.0 comp-c-catman .cat +./usr/share/man/cat3/cexp.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cexpf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cfgetispeed.0 comp-c-catman .cat +./usr/share/man/cat3/cfgetospeed.0 comp-c-catman .cat +./usr/share/man/cat3/cfmakeraw.0 comp-c-catman .cat +./usr/share/man/cat3/cfsetispeed.0 comp-c-catman .cat +./usr/share/man/cat3/cfsetospeed.0 comp-c-catman .cat +./usr/share/man/cat3/cfsetspeed.0 comp-c-catman .cat +./usr/share/man/cat3/cgetcap.0 comp-c-catman .cat +./usr/share/man/cat3/cgetclose.0 comp-c-catman .cat +./usr/share/man/cat3/cgetent.0 comp-c-catman .cat +./usr/share/man/cat3/cgetfirst.0 comp-c-catman .cat +./usr/share/man/cat3/cgetmatch.0 comp-c-catman .cat +./usr/share/man/cat3/cgetnext.0 comp-c-catman .cat +./usr/share/man/cat3/cgetnum.0 comp-c-catman .cat +./usr/share/man/cat3/cgetset.0 comp-c-catman .cat +./usr/share/man/cat3/cgetstr.0 comp-c-catman .cat +./usr/share/man/cat3/cgetustr.0 comp-c-catman .cat +./usr/share/man/cat3/chgat.0 comp-c-catman .cat +./usr/share/man/cat3/cimag.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cimagf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cimagl.0 comp-c-catman complex,.cat +./usr/share/man/cat3/circleq_empty.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_first.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_head.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_head_initializer.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_init.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_insert_after.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_insert_before.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_insert_head.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_insert_tail.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_last.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_next.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_prev.0 comp-obsolete obsolete +./usr/share/man/cat3/circleq_remove.0 comp-obsolete obsolete +./usr/share/man/cat3/clear.0 comp-c-catman .cat +./usr/share/man/cat3/clearerr.0 comp-c-catman .cat +./usr/share/man/cat3/clearok.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_broadcast.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_call.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_control.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_create.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_create_vers.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_dg_create.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_freeres.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_geterr.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_pcreateerror.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_perrno.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_perror.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_raw_create.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_spcreateerror.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_sperrno.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_sperror.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_tli_create.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_tp_create.0 comp-c-catman .cat +./usr/share/man/cat3/clnt_vc_create.0 comp-c-catman .cat +./usr/share/man/cat3/clntraw_create.0 comp-c-catman .cat +./usr/share/man/cat3/clnttcp_create.0 comp-c-catman .cat +./usr/share/man/cat3/clntudp_bufcreate.0 comp-c-catman .cat +./usr/share/man/cat3/clntudp_create.0 comp-c-catman .cat +./usr/share/man/cat3/clock.0 comp-c-catman .cat +./usr/share/man/cat3/clog.0 comp-c-catman complex,.cat +./usr/share/man/cat3/clogf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/closedir.0 comp-c-catman .cat +./usr/share/man/cat3/closefrom.0 comp-c-catman .cat +./usr/share/man/cat3/closelog.0 comp-c-catman .cat +./usr/share/man/cat3/closelog_r.0 comp-c-catman .cat +./usr/share/man/cat3/clrtobot.0 comp-c-catman .cat +./usr/share/man/cat3/clrtoeol.0 comp-c-catman .cat +./usr/share/man/cat3/cmsg.0 comp-c-catman .cat +./usr/share/man/cat3/color_content.0 comp-c-catman .cat +./usr/share/man/cat3/color_set.0 comp-c-catman .cat +./usr/share/man/cat3/com_err.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/com_err_va.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/confstr.0 comp-c-catman .cat +./usr/share/man/cat3/conj.0 comp-c-catman complex,.cat +./usr/share/man/cat3/conjf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/conjl.0 comp-c-catman complex,.cat +./usr/share/man/cat3/copysign.0 comp-c-catman .cat +./usr/share/man/cat3/copysignf.0 comp-c-catman .cat +./usr/share/man/cat3/copysignl.0 comp-c-catman .cat +./usr/share/man/cat3/copywin.0 comp-c-catman .cat +./usr/share/man/cat3/cos.0 comp-c-catman .cat +./usr/share/man/cat3/cosf.0 comp-c-catman .cat +./usr/share/man/cat3/cosh.0 comp-c-catman .cat +./usr/share/man/cat3/coshf.0 comp-c-catman .cat +./usr/share/man/cat3/cpow.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cpowf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cproj.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cprojf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cprojl.0 comp-c-catman complex,.cat +./usr/share/man/cat3/cpuset.0 comp-c-catman .cat +./usr/share/man/cat3/cpuset_clr.0 comp-c-catman .cat +./usr/share/man/cat3/cpuset_create.0 comp-c-catman .cat +./usr/share/man/cat3/cpuset_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/cpuset_isset.0 comp-c-catman .cat +./usr/share/man/cat3/cpuset_set.0 comp-c-catman .cat +./usr/share/man/cat3/cpuset_size.0 comp-c-catman .cat +./usr/share/man/cat3/cpuset_zero.0 comp-c-catman .cat +./usr/share/man/cat3/cpxattr.0 comp-c-catman .cat +./usr/share/man/cat3/creal.0 comp-c-catman complex,.cat +./usr/share/man/cat3/crealf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/creall.0 comp-c-catman complex,.cat +./usr/share/man/cat3/creat.0 comp-c-catman .cat +./usr/share/man/cat3/crypt.0 comp-c-catman .cat +./usr/share/man/cat3/crypto.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/csin.0 comp-c-catman complex,.cat +./usr/share/man/cat3/csinf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/csinh.0 comp-c-catman complex,.cat +./usr/share/man/cat3/csinhf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/csqrt.0 comp-c-catman complex,.cat +./usr/share/man/cat3/csqrtf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/ctan.0 comp-c-catman complex,.cat +./usr/share/man/cat3/ctanf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/ctanh.0 comp-c-catman complex,.cat +./usr/share/man/cat3/ctanhf.0 comp-c-catman complex,.cat +./usr/share/man/cat3/ctermid.0 comp-c-catman .cat +./usr/share/man/cat3/ctime.0 comp-c-catman .cat +./usr/share/man/cat3/ctime_r.0 comp-c-catman .cat +./usr/share/man/cat3/ctime_rz.0 comp-c-catman .cat +./usr/share/man/cat3/ctype.0 comp-c-catman .cat +./usr/share/man/cat3/current_field.0 comp-c-catman .cat +./usr/share/man/cat3/current_item.0 comp-c-catman .cat +./usr/share/man/cat3/curs_set.0 comp-c-catman .cat +./usr/share/man/cat3/curses.0 comp-c-catman .cat +./usr/share/man/cat3/curses_addch.0 comp-c-catman .cat +./usr/share/man/cat3/curses_addchstr.0 comp-c-catman .cat +./usr/share/man/cat3/curses_addstr.0 comp-c-catman .cat +./usr/share/man/cat3/curses_attributes.0 comp-c-catman .cat +./usr/share/man/cat3/curses_background.0 comp-c-catman .cat +./usr/share/man/cat3/curses_border.0 comp-c-catman .cat +./usr/share/man/cat3/curses_chgat.0 comp-c-catman .cat +./usr/share/man/cat3/curses_clear.0 comp-c-catman .cat +./usr/share/man/cat3/curses_color.0 comp-c-catman .cat +./usr/share/man/cat3/curses_cursor.0 comp-c-catman .cat +./usr/share/man/cat3/curses_default_colors.0 comp-c-catman .cat +./usr/share/man/cat3/curses_delch.0 comp-c-catman .cat +./usr/share/man/cat3/curses_deleteln.0 comp-c-catman .cat +./usr/share/man/cat3/curses_echochar.0 comp-c-catman .cat +./usr/share/man/cat3/curses_fileio.0 comp-c-catman .cat +./usr/share/man/cat3/curses_inch.0 comp-c-catman .cat +./usr/share/man/cat3/curses_input.0 comp-c-catman .cat +./usr/share/man/cat3/curses_insdelln.0 comp-c-catman .cat +./usr/share/man/cat3/curses_insertch.0 comp-c-catman .cat +./usr/share/man/cat3/curses_insertln.0 comp-c-catman .cat +./usr/share/man/cat3/curses_keyname.0 comp-c-catman .cat +./usr/share/man/cat3/curses_line.0 comp-c-catman .cat +./usr/share/man/cat3/curses_pad.0 comp-c-catman .cat +./usr/share/man/cat3/curses_print.0 comp-c-catman .cat +./usr/share/man/cat3/curses_refresh.0 comp-c-catman .cat +./usr/share/man/cat3/curses_scanw.0 comp-c-catman .cat +./usr/share/man/cat3/curses_screen.0 comp-c-catman .cat +./usr/share/man/cat3/curses_scroll.0 comp-c-catman .cat +./usr/share/man/cat3/curses_standout.0 comp-c-catman .cat +./usr/share/man/cat3/curses_termcap.0 comp-c-catman .cat +./usr/share/man/cat3/curses_touch.0 comp-c-catman .cat +./usr/share/man/cat3/curses_tty.0 comp-c-catman .cat +./usr/share/man/cat3/curses_underscore.0 comp-c-catman .cat +./usr/share/man/cat3/curses_window.0 comp-c-catman .cat +./usr/share/man/cat3/cuserid.0 comp-c-catman .cat +./usr/share/man/cat3/d2i_ASN1_OBJECT.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_DHparams.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_DSAPublicKey.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_PKCS8PrivateKey.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_RSAPublicKey.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_SSL_SESSION.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_X509.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_X509_ALGOR.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_X509_CRL.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_X509_NAME.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_X509_REQ.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/d2i_X509_SIG.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/daemon.0 comp-c-catman .cat +./usr/share/man/cat3/data_ahead.0 comp-c-catman .cat +./usr/share/man/cat3/data_behind.0 comp-c-catman .cat +./usr/share/man/cat3/daylight.0 comp-c-catman .cat +./usr/share/man/cat3/db.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_clearerr.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_close.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_delete.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_dirfno.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_error.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_fetch.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_firstkey.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_nextkey.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_open.0 comp-c-catman .cat +./usr/share/man/cat3/dbm_store.0 comp-c-catman .cat +./usr/share/man/cat3/dbopen.0 comp-c-catman .cat +./usr/share/man/cat3/dcgettext.0 comp-c-catman .cat +./usr/share/man/cat3/dcngettext.0 comp-c-catman .cat +./usr/share/man/cat3/def_prog_mode.0 comp-c-catman .cat +./usr/share/man/cat3/def_shell_mode.0 comp-c-catman .cat +./usr/share/man/cat3/define_key.0 comp-c-catman .cat +./usr/share/man/cat3/dehumanize_number.0 comp-c-catman .cat +./usr/share/man/cat3/del_curterm.0 comp-c-catman .cat +./usr/share/man/cat3/delay_output.0 comp-c-catman .cat +./usr/share/man/cat3/delch.0 comp-c-catman .cat +./usr/share/man/cat3/deleteln.0 comp-c-catman .cat +./usr/share/man/cat3/delscreen.0 comp-c-catman .cat +./usr/share/man/cat3/delwin.0 comp-c-catman .cat +./usr/share/man/cat3/derwin.0 comp-c-catman .cat +./usr/share/man/cat3/des.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_cbc_cksum.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_cfb64_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_cfb_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_crypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ecb2_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ecb3_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ecb_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ede2_cbc_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ede2_cfb64_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ede2_ofb64_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ede3_cbc_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ede3_cbcm_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ede3_cfb64_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ede3_ofb64_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_enc_read.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_enc_write.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_fcrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_is_weak_key.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_key_sched.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ncbc_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ofb64_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_ofb_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_pcbc_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_quad_cksum.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_random_key.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_read_2passwords.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_read_password.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_read_pw_string.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_set_key.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_set_key_checked.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_set_key_unchecked.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_set_odd_parity.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_string_to_2keys.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_string_to_key.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/des_xcbc_encrypt.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/devname.0 comp-c-catman .cat +./usr/share/man/cat3/dgettext.0 comp-c-catman .cat +./usr/share/man/cat3/dh.0 comp-obsolete obsolete +./usr/share/man/cat3/difftime.0 comp-c-catman .cat +./usr/share/man/cat3/dir.0 comp-c-catman .cat +./usr/share/man/cat3/directory.0 comp-c-catman .cat +./usr/share/man/cat3/dirent.0 comp-c-catman .cat +./usr/share/man/cat3/dirfd.0 comp-c-catman .cat +./usr/share/man/cat3/dirname.0 comp-c-catman .cat +./usr/share/man/cat3/disklabel_dkcksum.0 comp-c-catman .cat +./usr/share/man/cat3/disklabel_scan.0 comp-c-catman .cat +./usr/share/man/cat3/div.0 comp-c-catman .cat +./usr/share/man/cat3/dl_iterate_phdr.0 comp-c-catman .cat +./usr/share/man/cat3/dladdr.0 comp-c-catman .cat +./usr/share/man/cat3/dlclose.0 comp-c-catman .cat +./usr/share/man/cat3/dlctl.0 comp-c-catman .cat +./usr/share/man/cat3/dlerror.0 comp-c-catman .cat +./usr/share/man/cat3/dlfcn.0 comp-c-catman .cat +./usr/share/man/cat3/dlopen.0 comp-c-catman .cat +./usr/share/man/cat3/dlsym.0 comp-c-catman .cat +./usr/share/man/cat3/dlvsym.0 comp-c-catman .cat +./usr/share/man/cat3/dm.0 comp-c-catman .cat +./usr/share/man/cat3/dn_comp.0 comp-c-catman .cat +./usr/share/man/cat3/dn_expand.0 comp-c-catman .cat +./usr/share/man/cat3/dngettext.0 comp-c-catman .cat +./usr/share/man/cat3/doupdate.0 comp-c-catman .cat +./usr/share/man/cat3/dprintf.0 comp-c-catman .cat +./usr/share/man/cat3/drand48.0 comp-c-catman .cat +./usr/share/man/cat3/dsa.0 comp-obsolete obsolete +./usr/share/man/cat3/dup_field.0 comp-c-catman .cat +./usr/share/man/cat3/dupwin.0 comp-c-catman .cat +./usr/share/man/cat3/dynamic_field_info.0 comp-c-catman .cat +./usr/share/man/cat3/easprintf.0 comp-c-catman .cat +./usr/share/man/cat3/ecalloc.0 comp-c-catman .cat +./usr/share/man/cat3/echo.0 comp-c-catman .cat +./usr/share/man/cat3/echochar.0 comp-c-catman .cat +./usr/share/man/cat3/edata.0 comp-c-catman .cat +./usr/share/man/cat3/editline.0 comp-c-catman .cat +./usr/share/man/cat3/efopen.0 comp-c-catman .cat +./usr/share/man/cat3/efun.0 comp-c-catman .cat +./usr/share/man/cat3/el_deletestr.0 comp-c-catman .cat +./usr/share/man/cat3/el_end.0 comp-c-catman .cat +./usr/share/man/cat3/el_get.0 comp-c-catman .cat +./usr/share/man/cat3/el_getc.0 comp-c-catman .cat +./usr/share/man/cat3/el_gets.0 comp-c-catman .cat +./usr/share/man/cat3/el_init.0 comp-c-catman .cat +./usr/share/man/cat3/el_insertstr.0 comp-c-catman .cat +./usr/share/man/cat3/el_line.0 comp-c-catman .cat +./usr/share/man/cat3/el_parse.0 comp-c-catman .cat +./usr/share/man/cat3/el_push.0 comp-c-catman .cat +./usr/share/man/cat3/el_reset.0 comp-c-catman .cat +./usr/share/man/cat3/el_resize.0 comp-c-catman .cat +./usr/share/man/cat3/el_set.0 comp-c-catman .cat +./usr/share/man/cat3/el_source.0 comp-c-catman .cat +./usr/share/man/cat3/elf.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_checksum.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_fsize.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_getehdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_getphdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_getshdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_newehdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_newphdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_xlatetof.0 comp-c-catman .cat +./usr/share/man/cat3/elf32_xlatetom.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_checksum.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_fsize.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_getehdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_getphdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_getshdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_newehdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_newphdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_xlatetof.0 comp-c-catman .cat +./usr/share/man/cat3/elf64_xlatetom.0 comp-c-catman .cat +./usr/share/man/cat3/elf_begin.0 comp-c-catman .cat +./usr/share/man/cat3/elf_cntl.0 comp-c-catman .cat +./usr/share/man/cat3/elf_end.0 comp-c-catman .cat +./usr/share/man/cat3/elf_errmsg.0 comp-c-catman .cat +./usr/share/man/cat3/elf_errno.0 comp-c-catman .cat +./usr/share/man/cat3/elf_fill.0 comp-c-catman .cat +./usr/share/man/cat3/elf_flagdata.0 comp-c-catman .cat +./usr/share/man/cat3/elf_flagehdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf_flagelf.0 comp-c-catman .cat +./usr/share/man/cat3/elf_flagphdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf_flagscn.0 comp-c-catman .cat +./usr/share/man/cat3/elf_flagshdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getarhdr.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getarsym.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getbase.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getdata.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getident.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getphnum.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getscn.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getshnum.0 comp-c-catman .cat +./usr/share/man/cat3/elf_getshstrndx.0 comp-c-catman .cat +./usr/share/man/cat3/elf_hash.0 comp-c-catman .cat +./usr/share/man/cat3/elf_kind.0 comp-c-catman .cat +./usr/share/man/cat3/elf_memory.0 comp-c-catman .cat +./usr/share/man/cat3/elf_ndxscn.0 comp-c-catman .cat +./usr/share/man/cat3/elf_newdata.0 comp-c-catman .cat +./usr/share/man/cat3/elf_newscn.0 comp-c-catman .cat +./usr/share/man/cat3/elf_next.0 comp-c-catman .cat +./usr/share/man/cat3/elf_nextscn.0 comp-c-catman .cat +./usr/share/man/cat3/elf_rand.0 comp-c-catman .cat +./usr/share/man/cat3/elf_rawdata.0 comp-c-catman .cat +./usr/share/man/cat3/elf_rawfile.0 comp-c-catman .cat +./usr/share/man/cat3/elf_setshstrndx.0 comp-c-catman .cat +./usr/share/man/cat3/elf_strptr.0 comp-c-catman .cat +./usr/share/man/cat3/elf_update.0 comp-c-catman .cat +./usr/share/man/cat3/elf_version.0 comp-c-catman .cat +./usr/share/man/cat3/emalloc.0 comp-c-catman .cat +./usr/share/man/cat3/encrypt.0 comp-c-catman .cat +./usr/share/man/cat3/end.0 comp-c-catman .cat +./usr/share/man/cat3/endfsent.0 comp-c-catman .cat +./usr/share/man/cat3/endgrent.0 comp-c-catman .cat +./usr/share/man/cat3/endhostent.0 comp-c-catman .cat +./usr/share/man/cat3/endnetconfig.0 comp-c-catman .cat +./usr/share/man/cat3/endnetent.0 comp-c-catman .cat +./usr/share/man/cat3/endnetgrent.0 comp-c-catman .cat +./usr/share/man/cat3/endnetpath.0 comp-c-catman .cat +./usr/share/man/cat3/endprotoent.0 comp-c-catman .cat +./usr/share/man/cat3/endpwent.0 comp-c-catman .cat +./usr/share/man/cat3/endrpcent.0 comp-c-catman .cat +./usr/share/man/cat3/endservent.0 comp-c-catman .cat +./usr/share/man/cat3/endttyent.0 comp-c-catman .cat +./usr/share/man/cat3/endusershell.0 comp-c-catman .cat +./usr/share/man/cat3/endutxent.0 comp-c-catman .cat +./usr/share/man/cat3/endwin.0 comp-c-catman .cat +./usr/share/man/cat3/erand48.0 comp-c-catman .cat +./usr/share/man/cat3/erase.0 comp-c-catman .cat +./usr/share/man/cat3/erasechar.0 comp-c-catman .cat +./usr/share/man/cat3/erealloc.0 comp-c-catman .cat +./usr/share/man/cat3/erf.0 comp-c-catman .cat +./usr/share/man/cat3/erfc.0 comp-c-catman .cat +./usr/share/man/cat3/erfcf.0 comp-c-catman .cat +./usr/share/man/cat3/erff.0 comp-c-catman .cat +./usr/share/man/cat3/err.0 comp-c-catman .cat +./usr/share/man/cat3/error_message.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/error_table_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/errx.0 comp-c-catman .cat +./usr/share/man/cat3/esetfunc.0 comp-c-catman .cat +./usr/share/man/cat3/estrdup.0 comp-c-catman .cat +./usr/share/man/cat3/estrlcat.0 comp-c-catman .cat +./usr/share/man/cat3/estrlcpy.0 comp-c-catman .cat +./usr/share/man/cat3/estrndup.0 comp-c-catman .cat +./usr/share/man/cat3/etext.0 comp-c-catman .cat +./usr/share/man/cat3/ether_aton.0 comp-c-catman .cat +./usr/share/man/cat3/ether_hostton.0 comp-c-catman .cat +./usr/share/man/cat3/ether_line.0 comp-c-catman .cat +./usr/share/man/cat3/ether_ntoa.0 comp-c-catman .cat +./usr/share/man/cat3/ether_ntohost.0 comp-c-catman .cat +./usr/share/man/cat3/ethers.0 comp-c-catman .cat +./usr/share/man/cat3/evasprintf.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_add.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_add_buffer.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_add_printf.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_add_vprintf.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_drain.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_find.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_free.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_new.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_read.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_readline.0 comp-c-catman .cat +./usr/share/man/cat3/evbuffer_write.0 comp-c-catman .cat +./usr/share/man/cat3/evdns.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_clear_nameservers_and_suspend.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_count_nameservers.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_err_to_string.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_init.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_nameserver_add.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_nameserver_ip_add.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_resolv_conf_parse.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_resolve_ipv4.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_resolve_reverse.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_resume.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_search_add.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_search_clear.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_search_ndots_set.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_set_log_fn.0 comp-c-catman .cat +./usr/share/man/cat3/evdns_shutdown.0 comp-c-catman .cat +./usr/share/man/cat3/event.0 comp-c-catman .cat +./usr/share/man/cat3/event_add.0 comp-c-catman .cat +./usr/share/man/cat3/event_base_dispatch.0 comp-c-catman .cat +./usr/share/man/cat3/event_base_free.0 comp-c-catman .cat +./usr/share/man/cat3/event_base_loop.0 comp-c-catman .cat +./usr/share/man/cat3/event_base_loopbreak.0 comp-c-catman .cat +./usr/share/man/cat3/event_base_loopexit.0 comp-c-catman .cat +./usr/share/man/cat3/event_base_once.0 comp-c-catman .cat +./usr/share/man/cat3/event_base_set.0 comp-c-catman .cat +./usr/share/man/cat3/event_del.0 comp-c-catman .cat +./usr/share/man/cat3/event_dispatch.0 comp-c-catman .cat +./usr/share/man/cat3/event_init.0 comp-c-catman .cat +./usr/share/man/cat3/event_initialized.0 comp-c-catman .cat +./usr/share/man/cat3/event_loop.0 comp-c-catman .cat +./usr/share/man/cat3/event_loopbreak.0 comp-c-catman .cat +./usr/share/man/cat3/event_loopexit.0 comp-c-catman .cat +./usr/share/man/cat3/event_once.0 comp-c-catman .cat +./usr/share/man/cat3/event_pending.0 comp-c-catman .cat +./usr/share/man/cat3/event_set.0 comp-c-catman .cat +./usr/share/man/cat3/evhttp_bind_socket.0 comp-c-catman .cat +./usr/share/man/cat3/evhttp_free.0 comp-c-catman .cat +./usr/share/man/cat3/evhttp_new.0 comp-c-catman .cat +./usr/share/man/cat3/evtimer_add.0 comp-c-catman .cat +./usr/share/man/cat3/evtimer_del.0 comp-c-catman .cat +./usr/share/man/cat3/evtimer_initialized.0 comp-c-catman .cat +./usr/share/man/cat3/evtimer_pending.0 comp-c-catman .cat +./usr/share/man/cat3/evtimer_set.0 comp-c-catman .cat +./usr/share/man/cat3/exec.0 comp-c-catman .cat +./usr/share/man/cat3/execl.0 comp-c-catman .cat +./usr/share/man/cat3/execle.0 comp-c-catman .cat +./usr/share/man/cat3/execlp.0 comp-c-catman .cat +./usr/share/man/cat3/exect.0 comp-c-catman .cat +./usr/share/man/cat3/execv.0 comp-c-catman .cat +./usr/share/man/cat3/execvp.0 comp-c-catman .cat +./usr/share/man/cat3/exit.0 comp-c-catman .cat +./usr/share/man/cat3/exp.0 comp-c-catman .cat +./usr/share/man/cat3/exp2.0 comp-c-catman .cat +./usr/share/man/cat3/exp2f.0 comp-c-catman .cat +./usr/share/man/cat3/expf.0 comp-c-catman .cat +./usr/share/man/cat3/expm1.0 comp-c-catman .cat +./usr/share/man/cat3/expm1f.0 comp-c-catman .cat +./usr/share/man/cat3/extattr.0 comp-obsolete obsolete +./usr/share/man/cat3/extattr_copy_fd.0 comp-c-catman .cat +./usr/share/man/cat3/extattr_copy_file.0 comp-c-catman .cat +./usr/share/man/cat3/extattr_copy_link.0 comp-c-catman .cat +./usr/share/man/cat3/extattr_namespace_to_string.0 comp-c-catman .cat +./usr/share/man/cat3/extattr_string_to_namespace.0 comp-c-catman .cat +./usr/share/man/cat3/fabs.0 comp-c-catman .cat +./usr/share/man/cat3/fabsf.0 comp-c-catman .cat +./usr/share/man/cat3/fast_divide32.0 comp-c-catman .cat +./usr/share/man/cat3/fast_divide32_prepare.0 comp-c-catman .cat +./usr/share/man/cat3/fast_remainder32.0 comp-c-catman .cat +./usr/share/man/cat3/fclose.0 comp-c-catman .cat +./usr/share/man/cat3/fcpxattr.0 comp-c-catman .cat +./usr/share/man/cat3/fdim.0 comp-c-catman .cat +./usr/share/man/cat3/fdimf.0 comp-c-catman .cat +./usr/share/man/cat3/fdiml.0 comp-c-catman .cat +./usr/share/man/cat3/fdopen.0 comp-c-catman .cat +./usr/share/man/cat3/fdopendir.0 comp-c-catman .cat +./usr/share/man/cat3/feclearexcept.0 comp-c-catman .cat +./usr/share/man/cat3/fedisableexcept.0 comp-c-catman .cat +./usr/share/man/cat3/feenableexcept.0 comp-c-catman .cat +./usr/share/man/cat3/fegetenv.0 comp-c-catman .cat +./usr/share/man/cat3/fegetexcept.0 comp-c-catman .cat +./usr/share/man/cat3/fegetexceptflag.0 comp-c-catman .cat +./usr/share/man/cat3/fegetround.0 comp-c-catman .cat +./usr/share/man/cat3/feholdexcept.0 comp-c-catman .cat +./usr/share/man/cat3/fenv.0 comp-c-catman .cat +./usr/share/man/cat3/feof.0 comp-c-catman .cat +./usr/share/man/cat3/feraiseexcept.0 comp-c-catman .cat +./usr/share/man/cat3/ferror.0 comp-c-catman .cat +./usr/share/man/cat3/feseteexcpetflag.0 comp-obsolete obsolete +./usr/share/man/cat3/fesetenv.0 comp-c-catman .cat +./usr/share/man/cat3/fesetexceptflag.0 comp-c-catman .cat +./usr/share/man/cat3/fesetround.0 comp-c-catman .cat +./usr/share/man/cat3/fetch.0 comp-c-catman .cat +./usr/share/man/cat3/fetestexcept.0 comp-c-catman .cat +./usr/share/man/cat3/feupdateenv.0 comp-c-catman .cat +./usr/share/man/cat3/fflush.0 comp-c-catman .cat +./usr/share/man/cat3/ffs.0 comp-c-catman .cat +./usr/share/man/cat3/ffs32.0 comp-c-catman .cat +./usr/share/man/cat3/ffs64.0 comp-c-catman .cat +./usr/share/man/cat3/fgetc.0 comp-c-catman .cat +./usr/share/man/cat3/fgetln.0 comp-c-catman .cat +./usr/share/man/cat3/fgetpos.0 comp-c-catman .cat +./usr/share/man/cat3/fgets.0 comp-c-catman .cat +./usr/share/man/cat3/fgetstr.0 comp-obsolete obsolete +./usr/share/man/cat3/fgetwc.0 comp-c-catman .cat +./usr/share/man/cat3/fgetwln.0 comp-c-catman .cat +./usr/share/man/cat3/fgetws.0 comp-c-catman .cat +./usr/share/man/cat3/field_arg.0 comp-c-catman .cat +./usr/share/man/cat3/field_back.0 comp-c-catman .cat +./usr/share/man/cat3/field_buffer.0 comp-c-catman .cat +./usr/share/man/cat3/field_count.0 comp-c-catman .cat +./usr/share/man/cat3/field_fore.0 comp-c-catman .cat +./usr/share/man/cat3/field_index.0 comp-c-catman .cat +./usr/share/man/cat3/field_info.0 comp-c-catman .cat +./usr/share/man/cat3/field_init.0 comp-c-catman .cat +./usr/share/man/cat3/field_just.0 comp-c-catman .cat +./usr/share/man/cat3/field_opts.0 comp-c-catman .cat +./usr/share/man/cat3/field_opts_off.0 comp-c-catman .cat +./usr/share/man/cat3/field_opts_on.0 comp-c-catman .cat +./usr/share/man/cat3/field_pad.0 comp-c-catman .cat +./usr/share/man/cat3/field_status.0 comp-c-catman .cat +./usr/share/man/cat3/field_term.0 comp-c-catman .cat +./usr/share/man/cat3/field_type.0 comp-c-catman .cat +./usr/share/man/cat3/field_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/fileno.0 comp-c-catman .cat +./usr/share/man/cat3/finite.0 comp-c-catman .cat +./usr/share/man/cat3/finitef.0 comp-c-catman .cat +./usr/share/man/cat3/flags_to_string.0 comp-c-catman .cat +./usr/share/man/cat3/flash.0 comp-c-catman .cat +./usr/share/man/cat3/flockfile.0 comp-c-catman .cat +./usr/share/man/cat3/floor.0 comp-c-catman .cat +./usr/share/man/cat3/floorf.0 comp-c-catman .cat +./usr/share/man/cat3/fls32.0 comp-c-catman .cat +./usr/share/man/cat3/fls64.0 comp-c-catman .cat +./usr/share/man/cat3/flushinp.0 comp-c-catman .cat +./usr/share/man/cat3/flushok.0 comp-c-catman .cat +./usr/share/man/cat3/fmax.0 comp-c-catman .cat +./usr/share/man/cat3/fmaxf.0 comp-c-catman .cat +./usr/share/man/cat3/fmaxl.0 comp-c-catman .cat +./usr/share/man/cat3/fmemopen.0 comp-c-catman .cat +./usr/share/man/cat3/fmin.0 comp-c-catman .cat +./usr/share/man/cat3/fminf.0 comp-c-catman .cat +./usr/share/man/cat3/fminl.0 comp-c-catman .cat +./usr/share/man/cat3/fmod.0 comp-c-catman .cat +./usr/share/man/cat3/fmodf.0 comp-c-catman .cat +./usr/share/man/cat3/fmtcheck.0 comp-c-catman .cat +./usr/share/man/cat3/fmtmsg.0 comp-c-catman .cat +./usr/share/man/cat3/fnmatch.0 comp-c-catman .cat +./usr/share/man/cat3/fopen.0 comp-c-catman .cat +./usr/share/man/cat3/forkpty.0 comp-c-catman .cat +./usr/share/man/cat3/form.0 comp-c-catman .cat +./usr/share/man/cat3/form_cursor.0 comp-c-catman .cat +./usr/share/man/cat3/form_data.0 comp-c-catman .cat +./usr/share/man/cat3/form_driver.0 comp-c-catman .cat +./usr/share/man/cat3/form_field.0 comp-c-catman .cat +./usr/share/man/cat3/form_field_attributes.0 comp-c-catman .cat +./usr/share/man/cat3/form_field_buffer.0 comp-c-catman .cat +./usr/share/man/cat3/form_field_info.0 comp-c-catman .cat +./usr/share/man/cat3/form_field_just.0 comp-c-catman .cat +./usr/share/man/cat3/form_field_new.0 comp-c-catman .cat +./usr/share/man/cat3/form_field_opts.0 comp-c-catman .cat +./usr/share/man/cat3/form_field_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/form_field_validation.0 comp-c-catman .cat +./usr/share/man/cat3/form_fields.0 comp-c-catman .cat +./usr/share/man/cat3/form_fieldtype.0 comp-c-catman .cat +./usr/share/man/cat3/form_hook.0 comp-c-catman .cat +./usr/share/man/cat3/form_init.0 comp-c-catman .cat +./usr/share/man/cat3/form_max_page.0 comp-c-catman .cat +./usr/share/man/cat3/form_new.0 comp-c-catman .cat +./usr/share/man/cat3/form_new_page.0 comp-c-catman .cat +./usr/share/man/cat3/form_opts.0 comp-c-catman .cat +./usr/share/man/cat3/form_opts_off.0 comp-c-catman .cat +./usr/share/man/cat3/form_opts_on.0 comp-c-catman .cat +./usr/share/man/cat3/form_page.0 comp-c-catman .cat +./usr/share/man/cat3/form_post.0 comp-c-catman .cat +./usr/share/man/cat3/form_sub.0 comp-c-catman .cat +./usr/share/man/cat3/form_term.0 comp-c-catman .cat +./usr/share/man/cat3/form_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/form_win.0 comp-c-catman .cat +./usr/share/man/cat3/forms.0 comp-c-catman .cat +./usr/share/man/cat3/fp_nquery.0 comp-c-catman .cat +./usr/share/man/cat3/fp_resstat.0 comp-c-catman .cat +./usr/share/man/cat3/fparseln.0 comp-c-catman .cat +./usr/share/man/cat3/fpclassify.0 comp-c-catman .cat +./usr/share/man/cat3/fpgetmask.0 comp-c-catman .cat +./usr/share/man/cat3/fpgetprec.0 comp-c-catman .cat +./usr/share/man/cat3/fpgetround.0 comp-c-catman .cat +./usr/share/man/cat3/fpgetsticky.0 comp-c-catman .cat +./usr/share/man/cat3/fprintf.0 comp-c-catman .cat +./usr/share/man/cat3/fpsetmask.0 comp-c-catman .cat +./usr/share/man/cat3/fpsetprec.0 comp-c-catman .cat +./usr/share/man/cat3/fpsetround.0 comp-c-catman .cat +./usr/share/man/cat3/fpsetsticky.0 comp-c-catman .cat +./usr/share/man/cat3/fpurge.0 comp-c-catman .cat +./usr/share/man/cat3/fputc.0 comp-c-catman .cat +./usr/share/man/cat3/fputs.0 comp-c-catman .cat +./usr/share/man/cat3/fputwc.0 comp-c-catman .cat +./usr/share/man/cat3/fputws.0 comp-c-catman .cat +./usr/share/man/cat3/fread.0 comp-c-catman .cat +./usr/share/man/cat3/free.0 comp-c-catman .cat +./usr/share/man/cat3/free_field.0 comp-c-catman .cat +./usr/share/man/cat3/free_fieldtype.0 comp-c-catman .cat +./usr/share/man/cat3/free_form.0 comp-c-catman .cat +./usr/share/man/cat3/free_item.0 comp-c-catman .cat +./usr/share/man/cat3/free_menu.0 comp-c-catman .cat +./usr/share/man/cat3/freeaddrinfo.0 comp-c-catman .cat +./usr/share/man/cat3/freeifaddrs.0 comp-c-catman .cat +./usr/share/man/cat3/freopen.0 comp-c-catman .cat +./usr/share/man/cat3/frexp.0 comp-c-catman .cat +./usr/share/man/cat3/fropen.0 comp-c-catman .cat +./usr/share/man/cat3/fropen2.0 comp-c-catman .cat +./usr/share/man/cat3/fscanf.0 comp-c-catman .cat +./usr/share/man/cat3/fseek.0 comp-c-catman .cat +./usr/share/man/cat3/fseeko.0 comp-c-catman .cat +./usr/share/man/cat3/fsetpos.0 comp-c-catman .cat +./usr/share/man/cat3/ftell.0 comp-c-catman .cat +./usr/share/man/cat3/ftello.0 comp-c-catman .cat +./usr/share/man/cat3/ftime.0 comp-c-catman .cat +./usr/share/man/cat3/ftok.0 comp-c-catman .cat +./usr/share/man/cat3/ftrylockfile.0 comp-c-catman .cat +./usr/share/man/cat3/fts.0 comp-c-catman .cat +./usr/share/man/cat3/fts_children.0 comp-c-catman .cat +./usr/share/man/cat3/fts_close.0 comp-c-catman .cat +./usr/share/man/cat3/fts_open.0 comp-c-catman .cat +./usr/share/man/cat3/fts_read.0 comp-c-catman .cat +./usr/share/man/cat3/fts_set.0 comp-c-catman .cat +./usr/share/man/cat3/ftw.0 comp-c-catman .cat +./usr/share/man/cat3/fullname.0 comp-c-catman .cat +./usr/share/man/cat3/funlockfile.0 comp-c-catman .cat +./usr/share/man/cat3/funopen.0 comp-c-catman .cat +./usr/share/man/cat3/funopen2.0 comp-c-catman .cat +./usr/share/man/cat3/fwide.0 comp-c-catman .cat +./usr/share/man/cat3/fwopen.0 comp-c-catman .cat +./usr/share/man/cat3/fwopen2.0 comp-c-catman .cat +./usr/share/man/cat3/fwprintf.0 comp-c-catman .cat +./usr/share/man/cat3/fwrite.0 comp-c-catman .cat +./usr/share/man/cat3/fwscanf.0 comp-c-catman .cat +./usr/share/man/cat3/gai_strerror.0 comp-c-catman .cat +./usr/share/man/cat3/gamma.0 comp-c-catman .cat +./usr/share/man/cat3/gamma_r.0 comp-c-catman .cat +./usr/share/man/cat3/gammaf.0 comp-c-catman .cat +./usr/share/man/cat3/gammaf_r.0 comp-c-catman .cat +./usr/share/man/cat3/gcq.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_clear.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_empty.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_head.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_hq.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_init.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_init_head.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_insert_after.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_insert_before.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_insert_head.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_insert_tail.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_linked.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_merge.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_merge_head.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_merge_tail.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_onlist.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_q.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_remove.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_remove_all.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_tie.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_tie_after.0 comp-c-catman .cat +./usr/share/man/cat3/gcq_tie_before.0 comp-c-catman .cat +./usr/share/man/cat3/gelf.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_checksum.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_fsize.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getcap.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getclass.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getdyn.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getehdr.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getmove.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getphdr.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getrel.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getrela.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getshdr.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getsym.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getsyminfo.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_getsymshndx.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_newehdr.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_newphdr.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_cap.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_dyn.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_ehdr.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_move.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_phdr.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_rel.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_rela.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_shdr.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_sym.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_syminfo.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_update_symshndx.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_xlatetof.0 comp-c-catman .cat +./usr/share/man/cat3/gelf_xlatetom.0 comp-c-catman .cat +./usr/share/man/cat3/get_myaddress.0 comp-c-catman .cat +./usr/share/man/cat3/getaddrinfo.0 comp-c-catman .cat +./usr/share/man/cat3/getattrs.0 comp-c-catman .cat +./usr/share/man/cat3/getbegx.0 comp-c-catman .cat +./usr/share/man/cat3/getbegy.0 comp-c-catman .cat +./usr/share/man/cat3/getbkgd.0 comp-c-catman .cat +./usr/share/man/cat3/getbootfile.0 comp-c-catman .cat +./usr/share/man/cat3/getbsize.0 comp-c-catman .cat +./usr/share/man/cat3/getc.0 comp-c-catman .cat +./usr/share/man/cat3/getc_unlocked.0 comp-c-catman .cat +./usr/share/man/cat3/getcap.0 comp-obsolete obsolete +./usr/share/man/cat3/getch.0 comp-c-catman .cat +./usr/share/man/cat3/getchar.0 comp-c-catman .cat +./usr/share/man/cat3/getchar_unlocked.0 comp-c-catman .cat +./usr/share/man/cat3/getcurx.0 comp-c-catman .cat +./usr/share/man/cat3/getcury.0 comp-c-catman .cat +./usr/share/man/cat3/getcwd.0 comp-c-catman .cat +./usr/share/man/cat3/getdate.0 comp-c-catman .cat +./usr/share/man/cat3/getdate_err.0 comp-c-catman .cat +./usr/share/man/cat3/getdelim.0 comp-c-catman .cat +./usr/share/man/cat3/getdevmajor.0 comp-c-catman .cat +./usr/share/man/cat3/getdirentries.0 comp-c-catman .cat +./usr/share/man/cat3/getdiskbyname.0 comp-c-catman .cat +./usr/share/man/cat3/getdiskcookedname.0 comp-c-catman .cat +./usr/share/man/cat3/getdiskrawname.0 comp-c-catman .cat +./usr/share/man/cat3/getdomainname.0 comp-c-catman .cat +./usr/share/man/cat3/getdtablesize.0 comp-c-catman .cat +./usr/share/man/cat3/getenv.0 comp-c-catman .cat +./usr/share/man/cat3/getenv_r.0 comp-c-catman .cat +./usr/share/man/cat3/getfsent.0 comp-c-catman .cat +./usr/share/man/cat3/getfsfile.0 comp-c-catman .cat +./usr/share/man/cat3/getfsspec.0 comp-c-catman .cat +./usr/share/man/cat3/getfsspecname.0 comp-c-catman .cat +./usr/share/man/cat3/getfstype.0 comp-obsolete obsolete +./usr/share/man/cat3/getfstypename.0 comp-c-catman .cat +./usr/share/man/cat3/getgrent.0 comp-c-catman .cat +./usr/share/man/cat3/getgrent_r.0 comp-c-catman .cat +./usr/share/man/cat3/getgrgid.0 comp-c-catman .cat +./usr/share/man/cat3/getgrgid_r.0 comp-c-catman .cat +./usr/share/man/cat3/getgrnam.0 comp-c-catman .cat +./usr/share/man/cat3/getgrnam_r.0 comp-c-catman .cat +./usr/share/man/cat3/getgrouplist.0 comp-c-catman .cat +./usr/share/man/cat3/getgroupmembership.0 comp-c-catman .cat +./usr/share/man/cat3/gethostbyaddr.0 comp-c-catman .cat +./usr/share/man/cat3/gethostbyname.0 comp-c-catman .cat +./usr/share/man/cat3/gethostbyname2.0 comp-c-catman .cat +./usr/share/man/cat3/gethostent.0 comp-c-catman .cat +./usr/share/man/cat3/gethostid.0 comp-c-catman .cat +./usr/share/man/cat3/gethostname.0 comp-c-catman .cat +./usr/share/man/cat3/getifaddrs.0 comp-c-catman .cat +./usr/share/man/cat3/getlabeloffset.0 comp-c-catman .cat +./usr/share/man/cat3/getlabelsector.0 comp-c-catman .cat +./usr/share/man/cat3/getlabelusesmbr.0 comp-c-catman .cat +./usr/share/man/cat3/getlastlogx.0 comp-c-catman .cat +./usr/share/man/cat3/getline.0 comp-c-catman .cat +./usr/share/man/cat3/getloadavg.0 comp-c-catman .cat +./usr/share/man/cat3/getmaxpartitions.0 comp-c-catman .cat +./usr/share/man/cat3/getmaxx.0 comp-c-catman .cat +./usr/share/man/cat3/getmaxy.0 comp-c-catman .cat +./usr/share/man/cat3/getmaxyx.0 comp-c-catman .cat +./usr/share/man/cat3/getmntinfo.0 comp-c-catman .cat +./usr/share/man/cat3/getmntopts.0 comp-c-catman .cat +./usr/share/man/cat3/getmode.0 comp-c-catman .cat +./usr/share/man/cat3/getnameinfo.0 comp-c-catman .cat +./usr/share/man/cat3/getnetbyaddr.0 comp-c-catman .cat +./usr/share/man/cat3/getnetbyname.0 comp-c-catman .cat +./usr/share/man/cat3/getnetconfig.0 comp-c-catman .cat +./usr/share/man/cat3/getnetconfigent.0 comp-c-catman .cat +./usr/share/man/cat3/getnetent.0 comp-c-catman .cat +./usr/share/man/cat3/getnetgrent.0 comp-c-catman .cat +./usr/share/man/cat3/getnetpath.0 comp-c-catman .cat +./usr/share/man/cat3/getnstr.0 comp-c-catman .cat +./usr/share/man/cat3/getopt.0 comp-c-catman .cat +./usr/share/man/cat3/getopt_long.0 comp-c-catman .cat +./usr/share/man/cat3/getpagesize.0 comp-c-catman .cat +./usr/share/man/cat3/getparx.0 comp-c-catman .cat +./usr/share/man/cat3/getpary.0 comp-c-catman .cat +./usr/share/man/cat3/getparyx.0 comp-c-catman .cat +./usr/share/man/cat3/getpass.0 comp-c-catman .cat +./usr/share/man/cat3/getpass_r.0 comp-c-catman .cat +./usr/share/man/cat3/getpassfd.0 comp-c-catman .cat +./usr/share/man/cat3/getpeereid.0 comp-c-catman .cat +./usr/share/man/cat3/getprogname.0 comp-c-catman .cat +./usr/share/man/cat3/getprotobyname.0 comp-c-catman .cat +./usr/share/man/cat3/getprotobynumber.0 comp-c-catman .cat +./usr/share/man/cat3/getprotoent.0 comp-c-catman .cat +./usr/share/man/cat3/getpw.0 comp-obsolete obsolete +./usr/share/man/cat3/getpwent.0 comp-c-catman .cat +./usr/share/man/cat3/getpwent_r.0 comp-c-catman .cat +./usr/share/man/cat3/getpwnam.0 comp-c-catman .cat +./usr/share/man/cat3/getpwnam_r.0 comp-c-catman .cat +./usr/share/man/cat3/getpwuid.0 comp-c-catman .cat +./usr/share/man/cat3/getpwuid_r.0 comp-c-catman .cat +./usr/share/man/cat3/getrawpartition.0 comp-c-catman .cat +./usr/share/man/cat3/getrpcbyname.0 comp-c-catman .cat +./usr/share/man/cat3/getrpcbynumber.0 comp-c-catman .cat +./usr/share/man/cat3/getrpcent.0 comp-c-catman .cat +./usr/share/man/cat3/getrpcport.0 comp-c-catman .cat +./usr/share/man/cat3/gets.0 comp-c-catman .cat +./usr/share/man/cat3/getservbyname.0 comp-c-catman .cat +./usr/share/man/cat3/getservbyport.0 comp-c-catman .cat +./usr/share/man/cat3/getservent.0 comp-c-catman .cat +./usr/share/man/cat3/getskeyprompt.0 comp-c-catman skey,.cat +./usr/share/man/cat3/getstr.0 comp-c-catman .cat +./usr/share/man/cat3/getsubopt.0 comp-c-catman .cat +./usr/share/man/cat3/gettext.0 comp-c-catman .cat +./usr/share/man/cat3/gettmode.0 comp-c-catman .cat +./usr/share/man/cat3/getttyent.0 comp-c-catman .cat +./usr/share/man/cat3/getttynam.0 comp-c-catman .cat +./usr/share/man/cat3/getusershell.0 comp-c-catman .cat +./usr/share/man/cat3/getutmp.0 comp-c-catman .cat +./usr/share/man/cat3/getutmpx.0 comp-c-catman .cat +./usr/share/man/cat3/getutxent.0 comp-c-catman .cat +./usr/share/man/cat3/getutxid.0 comp-c-catman .cat +./usr/share/man/cat3/getutxline.0 comp-c-catman .cat +./usr/share/man/cat3/getw.0 comp-c-catman .cat +./usr/share/man/cat3/getwc.0 comp-c-catman .cat +./usr/share/man/cat3/getwchar.0 comp-c-catman .cat +./usr/share/man/cat3/getwd.0 comp-c-catman .cat +./usr/share/man/cat3/getwin.0 comp-c-catman .cat +./usr/share/man/cat3/getyx.0 comp-c-catman .cat +./usr/share/man/cat3/gid_from_group.0 comp-c-catman .cat +./usr/share/man/cat3/glob.0 comp-c-catman .cat +./usr/share/man/cat3/glob_pattern_p.0 comp-c-catman .cat +./usr/share/man/cat3/globfree.0 comp-c-catman .cat +./usr/share/man/cat3/gmtime.0 comp-c-catman .cat +./usr/share/man/cat3/gmtime_r.0 comp-c-catman .cat +./usr/share/man/cat3/grantpt.0 comp-c-catman .cat +./usr/share/man/cat3/group_from_gid.0 comp-c-catman .cat +./usr/share/man/cat3/gss_accept_sec_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_acquire_cred.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_add_cred.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_add_oid_set_member.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_canonicalize_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_compare_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_context_time.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_create_empty_oid_set.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_delete_sec_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_display_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_display_status.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_duplicate_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_export_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_export_sec_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_get_mic.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_import_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_import_sec_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_indicate_mechs.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_init_sec_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_inquire_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_inquire_cred.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_inquire_cred_by_mech.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_inquire_mechs_for_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_inquire_names_for_mech.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_krb5_ccache_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_krb5_compat_des3_mic.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_krb5_copy_ccache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_krb5_get_tkt_flags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_krb5_import_ccache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_krb5_import_cred.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_process_context_token.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_release_buffer.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_release_cred.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_release_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_release_oid_set.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_seal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_sign.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_test_oid_set_member.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_unseal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_unwrap.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_verify.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_verify_mic.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_wrap.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gss_wrap_size_limit.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gssapi.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gsskrb5_extract_authz_data_from_sec_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gsskrb5_register_acceptor_identity.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/gtty.0 comp-c-catman .cat +./usr/share/man/cat3/halfdelay.0 comp-c-catman .cat +./usr/share/man/cat3/has_colors.0 comp-c-catman .cat +./usr/share/man/cat3/has_ic.0 comp-c-catman .cat +./usr/share/man/cat3/has_il.0 comp-c-catman .cat +./usr/share/man/cat3/hash.0 comp-c-catman .cat +./usr/share/man/cat3/hcreate.0 comp-c-catman .cat +./usr/share/man/cat3/hcreate_r.0 comp-c-catman .cat +./usr/share/man/cat3/hdestroy.0 comp-c-catman .cat +./usr/share/man/cat3/hdestroy_r.0 comp-c-catman .cat +./usr/share/man/cat3/heapsort.0 comp-c-catman .cat +./usr/share/man/cat3/herror.0 comp-c-catman .cat +./usr/share/man/cat3/hesiod.0 comp-c-catman hesiod,.cat +./usr/share/man/cat3/hesiod_end.0 comp-c-catman hesiod,.cat +./usr/share/man/cat3/hesiod_free_list.0 comp-c-catman hesiod,.cat +./usr/share/man/cat3/hesiod_init.0 comp-c-catman hesiod,.cat +./usr/share/man/cat3/hesiod_resolve.0 comp-c-catman hesiod,.cat +./usr/share/man/cat3/hesiod_to_bind.0 comp-c-catman hesiod,.cat +./usr/share/man/cat3/hid_dispose_report_desc.0 comp-c-catman .cat +./usr/share/man/cat3/hid_end_parse.0 comp-c-catman .cat +./usr/share/man/cat3/hid_get_data.0 comp-c-catman .cat +./usr/share/man/cat3/hid_get_item.0 comp-c-catman .cat +./usr/share/man/cat3/hid_get_report_desc.0 comp-c-catman .cat +./usr/share/man/cat3/hid_init.0 comp-c-catman .cat +./usr/share/man/cat3/hid_locate.0 comp-c-catman .cat +./usr/share/man/cat3/hid_report_size.0 comp-c-catman .cat +./usr/share/man/cat3/hid_set_data.0 comp-c-catman .cat +./usr/share/man/cat3/hid_start_parse.0 comp-c-catman .cat +./usr/share/man/cat3/hid_usage_in_page.0 comp-c-catman .cat +./usr/share/man/cat3/hid_usage_page.0 comp-c-catman .cat +./usr/share/man/cat3/history.0 comp-c-catman .cat +./usr/share/man/cat3/history_end.0 comp-c-catman .cat +./usr/share/man/cat3/history_init.0 comp-c-catman .cat +./usr/share/man/cat3/hline.0 comp-c-catman .cat +./usr/share/man/cat3/hmac.0 comp-obsolete obsolete +./usr/share/man/cat3/hostalias.0 comp-c-catman .cat +./usr/share/man/cat3/hosts_access.0 comp-c-catman .cat +./usr/share/man/cat3/hosts_ctl.0 comp-c-catman .cat +./usr/share/man/cat3/hsearch.0 comp-c-catman .cat +./usr/share/man/cat3/hsearch_r.0 comp-c-catman .cat +./usr/share/man/cat3/hstrerror.0 comp-c-catman .cat +./usr/share/man/cat3/htonl.0 comp-c-catman .cat +./usr/share/man/cat3/htons.0 comp-c-catman .cat +./usr/share/man/cat3/humanize_number.0 comp-c-catman .cat +./usr/share/man/cat3/hypot.0 comp-c-catman .cat +./usr/share/man/cat3/hypotf.0 comp-c-catman .cat +./usr/share/man/cat3/iconv.0 comp-c-catman .cat +./usr/share/man/cat3/iconv_close.0 comp-c-catman .cat +./usr/share/man/cat3/iconv_open.0 comp-c-catman .cat +./usr/share/man/cat3/idcok.0 comp-c-catman .cat +./usr/share/man/cat3/idlok.0 comp-c-catman .cat +./usr/share/man/cat3/ieee.0 comp-obsolete obsolete +./usr/share/man/cat3/ieee_test.0 comp-c-catman .cat +./usr/share/man/cat3/if_freenameindex.0 comp-c-catman .cat +./usr/share/man/cat3/if_indextoname.0 comp-c-catman .cat +./usr/share/man/cat3/if_nameindex.0 comp-c-catman .cat +./usr/share/man/cat3/if_nametoindex.0 comp-c-catman .cat +./usr/share/man/cat3/ilog2.0 comp-c-catman .cat +./usr/share/man/cat3/ilogb.0 comp-c-catman .cat +./usr/share/man/cat3/ilogbf.0 comp-c-catman .cat +./usr/share/man/cat3/ilogbl.0 comp-c-catman .cat +./usr/share/man/cat3/imaxabs.0 comp-c-catman .cat +./usr/share/man/cat3/imaxdiv.0 comp-c-catman .cat +./usr/share/man/cat3/inch.0 comp-c-catman .cat +./usr/share/man/cat3/inchnstr.0 comp-c-catman .cat +./usr/share/man/cat3/inchstr.0 comp-c-catman .cat +./usr/share/man/cat3/index.0 comp-c-catman .cat +./usr/share/man/cat3/inet.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_opt_append.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_opt_find.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_opt_finish.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_opt_get_val.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_opt_init.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_opt_next.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_opt_set_val.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_option_alloc.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_option_append.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_option_find.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_option_init.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_option_next.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_option_space.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rth_add.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rth_getaddr.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rth_init.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rth_reverse.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rth_segments.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rth_space.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rthdr_add.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rthdr_getaddr.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rthdr_getflags.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rthdr_init.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rthdr_lasthop.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rthdr_reverse.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rthdr_segments.0 comp-c-catman .cat +./usr/share/man/cat3/inet6_rthdr_space.0 comp-c-catman .cat +./usr/share/man/cat3/inet_addr.0 comp-c-catman .cat +./usr/share/man/cat3/inet_aton.0 comp-c-catman .cat +./usr/share/man/cat3/inet_lnaof.0 comp-c-catman .cat +./usr/share/man/cat3/inet_makeaddr.0 comp-c-catman .cat +./usr/share/man/cat3/inet_net.0 comp-c-catman .cat +./usr/share/man/cat3/inet_net_ntop.0 comp-c-catman .cat +./usr/share/man/cat3/inet_net_pton.0 comp-c-catman .cat +./usr/share/man/cat3/inet_netof.0 comp-c-catman .cat +./usr/share/man/cat3/inet_network.0 comp-c-catman .cat +./usr/share/man/cat3/inet_ntoa.0 comp-c-catman .cat +./usr/share/man/cat3/inet_ntop.0 comp-c-catman .cat +./usr/share/man/cat3/inet_pton.0 comp-c-catman .cat +./usr/share/man/cat3/init_color.0 comp-c-catman .cat +./usr/share/man/cat3/init_error_table.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/init_pair.0 comp-c-catman .cat +./usr/share/man/cat3/initgroups.0 comp-c-catman .cat +./usr/share/man/cat3/initscr.0 comp-c-catman .cat +./usr/share/man/cat3/initstate.0 comp-c-catman .cat +./usr/share/man/cat3/innetgr.0 comp-c-catman .cat +./usr/share/man/cat3/innstr.0 comp-c-catman .cat +./usr/share/man/cat3/insch.0 comp-c-catman .cat +./usr/share/man/cat3/insdelln.0 comp-c-catman .cat +./usr/share/man/cat3/insertln.0 comp-c-catman .cat +./usr/share/man/cat3/insque.0 comp-c-catman .cat +./usr/share/man/cat3/instr.0 comp-c-catman .cat +./usr/share/man/cat3/intrflush.0 comp-c-catman .cat +./usr/share/man/cat3/intro.0 comp-c-catman .cat +./usr/share/man/cat3/inttypes.0 comp-c-catman .cat +./usr/share/man/cat3/ipsec_dump_policy.0 comp-c-catman .cat +./usr/share/man/cat3/ipsec_get_policylen.0 comp-c-catman .cat +./usr/share/man/cat3/ipsec_set_policy.0 comp-c-catman .cat +./usr/share/man/cat3/ipsec_strerror.0 comp-c-catman .cat +./usr/share/man/cat3/iruserok.0 comp-c-catman .cat +./usr/share/man/cat3/iruserok_sa.0 comp-c-catman .cat +./usr/share/man/cat3/is_linetouched.0 comp-c-catman .cat +./usr/share/man/cat3/is_wintouched.0 comp-c-catman .cat +./usr/share/man/cat3/isalnum.0 comp-c-catman .cat +./usr/share/man/cat3/isalpha.0 comp-c-catman .cat +./usr/share/man/cat3/isascii.0 comp-c-catman .cat +./usr/share/man/cat3/isatty.0 comp-c-catman .cat +./usr/share/man/cat3/isblank.0 comp-c-catman .cat +./usr/share/man/cat3/iscntrl.0 comp-c-catman .cat +./usr/share/man/cat3/isdigit.0 comp-c-catman .cat +./usr/share/man/cat3/isendwin.0 comp-c-catman .cat +./usr/share/man/cat3/isfinite.0 comp-c-catman .cat +./usr/share/man/cat3/isgraph.0 comp-c-catman .cat +./usr/share/man/cat3/isgreater.0 comp-c-catman .cat +./usr/share/man/cat3/isinf.0 comp-c-catman .cat +./usr/share/man/cat3/isinff.0 comp-c-catman .cat +./usr/share/man/cat3/islower.0 comp-c-catman .cat +./usr/share/man/cat3/isnan.0 comp-c-catman .cat +./usr/share/man/cat3/isnanf.0 comp-c-catman .cat +./usr/share/man/cat3/isnormal.0 comp-c-catman .cat +./usr/share/man/cat3/isns.0 comp-isns-catman .cat +./usr/share/man/cat3/iso646.0 comp-c-catman .cat +./usr/share/man/cat3/iso_addr.0 comp-c-catman .cat +./usr/share/man/cat3/isprint.0 comp-c-catman .cat +./usr/share/man/cat3/ispunct.0 comp-c-catman .cat +./usr/share/man/cat3/isspace.0 comp-c-catman .cat +./usr/share/man/cat3/isupper.0 comp-c-catman .cat +./usr/share/man/cat3/iswalnum.0 comp-c-catman .cat +./usr/share/man/cat3/iswalpha.0 comp-c-catman .cat +./usr/share/man/cat3/iswblank.0 comp-c-catman .cat +./usr/share/man/cat3/iswcntrl.0 comp-c-catman .cat +./usr/share/man/cat3/iswctype.0 comp-c-catman .cat +./usr/share/man/cat3/iswdigit.0 comp-c-catman .cat +./usr/share/man/cat3/iswgraph.0 comp-c-catman .cat +./usr/share/man/cat3/iswlower.0 comp-c-catman .cat +./usr/share/man/cat3/iswprint.0 comp-c-catman .cat +./usr/share/man/cat3/iswpunct.0 comp-c-catman .cat +./usr/share/man/cat3/iswspace.0 comp-c-catman .cat +./usr/share/man/cat3/iswupper.0 comp-c-catman .cat +./usr/share/man/cat3/iswxdigit.0 comp-c-catman .cat +./usr/share/man/cat3/isxdigit.0 comp-c-catman .cat +./usr/share/man/cat3/item_count.0 comp-c-catman .cat +./usr/share/man/cat3/item_description.0 comp-c-catman .cat +./usr/share/man/cat3/item_index.0 comp-c-catman .cat +./usr/share/man/cat3/item_init.0 comp-c-catman .cat +./usr/share/man/cat3/item_name.0 comp-c-catman .cat +./usr/share/man/cat3/item_opts.0 comp-c-catman .cat +./usr/share/man/cat3/item_opts_off.0 comp-c-catman .cat +./usr/share/man/cat3/item_opts_on.0 comp-c-catman .cat +./usr/share/man/cat3/item_selected.0 comp-c-catman .cat +./usr/share/man/cat3/item_term.0 comp-c-catman .cat +./usr/share/man/cat3/item_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/item_value.0 comp-c-catman .cat +./usr/share/man/cat3/item_visible.0 comp-c-catman .cat +./usr/share/man/cat3/itimerspec.0 comp-c-catman .cat +./usr/share/man/cat3/itimerval.0 comp-c-catman .cat +./usr/share/man/cat3/j0.0 comp-c-catman .cat +./usr/share/man/cat3/j0f.0 comp-c-catman .cat +./usr/share/man/cat3/j1.0 comp-c-catman .cat +./usr/share/man/cat3/j1f.0 comp-c-catman .cat +./usr/share/man/cat3/jemalloc.0 comp-c-catman .cat +./usr/share/man/cat3/jn.0 comp-c-catman .cat +./usr/share/man/cat3/jnf.0 comp-c-catman .cat +./usr/share/man/cat3/jrand48.0 comp-c-catman .cat +./usr/share/man/cat3/kadm5_pwcheck.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/kafs.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/kerberos.0 comp-obsolete obsolete +./usr/share/man/cat3/keyname.0 comp-c-catman .cat +./usr/share/man/cat3/keypad.0 comp-c-catman .cat +./usr/share/man/cat3/killchar.0 comp-c-catman .cat +./usr/share/man/cat3/killpg.0 comp-c-catman .cat +./usr/share/man/cat3/krb5.0 comp-obsolete obsolete +./usr/share/man/cat3/krb524_convert_creds_kdc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb524_convert_creds_kdc_ccache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_425_conv_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_425_conv_principal_ext.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_524_conv_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_abort.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_abortx.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_acl_match_file.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_acl_match_string.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_add_et_list.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_add_extra_addresses.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_add_ignore_addresses.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_addlog_dest.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_addlog_func.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_addr2sockaddr.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_address.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_address_compare.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_address_order.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_address_search.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_addresses.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_aname_to_localname.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_anyaddr.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_appdefault.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_appdefault_boolean.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_appdefault_string.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_appdefault_time.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_append_addresses.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_auth_con_addflags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_free.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_genaddrs.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_generatelocalsubkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_getaddrs.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_getauthenticator.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_getflags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_getkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_getlocalsubkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_getrcache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_getremotesubkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_getuserkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_init.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_initivector.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_removeflags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setaddrs.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setaddrs_from_fd.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setflags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setivector.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setlocalsubkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setrcache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setremotesubkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_con_setuserkey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_getauthenticator.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_auth_getcksumtype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_getkeytype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_getlocalseqnumber.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_getremoteseqnumber.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_setcksumtype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_setkeytype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_setlocalseqnumber.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_auth_setremoteseqnumber.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_build_ap_req.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_build_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_build_principal_ext.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_build_principal_va.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_build_principal_va_ext.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_block_size.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_checksum_length.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_decrypt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_encrypt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_encrypt_length.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_enctype_compare.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_get_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_is_coll_proof_cksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_is_keyed_cksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_keylength.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_make_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_make_random_key.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_set_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_valid_cksumtype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_valid_enctype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_c_verify_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_cc_clear_mcred.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_close.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_copy_cache.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_cursor.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_default_name.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_destroy.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_end_seq_get.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_gen_new.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_get_full_name.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_get_name.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_get_ops.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_get_prefix_ops.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_get_principal.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_get_type.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_get_version.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_initialize.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_new_unique.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_next_cred.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_next_cred_match.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_ops.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_register.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_remove_cred.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_resolve.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_retrieve_cred.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_set_default_name.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_set_flags.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_start_seq_get.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_cc_store_cred.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ccache.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_change_password.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_check_transited.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_check_transited_realms.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_checksum_disable.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_checksum_is_collision_proof.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_checksum_is_keyed.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_checksumsize.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_cksumtype_valid.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_clear_error_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_closelog.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_compare_creds.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_file_free.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_free_strings.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_bool.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_bool_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_int.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_int_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_list.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_next.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_string_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_strings.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_time.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_get_time_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_parse_file.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_parse_file_multi.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_bool.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_bool_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_int.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_int_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_list.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_next.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_string_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_strings.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_time.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_config_vget_time_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_copy_address.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_copy_addresses.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_copy_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_copy_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_copy_creds_contents.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_copy_data.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_copy_host_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_copy_keyblock.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_copy_keyblock_contents.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_copy_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_copy_ticket.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_create_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_crypto_destroy.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_crypto_get_checksum_type.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_crypto_getblocksize.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_crypto_getconfoundersize.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_crypto_getenctype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_crypto_getpadsize.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_crypto_init.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_crypto_overhead.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_data.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_data_alloc.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_data_cmp.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_data_copy.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_data_free.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_data_realloc.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_data_zero.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_decrypt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_decrypt_EncryptedData.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_decrypt_ivec.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_decrypt_ticket.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_alloc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_free.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_get_a1_hash.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_get_client_binding.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_get_identifier.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_get_opaque.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_get_responseData.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_get_rsp.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_get_server_nonce.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_get_tickets.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_init_request.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_request.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_authentication_user.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_authid.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_client_nonce.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_digest.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_hostname.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_identifier.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_method.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_nonceCount.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_opaque.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_qop.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_server_cb.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_server_nonce.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_type.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_uri.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_digest_set_username.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_domain_x500_decode.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_domain_x500_encode.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_eai_to_heim_errno.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_encrypt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_encrypt_EncryptedData.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_encrypt_ivec.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_enctype_disable.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_enctype_keysize.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_enctype_to_string.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_enctype_valid.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_err.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_error_from_rd_error.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_errx.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_expand_hostname.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_expand_hostname_realms.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_fcc_ops.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_find_padata.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_format_time.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_address.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_free_addresses.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_free_authenticator.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_checksum_contents.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_config_files.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_cred_contents.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_data.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_free_data_contents.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_free_error.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_error_contents.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_error_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_free_host_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_kdc_rep.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_keyblock.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_free_keyblock_contents.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_free_krbhst.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_salt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_free_ticket.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_fwd_tgt_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_generate_random_block.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_generate_random_keyblock.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_generate_subkey.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_generate_subkey_extended.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_get_all_client_addrs.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_all_server_addrs.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_cred_from_kdc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_cred_from_kdc_opt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_credentials.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_credentials_with_flags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_creds_opt_add_options.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_creds_opt_alloc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_creds_opt_free.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_creds_opt_set_enctype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_creds_opt_set_impersonate.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_creds_opt_set_options.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_creds_opt_set_ticket.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_default_config_files.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_default_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_default_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_default_realms.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_dns_canonize_hostname.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_err_text.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_get_error_message.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_get_error_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_get_extra_addresses.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_fcache_version.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_forwarded_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_host_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_ignore_addresses.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_in_cred.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_in_tkt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_in_tkt_with_keytab.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_in_tkt_with_password.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_in_tkt_with_skey.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_keytab.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_alloc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_free.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_init.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_address_list.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_addressless.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_anonymous.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_canonicalize.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_default_flags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_etype_list.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_forwardable.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_pa_password.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_paq_request.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_preauth_list.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_proxiable.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_renew_life.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_salt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_tkt_life.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_opt_set_win2k.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_init_creds_password.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_kdc_cred.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_kdc_sec_offset.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_krb524hst.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_krb_admin_hst.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_krb_changepw_hst.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_krbhst.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_max_time_skew.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_pw_salt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_renewed_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_server_rcache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_use_admin_kdc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_get_warn_dest.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_get_wrapped_length.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_getportbyname.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_h_addr2addr.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_h_addr2sockaddr.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_h_errno_to_heim_errno.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_have_error_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_hmac.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_init_context.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_init_ets.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_initlog.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_is_thread_safe.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_keyblock.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_keyblock_get_enctype.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_keyblock_init.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_keyblock_zero.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_keytab.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_keytab_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_krbhst_format_string.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_krbhst_free.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_krbhst_get_addrinfo.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_krbhst_init.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_krbhst_init_flags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_krbhst_next.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_krbhst_next_as_string.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_krbhst_reset.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_kt_add_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_close.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_compare.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_copy_entry_contents.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_cursor.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_default.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_default_modify_name.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_default_name.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_end_seq_get.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_free_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_get_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_get_name.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_get_type.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_next_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_ops.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_read_service_key.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_register.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_remove_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_resolve.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kt_start_seq_get.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_kuserok.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_log.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_log_msg.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_make_addrport.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_make_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_max_sockaddr_size.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_mcc_ops.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_mk_priv.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_mk_rep.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_mk_rep_exact.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_mk_rep_extended.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_mk_req.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_mk_req_exact.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_mk_req_extended.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_mk_safe.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_openlog.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_padata_add.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_parse.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_parse_address.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_parse_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_parse_name_flags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_parse_nametype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_passwd_result_to_string.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_password_key_proc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_prepend_config_files.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_prepend_config_files_default.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_princ_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_princ_set_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_principal_compare.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_principal_compare_any_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_principal_get_comp_string.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_principal_get_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_principal_get_type.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_principal_match.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_principal_set_type.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_print_address.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_prompt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_prompter_posix.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_random_to_key.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_rc_close.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_default.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_default_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_default_type.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_destroy.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_expunge.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_get_lifespan.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_get_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_get_type.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_initialize.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_recover.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_resolve.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_resolve_full.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_resolve_type.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rc_store.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rcache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rd_error.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rd_priv.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rd_rep.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rd_req.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rd_req_with_keyblock.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_rd_safe.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_realm_compare.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_ret_address.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_addrs.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_authdata.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_creds.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_data.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_int16.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_int32.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_int8.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_keyblock.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_principal.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_stringnl.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_stringz.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_times.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_uint16.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_uint32.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ret_uint8.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_set_config_files.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_default_realm.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_dns_canonize_hostname.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_error_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_set_extra_addresses.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_fcache_version.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_ignore_addresses.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_max_time_skew.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_password.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_password_using_ccache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_real_time.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_use_admin_kdc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_set_warn_dest.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_sname_to_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_sock_to_principal.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_sockaddr2address.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_sockaddr2port.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_sockaddr_uninteresting.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_clear_flags.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_emem.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_free.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_from_data.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_from_fd.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_from_mem.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_get_byteorder.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_is_flags.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_read.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_seek.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_set_byteorder.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_set_eof_code.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_set_flags.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_to_data.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_storage_write.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_address.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_addrs.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_authdata.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_creds.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_data.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_int16.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_int32.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_int8.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_keyblock.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_principal.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_stringnl.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_stringz.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_times.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_uint16.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_uint32.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_store_uint8.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_string_to_deltat.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_string_to_enctype.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_string_to_key.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_string_to_key_data.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_string_to_key_data_salt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_string_to_key_data_salt_opaque.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_string_to_key_salt.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_string_to_key_salt_opaque.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_ticket.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ticket_get_authorization_data_type.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ticket_get_client.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ticket_get_endtime.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_ticket_get_server.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_timeofday.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_unparse_name.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_unparse_name_fixed.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_unparse_name_fixed_flags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_unparse_name_fixed_short.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_unparse_name_flags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_unparse_name_short.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_us_timeofday.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_vabort.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_vabortx.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_verify_ap_req.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_checksum.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_init_creds.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_init_creds_opt_init.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_init_creds_opt_set_ap_req_nofail.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_opt_alloc.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_opt_free.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_opt_init.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_opt_set_ccache.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_opt_set_flags.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_opt_set_keytab.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_opt_set_secure.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_opt_set_service.0 comp-krb5c-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_user.0 comp-krb5c-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_user_lrealm.0 comp-krb5c-catman kerberos,.cat +./usr/share/man/cat3/krb5_verify_user_opt.0 comp-krb5c-catman kerberos,.cat +./usr/share/man/cat3/krb5_verr.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_verrx.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_vlog.0 comp-krb5c-catman kerberos,.cat +./usr/share/man/cat3/krb5_vlog_msg.0 comp-krb5c-catman kerberos,.cat +./usr/share/man/cat3/krb5_vset_error_string.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_vwarn.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_vwarnx.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_warn.0 comp-obsolete obsolete +./usr/share/man/cat3/krb5_warnx.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_ck_repl.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_get_cred.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_get_krbhst.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_get_lrealm.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_get_phost.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_kntoln.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_mk_err.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_mk_priv.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_mk_req.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_mk_safe.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_rd_err.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_rd_priv.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_rd_req.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_rd_safe.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_realmofhost.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_sendauth.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_set_key.0 comp-obsolete obsolete +./usr/share/man/cat3/krb_set_tkt_string.0 comp-obsolete obsolete +./usr/share/man/cat3/kvm.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_close.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_dump.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_dump_inval.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_dump_mkheader.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_dump_wrtheader.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getargv.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getargv2.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getenvv.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getenvv2.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_geterr.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getfiles.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getkernelname.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getloadavg.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getlwps.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getproc2.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_getprocs.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_nlist.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_open.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_openfiles.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_read.0 comp-c-catman .cat +./usr/share/man/cat3/kvm_write.0 comp-c-catman .cat +./usr/share/man/cat3/l64a.0 comp-c-catman .cat +./usr/share/man/cat3/l64a_r.0 comp-c-catman .cat +./usr/share/man/cat3/labs.0 comp-c-catman .cat +./usr/share/man/cat3/lber-decode.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/lber-encode.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/lber-memory.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/lber-sockbuf.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/lber-types.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/lcong48.0 comp-c-catman .cat +./usr/share/man/cat3/lcpxattr.0 comp-c-catman .cat +./usr/share/man/cat3/ld_errno.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_abandon.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_abandon_ext.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_add.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_add_ext.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_add_ext_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_add_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_attributetype2name.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_attributetype2str.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_attributetype_free.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_bind.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_bind_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_compare.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_compare_ext.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_compare_ext_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_compare_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_count_entries.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_count_messages.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_count_references.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_count_values.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_count_values_len.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_dcedn2dn.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_delete.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_delete_ext.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_delete_ext_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_delete_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_dn2ad_canonical.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_dn2dcedn.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_dn2str.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_dn2ufn.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_err2string.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_errlist.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_error.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_explode_dn.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_explode_rdn.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_first_attribute.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_first_entry.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_first_message.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_first_reference.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_free_urldesc.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_get_dn.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_get_values.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_get_values_len.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_init.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_is_ldap_url.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_kerberos_bind1.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_kerberos_bind1_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_kerberos_bind2.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_kerberos_bind2_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_kerberos_bind_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_matchingrule2name.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_matchingrule2str.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_matchingrule_free.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_modify.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_modify_ext.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_modify_ext_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_modify_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_modrdn.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_modrdn2.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_modrdn2_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_modrdn_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_mods_free.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_msgfree.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_msgid.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_msgtype.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_next_attribute.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_next_entry.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_next_message.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_next_reference.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_objectclass2name.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_objectclass2str.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_objectclass_free.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_open.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_parse_extended_result.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_parse_reference.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_parse_result.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_parse_sasl_bind_result.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_perror.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_result.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_result2error.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_sasl_bind.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_sasl_bind_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_schema.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_scherr2str.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_search.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_search_ext.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_search_ext_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_search_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_search_st.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_simple_bind.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_simple_bind_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_sort.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_sort_entries.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_sort_strcasecmp.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_sort_values.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_str2attributetype.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_str2dn.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_str2matchingrule.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_str2objectclass.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_str2syntax.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_syntax2name.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_syntax2str.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_syntax_free.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_unbind.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_unbind_ext.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_unbind_ext_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_unbind_s.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_url.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_url_parse.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_value_free.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldap_value_free_len.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat3/ldexp.0 comp-c-catman .cat +./usr/share/man/cat3/ldiv.0 comp-c-catman .cat +./usr/share/man/cat3/leaveok.0 comp-c-catman .cat +./usr/share/man/cat3/lfind.0 comp-c-catman .cat +./usr/share/man/cat3/lgamma.0 comp-c-catman .cat +./usr/share/man/cat3/lgamma_r.0 comp-c-catman .cat +./usr/share/man/cat3/lgammaf.0 comp-c-catman .cat +./usr/share/man/cat3/lgammaf_r.0 comp-c-catman .cat +./usr/share/man/cat3/lh_stats.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/lhash.0 comp-obsolete obsolete +./usr/share/man/cat3/libarchive.0 comp-c-catman .cat +./usr/share/man/cat3/libarchive_internals.0 comp-c-catman .cat +./usr/share/man/cat3/libiscsi.0 comp-c-catman iscsi,.cat +./usr/share/man/cat3/libmagic.0 comp-c-catman .cat +./usr/share/man/cat3/libmj.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/libnetpgp.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/libperfuse.0 comp-perfuse-catman .cat +./usr/share/man/cat3/libquota.0 comp-c-catman .cat +./usr/share/man/cat3/libradius.0 comp-c-catman .cat +./usr/share/man/cat3/libsaslc.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/libusb.0 comp-obsolete obsolete +./usr/share/man/cat3/libusbhid.0 comp-c-catman .cat +./usr/share/man/cat3/libutil.0 comp-c-catman .cat +./usr/share/man/cat3/limits.0 comp-c-catman .cat +./usr/share/man/cat3/link_addr.0 comp-c-catman .cat +./usr/share/man/cat3/link_field.0 comp-c-catman .cat +./usr/share/man/cat3/link_fieldtype.0 comp-c-catman .cat +./usr/share/man/cat3/link_ntoa.0 comp-c-catman .cat +./usr/share/man/cat3/linkaddr.0 comp-c-catman .cat +./usr/share/man/cat3/linkntoa.0 comp-c-catman .cat +./usr/share/man/cat3/lio_listio.0 comp-c-catman .cat +./usr/share/man/cat3/list_empty.0 comp-obsolete obsolete +./usr/share/man/cat3/list_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/list_first.0 comp-obsolete obsolete +./usr/share/man/cat3/list_head.0 comp-obsolete obsolete +./usr/share/man/cat3/list_head_initializer.0 comp-obsolete obsolete +./usr/share/man/cat3/list_init.0 comp-obsolete obsolete +./usr/share/man/cat3/list_insert_after.0 comp-obsolete obsolete +./usr/share/man/cat3/list_insert_before.0 comp-obsolete obsolete +./usr/share/man/cat3/list_insert_head.0 comp-obsolete obsolete +./usr/share/man/cat3/list_next.0 comp-obsolete obsolete +./usr/share/man/cat3/list_remove.0 comp-obsolete obsolete +./usr/share/man/cat3/llabs.0 comp-c-catman .cat +./usr/share/man/cat3/lldiv.0 comp-c-catman .cat +./usr/share/man/cat3/llrint.0 comp-c-catman .cat +./usr/share/man/cat3/llrintf.0 comp-c-catman .cat +./usr/share/man/cat3/localeconv.0 comp-c-catman .cat +./usr/share/man/cat3/localtime.0 comp-c-catman .cat +./usr/share/man/cat3/localtime_r.0 comp-c-catman .cat +./usr/share/man/cat3/localtime_rz.0 comp-c-catman .cat +./usr/share/man/cat3/lockf.0 comp-c-catman .cat +./usr/share/man/cat3/log.0 comp-c-catman .cat +./usr/share/man/cat3/log10.0 comp-c-catman .cat +./usr/share/man/cat3/log10f.0 comp-c-catman .cat +./usr/share/man/cat3/log1p.0 comp-c-catman .cat +./usr/share/man/cat3/log1pf.0 comp-c-catman .cat +./usr/share/man/cat3/log2.0 comp-c-catman .cat +./usr/share/man/cat3/log2f.0 comp-c-catman .cat +./usr/share/man/cat3/logb.0 comp-c-catman .cat +./usr/share/man/cat3/logbf.0 comp-c-catman .cat +./usr/share/man/cat3/logbl.0 comp-c-catman .cat +./usr/share/man/cat3/logf.0 comp-c-catman .cat +./usr/share/man/cat3/login.0 comp-c-catman .cat +./usr/share/man/cat3/login_cap.0 comp-c-catman .cat +./usr/share/man/cat3/login_close.0 comp-c-catman .cat +./usr/share/man/cat3/login_getcapbool.0 comp-c-catman .cat +./usr/share/man/cat3/login_getcapnum.0 comp-c-catman .cat +./usr/share/man/cat3/login_getcapsize.0 comp-c-catman .cat +./usr/share/man/cat3/login_getcapstr.0 comp-c-catman .cat +./usr/share/man/cat3/login_getcaptime.0 comp-c-catman .cat +./usr/share/man/cat3/login_getclass.0 comp-c-catman .cat +./usr/share/man/cat3/login_tty.0 comp-c-catman .cat +./usr/share/man/cat3/loginx.0 comp-c-catman .cat +./usr/share/man/cat3/logout.0 comp-c-catman .cat +./usr/share/man/cat3/logoutx.0 comp-c-catman .cat +./usr/share/man/cat3/logwtmp.0 comp-c-catman .cat +./usr/share/man/cat3/logwtmpx.0 comp-c-catman .cat +./usr/share/man/cat3/longjmp.0 comp-c-catman .cat +./usr/share/man/cat3/longjmperror.0 comp-c-catman .cat +./usr/share/man/cat3/longname.0 comp-c-catman .cat +./usr/share/man/cat3/lrand48.0 comp-c-catman .cat +./usr/share/man/cat3/lrint.0 comp-c-catman .cat +./usr/share/man/cat3/lrintf.0 comp-c-catman .cat +./usr/share/man/cat3/lsearch.0 comp-c-catman .cat +./usr/share/man/cat3/magic_buffer.0 comp-c-catman .cat +./usr/share/man/cat3/magic_check.0 comp-c-catman .cat +./usr/share/man/cat3/magic_close.0 comp-c-catman .cat +./usr/share/man/cat3/magic_compile.0 comp-c-catman .cat +./usr/share/man/cat3/magic_error.0 comp-c-catman .cat +./usr/share/man/cat3/magic_file.0 comp-c-catman .cat +./usr/share/man/cat3/magic_load.0 comp-c-catman .cat +./usr/share/man/cat3/magic_open.0 comp-c-catman .cat +./usr/share/man/cat3/magic_setflags.0 comp-c-catman .cat +./usr/share/man/cat3/major.0 comp-c-catman .cat +./usr/share/man/cat3/makecontext.0 comp-c-catman .cat +./usr/share/man/cat3/makedev.0 comp-c-catman .cat +./usr/share/man/cat3/malloc.0 comp-c-catman .cat +./usr/share/man/cat3/man.0 comp-obsolete obsolete +./usr/share/man/cat3/mandoc.0 comp-mdocml-catman .cat +./usr/share/man/cat3/math.0 comp-c-catman .cat +./usr/share/man/cat3/mblen.0 comp-c-catman .cat +./usr/share/man/cat3/mbrlen.0 comp-c-catman .cat +./usr/share/man/cat3/mbrtowc.0 comp-c-catman .cat +./usr/share/man/cat3/mbsinit.0 comp-c-catman .cat +./usr/share/man/cat3/mbsrtowcs.0 comp-c-catman .cat +./usr/share/man/cat3/mbstowcs.0 comp-c-catman .cat +./usr/share/man/cat3/mbtowc.0 comp-c-catman .cat +./usr/share/man/cat3/md2.0 comp-c-catman .cat +./usr/share/man/cat3/md4.0 comp-c-catman .cat +./usr/share/man/cat3/md5.0 comp-c-catman .cat +./usr/share/man/cat3/mdc2.0 comp-obsolete obsolete +./usr/share/man/cat3/mdoc.0 comp-obsolete obsolete +./usr/share/man/cat3/membar_consumer.0 comp-c-catman .cat +./usr/share/man/cat3/membar_enter.0 comp-c-catman .cat +./usr/share/man/cat3/membar_exit.0 comp-c-catman .cat +./usr/share/man/cat3/membar_ops.0 comp-c-catman .cat +./usr/share/man/cat3/membar_producer.0 comp-c-catman .cat +./usr/share/man/cat3/membar_sync.0 comp-c-catman .cat +./usr/share/man/cat3/memccpy.0 comp-c-catman .cat +./usr/share/man/cat3/memchr.0 comp-c-catman .cat +./usr/share/man/cat3/memcmp.0 comp-c-catman .cat +./usr/share/man/cat3/memcpy.0 comp-c-catman .cat +./usr/share/man/cat3/memmem.0 comp-c-catman .cat +./usr/share/man/cat3/memmove.0 comp-c-catman .cat +./usr/share/man/cat3/memory.0 comp-c-catman .cat +./usr/share/man/cat3/memrchr.0 comp-c-catman .cat +./usr/share/man/cat3/memset.0 comp-c-catman .cat +./usr/share/man/cat3/menu_attributes.0 comp-c-catman .cat +./usr/share/man/cat3/menu_back.0 comp-c-catman .cat +./usr/share/man/cat3/menu_cursor.0 comp-c-catman .cat +./usr/share/man/cat3/menu_driver.0 comp-c-catman .cat +./usr/share/man/cat3/menu_fore.0 comp-c-catman .cat +./usr/share/man/cat3/menu_format.0 comp-c-catman .cat +./usr/share/man/cat3/menu_grey.0 comp-c-catman .cat +./usr/share/man/cat3/menu_hook.0 comp-c-catman .cat +./usr/share/man/cat3/menu_init.0 comp-c-catman .cat +./usr/share/man/cat3/menu_item_current.0 comp-c-catman .cat +./usr/share/man/cat3/menu_item_name.0 comp-c-catman .cat +./usr/share/man/cat3/menu_item_new.0 comp-c-catman .cat +./usr/share/man/cat3/menu_item_opts.0 comp-c-catman .cat +./usr/share/man/cat3/menu_item_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/menu_item_value.0 comp-c-catman .cat +./usr/share/man/cat3/menu_item_visible.0 comp-c-catman .cat +./usr/share/man/cat3/menu_items.0 comp-c-catman .cat +./usr/share/man/cat3/menu_mark.0 comp-c-catman .cat +./usr/share/man/cat3/menu_new.0 comp-c-catman .cat +./usr/share/man/cat3/menu_opts.0 comp-c-catman .cat +./usr/share/man/cat3/menu_opts_on.0 comp-c-catman .cat +./usr/share/man/cat3/menu_opts_off.0 comp-c-catman .cat +./usr/share/man/cat3/menu_pad.0 comp-c-catman .cat +./usr/share/man/cat3/menu_pattern.0 comp-c-catman .cat +./usr/share/man/cat3/menu_post.0 comp-c-catman .cat +./usr/share/man/cat3/menu_sub.0 comp-c-catman .cat +./usr/share/man/cat3/menu_term.0 comp-c-catman .cat +./usr/share/man/cat3/menu_unmark.0 comp-c-catman .cat +./usr/share/man/cat3/menu_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/menu_win.0 comp-c-catman .cat +./usr/share/man/cat3/menus.0 comp-c-catman .cat +./usr/share/man/cat3/mergesort.0 comp-c-catman .cat +./usr/share/man/cat3/meta.0 comp-c-catman .cat +./usr/share/man/cat3/mi_vector_hash.0 comp-c-catman .cat +./usr/share/man/cat3/minor.0 comp-c-catman .cat +./usr/share/man/cat3/mkdtemp.0 comp-c-catman .cat +./usr/share/man/cat3/mkstemp.0 comp-c-catman .cat +./usr/share/man/cat3/mktemp.0 comp-c-catman .cat +./usr/share/man/cat3/mktime.0 comp-c-catman .cat +./usr/share/man/cat3/mktime_z.0 comp-c-catman .cat +./usr/share/man/cat3/modf.0 comp-c-catman .cat +./usr/share/man/cat3/moncontrol.0 comp-c-catman .cat +./usr/share/man/cat3/monstartup.0 comp-c-catman .cat +./usr/share/man/cat3/move.0 comp-c-catman .cat +./usr/share/man/cat3/move_field.0 comp-c-catman .cat +./usr/share/man/cat3/mpool.0 comp-c-catman .cat +./usr/share/man/cat3/mpool_close.0 comp-c-catman .cat +./usr/share/man/cat3/mpool_filter.0 comp-c-catman .cat +./usr/share/man/cat3/mpool_get.0 comp-c-catman .cat +./usr/share/man/cat3/mpool_new.0 comp-c-catman .cat +./usr/share/man/cat3/mpool_open.0 comp-c-catman .cat +./usr/share/man/cat3/mpool_put.0 comp-c-catman .cat +./usr/share/man/cat3/mpool_sync.0 comp-c-catman .cat +./usr/share/man/cat3/mq.0 comp-c-catman .cat +./usr/share/man/cat3/mq_close.0 comp-c-catman .cat +./usr/share/man/cat3/mq_getattr.0 comp-c-catman .cat +./usr/share/man/cat3/mq_notify.0 comp-c-catman .cat +./usr/share/man/cat3/mq_open.0 comp-c-catman .cat +./usr/share/man/cat3/mq_receive.0 comp-c-catman .cat +./usr/share/man/cat3/mq_send.0 comp-c-catman .cat +./usr/share/man/cat3/mq_setattr.0 comp-c-catman .cat +./usr/share/man/cat3/mq_timedreceive.0 comp-c-catman .cat +./usr/share/man/cat3/mq_timedsend.0 comp-c-catman .cat +./usr/share/man/cat3/mq_unlink.0 comp-c-catman .cat +./usr/share/man/cat3/mqueue.0 comp-c-catman .cat +./usr/share/man/cat3/mrand48.0 comp-c-catman .cat +./usr/share/man/cat3/mvaddch.0 comp-c-catman .cat +./usr/share/man/cat3/mvaddchnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvaddchstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvaddnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvaddstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvchgat.0 comp-c-catman .cat +./usr/share/man/cat3/mvcur.0 comp-c-catman .cat +./usr/share/man/cat3/mvderwin.0 comp-c-catman .cat +./usr/share/man/cat3/mvgetch.0 comp-c-catman .cat +./usr/share/man/cat3/mvgetnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvgetstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvhline.0 comp-c-catman .cat +./usr/share/man/cat3/mvinchnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvinchstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvinnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvinstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvprintw.0 comp-c-catman .cat +./usr/share/man/cat3/mvvline.0 comp-c-catman .cat +./usr/share/man/cat3/mvwaddch.0 comp-c-catman .cat +./usr/share/man/cat3/mvwaddchnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwaddchstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwaddnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwaddstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwchgat.0 comp-c-catman .cat +./usr/share/man/cat3/mvwgetch.0 comp-c-catman .cat +./usr/share/man/cat3/mvwgetnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwgetstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwhline.0 comp-c-catman .cat +./usr/share/man/cat3/mvwin.0 comp-c-catman .cat +./usr/share/man/cat3/mvwinchnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwinchstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwinnstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwinstr.0 comp-c-catman .cat +./usr/share/man/cat3/mvwprintw.0 comp-c-catman .cat +./usr/share/man/cat3/mvwvline.0 comp-c-catman .cat +./usr/share/man/cat3/nan.0 comp-c-catman .cat +./usr/share/man/cat3/nanf.0 comp-c-catman .cat +./usr/share/man/cat3/nanl.0 comp-c-catman .cat +./usr/share/man/cat3/napms.0 comp-c-catman .cat +./usr/share/man/cat3/nc_perror.0 comp-c-catman .cat +./usr/share/man/cat3/nc_sperror.0 comp-c-catman .cat +./usr/share/man/cat3/ndbm.0 comp-c-catman .cat +./usr/share/man/cat3/network.0 comp-c-catman .cat +./usr/share/man/cat3/new_field.0 comp-c-catman .cat +./usr/share/man/cat3/new_fieldtype.0 comp-c-catman .cat +./usr/share/man/cat3/new_form.0 comp-c-catman .cat +./usr/share/man/cat3/new_item.0 comp-c-catman .cat +./usr/share/man/cat3/new_menu.0 comp-c-catman .cat +./usr/share/man/cat3/new_page.0 comp-c-catman .cat +./usr/share/man/cat3/newpad.0 comp-c-catman .cat +./usr/share/man/cat3/newterm.0 comp-c-catman .cat +./usr/share/man/cat3/newwin.0 comp-c-catman .cat +./usr/share/man/cat3/nextafter.0 comp-c-catman .cat +./usr/share/man/cat3/nextafterf.0 comp-c-catman .cat +./usr/share/man/cat3/nextafterl.0 comp-c-catman .cat +./usr/share/man/cat3/nexttoward.0 comp-c-catman .cat +./usr/share/man/cat3/nftw.0 comp-c-catman .cat +./usr/share/man/cat3/ngettext.0 comp-c-catman .cat +./usr/share/man/cat3/nice.0 comp-c-catman .cat +./usr/share/man/cat3/nl.0 comp-c-catman .cat +./usr/share/man/cat3/nl_langinfo.0 comp-c-catman .cat +./usr/share/man/cat3/nlist.0 comp-c-catman .cat +./usr/share/man/cat3/nocbreak.0 comp-c-catman .cat +./usr/share/man/cat3/nodelay.0 comp-c-catman .cat +./usr/share/man/cat3/noecho.0 comp-c-catman .cat +./usr/share/man/cat3/nonl.0 comp-c-catman .cat +./usr/share/man/cat3/noqiflush.0 comp-c-catman .cat +./usr/share/man/cat3/noraw.0 comp-c-catman .cat +./usr/share/man/cat3/notimeout.0 comp-c-catman .cat +./usr/share/man/cat3/npf.0 comp-npf-catman .cat,npf +./usr/share/man/cat3/nrand48.0 comp-c-catman .cat +./usr/share/man/cat3/ns.0 comp-obsolete obsolete +./usr/share/man/cat3/ns_addr.0 comp-obsolete obsolete +./usr/share/man/cat3/ns_ntoa.0 comp-obsolete obsolete +./usr/share/man/cat3/nsdispatch.0 comp-c-catman .cat +./usr/share/man/cat3/ntoa.0 comp-c-catman .cat +./usr/share/man/cat3/ntohl.0 comp-c-catman .cat +./usr/share/man/cat3/ntohs.0 comp-c-catman .cat +./usr/share/man/cat3/nvis.0 comp-c-catman .cat +./usr/share/man/cat3/offsetof.0 comp-c-catman .cat +./usr/share/man/cat3/offtime.0 comp-c-catman .cat +./usr/share/man/cat3/offtime_r.0 comp-c-catman .cat +./usr/share/man/cat3/opendir.0 comp-c-catman .cat +./usr/share/man/cat3/opendisk.0 comp-c-catman .cat +./usr/share/man/cat3/openlog.0 comp-c-catman .cat +./usr/share/man/cat3/openlog_r.0 comp-c-catman .cat +./usr/share/man/cat3/openpam.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_borrow_cred.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_free_data.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_free_envlist.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_get_option.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_log.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_nullconv.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_readline.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_restore_cred.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_set_option.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_subst.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpam_ttyconv.0 comp-c-catman .cat,pam +./usr/share/man/cat3/openpgpsdk.0 comp-obsolete obsolete +./usr/share/man/cat3/openpty.0 comp-c-catman .cat +./usr/share/man/cat3/openssl_bio.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_blowfish.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_bn.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_bn_internal.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_buffer.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_des.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_dh.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_dsa.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_ecdsa.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_engine.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_err.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_evp.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_hmac.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_lhash.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_md5.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_mdc2.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_pem.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_rand.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_rc4.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_ripemd.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_rsa.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_sha.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_threads.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_ui.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_ui_compat.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/openssl_x509.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/orcmd.0 comp-c-catman .cat +./usr/share/man/cat3/orcmd_af.0 comp-c-catman .cat +./usr/share/man/cat3/ossaudio.0 comp-c-catman .cat +./usr/share/man/cat3/overlay.0 comp-c-catman .cat +./usr/share/man/cat3/overwrite.0 comp-c-catman .cat +./usr/share/man/cat3/p2k.0 comp-puffs-catman .cat +./usr/share/man/cat3/p_query.0 comp-c-catman .cat +./usr/share/man/cat3/pair_content.0 comp-c-catman .cat +./usr/share/man/cat3/pam.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_acct_mgmt.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_authenticate.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_chauthtok.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_close_session.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_conv.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_end.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_error.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_get_authtok.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_get_data.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_get_item.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_get_user.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_getenv.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_getenvlist.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_info.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_open_session.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_prompt.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_putenv.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_set_data.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_set_item.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_setcred.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_setenv.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_sm_acct_mgmt.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_sm_authenticate.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_sm_chauthtok.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_sm_close_session.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_sm_open_session.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_sm_setcred.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_start.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_strerror.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_verror.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_vinfo.0 comp-c-catman .cat,pam +./usr/share/man/cat3/pam_vprompt.0 comp-c-catman .cat,pam +./usr/share/man/cat3/param.0 comp-c-catman .cat +./usr/share/man/cat3/parsedate.0 comp-c-catman .cat +./usr/share/man/cat3/paths.0 comp-c-catman .cat +./usr/share/man/cat3/pause.0 comp-c-catman .cat +./usr/share/man/cat3/pcap.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_activate.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_breakloop.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_can_set_rfmon.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_close.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_compile.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_create.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_datalink.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_datalink_name_to_val.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_datalink_val_to_name.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_dump.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_dump_close.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_dump_file.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_dump_flush.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_dump_ftell.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_dump_open.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_file.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_fileno.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_findalldevs.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_free_datalinks.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_freealldevs.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_freecode.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_get_selectable_fd.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_geterr.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_inject.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_is_swapped.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_lib_version.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_list_datalinks.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_lookupdev.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_lookupnet.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_loop.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_major_version.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_next_ex.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_offline_filter.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_open_dead.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_open_live.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_open_offline.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_set_buffer_size.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_set_datalink.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_set_promisc.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_set_rfmon.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_set_snaplen.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_set_timeout.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_setdirection.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_setfilter.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_setnonblock.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_snapshot.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_stats.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_statustostr.0 comp-c-catman .cat +./usr/share/man/cat3/pcap_strerror.0 comp-c-catman .cat +./usr/share/man/cat3/pci.0 comp-c-catman .cat +./usr/share/man/cat3/pci_conf_print.0 comp-c-catman .cat +./usr/share/man/cat3/pci_devinfo.0 comp-c-catman .cat +./usr/share/man/cat3/pci_findvendor.0 comp-c-catman .cat +./usr/share/man/cat3/pcibus_conf_read.0 comp-c-catman .cat +./usr/share/man/cat3/pcibus_conf_write.0 comp-c-catman .cat +./usr/share/man/cat3/pcidev_conf_read.0 comp-c-catman .cat +./usr/share/man/cat3/pcidev_conf_write.0 comp-c-catman .cat +./usr/share/man/cat3/pclose.0 comp-c-catman .cat +./usr/share/man/cat3/pechochar.0 comp-c-catman .cat +./usr/share/man/cat3/perror.0 comp-c-catman .cat +./usr/share/man/cat3/pidfile.0 comp-c-catman .cat +./usr/share/man/cat3/pidlock.0 comp-c-catman .cat +./usr/share/man/cat3/pmap_getmaps.0 comp-c-catman .cat +./usr/share/man/cat3/pmap_getport.0 comp-c-catman .cat +./usr/share/man/cat3/pmap_rmtcall.0 comp-c-catman .cat +./usr/share/man/cat3/pmap_set.0 comp-c-catman .cat +./usr/share/man/cat3/pmap_unset.0 comp-c-catman .cat +./usr/share/man/cat3/pmc.0 comp-c-catman .cat +./usr/share/man/cat3/pnoutrefresh.0 comp-c-catman .cat +./usr/share/man/cat3/popcount.0 comp-c-catman .cat +./usr/share/man/cat3/popcount32.0 comp-c-catman .cat +./usr/share/man/cat3/popcount64.0 comp-c-catman .cat +./usr/share/man/cat3/popcountl.0 comp-c-catman .cat +./usr/share/man/cat3/popcountll.0 comp-c-catman .cat +./usr/share/man/cat3/popen.0 comp-c-catman .cat +./usr/share/man/cat3/pos_form_cursor.0 comp-c-catman .cat +./usr/share/man/cat3/pos_menu_cursor.0 comp-c-catman .cat +./usr/share/man/cat3/posix2time.0 comp-c-catman .cat +./usr/share/man/cat3/posix2time_z.0 comp-c-catman .cat +./usr/share/man/cat3/posix_memalign.0 comp-c-catman .cat +./usr/share/man/cat3/posix_openpt.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawn.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawn_file_actions_addclose.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawn_file_actions_adddup2.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawn_file_actions_addopen.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawn_file_actions_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawn_file_actions_init.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_getflags.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_getpgroup.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_getschedparam.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_getschedpolicy.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_getsigdefault.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_getsigmask.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_init.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_setflags.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_setpgroup.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_setschedparam.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_setschedpolicy.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_setsigdefault.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnattr_setsigmask.0 comp-c-catman .cat +./usr/share/man/cat3/posix_spawnp.0 comp-c-catman .cat +./usr/share/man/cat3/post_form.0 comp-c-catman .cat +./usr/share/man/cat3/post_menu.0 comp-c-catman .cat +./usr/share/man/cat3/pow.0 comp-c-catman .cat +./usr/share/man/cat3/powf.0 comp-c-catman .cat +./usr/share/man/cat3/ppath.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_bool.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_component_at.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_component_idx.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_component_key.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_component_release.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_component_retain.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copy.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copydel_bool.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copydel_int64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copydel_object.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copydel_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copyset_bool.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copyset_int64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copyset_object.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_copyset_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_create.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_delete_bool.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_delete_int64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_delete_object.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_delete_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_get_bool.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_get_int64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_get_object.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_get_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_idx.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_key.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_length.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_lookup.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_number.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_object.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_pop.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_push.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_push_idx.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_push_key.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_release.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_replace_idx.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_replace_key.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_retain.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_set_bool.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_set_int64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_set_object.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_set_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/ppath_subpath.0 comp-c-catman .cat +./usr/share/man/cat3/prefresh.0 comp-c-catman .cat +./usr/share/man/cat3/printf.0 comp-c-catman .cat +./usr/share/man/cat3/printw.0 comp-c-catman .cat +./usr/share/man/cat3/proc_compare.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_add.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_capacity.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_copy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_copy_mutable.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_count.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_create.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_create_with_capacity.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_ensure_capacity.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_equals.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_externalize.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_externalize_to_file.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_externalize_to_pref.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_bool.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_cstring.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_cstring_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_int16.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_int32.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_int64.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_int8.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_uint16.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_uint32.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_get_uint8.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_internalize.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_internalize_from_file.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_internalize_from_pref.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_iterator.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_make_immutable.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_mutable.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_recv_ioctl.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_recv_syscall.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_remove.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_send_ioctl.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_send_syscall.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_bool.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_cstring.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_cstring_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_int16.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_int32.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_int64.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_int8.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_uint16.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_uint32.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_set_uint8.0 comp-c-catman .cat +./usr/share/man/cat3/prop_array_util.0 comp-c-catman .cat +./usr/share/man/cat3/prop_bool.0 comp-c-catman .cat +./usr/share/man/cat3/prop_bool_copy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_bool_create.0 comp-c-catman .cat +./usr/share/man/cat3/prop_bool_true.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data_copy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data_create_data.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data_create_data_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data_data.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data_data_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data_equals.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data_equals_data.0 comp-c-catman .cat +./usr/share/man/cat3/prop_data_size.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_all_keys.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_capacity.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_copy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_copy_mutable.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_count.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_create.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_create_with_capacity.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_ensure_capacity.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_equals.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_externalize.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_externalize_to_file.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_externalize_to_pref.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_bool.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_cstring.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_cstring_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_int16.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_int32.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_int64.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_int8.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_keysym.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_uint16.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_uint32.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_get_uint8.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_ingest.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_internalize.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_internalize_from_file.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_internalize_from_pref.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_iterator.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_keysym_cstring_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_keysym_equals.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_make_immutable.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_mutable.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_recv_ioctl.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_recv_syscall.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_remove.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_remove_keysym.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_send_ioctl.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_send_syscall.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_sendrecv_ioctl.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_bool.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_cstring.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_cstring_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_int16.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_int32.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_int64.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_int8.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_keysym.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_uint16.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_uint32.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_set_uint8.0 comp-c-catman .cat +./usr/share/man/cat3/prop_dictionary_util.0 comp-c-catman .cat +./usr/share/man/cat3/prop_ingest.0 comp-c-catman .cat +./usr/share/man/cat3/prop_ingest_context_alloc.0 comp-c-catman .cat +./usr/share/man/cat3/prop_ingest_context_error.0 comp-c-catman .cat +./usr/share/man/cat3/prop_ingest_context_free.0 comp-c-catman .cat +./usr/share/man/cat3/prop_ingest_context_key.0 comp-c-catman .cat +./usr/share/man/cat3/prop_ingest_context_private.0 comp-c-catman .cat +./usr/share/man/cat3/prop_ingest_context_type.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_copy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_create_integer.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_create_unsigned_integer.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_equals.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_equals_integer.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_equals_unsigned_integer.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_integer_value.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_size.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_unsigned.0 comp-c-catman .cat +./usr/share/man/cat3/prop_number_unsigned_integer_value.0 comp-c-catman .cat +./usr/share/man/cat3/prop_object.0 comp-c-catman .cat +./usr/share/man/cat3/prop_object_equals.0 comp-c-catman .cat +./usr/share/man/cat3/prop_object_iterator_next.0 comp-c-catman .cat +./usr/share/man/cat3/prop_object_iterator_release.0 comp-c-catman .cat +./usr/share/man/cat3/prop_object_iterator_reset.0 comp-c-catman .cat +./usr/share/man/cat3/prop_object_release.0 comp-c-catman .cat +./usr/share/man/cat3/prop_object_retain.0 comp-c-catman .cat +./usr/share/man/cat3/prop_object_type.0 comp-c-catman .cat +./usr/share/man/cat3/prop_send_ioctl.0 comp-c-catman .cat +./usr/share/man/cat3/prop_send_syscall.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_append.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_append_cstring.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_copy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_copy_mutable.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_create.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_create_cstring.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_create_cstring_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_cstring.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_cstring_nocopy.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_equals.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_equals_cstring.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_mutable.0 comp-c-catman .cat +./usr/share/man/cat3/prop_string_size.0 comp-c-catman .cat +./usr/share/man/cat3/proplib.0 comp-c-catman .cat +./usr/share/man/cat3/pset.0 comp-c-catman .cat +./usr/share/man/cat3/pset_assign.0 comp-c-catman .cat +./usr/share/man/cat3/pset_bind.0 comp-c-catman .cat +./usr/share/man/cat3/pset_create.0 comp-c-catman .cat +./usr/share/man/cat3/pset_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/psiginfo.0 comp-c-catman .cat +./usr/share/man/cat3/psignal.0 comp-c-catman .cat +./usr/share/man/cat3/pthread.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_atfork.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_get_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getdetachstate.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getguardsize.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getinheritsched.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getname_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getschedparam.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getschedpolicy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getscope.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getstack.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getstackaddr.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_getstacksize.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setcreatesuspend_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setdetachstate.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setguardsize.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setinheritsched.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setname_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setschedparam.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setschedpolicy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setscope.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setstack.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setstackaddr.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_attr_setstacksize.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_barierattr_destroy.0 comp-obsolete obsolete +./usr/share/man/cat3/pthread_barierattr_init.0 comp-obsolete obsolete +./usr/share/man/cat3/pthread_barrier.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_barrier_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_barrier_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_barrier_wait.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_barrierattr.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_barrierattr_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_barrierattr_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cancel.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cleanup_pop.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cleanup_push.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cond.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cond_broadcast.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cond_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cond_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cond_signal.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cond_timedwait.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_cond_wait.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_condattr.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_condattr_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_condattr_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_create.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_curcpu_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_detach.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_equal.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_exit.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_getaffinity_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_getattr_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_getname_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_getschedparam.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_getspecific.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_join.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_key_create.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_key_delete.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_kill.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutex.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutex_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutex_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutex_lock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutex_trylock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutex_unlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutexattr.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutexattr_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutexattr_gettype.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutexattr_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_mutexattr_settype.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_once.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_resume_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_rdlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_timedrdlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_timedwrlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_tryrdlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_trywrlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_unlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlock_wrlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlockattr.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlockattr_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_rwlockattr_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_schedparam.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_self.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_setaffinity_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_setcancelstate.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_setcanceltype.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_setname_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_setschedparam.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_setspecific.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_sigmask.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_spin.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_spin_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_spin_init.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_spin_lock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_spin_trylock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_spin_unlock.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_suspend_np.0 comp-c-catman .cat +./usr/share/man/cat3/pthread_testcancel.0 comp-c-catman .cat +./usr/share/man/cat3/ptsname.0 comp-c-catman .cat +./usr/share/man/cat3/puffs.0 comp-puffs-catman .cat +./usr/share/man/cat3/puffs_cc.0 comp-puffs-catman .cat +./usr/share/man/cat3/puffs_cred.0 comp-puffs-catman .cat +./usr/share/man/cat3/puffs_flush.0 comp-puffs-catman .cat +./usr/share/man/cat3/puffs_framebuf.0 comp-puffs-catman .cat +./usr/share/man/cat3/puffs_node.0 comp-puffs-catman .cat +./usr/share/man/cat3/puffs_ops.0 comp-puffs-catman .cat +./usr/share/man/cat3/puffs_path.0 comp-puffs-catman .cat +./usr/share/man/cat3/puffs_req.0 comp-obsolete obsolete +./usr/share/man/cat3/puffs_suspend.0 comp-obsolete obsolete +./usr/share/man/cat3/putc.0 comp-c-catman .cat +./usr/share/man/cat3/putc_unlocked.0 comp-c-catman .cat +./usr/share/man/cat3/putchar.0 comp-c-catman .cat +./usr/share/man/cat3/putchar_unlocked.0 comp-c-catman .cat +./usr/share/man/cat3/putenv.0 comp-c-catman .cat +./usr/share/man/cat3/putp.0 comp-c-catman .cat +./usr/share/man/cat3/puts.0 comp-c-catman .cat +./usr/share/man/cat3/pututxline.0 comp-c-catman .cat +./usr/share/man/cat3/putw.0 comp-c-catman .cat +./usr/share/man/cat3/putwc.0 comp-c-catman .cat +./usr/share/man/cat3/putwchar.0 comp-c-catman .cat +./usr/share/man/cat3/putwin.0 comp-c-catman .cat +./usr/share/man/cat3/pw_abort.0 comp-c-catman .cat +./usr/share/man/cat3/pw_copy.0 comp-c-catman .cat +./usr/share/man/cat3/pw_copyx.0 comp-c-catman .cat +./usr/share/man/cat3/pw_edit.0 comp-c-catman .cat +./usr/share/man/cat3/pw_error.0 comp-c-catman .cat +./usr/share/man/cat3/pw_getconf.0 comp-c-catman .cat +./usr/share/man/cat3/pw_getprefix.0 comp-c-catman .cat +./usr/share/man/cat3/pw_getpwconf.0 comp-c-catman .cat +./usr/share/man/cat3/pw_init.0 comp-c-catman .cat +./usr/share/man/cat3/pw_lock.0 comp-c-catman .cat +./usr/share/man/cat3/pw_mkdb.0 comp-c-catman .cat +./usr/share/man/cat3/pw_policy.0 comp-obsolete obsolete +./usr/share/man/cat3/pw_prompt.0 comp-c-catman .cat +./usr/share/man/cat3/pw_scan.0 comp-c-catman .cat +./usr/share/man/cat3/pw_setprefix.0 comp-c-catman .cat +./usr/share/man/cat3/pwcache.0 comp-c-catman .cat +./usr/share/man/cat3/pwcache_groupdb.0 comp-c-catman .cat +./usr/share/man/cat3/pwcache_userdb.0 comp-c-catman .cat +./usr/share/man/cat3/qabs.0 comp-c-catman .cat +./usr/share/man/cat3/qdiv.0 comp-c-catman .cat +./usr/share/man/cat3/qiflush.0 comp-c-catman .cat +./usr/share/man/cat3/qsort.0 comp-c-catman .cat +./usr/share/man/cat3/queue.0 comp-c-catman .cat +./usr/share/man/cat3/quota_close.0 comp-c-catman .cat +./usr/share/man/cat3/quota_delete.0 comp-c-catman .cat +./usr/share/man/cat3/quota_get.0 comp-c-catman .cat +./usr/share/man/cat3/quota_getimplname.0 comp-c-catman .cat +./usr/share/man/cat3/quota_getmountdevice.0 comp-c-catman .cat +./usr/share/man/cat3/quota_getmountpoint.0 comp-c-catman .cat +./usr/share/man/cat3/quota_getnumidtypes.0 comp-c-catman .cat +./usr/share/man/cat3/quota_getnumobjtypes.0 comp-c-catman .cat +./usr/share/man/cat3/quota_getrestrictions.0 comp-c-catman .cat +./usr/share/man/cat3/quota_idtype_getname.0 comp-c-catman .cat +./usr/share/man/cat3/quota_objtype_getname.0 comp-c-catman .cat +./usr/share/man/cat3/quota_objtype_isbytes.0 comp-c-catman .cat +./usr/share/man/cat3/quota_open.0 comp-c-catman .cat +./usr/share/man/cat3/quota_opencursor.0 comp-c-catman .cat +./usr/share/man/cat3/quota_put.0 comp-c-catman .cat +./usr/share/man/cat3/quota_quotaoff.0 comp-c-catman .cat +./usr/share/man/cat3/quota_quotaon.0 comp-c-catman .cat +./usr/share/man/cat3/quotacursor_atend.0 comp-c-catman .cat +./usr/share/man/cat3/quotacursor_close.0 comp-c-catman .cat +./usr/share/man/cat3/quotacursor_get.0 comp-c-catman .cat +./usr/share/man/cat3/quotacursor_getn.0 comp-c-catman .cat +./usr/share/man/cat3/quotacursor_rewind.0 comp-c-catman .cat +./usr/share/man/cat3/quotacursor_skipidtype.0 comp-c-catman .cat +./usr/share/man/cat3/quotaval_clear.0 comp-c-catman .cat +./usr/share/man/cat3/radixsort.0 comp-c-catman .cat +./usr/share/man/cat3/raise.0 comp-c-catman .cat +./usr/share/man/cat3/raise_default_signal.0 comp-c-catman .cat +./usr/share/man/cat3/rand.0 comp-c-catman .cat +./usr/share/man/cat3/rand48.0 comp-c-catman .cat +./usr/share/man/cat3/rand_r.0 comp-c-catman .cat +./usr/share/man/cat3/random.0 comp-c-catman .cat +./usr/share/man/cat3/randomid.0 comp-c-catman .cat +./usr/share/man/cat3/randomid_delete.0 comp-c-catman .cat +./usr/share/man/cat3/randomid_new.0 comp-c-catman .cat +./usr/share/man/cat3/raw.0 comp-c-catman .cat +./usr/share/man/cat3/rb.0 comp-obsolete obsolete +./usr/share/man/cat3/rb_tree_find_node.0 comp-c-catman .cat +./usr/share/man/cat3/rb_tree_find_node_geq.0 comp-c-catman .cat +./usr/share/man/cat3/rb_tree_find_node_leq.0 comp-c-catman .cat +./usr/share/man/cat3/rb_tree_init.0 comp-c-catman .cat +./usr/share/man/cat3/rb_tree_insert_node.0 comp-c-catman .cat +./usr/share/man/cat3/rb_tree_iterate.0 comp-c-catman .cat +./usr/share/man/cat3/rbtree.0 comp-c-catman .cat +./usr/share/man/cat3/rc4.0 comp-obsolete obsolete +./usr/share/man/cat3/rcmd.0 comp-c-catman .cat +./usr/share/man/cat3/rcmd_af.0 comp-c-catman .cat +./usr/share/man/cat3/re_comp.0 comp-c-catman .cat +./usr/share/man/cat3/re_exec.0 comp-c-catman .cat +./usr/share/man/cat3/readdir.0 comp-c-catman .cat +./usr/share/man/cat3/readdir_r.0 comp-c-catman .cat +./usr/share/man/cat3/realloc.0 comp-c-catman .cat +./usr/share/man/cat3/realpath.0 comp-c-catman .cat +./usr/share/man/cat3/recno.0 comp-c-catman .cat +./usr/share/man/cat3/refresh.0 comp-c-catman .cat +./usr/share/man/cat3/refuse.0 comp-refuse-catman .cat +./usr/share/man/cat3/regcomp.0 comp-c-catman .cat +./usr/share/man/cat3/regerror.0 comp-c-catman .cat +./usr/share/man/cat3/regex.0 comp-c-catman .cat +./usr/share/man/cat3/regexec.0 comp-c-catman .cat +./usr/share/man/cat3/regexp.0 comp-c-catman .cat +./usr/share/man/cat3/regfree.0 comp-c-catman .cat +./usr/share/man/cat3/registerrpc.0 comp-c-catman .cat +./usr/share/man/cat3/regsterrpc.0 comp-obsolete obsolete +./usr/share/man/cat3/remainder.0 comp-c-catman .cat +./usr/share/man/cat3/remainderf.0 comp-c-catman .cat +./usr/share/man/cat3/remove.0 comp-c-catman .cat +./usr/share/man/cat3/remque.0 comp-c-catman .cat +./usr/share/man/cat3/remquo.0 comp-c-catman .cat +./usr/share/man/cat3/remquof.0 comp-c-catman .cat +./usr/share/man/cat3/request_init.0 comp-c-catman .cat +./usr/share/man/cat3/request_set.0 comp-c-catman .cat +./usr/share/man/cat3/res_close.0 comp-c-catman .cat +./usr/share/man/cat3/res_findzonecut.0 comp-c-catman .cat +./usr/share/man/cat3/res_getservers.0 comp-c-catman .cat +./usr/share/man/cat3/res_hostalias.0 comp-c-catman .cat +./usr/share/man/cat3/res_init.0 comp-c-catman .cat +./usr/share/man/cat3/res_isourserver.0 comp-c-catman .cat +./usr/share/man/cat3/res_mkquery.0 comp-c-catman .cat +./usr/share/man/cat3/res_nclose.0 comp-c-catman .cat +./usr/share/man/cat3/res_ndestroy.0 comp-c-catman .cat +./usr/share/man/cat3/res_ninit.0 comp-c-catman .cat +./usr/share/man/cat3/res_nmkquery.0 comp-c-catman .cat +./usr/share/man/cat3/res_nmkupdate.0 comp-c-catman .cat +./usr/share/man/cat3/res_nquery.0 comp-c-catman .cat +./usr/share/man/cat3/res_nquerydomain.0 comp-c-catman .cat +./usr/share/man/cat3/res_nsearch.0 comp-c-catman .cat +./usr/share/man/cat3/res_nsend.0 comp-c-catman .cat +./usr/share/man/cat3/res_nsendsigned.0 comp-c-catman .cat +./usr/share/man/cat3/res_nupdate.0 comp-c-catman .cat +./usr/share/man/cat3/res_ourserver_p.0 comp-c-catman .cat +./usr/share/man/cat3/res_pquery.0 comp-c-catman .cat +./usr/share/man/cat3/res_query.0 comp-c-catman .cat +./usr/share/man/cat3/res_querydomain.0 comp-c-catman .cat +./usr/share/man/cat3/res_search.0 comp-c-catman .cat +./usr/share/man/cat3/res_send.0 comp-c-catman .cat +./usr/share/man/cat3/res_setservers.0 comp-c-catman .cat +./usr/share/man/cat3/res_update.0 comp-c-catman .cat +./usr/share/man/cat3/reset_com_err_hook.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/reset_prog_mode.0 comp-c-catman .cat +./usr/share/man/cat3/reset_shell_mode.0 comp-c-catman .cat +./usr/share/man/cat3/resetty.0 comp-c-catman .cat +./usr/share/man/cat3/resizeterm.0 comp-c-catman .cat +./usr/share/man/cat3/resolver.0 comp-c-catman .cat +./usr/share/man/cat3/rewind.0 comp-c-catman .cat +./usr/share/man/cat3/rewinddir.0 comp-c-catman .cat +./usr/share/man/cat3/rexec.0 comp-c-catman .cat +./usr/share/man/cat3/rindex.0 comp-c-catman .cat +./usr/share/man/cat3/rint.0 comp-c-catman .cat +./usr/share/man/cat3/rintf.0 comp-c-catman .cat +./usr/share/man/cat3/ripemd.0 comp-obsolete obsolete +./usr/share/man/cat3/rmd160.0 comp-c-catman .cat +./usr/share/man/cat3/rmtops.0 comp-c-catman .cat +./usr/share/man/cat3/round.0 comp-c-catman .cat +./usr/share/man/cat3/roundf.0 comp-c-catman .cat +./usr/share/man/cat3/rpc.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_broadcast.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_broadcast_exp.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_call.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_clnt_auth.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_clnt_calls.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_clnt_create.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_createerr.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_reg.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_soc.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_svc_calls.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_svc_create.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_svc_err.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_svc_reg.0 comp-c-catman .cat +./usr/share/man/cat3/rpc_xdr.0 comp-c-catman .cat +./usr/share/man/cat3/rpcb_getaddr.0 comp-c-catman .cat +./usr/share/man/cat3/rpcb_getmaps.0 comp-c-catman .cat +./usr/share/man/cat3/rpcb_gettime.0 comp-c-catman .cat +./usr/share/man/cat3/rpcb_rmtcall.0 comp-c-catman .cat +./usr/share/man/cat3/rpcb_set.0 comp-c-catman .cat +./usr/share/man/cat3/rpcb_unset.0 comp-c-catman .cat +./usr/share/man/cat3/rpcbind.0 comp-c-catman .cat +./usr/share/man/cat3/rresvport.0 comp-c-catman .cat +./usr/share/man/cat3/rresvport_af.0 comp-c-catman .cat +./usr/share/man/cat3/rsa.0 comp-obsolete obsolete +./usr/share/man/cat3/rump.0 comp-c-catman .cat +./usr/share/man/cat3/rump_etfs.0 comp-c-catman .cat +./usr/share/man/cat3/rump_lwproc.0 comp-c-catman .cat +./usr/share/man/cat3/rumpclient.0 comp-c-catman .cat +./usr/share/man/cat3/rumphijack.0 comp-c-catman .cat +./usr/share/man/cat3/rumpuser.0 comp-c-catman .cat +./usr/share/man/cat3/ruserok.0 comp-c-catman .cat +./usr/share/man/cat3/saslc.d.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_alloc.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_end.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_init.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_cont.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_decode.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_encode.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_end.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_getmech.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_getprop.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_init.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_setprop.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_sess_strerror.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/saslc_strerror.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/savetty.0 comp-c-catman .cat +./usr/share/man/cat3/scalb.0 comp-c-catman .cat +./usr/share/man/cat3/scalbf.0 comp-c-catman .cat +./usr/share/man/cat3/scalbn.0 comp-c-catman .cat +./usr/share/man/cat3/scalbnf.0 comp-c-catman .cat +./usr/share/man/cat3/scalbnl.0 comp-c-catman .cat +./usr/share/man/cat3/scale_form.0 comp-c-catman .cat +./usr/share/man/cat3/scale_menu.0 comp-c-catman .cat +./usr/share/man/cat3/scandir.0 comp-c-catman .cat +./usr/share/man/cat3/scanf.0 comp-c-catman .cat +./usr/share/man/cat3/scanw.0 comp-c-catman .cat +./usr/share/man/cat3/sched.0 comp-c-catman .cat +./usr/share/man/cat3/sched_get_priority_max.0 comp-c-catman .cat +./usr/share/man/cat3/sched_get_priority_min.0 comp-c-catman .cat +./usr/share/man/cat3/sched_getparam.0 comp-c-catman .cat +./usr/share/man/cat3/sched_getscheduler.0 comp-c-catman .cat +./usr/share/man/cat3/sched_rr_get_interval.0 comp-c-catman .cat +./usr/share/man/cat3/sched_setparam.0 comp-c-catman .cat +./usr/share/man/cat3/sched_setscheduler.0 comp-c-catman .cat +./usr/share/man/cat3/sched_yield.0 comp-c-catman .cat +./usr/share/man/cat3/scrl.0 comp-c-catman .cat +./usr/share/man/cat3/scroll.0 comp-c-catman .cat +./usr/share/man/cat3/scrollok.0 comp-c-catman .cat +./usr/share/man/cat3/sdp.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_attr2desc.0 comp-obsolete obsolete +./usr/share/man/cat3/sdp_change_service.0 comp-obsolete obsolete +./usr/share/man/cat3/sdp_close.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_data.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_data_print.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_data_size.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_data_type.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_data_valid.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_error.0 comp-obsolete obsolete +./usr/share/man/cat3/sdp_get_alt.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_attr.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_bool.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_data.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_int.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_seq.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_str.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_uint.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_url.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_get_uuid.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_match_uuid16.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_open.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_open_local.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_alt.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_attr.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_bool.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_data.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_int.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_int16.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_int32.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_int64.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_int8.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_seq.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_str.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uint.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uint16.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uint32.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uint64.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uint8.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_url.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uuid.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uuid128.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uuid16.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_put_uuid32.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_record_insert.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_record_remove.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_record_update.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_register_service.0 comp-obsolete obsolete +./usr/share/man/cat3/sdp_search.0 comp-obsolete obsolete +./usr/share/man/cat3/sdp_service_attribute.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_service_search.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_service_search_attribute.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_set_alt.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_set_bool.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_set_int.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_set_seq.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_set_uint.0 comp-c-catman .cat +./usr/share/man/cat3/sdp_unregister_service.0 comp-obsolete obsolete +./usr/share/man/cat3/sdp_uuid2desc.0 comp-obsolete obsolete +./usr/share/man/cat3/secure_path.0 comp-c-catman .cat +./usr/share/man/cat3/securepath.0 comp-obsolete obsolete +./usr/share/man/cat3/seed48.0 comp-c-catman .cat +./usr/share/man/cat3/seekdir.0 comp-c-catman .cat +./usr/share/man/cat3/sem_close.0 comp-c-catman .cat +./usr/share/man/cat3/sem_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/sem_getvalue.0 comp-c-catman .cat +./usr/share/man/cat3/sem_init.0 comp-c-catman .cat +./usr/share/man/cat3/sem_open.0 comp-c-catman .cat +./usr/share/man/cat3/sem_post.0 comp-c-catman .cat +./usr/share/man/cat3/sem_timedwait.0 comp-c-catman .cat +./usr/share/man/cat3/sem_trywait.0 comp-c-catman .cat +./usr/share/man/cat3/sem_unlink.0 comp-c-catman .cat +./usr/share/man/cat3/sem_wait.0 comp-c-catman .cat +./usr/share/man/cat3/set_com_err_hook.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat3/set_current_field.0 comp-c-catman .cat +./usr/share/man/cat3/set_current_item.0 comp-c-catman .cat +./usr/share/man/cat3/set_curterm.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_back.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_buffer.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_fore.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_init.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_just.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_opts.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_pad.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_printf.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_status.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_term.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_type.0 comp-c-catman .cat +./usr/share/man/cat3/set_field_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/set_fieldtype_arg.0 comp-c-catman .cat +./usr/share/man/cat3/set_fieldtype_choice.0 comp-c-catman .cat +./usr/share/man/cat3/set_form_fields.0 comp-c-catman .cat +./usr/share/man/cat3/set_form_init.0 comp-c-catman .cat +./usr/share/man/cat3/set_form_opts.0 comp-c-catman .cat +./usr/share/man/cat3/set_form_page.0 comp-c-catman .cat +./usr/share/man/cat3/set_form_sub.0 comp-c-catman .cat +./usr/share/man/cat3/set_form_term.0 comp-c-catman .cat +./usr/share/man/cat3/set_form_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/set_form_win.0 comp-c-catman .cat +./usr/share/man/cat3/set_item_init.0 comp-c-catman .cat +./usr/share/man/cat3/set_item_term.0 comp-c-catman .cat +./usr/share/man/cat3/set_item_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/set_item_value.0 comp-c-catman .cat +./usr/share/man/cat3/set_max_field.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_back.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_fore.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_format.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_grey.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_init.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_items.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_mark.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_opts.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_pad.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_sub.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_term.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_unmark.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_userptr.0 comp-c-catman .cat +./usr/share/man/cat3/set_menu_win.0 comp-c-catman .cat +./usr/share/man/cat3/set_new_page.0 comp-c-catman .cat +./usr/share/man/cat3/set_term.0 comp-c-catman .cat +./usr/share/man/cat3/set_top_row.0 comp-c-catman .cat +./usr/share/man/cat3/setbuf.0 comp-c-catman .cat +./usr/share/man/cat3/setbuffer.0 comp-c-catman .cat +./usr/share/man/cat3/setclasscontext.0 comp-c-catman .cat +./usr/share/man/cat3/setdisktab.0 comp-c-catman .cat +./usr/share/man/cat3/setdomainname.0 comp-c-catman .cat +./usr/share/man/cat3/setenv.0 comp-c-catman .cat +./usr/share/man/cat3/setfsent.0 comp-c-catman .cat +./usr/share/man/cat3/setgrent.0 comp-c-catman .cat +./usr/share/man/cat3/setgrfile.0 comp-obsolete obsolete +./usr/share/man/cat3/setgroupent.0 comp-c-catman .cat +./usr/share/man/cat3/sethostent.0 comp-c-catman .cat +./usr/share/man/cat3/sethostid.0 comp-c-catman .cat +./usr/share/man/cat3/sethostname.0 comp-c-catman .cat +./usr/share/man/cat3/setjmp.0 comp-c-catman .cat +./usr/share/man/cat3/setkey.0 comp-c-catman .cat +./usr/share/man/cat3/setlinebuf.0 comp-c-catman .cat +./usr/share/man/cat3/setlocale.0 comp-c-catman .cat +./usr/share/man/cat3/setlogmask.0 comp-c-catman .cat +./usr/share/man/cat3/setlogmask_r.0 comp-c-catman .cat +./usr/share/man/cat3/setmode.0 comp-c-catman .cat +./usr/share/man/cat3/setnetconfig.0 comp-c-catman .cat +./usr/share/man/cat3/setnetent.0 comp-c-catman .cat +./usr/share/man/cat3/setnetgrent.0 comp-c-catman .cat +./usr/share/man/cat3/setnetpath.0 comp-c-catman .cat +./usr/share/man/cat3/setpassent.0 comp-c-catman .cat +./usr/share/man/cat3/setproctitle.0 comp-c-catman .cat +./usr/share/man/cat3/setprogname.0 comp-c-catman .cat +./usr/share/man/cat3/setprotoent.0 comp-c-catman .cat +./usr/share/man/cat3/setpwent.0 comp-c-catman .cat +./usr/share/man/cat3/setpwfile.0 comp-obsolete obsolete +./usr/share/man/cat3/setregid.0 comp-obsolete obsolete +./usr/share/man/cat3/setreuid.0 comp-obsolete obsolete +./usr/share/man/cat3/setrgid.0 comp-c-catman .cat +./usr/share/man/cat3/setrpcent.0 comp-c-catman .cat +./usr/share/man/cat3/setruid.0 comp-c-catman .cat +./usr/share/man/cat3/setscrreg.0 comp-c-catman .cat +./usr/share/man/cat3/setservent.0 comp-c-catman .cat +./usr/share/man/cat3/setstate.0 comp-c-catman .cat +./usr/share/man/cat3/setterm.0 comp-c-catman .cat +./usr/share/man/cat3/setttyent.0 comp-c-catman .cat +./usr/share/man/cat3/setttyentpath.0 comp-c-catman .cat +./usr/share/man/cat3/setupterm.0 comp-c-catman .cat +./usr/share/man/cat3/setusercontext.0 comp-c-catman .cat +./usr/share/man/cat3/setusershell.0 comp-c-catman .cat +./usr/share/man/cat3/setutxent.0 comp-c-catman .cat +./usr/share/man/cat3/setvbuf.0 comp-c-catman .cat +./usr/share/man/cat3/sha.0 comp-obsolete obsolete +./usr/share/man/cat3/sha1.0 comp-c-catman .cat +./usr/share/man/cat3/sha2.0 comp-c-catman .cat +./usr/share/man/cat3/shquote.0 comp-c-catman .cat +./usr/share/man/cat3/shquotev.0 comp-c-catman .cat +./usr/share/man/cat3/sigaddset.0 comp-c-catman .cat +./usr/share/man/cat3/sigblock.0 comp-c-catman .cat +./usr/share/man/cat3/sigdelset.0 comp-c-catman .cat +./usr/share/man/cat3/sigemptyset.0 comp-c-catman .cat +./usr/share/man/cat3/sigevent.0 comp-c-catman .cat +./usr/share/man/cat3/sigfillset.0 comp-c-catman .cat +./usr/share/man/cat3/sighold.0 comp-c-catman .cat +./usr/share/man/cat3/sigignore.0 comp-c-catman .cat +./usr/share/man/cat3/siginterrupt.0 comp-c-catman .cat +./usr/share/man/cat3/sigismember.0 comp-c-catman .cat +./usr/share/man/cat3/siglongjmp.0 comp-c-catman .cat +./usr/share/man/cat3/signal.0 comp-c-catman .cat +./usr/share/man/cat3/signal_add.0 comp-c-catman .cat +./usr/share/man/cat3/signal_del.0 comp-c-catman .cat +./usr/share/man/cat3/signal_initialized.0 comp-c-catman .cat +./usr/share/man/cat3/signal_pending.0 comp-c-catman .cat +./usr/share/man/cat3/signal_set.0 comp-c-catman .cat +./usr/share/man/cat3/signbit.0 comp-c-catman .cat +./usr/share/man/cat3/significand.0 comp-c-catman .cat +./usr/share/man/cat3/significandf.0 comp-c-catman .cat +./usr/share/man/cat3/sigpause.0 comp-c-catman .cat +./usr/share/man/cat3/sigrelse.0 comp-c-catman .cat +./usr/share/man/cat3/sigset.0 comp-c-catman .cat +./usr/share/man/cat3/sigsetjmp.0 comp-c-catman .cat +./usr/share/man/cat3/sigsetmask.0 comp-c-catman .cat +./usr/share/man/cat3/sigsetops.0 comp-c-catman .cat +./usr/share/man/cat3/sigvec.0 comp-c-catman .cat +./usr/share/man/cat3/simpleq_empty.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_first.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_head.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_head_initializer.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_init.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_insert_after.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_insert_head.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_insert_tail.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_next.0 comp-obsolete obsolete +./usr/share/man/cat3/simpleq_remove_head.0 comp-obsolete obsolete +./usr/share/man/cat3/sin.0 comp-c-catman .cat +./usr/share/man/cat3/sinf.0 comp-c-catman .cat +./usr/share/man/cat3/sinh.0 comp-c-catman .cat +./usr/share/man/cat3/sinhf.0 comp-c-catman .cat +./usr/share/man/cat3/skey.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skey_authenticate.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skey_get_algorithm.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skey_haskey.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skey_keyinfo.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skey_passcheck.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skey_set_algorithm.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skeychallenge.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skeygetnext.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skeylookup.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skeyverify.0 comp-c-catman skey,.cat +./usr/share/man/cat3/skeyzero.0 comp-c-catman skey,.cat +./usr/share/man/cat3/sl_add.0 comp-c-catman .cat +./usr/share/man/cat3/sl_find.0 comp-c-catman .cat +./usr/share/man/cat3/sl_free.0 comp-c-catman .cat +./usr/share/man/cat3/sl_init.0 comp-c-catman .cat +./usr/share/man/cat3/sleep.0 comp-c-catman .cat +./usr/share/man/cat3/snprintb.0 comp-c-catman .cat +./usr/share/man/cat3/snprintb_m.0 comp-c-catman .cat +./usr/share/man/cat3/snprintf.0 comp-c-catman .cat +./usr/share/man/cat3/snvis.0 comp-c-catman .cat +./usr/share/man/cat3/sockaddr_snprintf.0 comp-c-catman .cat +./usr/share/man/cat3/sockatmark.0 comp-c-catman .cat +./usr/share/man/cat3/sprintf.0 comp-c-catman .cat +./usr/share/man/cat3/sqrt.0 comp-c-catman .cat +./usr/share/man/cat3/sqrtf.0 comp-c-catman .cat +./usr/share/man/cat3/sradixsort.0 comp-c-catman .cat +./usr/share/man/cat3/srand.0 comp-c-catman .cat +./usr/share/man/cat3/srand48.0 comp-c-catman .cat +./usr/share/man/cat3/srandom.0 comp-c-catman .cat +./usr/share/man/cat3/sscanf.0 comp-c-catman .cat +./usr/share/man/cat3/ssl.0 comp-c-catman crypto,.cat +./usr/share/man/cat3/ssp.0 comp-c-catman .cat +./usr/share/man/cat3/standend.0 comp-c-catman .cat +./usr/share/man/cat3/standout.0 comp-c-catman .cat +./usr/share/man/cat3/start_color.0 comp-c-catman .cat +./usr/share/man/cat3/stat_flags.0 comp-c-catman .cat +./usr/share/man/cat3/stdarg.0 comp-c-catman .cat +./usr/share/man/cat3/stdbool.0 comp-c-catman .cat +./usr/share/man/cat3/stddef.0 comp-c-catman .cat +./usr/share/man/cat3/stdint.0 comp-c-catman .cat +./usr/share/man/cat3/stdio.0 comp-c-catman .cat +./usr/share/man/cat3/stdlib.0 comp-c-catman .cat +./usr/share/man/cat3/stpcpy.0 comp-c-catman .cat +./usr/share/man/cat3/stpncpy.0 comp-c-catman .cat +./usr/share/man/cat3/strcasecmp.0 comp-c-catman .cat +./usr/share/man/cat3/strcasestr.0 comp-c-catman .cat +./usr/share/man/cat3/strcat.0 comp-c-catman .cat +./usr/share/man/cat3/strchr.0 comp-c-catman .cat +./usr/share/man/cat3/strcmp.0 comp-c-catman .cat +./usr/share/man/cat3/strcoll.0 comp-c-catman .cat +./usr/share/man/cat3/strcpy.0 comp-c-catman .cat +./usr/share/man/cat3/strcspn.0 comp-c-catman .cat +./usr/share/man/cat3/strdup.0 comp-c-catman .cat +./usr/share/man/cat3/strerror.0 comp-c-catman .cat +./usr/share/man/cat3/strerror_r.0 comp-c-catman .cat +./usr/share/man/cat3/stresep.0 comp-c-catman .cat +./usr/share/man/cat3/strfmon.0 comp-c-catman .cat +./usr/share/man/cat3/strftime.0 comp-c-catman .cat +./usr/share/man/cat3/strftime_z.0 comp-c-catman .cat +./usr/share/man/cat3/string.0 comp-c-catman .cat +./usr/share/man/cat3/string_to_flags.0 comp-c-catman .cat +./usr/share/man/cat3/stringlist.0 comp-c-catman .cat +./usr/share/man/cat3/strings.0 comp-c-catman .cat +./usr/share/man/cat3/strlcat.0 comp-c-catman .cat +./usr/share/man/cat3/strlcpy.0 comp-c-catman .cat +./usr/share/man/cat3/strlen.0 comp-c-catman .cat +./usr/share/man/cat3/strmode.0 comp-c-catman .cat +./usr/share/man/cat3/strncasecmp.0 comp-c-catman .cat +./usr/share/man/cat3/strncat.0 comp-c-catman .cat +./usr/share/man/cat3/strncmp.0 comp-c-catman .cat +./usr/share/man/cat3/strncpy.0 comp-c-catman .cat +./usr/share/man/cat3/strndup.0 comp-c-catman .cat +./usr/share/man/cat3/strnlen.0 comp-c-catman .cat +./usr/share/man/cat3/strnunvis.0 comp-c-catman .cat +./usr/share/man/cat3/strnunvisx.0 comp-c-catman .cat +./usr/share/man/cat3/strnvis.0 comp-c-catman .cat +./usr/share/man/cat3/strnvisx.0 comp-c-catman .cat +./usr/share/man/cat3/strpbrk.0 comp-c-catman .cat +./usr/share/man/cat3/strpct.0 comp-c-catman .cat +./usr/share/man/cat3/strptime.0 comp-c-catman .cat +./usr/share/man/cat3/strrchr.0 comp-c-catman .cat +./usr/share/man/cat3/strsep.0 comp-c-catman .cat +./usr/share/man/cat3/strsignal.0 comp-c-catman .cat +./usr/share/man/cat3/strsnvis.0 comp-c-catman .cat +./usr/share/man/cat3/strsnvisx.0 comp-c-catman .cat +./usr/share/man/cat3/strspct.0 comp-c-catman .cat +./usr/share/man/cat3/strspn.0 comp-c-catman .cat +./usr/share/man/cat3/strstr.0 comp-c-catman .cat +./usr/share/man/cat3/strsuftoll.0 comp-c-catman .cat +./usr/share/man/cat3/strsuftollx.0 comp-c-catman .cat +./usr/share/man/cat3/strsvis.0 comp-c-catman .cat +./usr/share/man/cat3/strsvisx.0 comp-c-catman .cat +./usr/share/man/cat3/strtod.0 comp-c-catman .cat +./usr/share/man/cat3/strtof.0 comp-c-catman .cat +./usr/share/man/cat3/strtoimax.0 comp-c-catman .cat +./usr/share/man/cat3/strtok.0 comp-c-catman .cat +./usr/share/man/cat3/strtok_r.0 comp-c-catman .cat +./usr/share/man/cat3/strtol.0 comp-c-catman .cat +./usr/share/man/cat3/strtold.0 comp-c-catman .cat +./usr/share/man/cat3/strtoll.0 comp-c-catman .cat +./usr/share/man/cat3/strtoq.0 comp-c-catman .cat +./usr/share/man/cat3/strtoul.0 comp-c-catman .cat +./usr/share/man/cat3/strtoull.0 comp-c-catman .cat +./usr/share/man/cat3/strtoumax.0 comp-c-catman .cat +./usr/share/man/cat3/strtouq.0 comp-c-catman .cat +./usr/share/man/cat3/strunvis.0 comp-c-catman .cat +./usr/share/man/cat3/strunvisx.0 comp-c-catman .cat +./usr/share/man/cat3/strvis.0 comp-c-catman .cat +./usr/share/man/cat3/strvisx.0 comp-c-catman .cat +./usr/share/man/cat3/strxfrm.0 comp-c-catman .cat +./usr/share/man/cat3/stty.0 comp-c-catman .cat +./usr/share/man/cat3/subpad.0 comp-c-catman .cat +./usr/share/man/cat3/subwin.0 comp-c-catman .cat +./usr/share/man/cat3/svc_auth_reg.0 comp-c-catman .cat +./usr/share/man/cat3/svc_control.0 comp-c-catman .cat +./usr/share/man/cat3/svc_create.0 comp-c-catman .cat +./usr/share/man/cat3/svc_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/svc_dg_create.0 comp-c-catman .cat +./usr/share/man/cat3/svc_dg_enablecache.0 comp-c-catman .cat +./usr/share/man/cat3/svc_exit.0 comp-c-catman .cat +./usr/share/man/cat3/svc_fd_create.0 comp-c-catman .cat +./usr/share/man/cat3/svc_fds.0 comp-c-catman .cat +./usr/share/man/cat3/svc_fdset.0 comp-c-catman .cat +./usr/share/man/cat3/svc_freeargs.0 comp-c-catman .cat +./usr/share/man/cat3/svc_getargs.0 comp-c-catman .cat +./usr/share/man/cat3/svc_getcaller.0 comp-c-catman .cat +./usr/share/man/cat3/svc_getreg.0 comp-obsolete obsolete +./usr/share/man/cat3/svc_getregset.0 comp-obsolete obsolete +./usr/share/man/cat3/svc_getreq_common.0 comp-c-catman .cat +./usr/share/man/cat3/svc_getreq_poll.0 comp-c-catman .cat +./usr/share/man/cat3/svc_getreqset.0 comp-c-catman .cat +./usr/share/man/cat3/svc_getrpccaller.0 comp-c-catman .cat +./usr/share/man/cat3/svc_pollset.0 comp-c-catman .cat +./usr/share/man/cat3/svc_raw_create.0 comp-c-catman .cat +./usr/share/man/cat3/svc_reg.0 comp-c-catman .cat +./usr/share/man/cat3/svc_register.0 comp-c-catman .cat +./usr/share/man/cat3/svc_run.0 comp-c-catman .cat +./usr/share/man/cat3/svc_sendreply.0 comp-c-catman .cat +./usr/share/man/cat3/svc_tli_create.0 comp-c-catman .cat +./usr/share/man/cat3/svc_tp_create.0 comp-c-catman .cat +./usr/share/man/cat3/svc_unreg.0 comp-c-catman .cat +./usr/share/man/cat3/svc_unregister.0 comp-c-catman .cat +./usr/share/man/cat3/svc_vc_create.0 comp-c-catman .cat +./usr/share/man/cat3/svcerr_auth.0 comp-c-catman .cat +./usr/share/man/cat3/svcerr_decode.0 comp-c-catman .cat +./usr/share/man/cat3/svcerr_noproc.0 comp-c-catman .cat +./usr/share/man/cat3/svcerr_noprog.0 comp-c-catman .cat +./usr/share/man/cat3/svcerr_progvers.0 comp-c-catman .cat +./usr/share/man/cat3/svcerr_systemerr.0 comp-c-catman .cat +./usr/share/man/cat3/svcerr_weakauth.0 comp-c-catman .cat +./usr/share/man/cat3/svcfd_create.0 comp-c-catman .cat +./usr/share/man/cat3/svcraw_create.0 comp-c-catman .cat +./usr/share/man/cat3/svctcp_create.0 comp-c-catman .cat +./usr/share/man/cat3/svcudp_bufcreate.0 comp-c-catman .cat +./usr/share/man/cat3/svcudp_create.0 comp-c-catman .cat +./usr/share/man/cat3/svis.0 comp-c-catman .cat +./usr/share/man/cat3/swab.0 comp-c-catman .cat +./usr/share/man/cat3/swapcontext.0 comp-c-catman .cat +./usr/share/man/cat3/swapon.0 comp-c-catman .cat +./usr/share/man/cat3/swprintf.0 comp-c-catman .cat +./usr/share/man/cat3/swscanf.0 comp-c-catman .cat +./usr/share/man/cat3/sys_errlist.0 comp-c-catman .cat +./usr/share/man/cat3/sys_nerr.0 comp-c-catman .cat +./usr/share/man/cat3/sys_siglist.0 comp-c-catman .cat +./usr/share/man/cat3/sys_signame.0 comp-c-catman .cat +./usr/share/man/cat3/sysconf.0 comp-c-catman .cat +./usr/share/man/cat3/sysctl.0 comp-c-catman .cat +./usr/share/man/cat3/sysctlbyname.0 comp-c-catman .cat +./usr/share/man/cat3/sysctlgetmibinfo.0 comp-c-catman .cat +./usr/share/man/cat3/sysctlnametomib.0 comp-c-catman .cat +./usr/share/man/cat3/sysexits.0 comp-c-catman .cat +./usr/share/man/cat3/syslog.0 comp-c-catman .cat +./usr/share/man/cat3/syslog_r.0 comp-c-catman .cat +./usr/share/man/cat3/syslog_ss.0 comp-obsolete obsolete +./usr/share/man/cat3/syslogp.0 comp-c-catman .cat +./usr/share/man/cat3/syslogp_r.0 comp-c-catman .cat +./usr/share/man/cat3/system.0 comp-c-catman .cat +./usr/share/man/cat3/t_freent.0 comp-obsolete obsolete +./usr/share/man/cat3/t_getent.0 comp-obsolete obsolete +./usr/share/man/cat3/t_getflag.0 comp-obsolete obsolete +./usr/share/man/cat3/t_getnum.0 comp-obsolete obsolete +./usr/share/man/cat3/t_getstr.0 comp-obsolete obsolete +./usr/share/man/cat3/t_goto.0 comp-obsolete obsolete +./usr/share/man/cat3/t_parm.0 comp-obsolete obsolete +./usr/share/man/cat3/t_puts.0 comp-obsolete obsolete +./usr/share/man/cat3/t_putws.0 comp-obsolete obsolete +./usr/share/man/cat3/t_vparm.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_empty.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_entry.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_first.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_head.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_head_initializer.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_init.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_insert_after.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_insert_before.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_insert_head.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_insert_tail.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_next.0 comp-obsolete obsolete +./usr/share/man/cat3/tailq_remove.0 comp-obsolete obsolete +./usr/share/man/cat3/tan.0 comp-c-catman .cat +./usr/share/man/cat3/tanf.0 comp-c-catman .cat +./usr/share/man/cat3/tanh.0 comp-c-catman .cat +./usr/share/man/cat3/tanhf.0 comp-c-catman .cat +./usr/share/man/cat3/tcdrain.0 comp-c-catman .cat +./usr/share/man/cat3/tcflow.0 comp-c-catman .cat +./usr/share/man/cat3/tcflush.0 comp-c-catman .cat +./usr/share/man/cat3/tcgetattr.0 comp-c-catman .cat +./usr/share/man/cat3/tcgetpgrp.0 comp-c-catman .cat +./usr/share/man/cat3/tcgetsid.0 comp-c-catman .cat +./usr/share/man/cat3/tcsendbreak.0 comp-c-catman .cat +./usr/share/man/cat3/tcsetattr.0 comp-c-catman .cat +./usr/share/man/cat3/tcsetpgrp.0 comp-c-catman .cat +./usr/share/man/cat3/tdelete.0 comp-c-catman .cat +./usr/share/man/cat3/telldir.0 comp-c-catman .cat +./usr/share/man/cat3/tempnam.0 comp-c-catman .cat +./usr/share/man/cat3/termcap.0 comp-c-catman .cat +./usr/share/man/cat3/terminfo.0 comp-c-catman .cat +./usr/share/man/cat3/termname.0 comp-c-catman .cat +./usr/share/man/cat3/textdomain.0 comp-c-catman .cat +./usr/share/man/cat3/tfind.0 comp-c-catman .cat +./usr/share/man/cat3/tgamma.0 comp-c-catman .cat +./usr/share/man/cat3/tgammaf.0 comp-c-catman .cat +./usr/share/man/cat3/tgetent.0 comp-c-catman .cat +./usr/share/man/cat3/tgetflag.0 comp-c-catman .cat +./usr/share/man/cat3/tgetnum.0 comp-c-catman .cat +./usr/share/man/cat3/tgetstr.0 comp-c-catman .cat +./usr/share/man/cat3/tgmath.0 comp-c-catman .cat +./usr/share/man/cat3/tgoto.0 comp-c-catman .cat +./usr/share/man/cat3/threads.0 comp-obsolete obsolete +./usr/share/man/cat3/ti_getflag.0 comp-c-catman .cat +./usr/share/man/cat3/ti_getnum.0 comp-c-catman .cat +./usr/share/man/cat3/ti_getstr.0 comp-c-catman .cat +./usr/share/man/cat3/ti_putp.0 comp-c-catman .cat +./usr/share/man/cat3/ti_puts.0 comp-c-catman .cat +./usr/share/man/cat3/ti_setupterm.0 comp-c-catman .cat +./usr/share/man/cat3/ti_tiparm.0 comp-c-catman .cat +./usr/share/man/cat3/tigetflag.0 comp-c-catman .cat +./usr/share/man/cat3/tigetnum.0 comp-c-catman .cat +./usr/share/man/cat3/tigetstr.0 comp-c-catman .cat +./usr/share/man/cat3/time.0 comp-c-catman .cat +./usr/share/man/cat3/time2posix.0 comp-c-catman .cat +./usr/share/man/cat3/time2posix_z.0 comp-c-catman .cat +./usr/share/man/cat3/timegm.0 comp-c-catman .cat +./usr/share/man/cat3/timelocal.0 comp-c-catman .cat +./usr/share/man/cat3/timeoff.0 comp-c-catman .cat +./usr/share/man/cat3/timeout.0 comp-c-catman .cat +./usr/share/man/cat3/timeradd.0 comp-c-catman .cat +./usr/share/man/cat3/timerclear.0 comp-c-catman .cat +./usr/share/man/cat3/timercmp.0 comp-c-catman .cat +./usr/share/man/cat3/timerisset.0 comp-c-catman .cat +./usr/share/man/cat3/timersub.0 comp-c-catman .cat +./usr/share/man/cat3/times.0 comp-c-catman .cat +./usr/share/man/cat3/timespec.0 comp-c-catman .cat +./usr/share/man/cat3/timespecadd.0 comp-c-catman .cat +./usr/share/man/cat3/timespecclear.0 comp-c-catman .cat +./usr/share/man/cat3/timespeccmp.0 comp-c-catman .cat +./usr/share/man/cat3/timespecisset.0 comp-c-catman .cat +./usr/share/man/cat3/timespecsub.0 comp-c-catman .cat +./usr/share/man/cat3/timeval.0 comp-c-catman .cat +./usr/share/man/cat3/timezone.0 comp-c-catman .cat +./usr/share/man/cat3/tiparm.0 comp-c-catman .cat +./usr/share/man/cat3/tm.0 comp-c-catman .cat +./usr/share/man/cat3/tmpfile.0 comp-c-catman .cat +./usr/share/man/cat3/tmpnam.0 comp-c-catman .cat +./usr/share/man/cat3/toascii.0 comp-c-catman .cat +./usr/share/man/cat3/tok_end.0 comp-c-catman .cat +./usr/share/man/cat3/tok_init.0 comp-c-catman .cat +./usr/share/man/cat3/tok_line.0 comp-c-catman .cat +./usr/share/man/cat3/tok_reset.0 comp-c-catman .cat +./usr/share/man/cat3/tok_str.0 comp-c-catman .cat +./usr/share/man/cat3/tolower.0 comp-c-catman .cat +./usr/share/man/cat3/top_row.0 comp-c-catman .cat +./usr/share/man/cat3/touchline.0 comp-c-catman .cat +./usr/share/man/cat3/touchoverlap.0 comp-c-catman .cat +./usr/share/man/cat3/touchwin.0 comp-c-catman .cat +./usr/share/man/cat3/toupper.0 comp-c-catman .cat +./usr/share/man/cat3/towctrans.0 comp-c-catman .cat +./usr/share/man/cat3/towlower.0 comp-c-catman .cat +./usr/share/man/cat3/towupper.0 comp-c-catman .cat +./usr/share/man/cat3/tparm.0 comp-c-catman .cat +./usr/share/man/cat3/tputs.0 comp-c-catman .cat +./usr/share/man/cat3/tree.0 comp-c-catman .cat +./usr/share/man/cat3/trunc.0 comp-c-catman .cat +./usr/share/man/cat3/truncf.0 comp-c-catman .cat +./usr/share/man/cat3/tsearch.0 comp-c-catman .cat +./usr/share/man/cat3/ttyaction.0 comp-c-catman .cat +./usr/share/man/cat3/ttylock.0 comp-c-catman .cat +./usr/share/man/cat3/ttymsg.0 comp-c-catman .cat +./usr/share/man/cat3/ttyname.0 comp-c-catman .cat +./usr/share/man/cat3/ttyname_r.0 comp-c-catman .cat +./usr/share/man/cat3/ttyslot.0 comp-c-catman .cat +./usr/share/man/cat3/ttyunlock.0 comp-c-catman .cat +./usr/share/man/cat3/twalk.0 comp-c-catman .cat +./usr/share/man/cat3/typeof.0 comp-c-catman .cat +./usr/share/man/cat3/types.0 comp-c-catman .cat +./usr/share/man/cat3/tzalloc.0 comp-c-catman .cat +./usr/share/man/cat3/tzfree.0 comp-c-catman .cat +./usr/share/man/cat3/tzgetname.0 comp-c-catman .cat +./usr/share/man/cat3/tzset.0 comp-c-catman .cat +./usr/share/man/cat3/tzsetwall.0 comp-c-catman .cat +./usr/share/man/cat3/ualarm.0 comp-c-catman .cat +./usr/share/man/cat3/uid_from_user.0 comp-c-catman .cat +./usr/share/man/cat3/ukfs.0 comp-c-catman .cat,rump +./usr/share/man/cat3/ulimit.0 comp-c-catman .cat +./usr/share/man/cat3/uname.0 comp-c-catman .cat +./usr/share/man/cat3/unctrl.0 comp-c-catman .cat +./usr/share/man/cat3/underend.0 comp-c-catman .cat +./usr/share/man/cat3/underscore.0 comp-c-catman .cat +./usr/share/man/cat3/ungetc.0 comp-c-catman .cat +./usr/share/man/cat3/ungetch.0 comp-c-catman .cat +./usr/share/man/cat3/ungetwc.0 comp-c-catman .cat +./usr/share/man/cat3/unistd.0 comp-c-catman .cat +./usr/share/man/cat3/unlockpt.0 comp-c-catman .cat +./usr/share/man/cat3/unpost_form.0 comp-c-catman .cat +./usr/share/man/cat3/unpost_menu.0 comp-c-catman .cat +./usr/share/man/cat3/unsetenv.0 comp-c-catman .cat +./usr/share/man/cat3/untouchwin.0 comp-c-catman .cat +./usr/share/man/cat3/unvis.0 comp-c-catman .cat +./usr/share/man/cat3/updlastlogx.0 comp-c-catman .cat +./usr/share/man/cat3/updwtmpx.0 comp-c-catman .cat +./usr/share/man/cat3/usb.0 comp-obsolete obsolete +./usr/share/man/cat3/usbhid.0 comp-c-catman .cat +./usr/share/man/cat3/use_default_colors.0 comp-c-catman .cat +./usr/share/man/cat3/user_from_uid.0 comp-c-catman .cat +./usr/share/man/cat3/usleep.0 comp-c-catman .cat +./usr/share/man/cat3/util.0 comp-c-catman .cat +./usr/share/man/cat3/utime.0 comp-c-catman .cat +./usr/share/man/cat3/utmpxname.0 comp-c-catman .cat +./usr/share/man/cat3/uuid.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_compare.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_create.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_create_nil.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_dec_be.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_dec_le.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_enc_be.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_enc_le.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_equal.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_from_string.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_hash.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_is_nil.0 comp-c-catman .cat +./usr/share/man/cat3/uuid_to_string.0 comp-c-catman .cat +./usr/share/man/cat3/va_arg.0 comp-c-catman .cat +./usr/share/man/cat3/va_copy.0 comp-c-catman .cat +./usr/share/man/cat3/va_end.0 comp-c-catman .cat +./usr/share/man/cat3/va_start.0 comp-c-catman .cat +./usr/share/man/cat3/valloc.0 comp-c-catman .cat +./usr/share/man/cat3/varargs.0 comp-obsolete obsolete +./usr/share/man/cat3/vasprintf.0 comp-c-catman .cat +./usr/share/man/cat3/vdprintf.0 comp-c-catman .cat +./usr/share/man/cat3/verr.0 comp-c-catman .cat +./usr/share/man/cat3/verrx.0 comp-c-catman .cat +./usr/share/man/cat3/vfprintf.0 comp-c-catman .cat +./usr/share/man/cat3/vfscanf.0 comp-c-catman .cat +./usr/share/man/cat3/vfwprintf.0 comp-c-catman .cat +./usr/share/man/cat3/vfwscanf.0 comp-c-catman .cat +./usr/share/man/cat3/vis.0 comp-c-catman .cat +./usr/share/man/cat3/vlimit.0 comp-obsolete obsolete +./usr/share/man/cat3/vline.0 comp-c-catman .cat +./usr/share/man/cat3/vprintf.0 comp-c-catman .cat +./usr/share/man/cat3/vscanf.0 comp-c-catman .cat +./usr/share/man/cat3/vsnprintf.0 comp-c-catman .cat +./usr/share/man/cat3/vsnprintf_ss.0 comp-c-catman .cat +./usr/share/man/cat3/vsprintf.0 comp-c-catman .cat +./usr/share/man/cat3/vsscanf.0 comp-c-catman .cat +./usr/share/man/cat3/vswprintf.0 comp-c-catman .cat +./usr/share/man/cat3/vswscanf.0 comp-c-catman .cat +./usr/share/man/cat3/vsyslog.0 comp-c-catman .cat +./usr/share/man/cat3/vsyslog_r.0 comp-c-catman .cat +./usr/share/man/cat3/vsyslog_ss.0 comp-obsolete obsolete +./usr/share/man/cat3/vsyslogp.0 comp-c-catman .cat +./usr/share/man/cat3/vsyslogp_r.0 comp-c-catman .cat +./usr/share/man/cat3/vtimes.0 comp-obsolete obsolete +./usr/share/man/cat3/vwarn.0 comp-c-catman .cat +./usr/share/man/cat3/vwarnx.0 comp-c-catman .cat +./usr/share/man/cat3/vwprintf.0 comp-c-catman .cat +./usr/share/man/cat3/vwscanf.0 comp-c-catman .cat +./usr/share/man/cat3/waddch.0 comp-c-catman .cat +./usr/share/man/cat3/waddchnstr.0 comp-c-catman .cat +./usr/share/man/cat3/waddchstr.0 comp-c-catman .cat +./usr/share/man/cat3/waddnstr.0 comp-c-catman .cat +./usr/share/man/cat3/waddstr.0 comp-c-catman .cat +./usr/share/man/cat3/warn.0 comp-c-catman .cat +./usr/share/man/cat3/warnx.0 comp-c-catman .cat +./usr/share/man/cat3/wattr_get.0 comp-c-catman .cat +./usr/share/man/cat3/wattr_off.0 comp-c-catman .cat +./usr/share/man/cat3/wattr_on.0 comp-c-catman .cat +./usr/share/man/cat3/wattr_set.0 comp-c-catman .cat +./usr/share/man/cat3/wattroff.0 comp-c-catman .cat +./usr/share/man/cat3/wattron.0 comp-c-catman .cat +./usr/share/man/cat3/wattrset.0 comp-c-catman .cat +./usr/share/man/cat3/wbkgd.0 comp-c-catman .cat +./usr/share/man/cat3/wbkgdset.0 comp-c-catman .cat +./usr/share/man/cat3/wborder.0 comp-c-catman .cat +./usr/share/man/cat3/wchgat.0 comp-c-catman .cat +./usr/share/man/cat3/wclear.0 comp-c-catman .cat +./usr/share/man/cat3/wclrtobot.0 comp-c-catman .cat +./usr/share/man/cat3/wclrtoeol.0 comp-c-catman .cat +./usr/share/man/cat3/wcolor_set.0 comp-c-catman .cat +./usr/share/man/cat3/wcrtomb.0 comp-c-catman .cat +./usr/share/man/cat3/wcscasecmp.0 comp-c-catman .cat +./usr/share/man/cat3/wcscat.0 comp-c-catman .cat +./usr/share/man/cat3/wcschr.0 comp-c-catman .cat +./usr/share/man/cat3/wcscmp.0 comp-c-catman .cat +./usr/share/man/cat3/wcscoll.0 comp-c-catman .cat +./usr/share/man/cat3/wcscpy.0 comp-c-catman .cat +./usr/share/man/cat3/wcscspn.0 comp-c-catman .cat +./usr/share/man/cat3/wcsdup.0 comp-c-catman .cat +./usr/share/man/cat3/wcsftime.0 comp-c-catman .cat +./usr/share/man/cat3/wcslcat.0 comp-c-catman .cat +./usr/share/man/cat3/wcslcpy.0 comp-c-catman .cat +./usr/share/man/cat3/wcslen.0 comp-c-catman .cat +./usr/share/man/cat3/wcsncasecmp.0 comp-c-catman .cat +./usr/share/man/cat3/wcsncat.0 comp-c-catman .cat +./usr/share/man/cat3/wcsncmp.0 comp-c-catman .cat +./usr/share/man/cat3/wcsncpy.0 comp-c-catman .cat +./usr/share/man/cat3/wcspbrk.0 comp-c-catman .cat +./usr/share/man/cat3/wcsrchr.0 comp-c-catman .cat +./usr/share/man/cat3/wcsrtombs.0 comp-c-catman .cat +./usr/share/man/cat3/wcsspn.0 comp-c-catman .cat +./usr/share/man/cat3/wcsstr.0 comp-c-catman .cat +./usr/share/man/cat3/wcstod.0 comp-c-catman .cat +./usr/share/man/cat3/wcstof.0 comp-c-catman .cat +./usr/share/man/cat3/wcstoimax.0 comp-c-catman .cat +./usr/share/man/cat3/wcstok.0 comp-c-catman .cat +./usr/share/man/cat3/wcstol.0 comp-c-catman .cat +./usr/share/man/cat3/wcstold.0 comp-c-catman .cat +./usr/share/man/cat3/wcstoll.0 comp-c-catman .cat +./usr/share/man/cat3/wcstombs.0 comp-c-catman .cat +./usr/share/man/cat3/wcstoul.0 comp-c-catman .cat +./usr/share/man/cat3/wcstoull.0 comp-c-catman .cat +./usr/share/man/cat3/wcstoumax.0 comp-c-catman .cat +./usr/share/man/cat3/wcswcs.0 comp-c-catman .cat +./usr/share/man/cat3/wcswidth.0 comp-c-catman .cat +./usr/share/man/cat3/wcsxfrm.0 comp-c-catman .cat +./usr/share/man/cat3/wctob.0 comp-c-catman .cat +./usr/share/man/cat3/wctomb.0 comp-c-catman .cat +./usr/share/man/cat3/wctrans.0 comp-c-catman .cat +./usr/share/man/cat3/wctype.0 comp-c-catman .cat +./usr/share/man/cat3/wcwidth.0 comp-c-catman .cat +./usr/share/man/cat3/wdelch.0 comp-c-catman .cat +./usr/share/man/cat3/wdeleteln.0 comp-c-catman .cat +./usr/share/man/cat3/wechochar.0 comp-c-catman .cat +./usr/share/man/cat3/werase.0 comp-c-catman .cat +./usr/share/man/cat3/wgetch.0 comp-c-catman .cat +./usr/share/man/cat3/wgetnstr.0 comp-c-catman .cat +./usr/share/man/cat3/wgetstr.0 comp-c-catman .cat +./usr/share/man/cat3/whline.0 comp-c-catman .cat +./usr/share/man/cat3/winch.0 comp-c-catman .cat +./usr/share/man/cat3/winchnstr.0 comp-c-catman .cat +./usr/share/man/cat3/winchstr.0 comp-c-catman .cat +./usr/share/man/cat3/winnstr.0 comp-c-catman .cat +./usr/share/man/cat3/winsch.0 comp-c-catman .cat +./usr/share/man/cat3/winsdelln.0 comp-c-catman .cat +./usr/share/man/cat3/winsertln.0 comp-c-catman .cat +./usr/share/man/cat3/winstr.0 comp-c-catman .cat +./usr/share/man/cat3/wmemchr.0 comp-c-catman .cat +./usr/share/man/cat3/wmemcmp.0 comp-c-catman .cat +./usr/share/man/cat3/wmemcpy.0 comp-c-catman .cat +./usr/share/man/cat3/wmemmove.0 comp-c-catman .cat +./usr/share/man/cat3/wmemset.0 comp-c-catman .cat +./usr/share/man/cat3/wmove.0 comp-c-catman .cat +./usr/share/man/cat3/wnoutrefresh.0 comp-c-catman .cat +./usr/share/man/cat3/wordexp.0 comp-c-catman .cat +./usr/share/man/cat3/wprintf.0 comp-c-catman .cat +./usr/share/man/cat3/wprintw.0 comp-c-catman .cat +./usr/share/man/cat3/wrefresh.0 comp-c-catman .cat +./usr/share/man/cat3/wresize.0 comp-c-catman .cat +./usr/share/man/cat3/wscanf.0 comp-c-catman .cat +./usr/share/man/cat3/wscanw.0 comp-c-catman .cat +./usr/share/man/cat3/wscrl.0 comp-c-catman .cat +./usr/share/man/cat3/wsetscrreg.0 comp-c-catman .cat +./usr/share/man/cat3/wstandend.0 comp-c-catman .cat +./usr/share/man/cat3/wstandout.0 comp-c-catman .cat +./usr/share/man/cat3/wtimeout.0 comp-c-catman .cat +./usr/share/man/cat3/wtouchln.0 comp-c-catman .cat +./usr/share/man/cat3/wunderend.0 comp-c-catman .cat +./usr/share/man/cat3/wunderscore.0 comp-c-catman .cat +./usr/share/man/cat3/wvline.0 comp-c-catman .cat +./usr/share/man/cat3/xdr.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_accepted_reply.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_array.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_authsys_parms.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_bool.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_bytes.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_callhdr.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_callmsg.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_char.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_destroy.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_double.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_enum.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_float.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_free.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_getpos.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_inline.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_int.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_long.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_opaque.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_opaque_auth.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_pmap.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_pmaplist.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_pointer.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_reference.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_rejected_reply.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_replymsg.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_setpos.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_short.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_sizeof.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_string.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_u_char.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_u_long.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_u_short.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_union.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_vector.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_void.0 comp-c-catman .cat +./usr/share/man/cat3/xdr_wrapstring.0 comp-c-catman .cat +./usr/share/man/cat3/xdrmem_create.0 comp-c-catman .cat +./usr/share/man/cat3/xdrrec_create.0 comp-c-catman .cat +./usr/share/man/cat3/xdrrec_endofrecord.0 comp-c-catman .cat +./usr/share/man/cat3/xdrrec_eof.0 comp-c-catman .cat +./usr/share/man/cat3/xdrrec_skiprecord.0 comp-c-catman .cat +./usr/share/man/cat3/xdrstdio_create.0 comp-c-catman .cat +./usr/share/man/cat3/xprt_register.0 comp-c-catman .cat +./usr/share/man/cat3/xprt_unregister.0 comp-c-catman .cat +./usr/share/man/cat3/y0.0 comp-c-catman .cat +./usr/share/man/cat3/y0f.0 comp-c-catman .cat +./usr/share/man/cat3/y1.0 comp-c-catman .cat +./usr/share/man/cat3/y1f.0 comp-c-catman .cat +./usr/share/man/cat3/yn.0 comp-c-catman .cat +./usr/share/man/cat3/ynf.0 comp-c-catman .cat +./usr/share/man/cat3/yp_all.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_bind.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_first.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_get_default_domain.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_master.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_match.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_next.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_order.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_setbindtries.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yp_unbind.0 comp-c-catman yp,.cat +./usr/share/man/cat3/ypclnt.0 comp-c-catman yp,.cat +./usr/share/man/cat3/yperr_string.0 comp-c-catman yp,.cat +./usr/share/man/cat3/ypprot_err.0 comp-c-catman yp,.cat +./usr/share/man/cat3/zlib.0 comp-c-catman .cat +./usr/share/man/cat5/config.0 comp-util-catman .cat +./usr/share/man/cat5/config.samples.0 comp-util-catman .cat +./usr/share/man/cat5/cpio.0 comp-util-catman .cat +./usr/share/man/cat5/cvs.0 comp-cvs-catman cvs,.cat +./usr/share/man/cat5/ldap.conf.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat5/ldif.0 comp-ldap-catman ldap,.cat +./usr/share/man/cat5/libarchive-formats.0 comp-util-catman .cat +./usr/share/man/cat5/mech.0 comp-krb5-catman kerberos,.cat +./usr/share/man/cat5/mk.conf.0 comp-util-catman .cat +./usr/share/man/cat5/mtree.0 comp-util-catman .cat +./usr/share/man/cat5/ranlib.0 comp-util-catman .cat +./usr/share/man/cat5/statvfs.0 comp-util-catman .cat +./usr/share/man/cat5/tar.0 comp-util-catman .cat +./usr/share/man/cat7/operator.0 comp-c-catman .cat +./usr/share/man/cat8/config.0 comp-obsolete obsolete +./usr/share/man/cat8/config.new.0 comp-obsolete obsolete +./usr/share/man/cat8/cvsbug.0 comp-cvs-catman cvs,.cat +./usr/share/man/cat8/genassym.0 comp-obsolete obsolete +./usr/share/man/cat8/kgmon.0 comp-sysutil-catman .cat +./usr/share/man/cat9/BOOT_FLAG.0 comp-sys-catman .cat +./usr/share/man/cat9/CALLOUT_INITIALIZER.0 comp-obsolete obsolete +./usr/share/man/cat9/CALLOUT_INITIALIZER_SETFUNC.0 comp-obsolete obsolete +./usr/share/man/cat9/CARDBUS_PRODUCT.0 comp-sys-catman .cat +./usr/share/man/cat9/CARDBUS_VENDOR.0 comp-sys-catman .cat +./usr/share/man/cat9/CLR.0 comp-sys-catman .cat +./usr/share/man/cat9/CTASSERT.0 comp-sys-catman .cat +./usr/share/man/cat9/Cardbus_conf_read.0 comp-sys-catman .cat +./usr/share/man/cat9/Cardbus_conf_write.0 comp-sys-catman .cat +./usr/share/man/cat9/Cardbus_free_tag.0 comp-sys-catman .cat +./usr/share/man/cat9/Cardbus_function_disable.0 comp-sys-catman .cat +./usr/share/man/cat9/Cardbus_function_enable.0 comp-sys-catman .cat +./usr/share/man/cat9/Cardbus_make_tag.0 comp-sys-catman .cat +./usr/share/man/cat9/Cardbus_mapreg_map.0 comp-sys-catman .cat +./usr/share/man/cat9/Cardbus_mapreg_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/DELAY.0 comp-sys-catman .cat +./usr/share/man/cat9/ETHER_FIRST_MULTI.0 comp-sys-catman .cat +./usr/share/man/cat9/ETHER_IS_MULTICAST.0 comp-sys-catman .cat +./usr/share/man/cat9/ETHER_NEXT_MULTI.0 comp-sys-catman .cat +./usr/share/man/cat9/FILE_IS_USABLE.0 comp-sys-catman .cat +./usr/share/man/cat9/FILE_SET_MATURE.0 comp-sys-catman .cat +./usr/share/man/cat9/FILE_UNUSE.0 comp-sys-catman .cat +./usr/share/man/cat9/FILE_USE.0 comp-sys-catman .cat +./usr/share/man/cat9/FREE.0 comp-sys-catman .cat +./usr/share/man/cat9/HOLDRELE.0 comp-obsolete obsolete +./usr/share/man/cat9/ISSET.0 comp-sys-catman .cat +./usr/share/man/cat9/KASSERT.0 comp-sys-catman .cat +./usr/share/man/cat9/KASSERTMSG.0 comp-sys-catman .cat +./usr/share/man/cat9/KDASSERT.0 comp-sys-catman .cat +./usr/share/man/cat9/KDASSERTMSG.0 comp-sys-catman .cat +./usr/share/man/cat9/KNOTE.0 comp-sys-catman .cat +./usr/share/man/cat9/LWP_CACHE_CREDS.0 comp-sys-catman .cat +./usr/share/man/cat9/MALLOC.0 comp-sys-catman .cat +./usr/share/man/cat9/MALLOC_DECLARE.0 comp-sys-catman .cat +./usr/share/man/cat9/MALLOC_DEFINE.0 comp-sys-catman .cat +./usr/share/man/cat9/MALLOC_DEFINE_LIMIT.0 comp-sys-catman .cat +./usr/share/man/cat9/MCHTYPE.0 comp-sys-catman .cat +./usr/share/man/cat9/MCLGET.0 comp-sys-catman .cat +./usr/share/man/cat9/MEXTADD.0 comp-sys-catman .cat +./usr/share/man/cat9/MEXTMALLOC.0 comp-sys-catman .cat +./usr/share/man/cat9/MEXTREMOVE.0 comp-obsolete obsolete +./usr/share/man/cat9/MFREE.0 comp-sys-catman .cat +./usr/share/man/cat9/MGET.0 comp-sys-catman .cat +./usr/share/man/cat9/MGETHDR.0 comp-sys-catman .cat +./usr/share/man/cat9/MH_ALIGN.0 comp-sys-catman .cat +./usr/share/man/cat9/M_ALIGN.0 comp-sys-catman .cat +./usr/share/man/cat9/M_COPY_PKTHDR.0 comp-sys-catman .cat +./usr/share/man/cat9/M_LEADINGSPACE.0 comp-sys-catman .cat +./usr/share/man/cat9/M_MOVE_PKTHDR.0 comp-sys-catman .cat +./usr/share/man/cat9/M_PREPEND.0 comp-sys-catman .cat +./usr/share/man/cat9/M_TRAILINGSPACE.0 comp-sys-catman .cat +./usr/share/man/cat9/NDINIT.0 comp-sys-catman .cat +./usr/share/man/cat9/PCI_PRODUCT.0 comp-sys-catman .cat +./usr/share/man/cat9/PCI_REVISION.0 comp-sys-catman .cat +./usr/share/man/cat9/PCI_VENDOR.0 comp-sys-catman .cat +./usr/share/man/cat9/PMC_ENABLED.0 comp-sys-catman .cat +./usr/share/man/cat9/RUN_ONCE.0 comp-sys-catman .cat +./usr/share/man/cat9/SCHED_LOCK.0 comp-obsolete obsolete +./usr/share/man/cat9/SCHED_UNLOCK.0 comp-obsolete obsolete +./usr/share/man/cat9/SET.0 comp-sys-catman .cat +./usr/share/man/cat9/STACK.0 comp-sys-catman .cat +./usr/share/man/cat9/STACK_ALIGN.0 comp-sys-catman .cat +./usr/share/man/cat9/STACK_ALLOC.0 comp-sys-catman .cat +./usr/share/man/cat9/STACK_GROW.0 comp-sys-catman .cat +./usr/share/man/cat9/STACK_MAX.0 comp-sys-catman .cat +./usr/share/man/cat9/STACK_SHRINK.0 comp-sys-catman .cat +./usr/share/man/cat9/TC_DENSE_TO_SPARSE.0 comp-sys-catman .cat +./usr/share/man/cat9/TC_PHYS_TO_UNCACHED.0 comp-sys-catman .cat +./usr/share/man/cat9/VATTR_NULL.0 comp-obsolete obsolete +./usr/share/man/cat9/VFS_CHECKEXP.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_FHTOVP.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_MOUNT.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_QUOTACTL.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_ROOT.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_SNAPSHOT.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_START.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_STATFS.0 comp-obsolete obsolete +./usr/share/man/cat9/VFS_STATVFS.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_SUSPENDCTL.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_SYNC.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_UNMOUNT.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_VGET.0 comp-sys-catman .cat +./usr/share/man/cat9/VFS_VPTOFH.0 comp-sys-catman .cat +./usr/share/man/cat9/VHOLD.0 comp-obsolete obsolete +./usr/share/man/cat9/VOP_ABORTOP.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_ACCESS.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_ADVLOCK.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_BALLOC.0 comp-obsolete obsolete +./usr/share/man/cat9/VOP_BLKATOFF.0 comp-obsolete obsolete +./usr/share/man/cat9/VOP_BMAP.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_BWRITE.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_CLOSE.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_CREATE.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_FCNTL.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_FSYNC.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_GETATTR.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_GETEXTATTR.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_GETPAGES.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_INACTIVE.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_IOCTL.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_ISLOCKED.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_LEASE.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_LINK.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_LISTEXTATTR.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_LOCK.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_LOOKUP.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_MKDIR.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_MKNOD.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_MMAP.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_OPEN.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_PATHCONF.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_POLL.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_PRINT.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_PUTPAGES.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_READ.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_READDIR.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_READLINK.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_REALLOCBLKS.0 comp-obsolete obsolete +./usr/share/man/cat9/VOP_RECLAIM.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_REMOVE.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_RENAME.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_REVOKE.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_RMDIR.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_SEEK.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_SETATTR.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_SETEXTATTR.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_STRATEGY.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_SYMLINK.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_TRUNCATE.0 comp-obsolete obsolete +./usr/share/man/cat9/VOP_UNLOCK.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_UPDATE.0 comp-obsolete obsolete +./usr/share/man/cat9/VOP_VALLOC.0 comp-obsolete obsolete +./usr/share/man/cat9/VOP_VFREE.0 comp-obsolete obsolete +./usr/share/man/cat9/VOP_WHITEOUT.0 comp-sys-catman .cat +./usr/share/man/cat9/VOP_WRITE.0 comp-sys-catman .cat +./usr/share/man/cat9/VREF.0 comp-obsolete obsolete +./usr/share/man/cat9/atop.0 comp-sys-catman .cat +./usr/share/man/cat9/accept_filt_add.0 comp-sys-catman .cat +./usr/share/man/cat9/accept_filt_del.0 comp-sys-catman .cat +./usr/share/man/cat9/accept_filt_generic_mod_event.0 comp-sys-catman .cat +./usr/share/man/cat9/accept_filt_get.0 comp-sys-catman .cat +./usr/share/man/cat9/accept_filter.0 comp-sys-catman .cat +./usr/share/man/cat9/access.0 comp-obsolete obsolete +./usr/share/man/cat9/accf_data.0 comp-sys-catman .cat +./usr/share/man/cat9/accf_http.0 comp-sys-catman .cat +./usr/share/man/cat9/allocbuf.0 comp-sys-catman .cat +./usr/share/man/cat9/altq.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_debug.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_debug_dev.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_debug_ifnet.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_error.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_error_dev.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_error_ifnet.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_get_error_count.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_naive.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_naive_dev.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_naive_ifnet.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_normal.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_normal_dev.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_normal_ifnet.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_verbose.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_verbose_dev.0 comp-sys-catman .cat +./usr/share/man/cat9/aprint_verbose_ifnet.0 comp-sys-catman .cat +./usr/share/man/cat9/arc4randbytes.0 comp-sys-catman .cat +./usr/share/man/cat9/arc4random.0 comp-sys-catman .cat +./usr/share/man/cat9/arp.0 comp-sys-catman .cat +./usr/share/man/cat9/arp_ifinit.0 comp-sys-catman .cat +./usr/share/man/cat9/arpintr.0 comp-sys-catman .cat +./usr/share/man/cat9/arpresolve.0 comp-sys-catman .cat +./usr/share/man/cat9/audio.0 comp-sys-catman .cat +./usr/share/man/cat9/autoconf.0 comp-sys-catman .cat +./usr/share/man/cat9/bawrite.0 comp-sys-catman .cat +./usr/share/man/cat9/bcdtobin.0 comp-sys-catman .cat +./usr/share/man/cat9/bcmp.0 comp-sys-catman .cat +./usr/share/man/cat9/bcopy.0 comp-sys-catman .cat +./usr/share/man/cat9/bdevvp.0 comp-sys-catman .cat +./usr/share/man/cat9/bdwrite.0 comp-sys-catman .cat +./usr/share/man/cat9/be16dec.0 comp-sys-catman .cat +./usr/share/man/cat9/be16enc.0 comp-sys-catman .cat +./usr/share/man/cat9/be16toh.0 comp-sys-catman .cat +./usr/share/man/cat9/be32dec.0 comp-sys-catman .cat +./usr/share/man/cat9/be32enc.0 comp-sys-catman .cat +./usr/share/man/cat9/be32toh.0 comp-sys-catman .cat +./usr/share/man/cat9/be64dec.0 comp-sys-catman .cat +./usr/share/man/cat9/be64enc.0 comp-sys-catman .cat +./usr/share/man/cat9/be64toh.0 comp-sys-catman .cat +./usr/share/man/cat9/bintime.0 comp-sys-catman .cat +./usr/share/man/cat9/bintime2timespec.0 comp-sys-catman .cat +./usr/share/man/cat9/bintime2timeval.0 comp-sys-catman .cat +./usr/share/man/cat9/bintime_add.0 comp-sys-catman .cat +./usr/share/man/cat9/bintime_addx.0 comp-sys-catman .cat +./usr/share/man/cat9/bintime_sub.0 comp-sys-catman .cat +./usr/share/man/cat9/bintobcd.0 comp-sys-catman .cat +./usr/share/man/cat9/binuptime.0 comp-sys-catman .cat +./usr/share/man/cat9/biodone.0 comp-sys-catman .cat +./usr/share/man/cat9/biowait.0 comp-sys-catman .cat +./usr/share/man/cat9/bitmask_snprintf.0 comp-obsolete obsolete +./usr/share/man/cat9/bluetooth.0 comp-sys-catman .cat +./usr/share/man/cat9/boothowto.0 comp-sys-catman .cat +./usr/share/man/cat9/boottime.0 comp-sys-catman .cat +./usr/share/man/cat9/bounds_check_with_label.0 comp-sys-catman .cat +./usr/share/man/cat9/bpf.0 comp-sys-catman .cat +./usr/share/man/cat9/bread.0 comp-sys-catman .cat +./usr/share/man/cat9/breada.0 comp-sys-catman .cat +./usr/share/man/cat9/breadn.0 comp-sys-catman .cat +./usr/share/man/cat9/brelse.0 comp-sys-catman .cat +./usr/share/man/cat9/bswap16.0 comp-sys-catman .cat +./usr/share/man/cat9/bswap32.0 comp-sys-catman .cat +./usr/share/man/cat9/bswap64.0 comp-sys-catman .cat +./usr/share/man/cat9/btoc.0 comp-sys-catman .cat +./usr/share/man/cat9/btodb.0 comp-sys-catman .cat +./usr/share/man/cat9/buffercache.0 comp-sys-catman .cat +./usr/share/man/cat9/bufq.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dma.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamap_create.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamap_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamap_load.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamap_load_mbuf.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamap_load_raw.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamap_load_uio.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamap_sync.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamap_unload.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamem_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamem_free.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamem_map.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamem_mmap.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmamem_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmatag_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_dmatag_subregion.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_barrier.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_copy_region_1.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_copy_region_2.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_copy_region_4.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_copy_region_8.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_free.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_is_equal.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_map.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_mmap.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_1.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_2.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_4.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_8.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_multi_1.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_multi_2.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_multi_4.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_multi_8.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_region_1.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_region_2.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_region_4.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_read_region_8.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_set_region_1.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_set_region_2.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_set_region_4.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_set_region_8.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_subregion.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_vaddr.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_1.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_2.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_4.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_8.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_multi_1.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_multi_2.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_multi_4.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_multi_8.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_region_1.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_region_2.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_region_4.0 comp-sys-catman .cat +./usr/share/man/cat9/bus_space_write_region_8.0 comp-sys-catman .cat +./usr/share/man/cat9/bwrite.0 comp-sys-catman .cat +./usr/share/man/cat9/byteorder.0 comp-sys-catman .cat +./usr/share/man/cat9/bzero.0 comp-sys-catman .cat +./usr/share/man/cat9/cache_enter.0 comp-sys-catman .cat +./usr/share/man/cat9/cache_lookup.0 comp-sys-catman .cat +./usr/share/man/cat9/cache_purge.0 comp-sys-catman .cat +./usr/share/man/cat9/cache_purgevfs.0 comp-sys-catman .cat +./usr/share/man/cat9/cache_revlookup.0 comp-sys-catman .cat +./usr/share/man/cat9/callback.0 comp-sys-catman .cat +./usr/share/man/cat9/callback_head_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/callback_head_init.0 comp-sys-catman .cat +./usr/share/man/cat9/callback_register.0 comp-sys-catman .cat +./usr/share/man/cat9/callback_run_roundrobin.0 comp-sys-catman .cat +./usr/share/man/cat9/callback_unregister.0 comp-sys-catman .cat +./usr/share/man/cat9/callout.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_ack.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_active.0 comp-obsolete obsolete +./usr/share/man/cat9/callout_deactivate.0 comp-obsolete obsolete +./usr/share/man/cat9/callout_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_expired.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_halt.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_init.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_invoking.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_pending.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_reset.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_schedule.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_setfunc.0 comp-sys-catman .cat +./usr/share/man/cat9/callout_stop.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_attach_card.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_conf_read.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_conf_write.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_detach_card.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_free_tag.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_function_disable.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_function_enable.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_get_capability.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_intr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_intr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_make_tag.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_mapreg_map.0 comp-sys-catman .cat +./usr/share/man/cat9/cardbus_mapreg_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/cdevvp.0 comp-sys-catman .cat +./usr/share/man/cat9/checkalias.0 comp-obsolete obsolete +./usr/share/man/cat9/child_return.0 comp-sys-catman .cat +./usr/share/man/cat9/chooselwp.0 comp-obsolete obsolete +./usr/share/man/cat9/chooseproc.0 comp-obsolete obsolete +./usr/share/man/cat9/clock_secs_to_ymdhms.0 comp-sys-catman .cat +./usr/share/man/cat9/clock_ymdhms_to_secs.0 comp-sys-catman .cat +./usr/share/man/cat9/closef.0 comp-sys-catman .cat +./usr/share/man/cat9/clrbit.0 comp-sys-catman .cat +./usr/share/man/cat9/cltom.0 comp-sys-catman .cat +./usr/share/man/cat9/cn_check_magic.0 comp-sys-catman .cat +./usr/share/man/cat9/cn_destroy_magic.0 comp-sys-catman .cat +./usr/share/man/cat9/cn_get_magic.0 comp-sys-catman .cat +./usr/share/man/cat9/cn_init_magic.0 comp-sys-catman .cat +./usr/share/man/cat9/cn_isconsole.0 comp-sys-catman .cat +./usr/share/man/cat9/cn_set_magic.0 comp-sys-catman .cat +./usr/share/man/cat9/cn_trap.0 comp-sys-catman .cat +./usr/share/man/cat9/cnbell.0 comp-sys-catman .cat +./usr/share/man/cat9/cngetc.0 comp-sys-catman .cat +./usr/share/man/cat9/cngetsn.0 comp-sys-catman .cat +./usr/share/man/cat9/cnmagic.0 comp-sys-catman .cat +./usr/share/man/cat9/cnpollc.0 comp-sys-catman .cat +./usr/share/man/cat9/cnputc.0 comp-sys-catman .cat +./usr/share/man/cat9/condvar.0 comp-sys-catman .cat +./usr/share/man/cat9/config.0 comp-sys-catman .cat +./usr/share/man/cat9/config_activate.0 comp-obsolete obsolete +./usr/share/man/cat9/config_attach.0 comp-sys-catman .cat +./usr/share/man/cat9/config_attach_loc.0 comp-sys-catman .cat +./usr/share/man/cat9/config_attach_pseudo.0 comp-sys-catman .cat +./usr/share/man/cat9/config_deactivate.0 comp-sys-catman .cat +./usr/share/man/cat9/config_defer.0 comp-sys-catman .cat +./usr/share/man/cat9/config_detach.0 comp-sys-catman .cat +./usr/share/man/cat9/config_detach_children.0 comp-sys-catman .cat +./usr/share/man/cat9/config_finalize_register.0 comp-sys-catman .cat +./usr/share/man/cat9/config_found.0 comp-sys-catman .cat +./usr/share/man/cat9/config_found_ia.0 comp-sys-catman .cat +./usr/share/man/cat9/config_found_sm.0 comp-obsolete obsolete +./usr/share/man/cat9/config_found_sm_loc.0 comp-sys-catman .cat +./usr/share/man/cat9/config_interrupts.0 comp-sys-catman .cat +./usr/share/man/cat9/config_match.0 comp-sys-catman .cat +./usr/share/man/cat9/config_mountroot.0 comp-sys-catman .cat +./usr/share/man/cat9/config_pending_decr.0 comp-sys-catman .cat +./usr/share/man/cat9/config_pending_incr.0 comp-sys-catman .cat +./usr/share/man/cat9/config_search.0 comp-obsolete obsolete +./usr/share/man/cat9/config_search_ia.0 comp-sys-catman .cat +./usr/share/man/cat9/config_search_loc.0 comp-sys-catman .cat +./usr/share/man/cat9/cons.0 comp-sys-catman .cat +./usr/share/man/cat9/copy.0 comp-sys-catman .cat +./usr/share/man/cat9/copyin.0 comp-sys-catman .cat +./usr/share/man/cat9/copyin_proc.0 comp-sys-catman .cat +./usr/share/man/cat9/copyinstr.0 comp-sys-catman .cat +./usr/share/man/cat9/copyout.0 comp-sys-catman .cat +./usr/share/man/cat9/copyout_proc.0 comp-sys-catman .cat +./usr/share/man/cat9/copyoutstr.0 comp-sys-catman .cat +./usr/share/man/cat9/copystr.0 comp-sys-catman .cat +./usr/share/man/cat9/coredump_write.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_fast.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_fast32.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_fast64.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_strong.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_strong32.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_strong64.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_strong_create.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_strong_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_strong_getflags.0 comp-sys-catman .cat +./usr/share/man/cat9/cprng_strong_setflags.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_configure.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_coredump.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_dump.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_dumpconf.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_dumpsize.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_exit.0 comp-obsolete obsolete +./usr/share/man/cat9/cpu_fork.0 comp-obsolete obsolete +./usr/share/man/cat9/cpu_idle.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_initclocks.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_lwp_fork.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_need_resched.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_number.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_reboot.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_rootconf.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_startup.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_swapin.0 comp-obsolete obsolete +./usr/share/man/cat9/cpu_swapout.0 comp-obsolete obsolete +./usr/share/man/cat9/cpu_switch.0 comp-obsolete obsolete +./usr/share/man/cat9/cpu_switchto.0 comp-sys-catman .cat +./usr/share/man/cat9/cpu_sysctl.0 comp-obsolete obsolete +./usr/share/man/cat9/cpu_wait.0 comp-obsolete obsolete +./usr/share/man/cat9/cpufreq.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_deregister.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_get.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_get_backend.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_get_state.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_get_state_index.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_register.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_resume.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_set.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_set_all.0 comp-sys-catman .cat +./usr/share/man/cat9/cpufreq_suspend.0 comp-sys-catman .cat +./usr/share/man/cat9/crcopy.0 comp-obsolete obsolete +./usr/share/man/cat9/crcvt.0 comp-obsolete obsolete +./usr/share/man/cat9/crdup.0 comp-obsolete obsolete +./usr/share/man/cat9/cred.0 comp-obsolete obsolete +./usr/share/man/cat9/crfree.0 comp-obsolete obsolete +./usr/share/man/cat9/crget.0 comp-obsolete obsolete +./usr/share/man/cat9/crhold.0 comp-obsolete obsolete +./usr/share/man/cat9/crypto_dispatch.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_done.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_freereq.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_freesession.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_get_driverid.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_getreq.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_kdispatch.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_kdone.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_kregister.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_newsession.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_register.0 comp-sys-catman .cat +./usr/share/man/cat9/crypto_unregister.0 comp-sys-catman .cat +./usr/share/man/cat9/csf.0 comp-sys-catman .cat +./usr/share/man/cat9/ctob.0 comp-sys-catman .cat +./usr/share/man/cat9/ctod.0 comp-sys-catman .cat +./usr/share/man/cat9/ctxsw.0 comp-obsolete obsolete +./usr/share/man/cat9/curcpu.0 comp-sys-catman .cat +./usr/share/man/cat9/curlwp.0 comp-sys-catman .cat +./usr/share/man/cat9/curproc.0 comp-sys-catman .cat +./usr/share/man/cat9/cv.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_broadcast.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_has_waiters.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_init.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_signal.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_timedwait.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_timedwait_sig.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_wait.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_wait_sig.0 comp-sys-catman .cat +./usr/share/man/cat9/cv_wakeup.0 comp-obsolete obsolete +./usr/share/man/cat9/dbtob.0 comp-sys-catman .cat +./usr/share/man/cat9/ddc.0 comp-sys-catman .cat +./usr/share/man/cat9/delay.0 comp-sys-catman .cat +./usr/share/man/cat9/device_printf.0 comp-sys-catman .cat +./usr/share/man/cat9/deviter.0 comp-sys-catman .cat +./usr/share/man/cat9/deviter_first.0 comp-sys-catman .cat +./usr/share/man/cat9/deviter_init.0 comp-sys-catman .cat +./usr/share/man/cat9/deviter_next.0 comp-sys-catman .cat +./usr/share/man/cat9/deviter_release.0 comp-sys-catman .cat +./usr/share/man/cat9/disk.0 comp-sys-catman .cat +./usr/share/man/cat9/disk_attach.0 comp-sys-catman .cat +./usr/share/man/cat9/disk_begindetach.0 comp-sys-catman .cat +./usr/share/man/cat9/disk_busy.0 comp-sys-catman .cat +./usr/share/man/cat9/disk_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/disk_detach.0 comp-sys-catman .cat +./usr/share/man/cat9/disk_detatch.0 comp-obsolete obsolete +./usr/share/man/cat9/disk_find.0 comp-sys-catman .cat +./usr/share/man/cat9/disk_init.0 comp-sys-catman .cat +./usr/share/man/cat9/disk_resetstat.0 comp-obsolete obsolete +./usr/share/man/cat9/disk_unbusy.0 comp-sys-catman .cat +./usr/share/man/cat9/disklabel.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover_backend_register.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover_backend_unregister.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover_done.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover_process.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover_request_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover_request_free.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover_session_create.0 comp-sys-catman .cat +./usr/share/man/cat9/dmover_session_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/do_setresgid.0 comp-sys-catman .cat +./usr/share/man/cat9/do_setresuid.0 comp-sys-catman .cat +./usr/share/man/cat9/dofileread.0 comp-sys-catman .cat +./usr/share/man/cat9/dofilereadv.0 comp-sys-catman .cat +./usr/share/man/cat9/dofilewrite.0 comp-sys-catman .cat +./usr/share/man/cat9/dofilewritev.0 comp-sys-catman .cat +./usr/share/man/cat9/dopowerhooks.0 comp-sys-catman .cat +./usr/share/man/cat9/doshutdownhooks.0 comp-sys-catman .cat +./usr/share/man/cat9/driver.0 comp-sys-catman .cat +./usr/share/man/cat9/dtoc.0 comp-sys-catman .cat +./usr/share/man/cat9/dumpsys.0 comp-sys-catman .cat +./usr/share/man/cat9/dupfdopen.0 comp-sys-catman .cat +./usr/share/man/cat9/edid.0 comp-sys-catman .cat +./usr/share/man/cat9/enodev.0 comp-sys-catman .cat +./usr/share/man/cat9/enoioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/enosys.0 comp-sys-catman .cat +./usr/share/man/cat9/enxio.0 comp-sys-catman .cat +./usr/share/man/cat9/eopnotsupp.0 comp-sys-catman .cat +./usr/share/man/cat9/errno.0 comp-sys-catman .cat +./usr/share/man/cat9/ether_addmulti.0 comp-sys-catman .cat +./usr/share/man/cat9/ether_delmulti.0 comp-sys-catman .cat +./usr/share/man/cat9/ether_ifattach.0 comp-sys-catman .cat +./usr/share/man/cat9/ethersubr.0 comp-sys-catman .cat +./usr/share/man/cat9/evcnt.0 comp-sys-catman .cat +./usr/share/man/cat9/evcnt_attach_dynamic.0 comp-sys-catman .cat +./usr/share/man/cat9/evcnt_attach_static.0 comp-sys-catman .cat +./usr/share/man/cat9/evcnt_detach.0 comp-sys-catman .cat +./usr/share/man/cat9/execsigs.0 comp-sys-catman .cat +./usr/share/man/cat9/extattr.0 comp-sys-catman .cat +./usr/share/man/cat9/extent.0 comp-sys-catman .cat +./usr/share/man/cat9/extent_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/extent_alloc_region.0 comp-sys-catman .cat +./usr/share/man/cat9/extent_alloc_subregion.0 comp-sys-catman .cat +./usr/share/man/cat9/extent_create.0 comp-sys-catman .cat +./usr/share/man/cat9/extent_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/extent_free.0 comp-sys-catman .cat +./usr/share/man/cat9/extent_print.0 comp-sys-catman .cat +./usr/share/man/cat9/falloc.0 comp-sys-catman .cat +./usr/share/man/cat9/fd_getfile.0 comp-sys-catman .cat +./usr/share/man/cat9/fdalloc.0 comp-sys-catman .cat +./usr/share/man/cat9/fdavail.0 comp-obsolete obsolete +./usr/share/man/cat9/fdcheckstd.0 comp-sys-catman .cat +./usr/share/man/cat9/fdclear.0 comp-sys-catman .cat +./usr/share/man/cat9/fdclone.0 comp-sys-catman .cat +./usr/share/man/cat9/fdcloseexec.0 comp-sys-catman .cat +./usr/share/man/cat9/fdcopy.0 comp-sys-catman .cat +./usr/share/man/cat9/fddi_addmulti.0 comp-sys-catman .cat +./usr/share/man/cat9/fddi_delmulti.0 comp-sys-catman .cat +./usr/share/man/cat9/fddi_ifattach.0 comp-sys-catman .cat +./usr/share/man/cat9/fdexpand.0 comp-sys-catman .cat +./usr/share/man/cat9/fdfree.0 comp-sys-catman .cat +./usr/share/man/cat9/fdinit.0 comp-sys-catman .cat +./usr/share/man/cat9/fdrelease.0 comp-sys-catman .cat +./usr/share/man/cat9/fdremove.0 comp-sys-catman .cat +./usr/share/man/cat9/fdshare.0 comp-sys-catman .cat +./usr/share/man/cat9/fdunshare.0 comp-sys-catman .cat +./usr/share/man/cat9/fetch.0 comp-sys-catman .cat +./usr/share/man/cat9/ffree.0 comp-sys-catman .cat +./usr/share/man/cat9/fgetown.0 comp-sys-catman .cat +./usr/share/man/cat9/file.0 comp-sys-catman .cat +./usr/share/man/cat9/fileassoc.0 comp-sys-catman .cat +./usr/share/man/cat9/filedesc.0 comp-sys-catman .cat +./usr/share/man/cat9/firmload.0 comp-sys-catman .cat +./usr/share/man/cat9/firmware_close.0 comp-sys-catman .cat +./usr/share/man/cat9/firmware_free.0 comp-sys-catman .cat +./usr/share/man/cat9/firmware_get_size.0 comp-sys-catman .cat +./usr/share/man/cat9/firmware_malloc.0 comp-sys-catman .cat +./usr/share/man/cat9/firmware_open.0 comp-sys-catman .cat +./usr/share/man/cat9/firmware_read.0 comp-sys-catman .cat +./usr/share/man/cat9/flash.0 comp-sys-catman .cat +./usr/share/man/cat9/fork1.0 comp-sys-catman .cat +./usr/share/man/cat9/format_bytes.0 comp-sys-catman .cat +./usr/share/man/cat9/fownsignal.0 comp-sys-catman .cat +./usr/share/man/cat9/free.0 comp-sys-catman .cat +./usr/share/man/cat9/fscow_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/fscow_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/fscow_run.0 comp-sys-catman .cat +./usr/share/man/cat9/fsetown.0 comp-sys-catman .cat +./usr/share/man/cat9/fstrans.0 comp-sys-catman .cat +./usr/share/man/cat9/fstrans_done.0 comp-sys-catman .cat +./usr/share/man/cat9/fstrans_getstate.0 comp-sys-catman .cat +./usr/share/man/cat9/fstrans_is_owner.0 comp-sys-catman .cat +./usr/share/man/cat9/fstrans_setstate.0 comp-sys-catman .cat +./usr/share/man/cat9/fstrans_start.0 comp-sys-catman .cat +./usr/share/man/cat9/fstrans_start_nowait.0 comp-sys-catman .cat +./usr/share/man/cat9/fubyte.0 comp-sys-catman .cat +./usr/share/man/cat9/fuibyte.0 comp-sys-catman .cat +./usr/share/man/cat9/fuiword.0 comp-sys-catman .cat +./usr/share/man/cat9/fuswintr.0 comp-sys-catman .cat +./usr/share/man/cat9/fusword.0 comp-sys-catman .cat +./usr/share/man/cat9/fuword.0 comp-sys-catman .cat +./usr/share/man/cat9/genfs.0 comp-sys-catman .cat +./usr/share/man/cat9/getbintime.0 comp-sys-catman .cat +./usr/share/man/cat9/getbinuptime.0 comp-sys-catman .cat +./usr/share/man/cat9/getblk.0 comp-sys-catman .cat +./usr/share/man/cat9/geteblk.0 comp-sys-catman .cat +./usr/share/man/cat9/getiobuf.0 comp-sys-catman .cat +./usr/share/man/cat9/getiobuf_nowait.0 comp-obsolete obsolete +./usr/share/man/cat9/getmicrotime.0 comp-sys-catman .cat +./usr/share/man/cat9/getmicrouptime.0 comp-sys-catman .cat +./usr/share/man/cat9/getnanotime.0 comp-sys-catman .cat +./usr/share/man/cat9/getnanouptime.0 comp-sys-catman .cat +./usr/share/man/cat9/getnewvnode.0 comp-sys-catman .cat +./usr/share/man/cat9/gsignal.0 comp-obsolete obsolete +./usr/share/man/cat9/hardclock.0 comp-sys-catman .cat +./usr/share/man/cat9/hash.0 comp-sys-catman .cat +./usr/share/man/cat9/hash32_buf.0 comp-sys-catman .cat +./usr/share/man/cat9/hash32_str.0 comp-sys-catman .cat +./usr/share/man/cat9/hash32_strn.0 comp-sys-catman .cat +./usr/share/man/cat9/hashdone.0 comp-sys-catman .cat +./usr/share/man/cat9/hashinit.0 comp-sys-catman .cat +./usr/share/man/cat9/holdrele.0 comp-sys-catman .cat +./usr/share/man/cat9/howmany.0 comp-sys-catman .cat +./usr/share/man/cat9/htobe16.0 comp-sys-catman .cat +./usr/share/man/cat9/htobe32.0 comp-sys-catman .cat +./usr/share/man/cat9/htobe64.0 comp-sys-catman .cat +./usr/share/man/cat9/htole16.0 comp-sys-catman .cat +./usr/share/man/cat9/htole32.0 comp-sys-catman .cat +./usr/share/man/cat9/htole64.0 comp-sys-catman .cat +./usr/share/man/cat9/humanize_number.0 comp-sys-catman .cat +./usr/share/man/cat9/hz.0 comp-sys-catman .cat +./usr/share/man/cat9/hztoms.0 comp-sys-catman .cat +./usr/share/man/cat9/i386/bios32_service.0 comp-sys-catman .cat +./usr/share/man/cat9/i386/bioscall.0 comp-sys-catman .cat +./usr/share/man/cat9/i386/nmi.0 comp-obsolete obsolete +./usr/share/man/cat9/i386/nmi_disestablish.0 comp-obsolete obsolete +./usr/share/man/cat9/i386/nmi_establish.0 comp-obsolete obsolete +./usr/share/man/cat9/i386/return_address.0 comp-sys-catman .cat +./usr/share/man/cat9/i386/spllower.0 comp-sys-catman .cat +./usr/share/man/cat9/i386/splraise.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_chan2ieee.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_chan2mode.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_crypto.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_ieee2mhz.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_ifattach.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_ifdetach.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_input.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_ioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_media2rate.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_media_change.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_media_init.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_media_status.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_mhz2ieee.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_node.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_output.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_proto.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_radiotap.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_rate2media.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_rssadapt_choose.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_rssadapt_input.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_rssadapt_lower_rate.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_rssadapt_raise_rate.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_rssadapt_updatestats.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_setmode.0 comp-sys-catman .cat +./usr/share/man/cat9/ieee80211_watchdog.0 comp-sys-catman .cat +./usr/share/man/cat9/iic.0 comp-sys-catman .cat +./usr/share/man/cat9/iic_acquire_bus.0 comp-sys-catman .cat +./usr/share/man/cat9/iic_exec.0 comp-sys-catman .cat +./usr/share/man/cat9/iic_release_bus.0 comp-sys-catman .cat +./usr/share/man/cat9/iic_smbus_read_byte.0 comp-sys-catman .cat +./usr/share/man/cat9/iic_smbus_receive_byte.0 comp-sys-catman .cat +./usr/share/man/cat9/iic_smbus_write_byte.0 comp-sys-catman .cat +./usr/share/man/cat9/imax.0 comp-sys-catman .cat +./usr/share/man/cat9/imin.0 comp-sys-catman .cat +./usr/share/man/cat9/in4_cksum.0 comp-sys-catman .cat +./usr/share/man/cat9/in6_cksum.0 comp-sys-catman .cat +./usr/share/man/cat9/in_cksum.0 comp-sys-catman .cat +./usr/share/man/cat9/in_getifa.0 comp-sys-catman .cat +./usr/share/man/cat9/incore.0 comp-sys-catman .cat +./usr/share/man/cat9/inittodr.0 comp-sys-catman .cat +./usr/share/man/cat9/intro.0 comp-sys-catman .cat +./usr/share/man/cat9/ioasic.0 comp-sys-catman .cat +./usr/share/man/cat9/ioasic_attach_devs.0 comp-sys-catman .cat +./usr/share/man/cat9/ioasic_intr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/ioasic_intr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/ioasic_intr_evcnt.0 comp-sys-catman .cat +./usr/share/man/cat9/ioasic_submatch.0 comp-sys-catman .cat +./usr/share/man/cat9/ioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/ioctl_copyin.0 comp-sys-catman .cat +./usr/share/man/cat9/ioctl_copyout.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdb.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdb_connect.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdb_init.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdb_poll.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdb_trap.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdbcmds.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdbfbyte.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdbif_init.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdbinit.0 comp-sys-catman .cat +./usr/share/man/cat9/ipkdbsbyte.0 comp-sys-catman .cat +./usr/share/man/cat9/isa.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmaabort.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmacascade.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmacount.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmadone.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmamap_create.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmamap_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmamaxsize.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmamem_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmamem_free.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmamem_map.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmamem_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_dmastart.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_drq_isfree.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_free.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_intr_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_intr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_intr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_intr_evcnt.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_malloc.0 comp-sys-catman .cat +./usr/share/man/cat9/isa_mappage.0 comp-sys-catman .cat +./usr/share/man/cat9/isapnp.0 comp-sys-catman .cat +./usr/share/man/cat9/isapnp_config.0 comp-sys-catman .cat +./usr/share/man/cat9/isapnp_devmatch.0 comp-sys-catman .cat +./usr/share/man/cat9/isapnp_unconfig.0 comp-sys-catman .cat +./usr/share/man/cat9/isclr.0 comp-sys-catman .cat +./usr/share/man/cat9/isset.0 comp-sys-catman .cat +./usr/share/man/cat9/issignal.0 comp-sys-catman .cat +./usr/share/man/cat9/itimerfix.0 comp-sys-catman .cat +./usr/share/man/cat9/kauth.0 comp-sys-catman .cat +./usr/share/man/cat9/kcont.0 comp-obsolete obsolete +./usr/share/man/cat9/kcopy.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_atomic_clear.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_atomic_set.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_clear.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_copy.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_copyin.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_copyout.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_create.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_fill.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_isset.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_iszero.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_match.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_merge.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_set.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_unuse.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_use.0 comp-sys-catman .cat +./usr/share/man/cat9/kcpuset_zero.0 comp-sys-catman .cat +./usr/share/man/cat9/kernacc.0 comp-obsolete obsolete +./usr/share/man/cat9/kfilter_register.0 comp-sys-catman .cat +./usr/share/man/cat9/kfilter_unregister.0 comp-sys-catman .cat +./usr/share/man/cat9/killproc.0 comp-sys-catman .cat +./usr/share/man/cat9/kmem.0 comp-sys-catman .cat +./usr/share/man/cat9/kmem_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/kmem_asprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/kmem_free.0 comp-sys-catman .cat +./usr/share/man/cat9/kmem_zalloc.0 comp-sys-catman .cat +./usr/share/man/cat9/knote.0 comp-sys-catman .cat +./usr/share/man/cat9/kpause.0 comp-sys-catman .cat +./usr/share/man/cat9/kpgsignal.0 comp-sys-catman .cat +./usr/share/man/cat9/kpreempt.0 comp-sys-catman .cat +./usr/share/man/cat9/kpreempt_disable.0 comp-sys-catman .cat +./usr/share/man/cat9/kpreempt_disabled.0 comp-sys-catman .cat +./usr/share/man/cat9/kpreempt_enable.0 comp-sys-catman .cat +./usr/share/man/cat9/kprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/kpsignal.0 comp-sys-catman .cat +./usr/share/man/cat9/kthread.0 comp-sys-catman .cat +./usr/share/man/cat9/kthread_create.0 comp-sys-catman .cat +./usr/share/man/cat9/kthread_create1.0 comp-obsolete obsolete +./usr/share/man/cat9/kthread_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/kthread_exit.0 comp-sys-catman .cat +./usr/share/man/cat9/kthread_join.0 comp-sys-catman .cat +./usr/share/man/cat9/le16dec.0 comp-sys-catman .cat +./usr/share/man/cat9/le16enc.0 comp-sys-catman .cat +./usr/share/man/cat9/le16toh.0 comp-sys-catman .cat +./usr/share/man/cat9/le32dec.0 comp-sys-catman .cat +./usr/share/man/cat9/le32enc.0 comp-sys-catman .cat +./usr/share/man/cat9/le32toh.0 comp-sys-catman .cat +./usr/share/man/cat9/le64dec.0 comp-sys-catman .cat +./usr/share/man/cat9/le64enc.0 comp-sys-catman .cat +./usr/share/man/cat9/le64toh.0 comp-sys-catman .cat +./usr/share/man/cat9/linedisc.0 comp-sys-catman .cat +./usr/share/man/cat9/lock.0 comp-sys-catman .cat +./usr/share/man/cat9/lockinit.0 comp-sys-catman .cat +./usr/share/man/cat9/lockmgr.0 comp-sys-catman .cat +./usr/share/man/cat9/lockmgr_printinfo.0 comp-sys-catman .cat +./usr/share/man/cat9/lockstatus.0 comp-sys-catman .cat +./usr/share/man/cat9/log.0 comp-sys-catman .cat +./usr/share/man/cat9/longjmp.0 comp-sys-catman .cat +./usr/share/man/cat9/lookup.0 comp-sys-catman .cat +./usr/share/man/cat9/ltsleep.0 comp-sys-catman .cat +./usr/share/man/cat9/m_adj.0 comp-sys-catman .cat +./usr/share/man/cat9/m_cat.0 comp-sys-catman .cat +./usr/share/man/cat9/m_copyback.0 comp-sys-catman .cat +./usr/share/man/cat9/m_copyback_cow.0 comp-sys-catman .cat +./usr/share/man/cat9/m_copydata.0 comp-sys-catman .cat +./usr/share/man/cat9/m_copym.0 comp-sys-catman .cat +./usr/share/man/cat9/m_copypacket.0 comp-sys-catman .cat +./usr/share/man/cat9/m_devget.0 comp-sys-catman .cat +./usr/share/man/cat9/m_dup.0 comp-sys-catman .cat +./usr/share/man/cat9/m_free.0 comp-sys-catman .cat +./usr/share/man/cat9/m_freem.0 comp-sys-catman .cat +./usr/share/man/cat9/m_get.0 comp-sys-catman .cat +./usr/share/man/cat9/m_getclr.0 comp-sys-catman .cat +./usr/share/man/cat9/m_gethdr.0 comp-sys-catman .cat +./usr/share/man/cat9/m_makewritable.0 comp-sys-catman .cat +./usr/share/man/cat9/m_prepend.0 comp-sys-catman .cat +./usr/share/man/cat9/m_pulldown.0 comp-sys-catman .cat +./usr/share/man/cat9/m_pullup.0 comp-sys-catman .cat +./usr/share/man/cat9/m_split.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_copy.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_copy_chain.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_delete.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_delete_chain.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_delete_nonpersistent.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_find.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_first.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_free.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_get.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_init.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_next.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_prepend.0 comp-sys-catman .cat +./usr/share/man/cat9/m_tag_unlink.0 comp-sys-catman .cat +./usr/share/man/cat9/makeiplcookie.0 comp-sys-catman .cat +./usr/share/man/cat9/malloc.0 comp-sys-catman .cat +./usr/share/man/cat9/malloc_roundup.0 comp-sys-catman .cat +./usr/share/man/cat9/malloc_type_attach.0 comp-sys-catman .cat +./usr/share/man/cat9/malloc_type_detach.0 comp-sys-catman .cat +./usr/share/man/cat9/malloc_type_setlimit.0 comp-sys-catman .cat +./usr/share/man/cat9/mb.0 comp-sys-catman .cat +./usr/share/man/cat9/mb_memory.0 comp-sys-catman .cat +./usr/share/man/cat9/mb_read.0 comp-sys-catman .cat +./usr/share/man/cat9/mb_write.0 comp-sys-catman .cat +./usr/share/man/cat9/mbuf.0 comp-sys-catman .cat +./usr/share/man/cat9/mca.0 comp-sys-catman .cat +./usr/share/man/cat9/mca_conf_read.0 comp-sys-catman .cat +./usr/share/man/cat9/mca_conf_write.0 comp-sys-catman .cat +./usr/share/man/cat9/mca_intr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/mca_intr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/mca_intr_evcnt.0 comp-sys-catman .cat +./usr/share/man/cat9/memcmp.0 comp-sys-catman .cat +./usr/share/man/cat9/memcpy.0 comp-sys-catman .cat +./usr/share/man/cat9/memmove.0 comp-sys-catman .cat +./usr/share/man/cat9/memoryallocators.0 comp-sys-catman .cat +./usr/share/man/cat9/memset.0 comp-sys-catman .cat +./usr/share/man/cat9/mi_switch.0 comp-sys-catman .cat +./usr/share/man/cat9/microtime.0 comp-sys-catman .cat +./usr/share/man/cat9/microuptime.0 comp-sys-catman .cat +./usr/share/man/cat9/module.0 comp-sys-catman .cat +./usr/share/man/cat9/module_autoload.0 comp-sys-catman .cat +./usr/share/man/cat9/module_builtin_require_force.0 comp-sys-catman .cat +./usr/share/man/cat9/module_find_section.0 comp-sys-catman .cat +./usr/share/man/cat9/module_hold.0 comp-sys-catman .cat +./usr/share/man/cat9/module_init.0 comp-sys-catman .cat +./usr/share/man/cat9/module_init_class.0 comp-sys-catman .cat +./usr/share/man/cat9/module_load.0 comp-sys-catman .cat +./usr/share/man/cat9/module_load_vfs_init.0 comp-sys-catman .cat +./usr/share/man/cat9/module_rele.0 comp-sys-catman .cat +./usr/share/man/cat9/module_start_unload_thread.0 comp-sys-catman .cat +./usr/share/man/cat9/module_unload.0 comp-sys-catman .cat +./usr/share/man/cat9/mono_time.0 comp-obsolete obsolete +./usr/share/man/cat9/mstohz.0 comp-sys-catman .cat +./usr/share/man/cat9/mtocl.0 comp-sys-catman .cat +./usr/share/man/cat9/mtod.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex_enter.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex_exit.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex_init.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex_owned.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex_spin_enter.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex_spin_exit.0 comp-sys-catman .cat +./usr/share/man/cat9/mutex_tryenter.0 comp-sys-catman .cat +./usr/share/man/cat9/namecache.0 comp-sys-catman .cat +./usr/share/man/cat9/namecache_print.0 comp-sys-catman .cat +./usr/share/man/cat9/namei.0 comp-sys-catman .cat +./usr/share/man/cat9/nanotime.0 comp-sys-catman .cat +./usr/share/man/cat9/nanouptime.0 comp-sys-catman .cat +./usr/share/man/cat9/need_resched.0 comp-obsolete obsolete +./usr/share/man/cat9/nextrunqueue.0 comp-obsolete obsolete +./usr/share/man/cat9/npf_ncode.0 comp-sys-catman .cat +./usr/share/man/cat9/nullop.0 comp-sys-catman .cat +./usr/share/man/cat9/old_sysctl.0 comp-sys-catman .cat +./usr/share/man/cat9/opencrypto.0 comp-sys-catman .cat +./usr/share/man/cat9/optstr.0 comp-sys-catman .cat +./usr/share/man/cat9/optstr_get.0 comp-sys-catman .cat +./usr/share/man/cat9/p_find.0 comp-obsolete obsolete +./usr/share/man/cat9/panic.0 comp-sys-catman .cat +./usr/share/man/cat9/pathbuf.0 comp-sys-catman .cat +./usr/share/man/cat9/pci.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_conf_hook.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_conf_interrupt.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_conf_print.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_conf_read.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_conf_write.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_configure_bus.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_decompose_tag.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_devinfo.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_find_device.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_findvendor.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_get_capability.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_get_powerstate.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_intr.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_intr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_intr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_intr_evcnt.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_intr_map.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_intr_string.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_make_tag.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_mapreg_info.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_mapreg_map.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_mapreg_type.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_set_powerstate.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_vpd_read.0 comp-sys-catman .cat +./usr/share/man/cat9/pci_vpd_write.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_attach.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_attach_slot.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_cnattach.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_enqueue_cmd.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_flush.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_poll_cmd.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_poll_data.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_set_inputhandler.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_set_poll.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_slot_enable.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbport_xt_translation.0 comp-sys-catman .cat +./usr/share/man/cat9/pckbportintr.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_cis_read_1.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_cis_read_2.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_cis_read_3.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_cis_read_4.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_cis_read_n.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_function_disable.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_function_enable.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_function_init.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_intr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_intr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_io_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_io_free.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_io_map.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_io_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_mem_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_mem_free.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_mem_map.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_mem_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/pcmcia_scan_cis.0 comp-sys-catman .cat +./usr/share/man/cat9/pcq.0 comp-sys-catman .cat +./usr/share/man/cat9/pcq_create.0 comp-sys-catman .cat +./usr/share/man/cat9/pcq_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/pcq_get.0 comp-sys-catman .cat +./usr/share/man/cat9/pcq_maxitems.0 comp-sys-catman .cat +./usr/share/man/cat9/pcq_peek.0 comp-sys-catman .cat +./usr/share/man/cat9/pcq_put.0 comp-sys-catman .cat +./usr/share/man/cat9/percpu.0 comp-sys-catman .cat +./usr/share/man/cat9/percpu_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/percpu_foreach.0 comp-sys-catman .cat +./usr/share/man/cat9/percpu_free.0 comp-sys-catman .cat +./usr/share/man/cat9/percpu_getref.0 comp-sys-catman .cat +./usr/share/man/cat9/percpu_init.0 comp-obsolete obsolete +./usr/share/man/cat9/percpu_init_cpu.0 comp-obsolete obsolete +./usr/share/man/cat9/percpu_putref.0 comp-sys-catman .cat +./usr/share/man/cat9/pfil.0 comp-sys-catman .cat +./usr/share/man/cat9/pfil_add_hook.0 comp-sys-catman .cat +./usr/share/man/cat9/pfil_get_head.0 comp-obsolete obsolete +./usr/share/man/cat9/pfil_head_get.0 comp-sys-catman .cat +./usr/share/man/cat9/pfil_head_register.0 comp-sys-catman .cat +./usr/share/man/cat9/pfil_head_unregister.0 comp-sys-catman .cat +./usr/share/man/cat9/pfil_hook_get.0 comp-sys-catman .cat +./usr/share/man/cat9/pfil_remove_hook.0 comp-sys-catman .cat +./usr/share/man/cat9/pfil_run_hooks.0 comp-sys-catman .cat +./usr/share/man/cat9/pfind.0 comp-obsolete obsolete +./usr/share/man/cat9/pg_find.0 comp-obsolete obsolete +./usr/share/man/cat9/pgfind.0 comp-obsolete obsolete +./usr/share/man/cat9/pgrp_find.0 comp-sys-catman .cat +./usr/share/man/cat9/pgsignal.0 comp-sys-catman .cat +./usr/share/man/cat9/physio.0 comp-sys-catman .cat +./usr/share/man/cat9/pmap.0 comp-sys-catman .cat +./usr/share/man/cat9/pmatch.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_accumulate.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_alloc_kernel_counter.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_configure_counter.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_counter_isconfigured.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_counter_isrunning.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_disable_counter.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_enable_counter.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_free_kernel_counter.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_get_counter_type.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_get_counter_value.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_get_num_counters.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_restore_context.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_save_context.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_start_profiling.0 comp-sys-catman .cat +./usr/share/man/cat9/pmc_stop_profiling.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_class_display_register.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_class_input_register.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_class_network_register.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_device_deregister.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_device_recursive_resume.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_device_recursive_suspend.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_device_register.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_device_register1.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_device_resume.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_device_resume_subtree.0 comp-obsolete obsolete +./usr/share/man/cat9/pmf_device_subtree_resume.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_device_suspend.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_event_deregister.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_event_inject.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_event_register.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_get_platform.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_set_platform.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_system_resume.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_system_shutdown.0 comp-sys-catman .cat +./usr/share/man/cat9/pmf_system_suspend.0 comp-sys-catman .cat +./usr/share/man/cat9/pool.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_destruct_object.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_get.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_get_paddr.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_init.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_invalidate.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_invalidate_local.0 comp-obsolete obsolete +./usr/share/man/cat9/pool_cache_put.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_put_paddr.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_sethardlimit.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_sethiwat.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_cache_setlowat.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_create.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_get.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_init.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_prime.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_put.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_sethardlimit.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_sethiwat.0 comp-sys-catman .cat +./usr/share/man/cat9/pool_setlowat.0 comp-sys-catman .cat +./usr/share/man/cat9/postsig.0 comp-sys-catman .cat +./usr/share/man/cat9/powerhook_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/powerhook_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/powerof2.0 comp-sys-catman .cat +./usr/share/man/cat9/ppsratecheck.0 comp-sys-catman .cat +./usr/share/man/cat9/preempt.0 comp-sys-catman .cat +./usr/share/man/cat9/printf.0 comp-sys-catman .cat +./usr/share/man/cat9/printf_nolog.0 comp-sys-catman .cat +./usr/share/man/cat9/proc_find.0 comp-sys-catman .cat +./usr/share/man/cat9/proc_trampoline.0 comp-sys-catman .cat +./usr/share/man/cat9/profhz.0 comp-sys-catman .cat +./usr/share/man/cat9/prop_array_copyin_ioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/prop_array_copyout_ioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/prop_copy.0 comp-obsolete obsolete +./usr/share/man/cat9/prop_copyin_ioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/prop_delete.0 comp-obsolete obsolete +./usr/share/man/cat9/prop_dictionary_copyin_ioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/prop_dictionary_copyout_ioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/prop_get.0 comp-obsolete obsolete +./usr/share/man/cat9/prop_list.0 comp-obsolete obsolete +./usr/share/man/cat9/prop_objs.0 comp-obsolete obsolete +./usr/share/man/cat9/prop_set.0 comp-obsolete obsolete +./usr/share/man/cat9/propdb_create.0 comp-obsolete obsolete +./usr/share/man/cat9/propdb_destroy.0 comp-obsolete obsolete +./usr/share/man/cat9/properties.0 comp-obsolete obsolete +./usr/share/man/cat9/pserialize.0 comp-sys-catman .cat +./usr/share/man/cat9/pserialize_create.0 comp-sys-catman .cat +./usr/share/man/cat9/pserialize_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/pserialize_perform.0 comp-sys-catman .cat +./usr/share/man/cat9/pserialize_read_enter.0 comp-sys-catman .cat +./usr/share/man/cat9/pserialize_read_exit.0 comp-sys-catman .cat +./usr/share/man/cat9/psignal.0 comp-sys-catman .cat +./usr/share/man/cat9/ptoa.0 comp-sys-catman .cat +./usr/share/man/cat9/putiobuf.0 comp-sys-catman .cat +./usr/share/man/cat9/putter.0 comp-sys-catman .cat +./usr/share/man/cat9/radio.0 comp-sys-catman .cat +./usr/share/man/cat9/ras.0 comp-sys-catman .cat +./usr/share/man/cat9/ras_fork.0 comp-sys-catman .cat +./usr/share/man/cat9/ras_lookup.0 comp-sys-catman .cat +./usr/share/man/cat9/ras_purgeall.0 comp-sys-catman .cat +./usr/share/man/cat9/rasops.0 comp-sys-catman .cat +./usr/share/man/cat9/rasops_init.0 comp-sys-catman .cat +./usr/share/man/cat9/rasops_reconfig.0 comp-sys-catman .cat +./usr/share/man/cat9/ratecheck.0 comp-sys-catman .cat +./usr/share/man/cat9/readdisklabel.0 comp-sys-catman .cat +./usr/share/man/cat9/realloc.0 comp-sys-catman .cat +./usr/share/man/cat9/relookup.0 comp-sys-catman .cat +./usr/share/man/cat9/remrunqueue.0 comp-obsolete obsolete +./usr/share/man/cat9/resettodr.0 comp-sys-catman .cat +./usr/share/man/cat9/rnd.0 comp-sys-catman .cat +./usr/share/man/cat9/rnd_add_data.0 comp-sys-catman .cat +./usr/share/man/cat9/rnd_add_uint32.0 comp-sys-catman .cat +./usr/share/man/cat9/rnd_attach_source.0 comp-sys-catman .cat +./usr/share/man/cat9/rnd_detach_source.0 comp-sys-catman .cat +./usr/share/man/cat9/rnd_extract_data.0 comp-sys-catman .cat +./usr/share/man/cat9/rootconf.0 comp-sys-catman .cat +./usr/share/man/cat9/round_page.0 comp-sys-catman .cat +./usr/share/man/cat9/rounddown.0 comp-sys-catman .cat +./usr/share/man/cat9/roundup.0 comp-sys-catman .cat +./usr/share/man/cat9/roundup2.0 comp-sys-catman .cat +./usr/share/man/cat9/rssadapt.0 comp-sys-catman .cat +./usr/share/man/cat9/rt_timer.0 comp-sys-catman .cat +./usr/share/man/cat9/rt_timer_add.0 comp-sys-catman .cat +./usr/share/man/cat9/rt_timer_queue_change.0 comp-sys-catman .cat +./usr/share/man/cat9/rt_timer_queue_create.0 comp-sys-catman .cat +./usr/share/man/cat9/rt_timer_queue_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/rt_timer_remove_all.0 comp-sys-catman .cat +./usr/share/man/cat9/runtime.0 comp-obsolete obsolete +./usr/share/man/cat9/rw.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_downgrade.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_enter.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_exit.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_init.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_lock_held.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_read_held.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_tryenter.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_tryupgrade.0 comp-sys-catman .cat +./usr/share/man/cat9/rw_write_held.0 comp-sys-catman .cat +./usr/share/man/cat9/rwlock.0 comp-sys-catman .cat +./usr/share/man/cat9/scanc.0 comp-sys-catman .cat +./usr/share/man/cat9/sched_4bsd.0 comp-sys-catman .cat +./usr/share/man/cat9/sched_lock_idle.0 comp-obsolete obsolete +./usr/share/man/cat9/sched_m2.0 comp-sys-catman .cat +./usr/share/man/cat9/sched_psignal.0 comp-obsolete obsolete +./usr/share/man/cat9/sched_unlock_idle.0 comp-obsolete obsolete +./usr/share/man/cat9/scheduler.0 comp-obsolete obsolete +./usr/share/man/cat9/scsipi.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel_bsd44.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel_deregister.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel_eval.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel_extensions.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel_overlay.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel_register.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel_securelevel.0 comp-sys-catman .cat +./usr/share/man/cat9/secmodel_suser.0 comp-sys-catman .cat +./usr/share/man/cat9/seldestroy.0 comp-sys-catman .cat +./usr/share/man/cat9/select.0 comp-sys-catman .cat +./usr/share/man/cat9/selinit.0 comp-sys-catman .cat +./usr/share/man/cat9/selnotify.0 comp-sys-catman .cat +./usr/share/man/cat9/selrecord.0 comp-sys-catman .cat +./usr/share/man/cat9/selwakeup.0 comp-obsolete obsolete +./usr/share/man/cat9/sendsig.0 comp-sys-catman .cat +./usr/share/man/cat9/setbit.0 comp-sys-catman .cat +./usr/share/man/cat9/setdisklabel.0 comp-sys-catman .cat +./usr/share/man/cat9/setjmp.0 comp-sys-catman .cat +./usr/share/man/cat9/setroot.0 comp-sys-catman .cat +./usr/share/man/cat9/setrunqueue.0 comp-obsolete obsolete +./usr/share/man/cat9/shutdownhook_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/shutdownhook_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/sigaction1.0 comp-sys-catman .cat +./usr/share/man/cat9/sigactsfree.0 comp-sys-catman .cat +./usr/share/man/cat9/sigactsinit.0 comp-sys-catman .cat +./usr/share/man/cat9/sigactsunshare.0 comp-sys-catman .cat +./usr/share/man/cat9/sigaltstack1.0 comp-sys-catman .cat +./usr/share/man/cat9/sigcode.0 comp-sys-catman .cat +./usr/share/man/cat9/sigexit.0 comp-sys-catman .cat +./usr/share/man/cat9/siginit.0 comp-sys-catman .cat +./usr/share/man/cat9/sigmasked.0 comp-obsolete obsolete +./usr/share/man/cat9/signal.0 comp-sys-catman .cat +./usr/share/man/cat9/sigpending1.0 comp-sys-catman .cat +./usr/share/man/cat9/sigprocmask1.0 comp-sys-catman .cat +./usr/share/man/cat9/sigsuspend1.0 comp-sys-catman .cat +./usr/share/man/cat9/sigtramp.0 comp-sys-catman .cat +./usr/share/man/cat9/simple_lock.0 comp-sys-catman .cat +./usr/share/man/cat9/simple_lock_dump.0 comp-sys-catman .cat +./usr/share/man/cat9/simple_lock_freecheck.0 comp-sys-catman .cat +./usr/share/man/cat9/simple_lock_init.0 comp-sys-catman .cat +./usr/share/man/cat9/simple_lock_try.0 comp-sys-catman .cat +./usr/share/man/cat9/simple_lock_unlock.0 comp-obsolete obsolete +./usr/share/man/cat9/simple_unlock.0 comp-sys-catman .cat +./usr/share/man/cat9/skpc.0 comp-sys-catman .cat +./usr/share/man/cat9/sleep.0 comp-obsolete obsolete +./usr/share/man/cat9/snprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/sockopt.0 comp-sys-catman .cat +./usr/share/man/cat9/sockopt_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/sockopt_get.0 comp-sys-catman .cat +./usr/share/man/cat9/sockopt_getint.0 comp-sys-catman .cat +./usr/share/man/cat9/sockopt_init.0 comp-sys-catman .cat +./usr/share/man/cat9/sockopt_set.0 comp-sys-catman .cat +./usr/share/man/cat9/sockopt_setint.0 comp-sys-catman .cat +./usr/share/man/cat9/softint.0 comp-sys-catman .cat +./usr/share/man/cat9/softint_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/softint_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/softint_schedule.0 comp-sys-catman .cat +./usr/share/man/cat9/softintr.0 comp-sys-catman .cat +./usr/share/man/cat9/softintr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/softintr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/softintr_schedule.0 comp-sys-catman .cat +./usr/share/man/cat9/spinlockinit.0 comp-sys-catman .cat +./usr/share/man/cat9/spinlockmgr.0 comp-sys-catman .cat +./usr/share/man/cat9/spl.0 comp-sys-catman .cat +./usr/share/man/cat9/spl0.0 comp-sys-catman .cat +./usr/share/man/cat9/splbio.0 comp-sys-catman .cat +./usr/share/man/cat9/splclock.0 comp-sys-catman .cat +./usr/share/man/cat9/splhigh.0 comp-sys-catman .cat +./usr/share/man/cat9/splimp.0 comp-sys-catman .cat +./usr/share/man/cat9/spllower.0 comp-obsolete obsolete +./usr/share/man/cat9/spllowersoftclock.0 comp-sys-catman .cat +./usr/share/man/cat9/splnet.0 comp-sys-catman .cat +./usr/share/man/cat9/splraise.0 comp-obsolete obsolete +./usr/share/man/cat9/splraiseipl.0 comp-sys-catman .cat +./usr/share/man/cat9/splsched.0 comp-sys-catman .cat +./usr/share/man/cat9/splserial.0 comp-sys-catman .cat +./usr/share/man/cat9/splsoftbio.0 comp-sys-catman .cat +./usr/share/man/cat9/splsoftclock.0 comp-sys-catman .cat +./usr/share/man/cat9/splsoftnet.0 comp-sys-catman .cat +./usr/share/man/cat9/splsoftserial.0 comp-sys-catman .cat +./usr/share/man/cat9/splstatclock.0 comp-sys-catman .cat +./usr/share/man/cat9/spltty.0 comp-sys-catman .cat +./usr/share/man/cat9/splvm.0 comp-sys-catman .cat +./usr/share/man/cat9/splx.0 comp-sys-catman .cat +./usr/share/man/cat9/sprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/stathz.0 comp-sys-catman .cat +./usr/share/man/cat9/store.0 comp-sys-catman .cat +./usr/share/man/cat9/subyte.0 comp-sys-catman .cat +./usr/share/man/cat9/suibyte.0 comp-sys-catman .cat +./usr/share/man/cat9/suiword.0 comp-sys-catman .cat +./usr/share/man/cat9/sun3/isr_add.0 comp-sys-catman .cat +./usr/share/man/cat9/sun3/isr_add_autovect.0 comp-sys-catman .cat +./usr/share/man/cat9/sun3/isr_add_custom.0 comp-sys-catman .cat +./usr/share/man/cat9/sun3/isr_add_vectored.0 comp-sys-catman .cat +./usr/share/man/cat9/suser.0 comp-obsolete obsolete +./usr/share/man/cat9/suspendsched.0 comp-sys-catman .cat +./usr/share/man/cat9/suswintr.0 comp-sys-catman .cat +./usr/share/man/cat9/susword.0 comp-sys-catman .cat +./usr/share/man/cat9/suword.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_create.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_createv.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_destroyv.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_dispatch.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_free.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_init.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_locate.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_lock.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_lookup.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_needfunc.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_notavail.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_null.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_query.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_teardown.0 comp-sys-catman .cat +./usr/share/man/cat9/sysctl_unlock.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_envsys.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_envsys_create.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_envsys_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_envsys_register.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_envsys_sensor_attach.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_envsys_sensor_detach.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_envsys_unregister.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_pswitch.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_pswitch_event.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_pswitch_register.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_pswitch_unregister.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_task_queue_fini.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_task_queue_init.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_task_queue_preinit.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_task_queue_sched.0 comp-sys-catman .cat +./usr/share/man/cat9/sysmon_taskq.0 comp-sys-catman .cat +./usr/share/man/cat9/tc.0 comp-sys-catman .cat +./usr/share/man/cat9/tc_badaddr.0 comp-sys-catman .cat +./usr/share/man/cat9/tc_init.0 comp-sys-catman .cat +./usr/share/man/cat9/tc_intr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/tc_intr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/tc_intr_evcnt.0 comp-sys-catman .cat +./usr/share/man/cat9/tc_mb.0 comp-sys-catman .cat +./usr/share/man/cat9/tc_syncbus.0 comp-sys-catman .cat +./usr/share/man/cat9/tc_wmb.0 comp-sys-catman .cat +./usr/share/man/cat9/tcp_congctl.0 comp-sys-catman .cat +./usr/share/man/cat9/tick.0 comp-sys-catman .cat +./usr/share/man/cat9/tickadj.0 comp-sys-catman .cat +./usr/share/man/cat9/time.0 comp-obsolete obsolete +./usr/share/man/cat9/time_second.0 comp-sys-catman .cat +./usr/share/man/cat9/time_uptime.0 comp-sys-catman .cat +./usr/share/man/cat9/timecounter.0 comp-sys-catman .cat +./usr/share/man/cat9/timeout.0 comp-sys-catman .cat +./usr/share/man/cat9/timespec2bintime.0 comp-sys-catman .cat +./usr/share/man/cat9/timeval2bintime.0 comp-sys-catman .cat +./usr/share/man/cat9/tmpfs.0 comp-obsolete obsolete +./usr/share/man/cat9/todr.0 comp-sys-catman .cat +./usr/share/man/cat9/todr_getcal.0 comp-obsolete obsolete +./usr/share/man/cat9/todr_gettime.0 comp-sys-catman .cat +./usr/share/man/cat9/todr_setcal.0 comp-obsolete obsolete +./usr/share/man/cat9/todr_settime.0 comp-sys-catman .cat +./usr/share/man/cat9/tprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/tprintf_close.0 comp-sys-catman .cat +./usr/share/man/cat9/tprintf_open.0 comp-sys-catman .cat +./usr/share/man/cat9/transferlockers.0 comp-sys-catman .cat +./usr/share/man/cat9/trapsignal.0 comp-sys-catman .cat +./usr/share/man/cat9/trunc_page.0 comp-sys-catman .cat +./usr/share/man/cat9/tsleep.0 comp-sys-catman .cat +./usr/share/man/cat9/ttyldisc_add.0 comp-sys-catman .cat +./usr/share/man/cat9/ttyldisc_lookup.0 comp-sys-catman .cat +./usr/share/man/cat9/ttyldisc_remove.0 comp-sys-catman .cat +./usr/share/man/cat9/ttyprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/tvtohz.0 comp-sys-catman .cat +./usr/share/man/cat9/uao_create.0 comp-sys-catman .cat +./usr/share/man/cat9/uao_detach.0 comp-sys-catman .cat +./usr/share/man/cat9/uao_reference.0 comp-sys-catman .cat +./usr/share/man/cat9/ubc.0 comp-sys-catman .cat +./usr/share/man/cat9/ubc_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/ubc_release.0 comp-sys-catman .cat +./usr/share/man/cat9/ubc_uiomove.0 comp-sys-catman .cat +./usr/share/man/cat9/ucas.0 comp-sys-catman .cat +./usr/share/man/cat9/ucom.0 comp-sys-catman .cat +./usr/share/man/cat9/uiomove.0 comp-sys-catman .cat +./usr/share/man/cat9/ungetnewvnode.0 comp-sys-catman .cat +./usr/share/man/cat9/untimeout.0 comp-sys-catman .cat +./usr/share/man/cat9/uprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/usbd_status.0 comp-sys-catman .cat +./usr/share/man/cat9/usbdi.0 comp-sys-catman .cat +./usr/share/man/cat9/useracc.0 comp-obsolete obsolete +./usr/share/man/cat9/userret.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_chgkprot.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_coredump.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_deallocate.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_fault.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_fork.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_grow.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_init.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_init_limits.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_io.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_kernacc.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_km.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_km_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_km_alloc1.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_km_free.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_km_free_wakeup.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_km_kmemalloc.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_km_suballoc.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_km_valloc.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_km_valloc_wait.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_km_zalloc.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_loan.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_map.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_map_checkprot.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_map_pageable.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_map_protect.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_meter.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_page_physload.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_pagealloc.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_pagefree.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_pageout.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_pagerealloc.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_pglistalloc.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_pglistfree.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_scheduler.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_setpagesize.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_swap_init.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_swapin.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_sysctl.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_unloan.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_useracc.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_vnp_setsize.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_vnp_sync.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_vnp_terminate.0 comp-obsolete obsolete +./usr/share/man/cat9/uvm_vslock.0 comp-sys-catman .cat +./usr/share/man/cat9/uvm_vsunlock.0 comp-sys-catman .cat +./usr/share/man/cat9/uvmspace_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/uvmspace_exec.0 comp-sys-catman .cat +./usr/share/man/cat9/uvmspace_fork.0 comp-sys-catman .cat +./usr/share/man/cat9/uvmspace_free.0 comp-sys-catman .cat +./usr/share/man/cat9/uvmspace_share.0 comp-sys-catman .cat +./usr/share/man/cat9/uvmspace_unshare.0 comp-sys-catman .cat +./usr/share/man/cat9/uvn_attach.0 comp-obsolete obsolete +./usr/share/man/cat9/uvn_findpages.0 comp-sys-catman .cat +./usr/share/man/cat9/vaccess.0 comp-sys-catman .cat +./usr/share/man/cat9/vattr.0 comp-sys-catman .cat +./usr/share/man/cat9/vattr_null.0 comp-sys-catman .cat +./usr/share/man/cat9/vcons.0 comp-sys-catman .cat +./usr/share/man/cat9/vcount.0 comp-obsolete obsolete +./usr/share/man/cat9/vdevgone.0 comp-sys-catman .cat +./usr/share/man/cat9/veriexec.0 comp-sys-catman .cat +./usr/share/man/cat9/vfinddev.0 comp-sys-catman .cat +./usr/share/man/cat9/vflush.0 comp-sys-catman .cat +./usr/share/man/cat9/vflushbuf.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_attach.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_busy.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_detach.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_export.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_export_lookup.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_getnewfsid.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_getopsbyname.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_getvfs.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_hooks.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_hooks_unmount.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_mountalloc.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_mountedon.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_mountroot.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_reinit.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_resume.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_rootmountalloc.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_setpublicfs.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_showexport.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_shutdown.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_suspend.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_sysctl.0 comp-obsolete obsolete +./usr/share/man/cat9/vfs_unbusy.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_unmountall.0 comp-sys-catman .cat +./usr/share/man/cat9/vfs_write_resume.0 comp-obsolete obsolete +./usr/share/man/cat9/vfs_write_suspend.0 comp-obsolete obsolete +./usr/share/man/cat9/vfsops.0 comp-sys-catman .cat +./usr/share/man/cat9/vfssubr.0 comp-sys-catman .cat +./usr/share/man/cat9/vget.0 comp-sys-catman .cat +./usr/share/man/cat9/vgone.0 comp-sys-catman .cat +./usr/share/man/cat9/vgonel.0 comp-sys-catman .cat +./usr/share/man/cat9/vhold.0 comp-sys-catman .cat +./usr/share/man/cat9/video.0 comp-sys-catman .cat +./usr/share/man/cat9/vinvalbuf.0 comp-sys-catman .cat +./usr/share/man/cat9/vme.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_dmamap_create.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_dmamap_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_dmamem_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_dmamem_free.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_intr_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_intr_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_intr_evcnt.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_intr_map.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_probe.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_space_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_space_free.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_space_get.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_space_map.0 comp-sys-catman .cat +./usr/share/man/cat9/vme_space_unmap.0 comp-sys-catman .cat +./usr/share/man/cat9/vmem.0 comp-sys-catman .cat +./usr/share/man/cat9/vmem_alloc.0 comp-sys-catman .cat +./usr/share/man/cat9/vmem_create.0 comp-sys-catman .cat +./usr/share/man/cat9/vmem_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/vmem_free.0 comp-sys-catman .cat +./usr/share/man/cat9/vmem_xalloc.0 comp-sys-catman .cat +./usr/share/man/cat9/vmem_xfree.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_bwrite.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_close.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_closefile.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_cow_disestablish.0 comp-obsolete obsolete +./usr/share/man/cat9/vn_cow_establish.0 comp-obsolete obsolete +./usr/share/man/cat9/vn_default_error.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_fcntl.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_finished_write.0 comp-obsolete obsolete +./usr/share/man/cat9/vn_ioctl.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_isunder.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_lock.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_markexec.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_marktext.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_open.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_poll.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_rdwr.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_read.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_restorerecurse.0 comp-sys-catman obsolete +./usr/share/man/cat9/vn_setrecurse.0 comp-sys-catman obsolete +./usr/share/man/cat9/vn_start_write.0 comp-obsolete obsolete +./usr/share/man/cat9/vn_stat.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_statfile.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_write.0 comp-sys-catman .cat +./usr/share/man/cat9/vn_writechk.0 comp-sys-catman .cat +./usr/share/man/cat9/vnfileops.0 comp-sys-catman .cat +./usr/share/man/cat9/vnode.0 comp-sys-catman .cat +./usr/share/man/cat9/vnodeops.0 comp-sys-catman .cat +./usr/share/man/cat9/vnsubr.0 comp-sys-catman .cat +./usr/share/man/cat9/voidop.0 comp-sys-catman .cat +./usr/share/man/cat9/vpanic.0 comp-sys-catman .cat +./usr/share/man/cat9/vprint.0 comp-sys-catman .cat +./usr/share/man/cat9/vprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/vput.0 comp-sys-catman .cat +./usr/share/man/cat9/vrecycle.0 comp-sys-catman .cat +./usr/share/man/cat9/vref.0 comp-sys-catman .cat +./usr/share/man/cat9/vrele.0 comp-sys-catman .cat +./usr/share/man/cat9/vrele_async.0 comp-sys-catman .cat +./usr/share/man/cat9/vslock.0 comp-obsolete obsolete +./usr/share/man/cat9/vsnprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/vsprintf.0 comp-sys-catman .cat +./usr/share/man/cat9/vsunlock.0 comp-obsolete obsolete +./usr/share/man/cat9/vtruncbuf.0 comp-sys-catman .cat +./usr/share/man/cat9/vwakeup.0 comp-sys-catman .cat +./usr/share/man/cat9/wakeup.0 comp-sys-catman .cat +./usr/share/man/cat9/wdc.0 comp-sys-catman .cat +./usr/share/man/cat9/workqueue.0 comp-sys-catman .cat +./usr/share/man/cat9/workqueue_create.0 comp-sys-catman .cat +./usr/share/man/cat9/workqueue_destroy.0 comp-sys-catman .cat +./usr/share/man/cat9/workqueue_enqueue.0 comp-sys-catman .cat +./usr/share/man/cat9/writedisklabel.0 comp-sys-catman .cat +./usr/share/man/cat9/wscons.0 comp-sys-catman .cat +./usr/share/man/cat9/wsdisplay.0 comp-sys-catman .cat +./usr/share/man/cat9/wsdisplay_cnattach.0 comp-sys-catman .cat +./usr/share/man/cat9/wsdisplay_switchtoconsole.0 comp-sys-catman .cat +./usr/share/man/cat9/wsdisplaydevprint.0 comp-sys-catman .cat +./usr/share/man/cat9/wsemuldisplaydevprint.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_add.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_enum.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_find.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_getflg.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_init.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_lock.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_map_unichar.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_matches.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_remove.0 comp-sys-catman .cat +./usr/share/man/cat9/wsfont_unlock.0 comp-sys-catman .cat +./usr/share/man/cat9/wskbd.0 comp-sys-catman .cat +./usr/share/man/cat9/wskbd_cnattach.0 comp-sys-catman .cat +./usr/share/man/cat9/wskbd_cndetach.0 comp-sys-catman .cat +./usr/share/man/cat9/wskbd_input.0 comp-sys-catman .cat +./usr/share/man/cat9/wskbd_rawinput.0 comp-sys-catman .cat +./usr/share/man/cat9/wskbddevprint.0 comp-sys-catman .cat +./usr/share/man/cat9/wsmouse.0 comp-sys-catman .cat +./usr/share/man/cat9/wsmouse_input.0 comp-sys-catman .cat +./usr/share/man/cat9/wsmousedevprint.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/msr.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/nmi.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/nmi_disestablish.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/nmi_establish.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/rdmsr.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/rdmsr_safe.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/rdtsc.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/tsc.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/tsc_sync_ap.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/tsc_sync_bp.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/tsc_sync_drift.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/tsc_tc_init.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/wrmsr.0 comp-sys-catman .cat +./usr/share/man/cat9/x86/x86_msr_xcall.0 comp-sys-catman .cat +./usr/share/man/cat9/xc_broadcast.0 comp-sys-catman .cat +./usr/share/man/cat9/xc_unicast.0 comp-sys-catman .cat +./usr/share/man/cat9/xc_wait.0 comp-sys-catman .cat +./usr/share/man/cat9/xcall.0 comp-sys-catman .cat +./usr/share/man/cat9/yield.0 comp-sys-catman .cat +./usr/share/man/html1/addr2line.html comp-debug-htmlman binutils,html +./usr/share/man/html1/ar.html comp-util-htmlman binutils,html +./usr/share/man/html1/as.html comp-util-htmlman binutils,html +./usr/share/man/html1/asa.html comp-fortran-htmlman html +./usr/share/man/html1/c++.html comp-cxx-htmlman gcccmds,html +./usr/share/man/html1/c++filt.html comp-cxx-htmlman binutils,html +./usr/share/man/html1/c89.html comp-c-htmlman html +./usr/share/man/html1/c99.html comp-c-htmlman html +./usr/share/man/html1/cc.html comp-c-htmlman gcccmds,html +./usr/share/man/html1/cccp.html comp-util-htmlman gcccmds,html +./usr/share/man/html1/config.html comp-util-htmlman html +./usr/share/man/html1/crunchgen.html comp-c-htmlman html +./usr/share/man/html1/crunchide.html comp-c-htmlman html +./usr/share/man/html1/cvs.html comp-cvs-htmlman cvs,html +./usr/share/man/html1/elf2aout.html comp-sysutil-htmlman html +./usr/share/man/html1/elf2ecoff.html comp-sysutil-htmlman html +./usr/share/man/html1/elfedit.html comp-util-htmlman binutils,html +./usr/share/man/html1/f77.html comp-fortran-htmlman gcc=3,gcccmds,html +./usr/share/man/html1/fgen.html comp-util-htmlman html +./usr/share/man/html1/flex.html comp-c-htmlman html +./usr/share/man/html1/fort77.html comp-fortran-htmlman gcc=3,gcccmds,html +./usr/share/man/html1/fpr.html comp-fortran-htmlman html +./usr/share/man/html1/g++.html comp-cxx-htmlman gcccmds,html +./usr/share/man/html1/g77.html comp-fortran-htmlman gcc=3,gcccmds,html +./usr/share/man/html1/gcc.html comp-c-htmlman gcccmds,html +./usr/share/man/html1/gcore.html comp-debug-htmlman html +./usr/share/man/html1/gcov.html comp-debug-htmlman gcccmds,html +./usr/share/man/html1/gdb.html comp-debug-htmlman gdb,html +./usr/share/man/html1/genassym.html comp-util-htmlman html +./usr/share/man/html1/gprof.html comp-debug-htmlman binutils,html +./usr/share/man/html1/ld.html comp-util-htmlman binutils,html +./usr/share/man/html1/lex.html comp-c-htmlman html +./usr/share/man/html1/lint.html comp-c-htmlman html +./usr/share/man/html1/lorder.html comp-util-htmlman html +./usr/share/man/html1/luac.html comp-util-htmlman html +./usr/share/man/html1/menuc.html comp-c-htmlman html +./usr/share/man/html1/mkstr.html comp-c-htmlman html +./usr/share/man/html1/msgc.html comp-c-htmlman html +./usr/share/man/html1/nbperf.html comp-util-htmlman html +./usr/share/man/html1/nm.html comp-util-htmlman binutils,html +./usr/share/man/html1/objcopy.html comp-util-htmlman binutils,html +./usr/share/man/html1/objdump.html comp-util-htmlman binutils,html +./usr/share/man/html1/openssl_ocsp.html comp-c-htmlman crypto,html +./usr/share/man/html1/ranlib.html comp-util-htmlman binutils,html +./usr/share/man/html1/rcs2log.html comp-cvs-htmlman cvs,html +./usr/share/man/html1/readelf.html comp-util-htmlman binutils,html +./usr/share/man/html1/rpcgen.html comp-c-htmlman html +./usr/share/man/html1/size.html comp-util-htmlman binutils,html +./usr/share/man/html1/strings.html comp-util-htmlman binutils,html +./usr/share/man/html1/strip.html comp-util-htmlman binutils,html +./usr/share/man/html1/tsort.html comp-c-htmlman html +./usr/share/man/html1/unifdef.html comp-c-htmlman html +./usr/share/man/html1/unifdefall.html comp-c-htmlman html +./usr/share/man/html1/xstr.html comp-c-htmlman html +./usr/share/man/html1/yacc.html comp-c-htmlman html +./usr/share/man/html2/_Exit.html comp-c-htmlman html +./usr/share/man/html2/__clone.html comp-c-htmlman html +./usr/share/man/html2/__quotactl.html comp-c-htmlman html +./usr/share/man/html2/__syscall.html comp-c-htmlman html +./usr/share/man/html2/_exit.html comp-c-htmlman html +./usr/share/man/html2/_lwp_continue.html comp-c-htmlman html +./usr/share/man/html2/_lwp_create.html comp-c-htmlman html +./usr/share/man/html2/_lwp_ctl.html comp-c-htmlman html +./usr/share/man/html2/_lwp_detach.html comp-c-htmlman html +./usr/share/man/html2/_lwp_exit.html comp-c-htmlman html +./usr/share/man/html2/_lwp_getname.html comp-c-htmlman html +./usr/share/man/html2/_lwp_getprivate.html comp-c-htmlman html +./usr/share/man/html2/_lwp_kill.html comp-c-htmlman html +./usr/share/man/html2/_lwp_park.html comp-c-htmlman html +./usr/share/man/html2/_lwp_self.html comp-c-htmlman html +./usr/share/man/html2/_lwp_setname.html comp-c-htmlman html +./usr/share/man/html2/_lwp_setprivate.html comp-c-htmlman html +./usr/share/man/html2/_lwp_suspend.html comp-c-htmlman html +./usr/share/man/html2/_lwp_unpark.html comp-c-htmlman html +./usr/share/man/html2/_lwp_unpark_all.html comp-c-htmlman html +./usr/share/man/html2/_lwp_wait.html comp-c-htmlman html +./usr/share/man/html2/_lwp_wakeup.html comp-c-htmlman html +./usr/share/man/html2/accept.html comp-c-htmlman html +./usr/share/man/html2/access.html comp-c-htmlman html +./usr/share/man/html2/acct.html comp-c-htmlman html +./usr/share/man/html2/adjtime.html comp-c-htmlman html +./usr/share/man/html2/arm_drain_writebuf.html comp-c-htmlman html +./usr/share/man/html2/arm_sync_icache.html comp-c-htmlman html +./usr/share/man/html2/bind.html comp-c-htmlman html +./usr/share/man/html2/brk.html comp-c-htmlman html +./usr/share/man/html2/chdir.html comp-c-htmlman html +./usr/share/man/html2/chflags.html comp-c-htmlman html +./usr/share/man/html2/chmod.html comp-c-htmlman html +./usr/share/man/html2/chown.html comp-c-htmlman html +./usr/share/man/html2/chroot.html comp-c-htmlman html +./usr/share/man/html2/clock_getres.html comp-c-htmlman html +./usr/share/man/html2/clock_gettime.html comp-c-htmlman html +./usr/share/man/html2/clock_nanosleep.html comp-c-htmlman html +./usr/share/man/html2/clock_settime.html comp-c-htmlman html +./usr/share/man/html2/clone.html comp-c-htmlman html +./usr/share/man/html2/close.html comp-c-htmlman html +./usr/share/man/html2/connect.html comp-c-htmlman html +./usr/share/man/html2/dup.html comp-c-htmlman html +./usr/share/man/html2/dup2.html comp-c-htmlman html +./usr/share/man/html2/dup3.html comp-c-htmlman html +./usr/share/man/html2/errno.html comp-c-htmlman html +./usr/share/man/html2/execve.html comp-c-htmlman html +./usr/share/man/html2/extattr_delete_fd.html comp-c-htmlman html +./usr/share/man/html2/extattr_delete_file.html comp-c-htmlman html +./usr/share/man/html2/extattr_delete_link.html comp-c-htmlman html +./usr/share/man/html2/extattr_get_fd.html comp-c-htmlman html +./usr/share/man/html2/extattr_get_file.html comp-c-htmlman html +./usr/share/man/html2/extattr_get_link.html comp-c-htmlman html +./usr/share/man/html2/extattr_list_fd.html comp-c-htmlman html +./usr/share/man/html2/extattr_list_file.html comp-c-htmlman html +./usr/share/man/html2/extattr_list_link.html comp-c-htmlman html +./usr/share/man/html2/extattr_set_fd.html comp-c-htmlman html +./usr/share/man/html2/extattr_set_file.html comp-c-htmlman html +./usr/share/man/html2/extattr_set_link.html comp-c-htmlman html +./usr/share/man/html2/fchdir.html comp-c-htmlman html +./usr/share/man/html2/fchflags.html comp-c-htmlman html +./usr/share/man/html2/fchmod.html comp-c-htmlman html +./usr/share/man/html2/fchown.html comp-c-htmlman html +./usr/share/man/html2/fchroot.html comp-c-htmlman html +./usr/share/man/html2/fcntl.html comp-c-htmlman html +./usr/share/man/html2/fdatasync.html comp-c-htmlman html +./usr/share/man/html2/fhopen.html comp-c-htmlman html +./usr/share/man/html2/fhstat.html comp-c-htmlman html +./usr/share/man/html2/fhstatvfs.html comp-c-htmlman html +./usr/share/man/html2/fhstatvfs1.html comp-c-htmlman html +./usr/share/man/html2/fktrace.html comp-c-htmlman html +./usr/share/man/html2/flock.html comp-c-htmlman html +./usr/share/man/html2/fork.html comp-c-htmlman html +./usr/share/man/html2/fpathconf.html comp-c-htmlman html +./usr/share/man/html2/fstat.html comp-c-htmlman html +./usr/share/man/html2/fstatvfs.html comp-c-htmlman html +./usr/share/man/html2/fstatvfs1.html comp-c-htmlman html +./usr/share/man/html2/fsync.html comp-c-htmlman html +./usr/share/man/html2/fsync_range.html comp-c-htmlman html +./usr/share/man/html2/ftruncate.html comp-c-htmlman html +./usr/share/man/html2/futimens.html comp-c-htmlman html +./usr/share/man/html2/futimes.html comp-c-htmlman html +./usr/share/man/html2/getcontext.html comp-c-htmlman html +./usr/share/man/html2/getdents.html comp-c-htmlman html +./usr/share/man/html2/getegid.html comp-c-htmlman html +./usr/share/man/html2/geteuid.html comp-c-htmlman html +./usr/share/man/html2/getfh.html comp-c-htmlman html +./usr/share/man/html2/getgid.html comp-c-htmlman html +./usr/share/man/html2/getgroups.html comp-c-htmlman html +./usr/share/man/html2/getitimer.html comp-c-htmlman html +./usr/share/man/html2/getlogin.html comp-c-htmlman html +./usr/share/man/html2/getlogin_r.html comp-c-htmlman html +./usr/share/man/html2/getpeername.html comp-c-htmlman html +./usr/share/man/html2/getpgid.html comp-c-htmlman html +./usr/share/man/html2/getpgrp.html comp-c-htmlman html +./usr/share/man/html2/getpid.html comp-c-htmlman html +./usr/share/man/html2/getppid.html comp-c-htmlman html +./usr/share/man/html2/getpriority.html comp-c-htmlman html +./usr/share/man/html2/getrlimit.html comp-c-htmlman html +./usr/share/man/html2/getrusage.html comp-c-htmlman html +./usr/share/man/html2/getsid.html comp-c-htmlman html +./usr/share/man/html2/getsockname.html comp-c-htmlman html +./usr/share/man/html2/getsockopt.html comp-c-htmlman html +./usr/share/man/html2/gettimeofday.html comp-c-htmlman html +./usr/share/man/html2/getuid.html comp-c-htmlman html +./usr/share/man/html2/getvfsstat.html comp-c-htmlman html +./usr/share/man/html2/i386_get_ldt.html comp-c-htmlman html +./usr/share/man/html2/i386_get_mtrr.html comp-c-htmlman html +./usr/share/man/html2/i386_iopl.html comp-c-htmlman html +./usr/share/man/html2/i386_pmc_info.html comp-c-htmlman html +./usr/share/man/html2/i386_pmc_read.html comp-c-htmlman html +./usr/share/man/html2/i386_pmc_startstop.html comp-c-htmlman html +./usr/share/man/html2/i386_set_ldt.html comp-c-htmlman html +./usr/share/man/html2/i386_set_mtrr.html comp-c-htmlman html +./usr/share/man/html2/i386_vm86.html comp-c-htmlman html +./usr/share/man/html2/intro.html comp-c-htmlman html +./usr/share/man/html2/ioctl.html comp-c-htmlman html +./usr/share/man/html2/issetugid.html comp-c-htmlman html +./usr/share/man/html2/kevent.html comp-c-htmlman html +./usr/share/man/html2/kill.html comp-c-htmlman html +./usr/share/man/html2/kqueue.html comp-c-htmlman html +./usr/share/man/html2/ktrace.html comp-c-htmlman html +./usr/share/man/html2/lchflags.html comp-c-htmlman html +./usr/share/man/html2/lchmod.html comp-c-htmlman html +./usr/share/man/html2/lchown.html comp-c-htmlman html +./usr/share/man/html2/lfs_bmapv.html comp-c-htmlman html +./usr/share/man/html2/lfs_markv.html comp-c-htmlman html +./usr/share/man/html2/lfs_segclean.html comp-c-htmlman html +./usr/share/man/html2/lfs_segwait.html comp-c-htmlman html +./usr/share/man/html2/link.html comp-c-htmlman html +./usr/share/man/html2/linkat.html comp-c-htmlman html +./usr/share/man/html2/listen.html comp-c-htmlman html +./usr/share/man/html2/lseek.html comp-c-htmlman html +./usr/share/man/html2/lstat.html comp-c-htmlman html +./usr/share/man/html2/lutimes.html comp-c-htmlman html +./usr/share/man/html2/m68k_sync_icache.html comp-c-htmlman html +./usr/share/man/html2/madvise.html comp-c-htmlman html +./usr/share/man/html2/mincore.html comp-c-htmlman html +./usr/share/man/html2/minherit.html comp-c-htmlman html +./usr/share/man/html2/mkdir.html comp-c-htmlman html +./usr/share/man/html2/mkfifo.html comp-c-htmlman html +./usr/share/man/html2/mknod.html comp-c-htmlman html +./usr/share/man/html2/mlock.html comp-c-htmlman html +./usr/share/man/html2/mlockall.html comp-c-htmlman html +./usr/share/man/html2/mmap.html comp-c-htmlman html +./usr/share/man/html2/modctl.html comp-c-htmlman html +./usr/share/man/html2/mount.html comp-c-htmlman html +./usr/share/man/html2/mprotect.html comp-c-htmlman html +./usr/share/man/html2/mremap.html comp-c-htmlman html +./usr/share/man/html2/msgctl.html comp-c-htmlman html +./usr/share/man/html2/msgget.html comp-c-htmlman html +./usr/share/man/html2/msgrcv.html comp-c-htmlman html +./usr/share/man/html2/msgsnd.html comp-c-htmlman html +./usr/share/man/html2/msync.html comp-c-htmlman html +./usr/share/man/html2/munlock.html comp-c-htmlman html +./usr/share/man/html2/munlockall.html comp-c-htmlman html +./usr/share/man/html2/munmap.html comp-c-htmlman html +./usr/share/man/html2/nanosleep.html comp-c-htmlman html +./usr/share/man/html2/nfssvc.html comp-c-htmlman html +./usr/share/man/html2/ntp_adjtime.html comp-c-htmlman html +./usr/share/man/html2/ntp_gettime.html comp-c-htmlman html +./usr/share/man/html2/open.html comp-c-htmlman html +./usr/share/man/html2/paccept.html comp-c-htmlman html +./usr/share/man/html2/pathconf.html comp-c-htmlman html +./usr/share/man/html2/pipe.html comp-c-htmlman html +./usr/share/man/html2/pipe2.html comp-c-htmlman html +./usr/share/man/html2/pmc_control.html comp-c-htmlman html +./usr/share/man/html2/pmc_get_info.html comp-c-htmlman html +./usr/share/man/html2/poll.html comp-c-htmlman html +./usr/share/man/html2/pollts.html comp-c-htmlman html +./usr/share/man/html2/posix_fadvise.html comp-c-htmlman html +./usr/share/man/html2/posix_madvise.html comp-c-htmlman html +./usr/share/man/html2/pread.html comp-c-htmlman html +./usr/share/man/html2/preadv.html comp-c-htmlman html +./usr/share/man/html2/profil.html comp-c-htmlman html +./usr/share/man/html2/pselect.html comp-c-htmlman html +./usr/share/man/html2/ptrace.html comp-c-htmlman html +./usr/share/man/html2/pwrite.html comp-c-htmlman html +./usr/share/man/html2/pwritev.html comp-c-htmlman html +./usr/share/man/html2/quotactl.html comp-obsolete obsolete +./usr/share/man/html2/rasctl.html comp-c-htmlman html +./usr/share/man/html2/read.html comp-c-htmlman html +./usr/share/man/html2/readlink.html comp-c-htmlman html +./usr/share/man/html2/readv.html comp-c-htmlman html +./usr/share/man/html2/reboot.html comp-c-htmlman html +./usr/share/man/html2/recv.html comp-c-htmlman html +./usr/share/man/html2/recvfrom.html comp-c-htmlman html +./usr/share/man/html2/recvmmsg.html comp-c-htmlman html +./usr/share/man/html2/recvmsg.html comp-c-htmlman html +./usr/share/man/html2/rename.html comp-c-htmlman html +./usr/share/man/html2/revoke.html comp-c-htmlman html +./usr/share/man/html2/rmdir.html comp-c-htmlman html +./usr/share/man/html2/sbrk.html comp-c-htmlman html +./usr/share/man/html2/seek.html comp-c-htmlman html +./usr/share/man/html2/select.html comp-c-htmlman html +./usr/share/man/html2/semctl.html comp-c-htmlman html +./usr/share/man/html2/semget.html comp-c-htmlman html +./usr/share/man/html2/semop.html comp-c-htmlman html +./usr/share/man/html2/send.html comp-c-htmlman html +./usr/share/man/html2/sendmmsg.html comp-c-htmlman html +./usr/share/man/html2/sendmsg.html comp-c-htmlman html +./usr/share/man/html2/sendto.html comp-c-htmlman html +./usr/share/man/html2/setcontext.html comp-c-htmlman html +./usr/share/man/html2/setegid.html comp-c-htmlman html +./usr/share/man/html2/seteuid.html comp-c-htmlman html +./usr/share/man/html2/setgid.html comp-c-htmlman html +./usr/share/man/html2/setgroups.html comp-c-htmlman html +./usr/share/man/html2/setitimer.html comp-c-htmlman html +./usr/share/man/html2/setlogin.html comp-c-htmlman html +./usr/share/man/html2/setpgid.html comp-c-htmlman html +./usr/share/man/html2/setpgrp.html comp-c-htmlman html +./usr/share/man/html2/setpriority.html comp-c-htmlman html +./usr/share/man/html2/setregid.html comp-c-htmlman html +./usr/share/man/html2/setreuid.html comp-c-htmlman html +./usr/share/man/html2/setrlimit.html comp-c-htmlman html +./usr/share/man/html2/setsid.html comp-c-htmlman html +./usr/share/man/html2/setsockopt.html comp-c-htmlman html +./usr/share/man/html2/settimeofday.html comp-c-htmlman html +./usr/share/man/html2/setuid.html comp-c-htmlman html +./usr/share/man/html2/shmat.html comp-c-htmlman html +./usr/share/man/html2/shmctl.html comp-c-htmlman html +./usr/share/man/html2/shmdt.html comp-c-htmlman html +./usr/share/man/html2/shmget.html comp-c-htmlman html +./usr/share/man/html2/shutdown.html comp-c-htmlman html +./usr/share/man/html2/sigaction.html comp-c-htmlman html +./usr/share/man/html2/sigaltstack.html comp-c-htmlman html +./usr/share/man/html2/siginfo.html comp-c-htmlman html +./usr/share/man/html2/sigpending.html comp-c-htmlman html +./usr/share/man/html2/sigprocmask.html comp-c-htmlman html +./usr/share/man/html2/sigqueue.html comp-c-htmlman html +./usr/share/man/html2/sigqueueinfo.html comp-c-htmlman html +./usr/share/man/html2/sigstack.html comp-c-htmlman html +./usr/share/man/html2/sigsuspend.html comp-c-htmlman html +./usr/share/man/html2/sigtimedwait.html comp-c-htmlman html +./usr/share/man/html2/sigwait.html comp-c-htmlman html +./usr/share/man/html2/sigwaitinfo.html comp-c-htmlman html +./usr/share/man/html2/socket.html comp-c-htmlman html +./usr/share/man/html2/socketpair.html comp-c-htmlman html +./usr/share/man/html2/stat.html comp-c-htmlman html +./usr/share/man/html2/statvfs.html comp-c-htmlman html +./usr/share/man/html2/statvfs1.html comp-c-htmlman html +./usr/share/man/html2/swapctl.html comp-c-htmlman html +./usr/share/man/html2/symlink.html comp-c-htmlman html +./usr/share/man/html2/sync.html comp-c-htmlman html +./usr/share/man/html2/sysarch.html comp-c-htmlman html +./usr/share/man/html2/syscall.html comp-c-htmlman html +./usr/share/man/html2/timer_create.html comp-c-htmlman html +./usr/share/man/html2/timer_delete.html comp-c-htmlman html +./usr/share/man/html2/timer_getoverrun.html comp-c-htmlman html +./usr/share/man/html2/timer_gettime.html comp-c-htmlman html +./usr/share/man/html2/timer_settime.html comp-c-htmlman html +./usr/share/man/html2/truncate.html comp-c-htmlman html +./usr/share/man/html2/ucontext.html comp-c-htmlman html +./usr/share/man/html2/umask.html comp-c-htmlman html +./usr/share/man/html2/undelete.html comp-c-htmlman html +./usr/share/man/html2/unlink.html comp-c-htmlman html +./usr/share/man/html2/unmount.html comp-c-htmlman html +./usr/share/man/html2/utimensat.html comp-c-htmlman html +./usr/share/man/html2/utimes.html comp-c-htmlman html +./usr/share/man/html2/utrace.html comp-c-htmlman html +./usr/share/man/html2/uuidgen.html comp-c-htmlman html +./usr/share/man/html2/vfork.html comp-c-htmlman html +./usr/share/man/html2/wait.html comp-c-htmlman html +./usr/share/man/html2/wait3.html comp-c-htmlman html +./usr/share/man/html2/wait4.html comp-c-htmlman html +./usr/share/man/html2/waitpid.html comp-c-htmlman html +./usr/share/man/html2/write.html comp-c-htmlman html +./usr/share/man/html2/writev.html comp-c-htmlman html +./usr/share/man/html2/x86_64_get_mtrr.html comp-c-htmlman html +./usr/share/man/html2/x86_64_iopl.html comp-c-htmlman html +./usr/share/man/html2/x86_64_set_mtrr.html comp-c-htmlman html +./usr/share/man/html3/ASN1_OBJECT_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/ASN1_STRING_length.html comp-c-htmlman crypto,html +./usr/share/man/html3/ASN1_STRING_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/ASN1_STRING_print_ex.html comp-c-htmlman crypto,html +./usr/share/man/html3/ASN1_generate_nconf.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_ctrl.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_f_base64.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_f_buffer.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_f_cipher.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_f_md.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_f_null.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_f_ssl.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_find_type.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_push.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_read.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_s_accept.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_s_bio.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_s_connect.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_s_fd.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_s_file.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_s_mem.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_s_null.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_s_socket.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_set_callback.html comp-c-htmlman crypto,html +./usr/share/man/html3/BIO_should_retry.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_BLINDING_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_CTX_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_CTX_start.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_add.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_add_word.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_bn2bin.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_cmp.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_copy.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_generate_prime.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_mod_inverse.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_mod_mul_montgomery.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_mod_mul_reciprocal.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_num_bytes.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_rand.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_set_bit.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_swap.html comp-c-htmlman crypto,html +./usr/share/man/html3/BN_zero.html comp-c-htmlman crypto,html +./usr/share/man/html3/CIRCLEQ_EMPTY.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_ENTRY.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_FIRST.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_FOREACH.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_FOREACH_REVERSE.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_HEAD.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_HEAD_INITIALIZER.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_INIT.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_INSERT_AFTER.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_INSERT_BEFORE.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_INSERT_HEAD.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_INSERT_TAIL.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_LAST.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_LOOP_NEXT.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_LOOP_PREV.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_NEXT.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_PREV.html comp-c-htmlman html +./usr/share/man/html3/CIRCLEQ_REMOVE.html comp-c-htmlman html +./usr/share/man/html3/CMSG_DATA.html comp-c-htmlman html +./usr/share/man/html3/CMSG_FIRSTHDR.html comp-c-htmlman html +./usr/share/man/html3/CMSG_LEN.html comp-c-htmlman html +./usr/share/man/html3/CMSG_NXTHDR.html comp-c-htmlman html +./usr/share/man/html3/CMSG_SPACE.html comp-c-htmlman html +./usr/share/man/html3/CONF_modules_free.html comp-c-htmlman crypto,html +./usr/share/man/html3/CONF_modules_load_file.html comp-c-man crypto,html +./usr/share/man/html3/CRYPTO_set_ex_data.html comp-c-htmlman crypto,html +./usr/share/man/html3/DH_generate_key.html comp-c-htmlman crypto,html +./usr/share/man/html3/DH_generate_parameters.html comp-c-htmlman crypto,html +./usr/share/man/html3/DH_get_ex_new_index.html comp-c-htmlman crypto,html +./usr/share/man/html3/DH_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/DH_set_method.html comp-c-htmlman crypto,html +./usr/share/man/html3/DH_size.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_SIG_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_do_sign.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_dup_DH.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_generate_key.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_generate_parameters.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_get_ex_new_index.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_set_method.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_sign.html comp-c-htmlman crypto,html +./usr/share/man/html3/DSA_size.html comp-c-htmlman crypto,html +./usr/share/man/html3/DTTOIF.html comp-c-htmlman html +./usr/share/man/html3/ERR_GET_LIB.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_clear_error.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_error_string.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_get_error.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_load_crypto_strings.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_load_strings.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_print_errors.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_put_error.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_remove_state.html comp-c-htmlman crypto,html +./usr/share/man/html3/ERR_set_mark.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_BytesToKey.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_DigestInit.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_EncryptInit.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_OpenInit.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_PKEY_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_PKEY_set1_RSA.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_SealInit.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_SignInit.html comp-c-htmlman crypto,html +./usr/share/man/html3/EVP_VerifyInit.html comp-c-htmlman crypto,html +./usr/share/man/html3/GCQ_DEQUEUED_FIRST.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_FIRST_COND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_FIRST_COND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_FIRST_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_LAST.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_LAST_COND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_LAST_COND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_LAST_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_NEXT.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_NEXT_COND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_NEXT_COND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_NEXT_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_PREV.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_PREV_COND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_PREV_COND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_DEQUEUED_PREV_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FIND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FIND_REV.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FIND_REV_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FIND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_DEQUEUED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_DEQUEUED_REV.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_DEQUEUED_REV_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_DEQUEUED_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_NVAR.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_NVAR_REV.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_NVAR_REV_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_NVAR_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_REV.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_REV_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_RO.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_RO_REV.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_RO_REV_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_RO_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_FOREACH_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_FIRST.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_FIRST_COND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_FIRST_COND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_FIRST_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_LAST.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_LAST_COND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_LAST_COND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_LAST_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_NEXT.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_NEXT_COND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_NEXT_COND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_NEXT_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_PREV.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_PREV_COND.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_PREV_COND_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_GOT_PREV_TYPED.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_INIT.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_INIT_HEAD.html comp-sys-htmlman html +./usr/share/man/html3/GCQ_ITEM.html comp-sys-htmlman html +./usr/share/man/html3/IFTODT.html comp-c-htmlman html +./usr/share/man/html3/LIST_EMPTY.html comp-c-htmlman html +./usr/share/man/html3/LIST_ENTRY.html comp-c-htmlman html +./usr/share/man/html3/LIST_FIRST.html comp-c-htmlman html +./usr/share/man/html3/LIST_FOREACH.html comp-c-htmlman html +./usr/share/man/html3/LIST_HEAD.html comp-c-htmlman html +./usr/share/man/html3/LIST_HEAD_INITIALIZER.html comp-c-htmlman html +./usr/share/man/html3/LIST_INIT.html comp-c-htmlman html +./usr/share/man/html3/LIST_INSERT_AFTER.html comp-c-htmlman html +./usr/share/man/html3/LIST_INSERT_BEFORE.html comp-c-htmlman html +./usr/share/man/html3/LIST_INSERT_HEAD.html comp-c-htmlman html +./usr/share/man/html3/LIST_NEXT.html comp-c-htmlman html +./usr/share/man/html3/LIST_REMOVE.html comp-c-htmlman html +./usr/share/man/html3/MAX.html comp-c-htmlman html +./usr/share/man/html3/MD2Data.html comp-c-htmlman html +./usr/share/man/html3/MD2End.html comp-c-htmlman html +./usr/share/man/html3/MD2File.html comp-c-htmlman html +./usr/share/man/html3/MD2FileChunk.html comp-c-htmlman html +./usr/share/man/html3/MD2Final.html comp-c-htmlman html +./usr/share/man/html3/MD2Init.html comp-c-htmlman html +./usr/share/man/html3/MD2Transform.html comp-c-htmlman html +./usr/share/man/html3/MD2Update.html comp-c-htmlman html +./usr/share/man/html3/MD4Data.html comp-c-htmlman html +./usr/share/man/html3/MD4End.html comp-c-htmlman html +./usr/share/man/html3/MD4File.html comp-c-htmlman html +./usr/share/man/html3/MD4Final.html comp-c-htmlman html +./usr/share/man/html3/MD4Init.html comp-c-htmlman html +./usr/share/man/html3/MD4Update.html comp-c-htmlman html +./usr/share/man/html3/MD5Data.html comp-c-htmlman html +./usr/share/man/html3/MD5End.html comp-c-htmlman html +./usr/share/man/html3/MD5File.html comp-c-htmlman html +./usr/share/man/html3/MD5Final.html comp-c-htmlman html +./usr/share/man/html3/MD5Init.html comp-c-htmlman html +./usr/share/man/html3/MD5Update.html comp-c-htmlman html +./usr/share/man/html3/MIN.html comp-c-htmlman html +./usr/share/man/html3/OBJ_nid2obj.html comp-c-htmlman crypto,html +./usr/share/man/html3/OPENSSL_Applink.html comp-c-htmlman crypto,html +./usr/share/man/html3/OPENSSL_VERSION_NUMBER.html comp-c-htmlman crypto,html +./usr/share/man/html3/OPENSSL_config.html comp-c-man crypto,html +./usr/share/man/html3/OPENSSL_ia32cap.html comp-c-man crypto,html +./usr/share/man/html3/OPENSSL_load_builtin_modules.html comp-c-man crypto,html +./usr/share/man/html3/OpenSSL_add_all_algorithms.html comp-c-htmlman crypto,html +./usr/share/man/html3/PKCS12_create.html comp-c-htmlman crypto,html +./usr/share/man/html3/PKCS12_parse.html comp-c-htmlman crypto,html +./usr/share/man/html3/PKCS7_decrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/PKCS7_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/PKCS7_sign.html comp-c-htmlman crypto,html +./usr/share/man/html3/PKCS7_verify.html comp-c-htmlman crypto,html +./usr/share/man/html3/RAND_add.html comp-c-htmlman crypto,html +./usr/share/man/html3/RAND_bytes.html comp-c-htmlman crypto,html +./usr/share/man/html3/RAND_cleanup.html comp-c-htmlman crypto,html +./usr/share/man/html3/RAND_egd.html comp-c-htmlman crypto,html +./usr/share/man/html3/RAND_load_file.html comp-c-htmlman crypto,html +./usr/share/man/html3/RAND_set_rand_method.html comp-c-htmlman crypto,html +./usr/share/man/html3/RB_EMPTY.html comp-c-htmlman html +./usr/share/man/html3/RB_ENTRY.html comp-c-htmlman html +./usr/share/man/html3/RB_FIND.html comp-c-htmlman html +./usr/share/man/html3/RB_FOREACH.html comp-c-htmlman html +./usr/share/man/html3/RB_GENERATE.html comp-c-htmlman html +./usr/share/man/html3/RB_HEAD.html comp-c-htmlman html +./usr/share/man/html3/RB_INIT.html comp-c-htmlman html +./usr/share/man/html3/RB_INITIALIZER.html comp-c-htmlman html +./usr/share/man/html3/RB_INSERT.html comp-c-htmlman html +./usr/share/man/html3/RB_LEFT.html comp-c-htmlman html +./usr/share/man/html3/RB_MAX.html comp-c-htmlman html +./usr/share/man/html3/RB_MIN.html comp-c-htmlman html +./usr/share/man/html3/RB_NEXT.html comp-c-htmlman html +./usr/share/man/html3/RB_PARENT.html comp-c-htmlman html +./usr/share/man/html3/RB_PROTOTYPE.html comp-c-htmlman html +./usr/share/man/html3/RB_REMOVE.html comp-c-htmlman html +./usr/share/man/html3/RB_RIGHT.html comp-c-htmlman html +./usr/share/man/html3/RB_ROOT.html comp-c-htmlman html +./usr/share/man/html3/RMD160Data.html comp-c-htmlman html +./usr/share/man/html3/RMD160End.html comp-c-htmlman html +./usr/share/man/html3/RMD160File.html comp-c-htmlman html +./usr/share/man/html3/RMD160Final.html comp-c-htmlman html +./usr/share/man/html3/RMD160Init.html comp-c-htmlman html +./usr/share/man/html3/RMD160Transform.html comp-c-htmlman html +./usr/share/man/html3/RMD160Update.html comp-c-htmlman html +./usr/share/man/html3/RSA_blinding_on.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_check_key.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_generate_key.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_get_ex_new_index.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_padding_add_PKCS1_type_1.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_print.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_private_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_public_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_set_method.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_sign.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_sign_ASN1_OCTET_STRING.html comp-c-htmlman crypto,html +./usr/share/man/html3/RSA_size.html comp-c-htmlman crypto,html +./usr/share/man/html3/SDP_GET128.html comp-obsolete obsolete +./usr/share/man/html3/SDP_GET16.html comp-obsolete obsolete +./usr/share/man/html3/SDP_GET32.html comp-obsolete obsolete +./usr/share/man/html3/SDP_GET64.html comp-obsolete obsolete +./usr/share/man/html3/SDP_GET8.html comp-obsolete obsolete +./usr/share/man/html3/SDP_PUT128.html comp-obsolete obsolete +./usr/share/man/html3/SDP_PUT16.html comp-obsolete obsolete +./usr/share/man/html3/SDP_PUT32.html comp-obsolete obsolete +./usr/share/man/html3/SDP_PUT64.html comp-obsolete obsolete +./usr/share/man/html3/SDP_PUT8.html comp-obsolete obsolete +./usr/share/man/html3/SHA1Data.html comp-c-htmlman html +./usr/share/man/html3/SHA1End.html comp-c-htmlman html +./usr/share/man/html3/SHA1File.html comp-c-htmlman html +./usr/share/man/html3/SHA1FileChunk.html comp-c-htmlman html +./usr/share/man/html3/SHA1Final.html comp-c-htmlman html +./usr/share/man/html3/SHA1Init.html comp-c-htmlman html +./usr/share/man/html3/SHA1Transform.html comp-c-htmlman html +./usr/share/man/html3/SHA1Update.html comp-c-htmlman html +./usr/share/man/html3/SHA224_Data.html comp-c-htmlman html +./usr/share/man/html3/SHA224_End.html comp-c-htmlman html +./usr/share/man/html3/SHA224_File.html comp-c-htmlman html +./usr/share/man/html3/SHA224_FileChunk.html comp-c-htmlman html +./usr/share/man/html3/SHA224_Final.html comp-c-htmlman html +./usr/share/man/html3/SHA224_Init.html comp-c-htmlman html +./usr/share/man/html3/SHA224_Transform.html comp-c-htmlman html +./usr/share/man/html3/SHA224_Update.html comp-c-htmlman html +./usr/share/man/html3/SHA256_Data.html comp-c-htmlman html +./usr/share/man/html3/SHA256_End.html comp-c-htmlman html +./usr/share/man/html3/SHA256_File.html comp-c-htmlman html +./usr/share/man/html3/SHA256_FileChunk.html comp-c-htmlman html +./usr/share/man/html3/SHA256_Final.html comp-c-htmlman html +./usr/share/man/html3/SHA256_Init.html comp-c-htmlman html +./usr/share/man/html3/SHA256_Transform.html comp-c-htmlman html +./usr/share/man/html3/SHA256_Update.html comp-c-htmlman html +./usr/share/man/html3/SHA384_Data.html comp-c-htmlman html +./usr/share/man/html3/SHA384_End.html comp-c-htmlman html +./usr/share/man/html3/SHA384_File.html comp-c-htmlman html +./usr/share/man/html3/SHA384_FileChunk.html comp-c-htmlman html +./usr/share/man/html3/SHA384_Final.html comp-c-htmlman html +./usr/share/man/html3/SHA384_Init.html comp-c-htmlman html +./usr/share/man/html3/SHA384_Transform.html comp-c-htmlman html +./usr/share/man/html3/SHA384_Update.html comp-c-htmlman html +./usr/share/man/html3/SHA512_Data.html comp-c-htmlman html +./usr/share/man/html3/SHA512_End.html comp-c-htmlman html +./usr/share/man/html3/SHA512_File.html comp-c-htmlman html +./usr/share/man/html3/SHA512_FileChunk.html comp-c-htmlman html +./usr/share/man/html3/SHA512_Final.html comp-c-htmlman html +./usr/share/man/html3/SHA512_Init.html comp-c-htmlman html +./usr/share/man/html3/SHA512_Transform.html comp-c-htmlman html +./usr/share/man/html3/SHA512_Update.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_EMPTY.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_ENTRY.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_FIRST.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_FOREACH.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_HEAD.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_HEAD_INITIALIZER.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_INIT.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_INSERT_AFTER.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_INSERT_HEAD.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_INSERT_TAIL.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_NEXT.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_REMOVE.html comp-c-htmlman html +./usr/share/man/html3/SIMPLEQ_REMOVE_HEAD.html comp-c-htmlman html +./usr/share/man/html3/SLIST_EMPTY.html comp-c-htmlman html +./usr/share/man/html3/SLIST_ENTRY.html comp-c-htmlman html +./usr/share/man/html3/SLIST_FIRST.html comp-c-htmlman html +./usr/share/man/html3/SLIST_FOREACH.html comp-c-htmlman html +./usr/share/man/html3/SLIST_HEAD.html comp-c-htmlman html +./usr/share/man/html3/SLIST_HEAD_INITIALIZER.html comp-c-htmlman html +./usr/share/man/html3/SLIST_INIT.html comp-c-htmlman html +./usr/share/man/html3/SLIST_INSERT_AFTER.html comp-c-htmlman html +./usr/share/man/html3/SLIST_INSERT_HEAD.html comp-c-htmlman html +./usr/share/man/html3/SLIST_NEXT.html comp-c-htmlman html +./usr/share/man/html3/SLIST_REMOVE.html comp-c-htmlman html +./usr/share/man/html3/SLIST_REMOVE_HEAD.html comp-c-htmlman html +./usr/share/man/html3/SMIME_read_PKCS7.html comp-c-htmlman crypto,html +./usr/share/man/html3/SMIME_write_PKCS7.html comp-c-htmlman crypto,html +./usr/share/man/html3/SPLAY_EMPTY.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_ENTRY.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_FIND.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_FOREACH.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_GENERATE.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_HEAD.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_INIT.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_INITIALIZER.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_INSERT.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_LEFT.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_MAX.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_MIN.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_NEXT.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_PROTOTYPE.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_REMOVE.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_RIGHT.html comp-c-htmlman html +./usr/share/man/html3/SPLAY_ROOT.html comp-c-htmlman html +./usr/share/man/html3/SSL_CIPHER_get_name.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_COMP_add_compression_method.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_add_extra_chain_cert.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_add_session.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_ctrl.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_flush_sessions.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_free.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_get_ex_new_index.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_get_verify_mode.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_load_verify_locations.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_sess_number.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_sess_set_cache_size.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_sess_set_get_cb.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_sessions.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_cert_store.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_cert_verify_callback.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_cipher_list.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_client_CA_list.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_client_cert_cb.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_default_passwd_cb.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_generate_session_id.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_info_callback.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_max_cert_list.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_mode.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_msg_callback.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_options.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_quiet_shutdown.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_session_cache_mode.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_session_id_context.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_ssl_version.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_timeout.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_tmp_dh_callback.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_tmp_rsa_callback.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_set_verify.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_CTX_use_certificate.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_SESSION_free.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_SESSION_get_ex_new_index.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_SESSION_get_time.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_accept.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_alert_type_string.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_clear.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_connect.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_do_handshake.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_free.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_SSL_CTX.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_ciphers.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_client_CA_list.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_current_cipher.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_default_timeout.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_error.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_ex_data_X509_STORE_CTX_idx.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_ex_new_index.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_fd.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_peer_cert_chain.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_peer_certificate.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_rbio.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_session.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_verify_result.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_get_version.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_library_init.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_load_client_CA_file.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_pending.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_read.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_rstate_string.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_session_reused.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_set_bio.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_set_connect_state.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_set_fd.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_set_session.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_set_shutdown.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_set_verify_result.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_shutdown.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_state_string.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_want.html comp-c-htmlman crypto,html +./usr/share/man/html3/SSL_write.html comp-c-htmlman crypto,html +./usr/share/man/html3/STAILQ_EMPTY.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_ENTRY.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_FIRST.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_FOREACH.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_HEAD.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_HEAD_INITIALIZER.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_INIT.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_INSERT_AFTER.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_INSERT_HEAD.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_INSERT_TAIL.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_NEXT.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_REMOVE.html comp-c-htmlman html +./usr/share/man/html3/STAILQ_REMOVE_HEAD.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_EMPTY.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_ENTRY.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_FIRST.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_FOREACH.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_FOREACH_REVERSE.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_HEAD.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_HEAD_INITIALIZER.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_INIT.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_INSERT_AFTER.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_INSERT_BEFORE.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_INSERT_HEAD.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_INSERT_TAIL.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_LAST.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_NEXT.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_PREV.html comp-c-htmlman html +./usr/share/man/html3/TAILQ_REMOVE.html comp-c-htmlman html +./usr/share/man/html3/TIMESPEC_TO_TIMEVAL.html comp-c-htmlman html +./usr/share/man/html3/TIMEVAL_TO_TIMESPEC.html comp-c-htmlman html +./usr/share/man/html3/X509_NAME_ENTRY_get_object.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_NAME_add_entry_by_txt.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_NAME_get_index_by_NID.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_NAME_print_ex.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_STORE_CTX_get_error.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_STORE_CTX_get_ex_new_index.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_STORE_CTX_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_STORE_CTX_set_verify_cb.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_STORE_set_verify_cb_func.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_VERIFY_PARAM_set_flags.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_new.html comp-c-htmlman crypto,html +./usr/share/man/html3/X509_verify_cert.html comp-c-htmlman crypto,html +./usr/share/man/html3/_DIAGASSERT.html comp-c-htmlman html +./usr/share/man/html3/__BIT.html comp-c-htmlman html +./usr/share/man/html3/__BITS.html comp-c-htmlman html +./usr/share/man/html3/__CONCAT.html comp-c-htmlman html +./usr/share/man/html3/__KERNEL_RCSID.html comp-c-htmlman html +./usr/share/man/html3/__RCSID.html comp-c-htmlman html +./usr/share/man/html3/__SHIFTIN.html comp-c-htmlman html +./usr/share/man/html3/__SHIFTOUT.html comp-c-htmlman html +./usr/share/man/html3/__SHIFTOUT_MASK.html comp-c-htmlman html +./usr/share/man/html3/__STRING.html comp-c-htmlman html +./usr/share/man/html3/__UNCONST.html comp-c-htmlman html +./usr/share/man/html3/__UNVOLATILE.html comp-c-htmlman html +./usr/share/man/html3/__aligned.html comp-c-htmlman html +./usr/share/man/html3/__alignof__.html comp-c-htmlman html +./usr/share/man/html3/__arraycount.html comp-c-htmlman html +./usr/share/man/html3/__builtin_constant_p.html comp-c-htmlman html +./usr/share/man/html3/__builtin_frame_address.html comp-c-htmlman html +./usr/share/man/html3/__builtin_object_size.html comp-c-htmlman html +./usr/share/man/html3/__builtin_prefetch.html comp-c-htmlman html +./usr/share/man/html3/__builtin_return_address.html comp-c-htmlman html +./usr/share/man/html3/__builtin_types_compatible_p.html comp-c-htmlman html +./usr/share/man/html3/__cacheline_aligned.html comp-c-htmlman html +./usr/share/man/html3/__constfunc.html comp-c-htmlman html +./usr/share/man/html3/__dead.html comp-c-htmlman html +./usr/share/man/html3/__insn_barrier.html comp-c-htmlman html +./usr/share/man/html3/__noinline.html comp-c-htmlman html +./usr/share/man/html3/__packed.html comp-c-htmlman html +./usr/share/man/html3/__predict_false.html comp-c-htmlman html +./usr/share/man/html3/__predict_true.html comp-c-htmlman html +./usr/share/man/html3/__pure.html comp-c-htmlman html +./usr/share/man/html3/__read_mostly.html comp-c-htmlman html +./usr/share/man/html3/__section.html comp-c-htmlman html +./usr/share/man/html3/__svc_getcallercreds.html comp-c-htmlman html +./usr/share/man/html3/__unused.html comp-c-htmlman html +./usr/share/man/html3/__used.html comp-c-htmlman html +./usr/share/man/html3/_longjmp.html comp-c-htmlman html +./usr/share/man/html3/_lwp_makecontext.html comp-c-htmlman html +./usr/share/man/html3/_setjmp.html comp-c-htmlman html +./usr/share/man/html3/a64l.html comp-c-htmlman html +./usr/share/man/html3/abort.html comp-c-htmlman html +./usr/share/man/html3/abs.html comp-c-htmlman html +./usr/share/man/html3/acos.html comp-c-htmlman html +./usr/share/man/html3/acosf.html comp-c-htmlman html +./usr/share/man/html3/acosh.html comp-c-htmlman html +./usr/share/man/html3/acoshf.html comp-c-htmlman html +./usr/share/man/html3/addch.html comp-c-htmlman html +./usr/share/man/html3/addchnstr.html comp-c-htmlman html +./usr/share/man/html3/addchstr.html comp-c-htmlman html +./usr/share/man/html3/addnstr.html comp-c-htmlman html +./usr/share/man/html3/addr.html comp-c-htmlman html +./usr/share/man/html3/addstr.html comp-c-htmlman html +./usr/share/man/html3/affinity.html comp-c-htmlman html +./usr/share/man/html3/aio.html comp-c-htmlman html +./usr/share/man/html3/aio_cancel.html comp-c-htmlman html +./usr/share/man/html3/aio_error.html comp-c-htmlman html +./usr/share/man/html3/aio_fsync.html comp-c-htmlman html +./usr/share/man/html3/aio_read.html comp-c-htmlman html +./usr/share/man/html3/aio_return.html comp-c-htmlman html +./usr/share/man/html3/aio_suspend.html comp-c-htmlman html +./usr/share/man/html3/aio_write.html comp-c-htmlman html +./usr/share/man/html3/alarm.html comp-c-htmlman html +./usr/share/man/html3/alloca.html comp-c-htmlman html +./usr/share/man/html3/allocaddrinfo.html comp-c-htmlman html +./usr/share/man/html3/alphasort.html comp-c-htmlman html +./usr/share/man/html3/arc4random.html comp-c-htmlman html +./usr/share/man/html3/archive.html comp-c-htmlman html +./usr/share/man/html3/archive_clear_error.html comp-c-htmlman html +./usr/share/man/html3/archive_compression.html comp-c-htmlman html +./usr/share/man/html3/archive_compression_name.html comp-c-htmlman html +./usr/share/man/html3/archive_copy_error.html comp-c-htmlman html +./usr/share/man/html3/archive_entry.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_acl_add_entry.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_acl_add_entry_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_acl_clear.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_acl_count.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_acl_next.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_acl_next_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_acl_reset.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_acl_text_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_atime.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_atime_nsec.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_clear.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_clone.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_fflags_text.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_fflags_text_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_gname.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_gname_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_hardlink.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_hardlink_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_link.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_link_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_pathname_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_sourcepath.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_stat.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_symlink.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_symlink_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_uname.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_copy_uname_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_dev.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_devmajor.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_devminor.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_fflags.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_fflags_text.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_filetype.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_free.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_gid.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_gname.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_gname_w.html comp-obsolete obsolete +./usr/share/man/html3/archive_entry_hardlink.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_ino.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_mode.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_mtime.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_mtime_nsec.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_new.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_nlink.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_pathname.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_pathname_w.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_rdev.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_rdevmajor.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_rdevminor.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_atime.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_ctime.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_dev.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_devmajor.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_devminor.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_fflags.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_filetype.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_gid.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_gname.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_hardlink.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_link.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_mode.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_mtime.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_nlink.html comp-obsolete obsolete +./usr/share/man/html3/archive_entry_set_pathname.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_rdev.html comp-obsolete obsolete +./usr/share/man/html3/archive_entry_set_rdevmajor.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_rdevminor.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_size.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_symlink.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_uid.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_set_uname.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_size.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_sourcepath.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_stat.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_symlink.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_uid.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_uname.html comp-c-htmlman html +./usr/share/man/html3/archive_entry_uname_w.html comp-obsolete obsolete +./usr/share/man/html3/archive_errno.html comp-c-htmlman html +./usr/share/man/html3/archive_error_string.html comp-c-htmlman html +./usr/share/man/html3/archive_file_count.html comp-c-htmlman html +./usr/share/man/html3/archive_format.html comp-c-htmlman html +./usr/share/man/html3/archive_format_name.html comp-c-htmlman html +./usr/share/man/html3/archive_read.html comp-c-htmlman html +./usr/share/man/html3/archive_read_close.html comp-c-htmlman html +./usr/share/man/html3/archive_read_data.html comp-c-htmlman html +./usr/share/man/html3/archive_read_data_block.html comp-c-htmlman html +./usr/share/man/html3/archive_read_data_into_buffer.html comp-c-htmlman html +./usr/share/man/html3/archive_read_data_into_fd.html comp-c-htmlman html +./usr/share/man/html3/archive_read_data_skip.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_gname.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_new.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_set_entry_from_file.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_set_gname_lookup.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_set_standard_lookup.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_set_symlink_hybrid.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_set_symlink_logical.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_set_symlink_physical.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_set_uname_lookup.html comp-c-htmlman html +./usr/share/man/html3/archive_read_disk_uname.html comp-c-htmlman html +./usr/share/man/html3/archive_read_extract.html comp-c-htmlman html +./usr/share/man/html3/archive_read_extract2.html comp-c-htmlman html +./usr/share/man/html3/archive_read_extract_set_progress_callback.html comp-c-htmlman html +./usr/share/man/html3/archive_read_extract_set_skip_file.html comp-obsolete obsolete +./usr/share/man/html3/archive_read_finish.html comp-c-htmlman html +./usr/share/man/html3/archive_read_new.html comp-c-htmlman html +./usr/share/man/html3/archive_read_next_header.html comp-c-htmlman html +./usr/share/man/html3/archive_read_next_header2.html comp-c-htmlman html +./usr/share/man/html3/archive_read_open.html comp-c-htmlman html +./usr/share/man/html3/archive_read_open2.html comp-c-htmlman html +./usr/share/man/html3/archive_read_open_FILE.html comp-c-htmlman html +./usr/share/man/html3/archive_read_open_fd.html comp-c-htmlman html +./usr/share/man/html3/archive_read_open_file.html comp-c-htmlman html +./usr/share/man/html3/archive_read_open_filename.html comp-c-htmlman html +./usr/share/man/html3/archive_read_open_memory.html comp-c-htmlman html +./usr/share/man/html3/archive_read_set_filter_options.html comp-c-htmlman html +./usr/share/man/html3/archive_read_set_format_options.html comp-c-htmlman html +./usr/share/man/html3/archive_read_set_options.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_all.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_bzip2.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_compress.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_gzip.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_lzma.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_none.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_program.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_program_signature.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_compression_xz.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_all.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_ar.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_cpio.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_empty.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_iso9660.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_mtree.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_raw.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_tar.html comp-c-htmlman html +./usr/share/man/html3/archive_read_support_format_zip.html comp-c-htmlman html +./usr/share/man/html3/archive_set_error.html comp-c-htmlman html +./usr/share/man/html3/archive_util.html comp-c-htmlman html +./usr/share/man/html3/archive_write.html comp-c-htmlman html +./usr/share/man/html3/archive_write_close.html comp-c-htmlman html +./usr/share/man/html3/archive_write_data.html comp-c-htmlman html +./usr/share/man/html3/archive_write_disk.html comp-c-htmlman html +./usr/share/man/html3/archive_write_disk_new.html comp-c-htmlman html +./usr/share/man/html3/archive_write_disk_set_group_lookup.html comp-c-htmlman html +./usr/share/man/html3/archive_write_disk_set_options.html comp-c-htmlman html +./usr/share/man/html3/archive_write_disk_set_skip_file.html comp-c-htmlman html +./usr/share/man/html3/archive_write_disk_set_standard_lookup.html comp-c-htmlman html +./usr/share/man/html3/archive_write_disk_set_user_lookup.html comp-c-htmlman html +./usr/share/man/html3/archive_write_finish.html comp-c-htmlman html +./usr/share/man/html3/archive_write_finish_entry.html comp-c-htmlman html +./usr/share/man/html3/archive_write_get_bytes_in_last_block.html comp-obsolete obsolete +./usr/share/man/html3/archive_write_get_bytes_per_block.html comp-c-htmlman html +./usr/share/man/html3/archive_write_header.html comp-c-htmlman html +./usr/share/man/html3/archive_write_new.html comp-c-htmlman html +./usr/share/man/html3/archive_write_open.html comp-c-htmlman html +./usr/share/man/html3/archive_write_open_FILE.html comp-c-htmlman html +./usr/share/man/html3/archive_write_open_fd.html comp-c-htmlman html +./usr/share/man/html3/archive_write_open_file.html comp-obsolete obsolete +./usr/share/man/html3/archive_write_open_filename.html comp-c-htmlman html +./usr/share/man/html3/archive_write_open_memory.html comp-c-htmlman html +./usr/share/man/html3/archive_write_options.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_bytes_in_last_block.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_bytes_per_block.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_callbacks.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_compression_bzip2.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_compression_compress.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_compression_gzip.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_compression_none.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_compression_program.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_compressor_options.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_format_cpio.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_format_pax.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_format_pax_restricted.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_format_shar.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_format_shar_binary.html comp-c-htmlman html +./usr/share/man/html3/archive_write_set_format_ustar.html comp-c-htmlman html +./usr/share/man/html3/asctime.html comp-c-htmlman html +./usr/share/man/html3/asctime_r.html comp-c-htmlman html +./usr/share/man/html3/asin.html comp-c-htmlman html +./usr/share/man/html3/asinf.html comp-c-htmlman html +./usr/share/man/html3/asinh.html comp-c-htmlman html +./usr/share/man/html3/asinhf.html comp-c-htmlman html +./usr/share/man/html3/asprintf.html comp-c-htmlman html +./usr/share/man/html3/assert.html comp-c-htmlman html +./usr/share/man/html3/assume_default_colors.html comp-c-htmlman html +./usr/share/man/html3/atan.html comp-c-htmlman html +./usr/share/man/html3/atan2.html comp-c-htmlman html +./usr/share/man/html3/atan2f.html comp-c-htmlman html +./usr/share/man/html3/atanf.html comp-c-htmlman html +./usr/share/man/html3/atanh.html comp-c-htmlman html +./usr/share/man/html3/atanhf.html comp-c-htmlman html +./usr/share/man/html3/atexit.html comp-c-htmlman html +./usr/share/man/html3/atf-c++-api.html comp-atf-htmlman html,atf +./usr/share/man/html3/atf-c-api.html comp-atf-htmlman html,atf +./usr/share/man/html3/atf-sh-api.html comp-atf-htmlman html,atf +./usr/share/man/html3/atof.html comp-c-htmlman html +./usr/share/man/html3/atoi.html comp-c-htmlman html +./usr/share/man/html3/atol.html comp-c-htmlman html +./usr/share/man/html3/atoll.html comp-c-htmlman html +./usr/share/man/html3/atomic_add.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_32.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_32_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_64.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_64_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_int.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_int_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_long.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_long_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_ptr.html comp-c-htmlman html +./usr/share/man/html3/atomic_add_ptr_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_and.html comp-c-htmlman html +./usr/share/man/html3/atomic_and_32.html comp-c-htmlman html +./usr/share/man/html3/atomic_and_32_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_and_64.html comp-c-htmlman html +./usr/share/man/html3/atomic_and_64_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_and_uint.html comp-c-htmlman html +./usr/share/man/html3/atomic_and_uint_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_and_ulong.html comp-c-htmlman html +./usr/share/man/html3/atomic_and_ulong_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_32.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_32_ni.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_64.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_64_ni.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_ptr.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_ptr_ni.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_uint.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_uint_ni.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_ulong.html comp-c-htmlman html +./usr/share/man/html3/atomic_cas_ulong_ni.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_32.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_32_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_64.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_64_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_ptr.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_ptr_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_uint.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_uint_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_ulong.html comp-c-htmlman html +./usr/share/man/html3/atomic_dec_ulong_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_32.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_32_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_64.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_64_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_ptr.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_ptr_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_uint.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_uint_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_ulong.html comp-c-htmlman html +./usr/share/man/html3/atomic_inc_ulong_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_ops.html comp-c-htmlman html +./usr/share/man/html3/atomic_or.html comp-c-htmlman html +./usr/share/man/html3/atomic_or_32.html comp-c-htmlman html +./usr/share/man/html3/atomic_or_32_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_or_64.html comp-c-htmlman html +./usr/share/man/html3/atomic_or_64_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_or_uint.html comp-c-htmlman html +./usr/share/man/html3/atomic_or_uint_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_or_ulong.html comp-c-htmlman html +./usr/share/man/html3/atomic_or_ulong_nv.html comp-c-htmlman html +./usr/share/man/html3/atomic_swap.html comp-c-htmlman html +./usr/share/man/html3/atomic_swap_32.html comp-c-htmlman html +./usr/share/man/html3/atomic_swap_64.html comp-c-htmlman html +./usr/share/man/html3/atomic_swap_ptr.html comp-c-htmlman html +./usr/share/man/html3/atomic_swap_uint.html comp-c-htmlman html +./usr/share/man/html3/atomic_swap_ulong.html comp-c-htmlman html +./usr/share/man/html3/attr_get.html comp-c-htmlman html +./usr/share/man/html3/attr_off.html comp-c-htmlman html +./usr/share/man/html3/attr_on.html comp-c-htmlman html +./usr/share/man/html3/attr_set.html comp-c-htmlman html +./usr/share/man/html3/attribute.html comp-c-htmlman html +./usr/share/man/html3/attroff.html comp-c-htmlman html +./usr/share/man/html3/attron.html comp-c-htmlman html +./usr/share/man/html3/attrset.html comp-c-htmlman html +./usr/share/man/html3/auth_destroy.html comp-c-htmlman html +./usr/share/man/html3/authnone_create.html comp-c-htmlman html +./usr/share/man/html3/authsys_create.html comp-c-htmlman html +./usr/share/man/html3/authsys_create_default.html comp-c-htmlman html +./usr/share/man/html3/authunix_create.html comp-c-htmlman html +./usr/share/man/html3/authunix_create_default.html comp-c-htmlman html +./usr/share/man/html3/backtrace.html comp-c-htmlman html +./usr/share/man/html3/backtrace_symbols.html comp-c-htmlman html +./usr/share/man/html3/backtrace_symbols_fd.html comp-c-htmlman html +./usr/share/man/html3/backtrace_symbols_fd_fmt.html comp-c-htmlman html +./usr/share/man/html3/backtrace_symbols_fmt.html comp-c-htmlman html +./usr/share/man/html3/basename.html comp-c-htmlman html +./usr/share/man/html3/bcmp.html comp-c-htmlman html +./usr/share/man/html3/bcopy.html comp-c-htmlman html +./usr/share/man/html3/beep.html comp-c-htmlman html +./usr/share/man/html3/ber_alloc_t.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_bvarray_add.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_bvarray_free.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_bvdup.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_bvecadd.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_bvecfree.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_bvfree.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_bvstr.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_bvstrdup.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_dupbv.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_first_element.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_flush.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_free.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_get_bitstring.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_get_boolean.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_get_enum.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_get_int.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_get_next.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_get_null.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_get_stringa.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_get_stringb.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_next_element.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_peek_tag.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_printf.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_put_enum.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_put_int.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_put_null.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_put_ostring.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_put_seq.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_put_set.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_put_string.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_scanf.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_skip_tag.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_start_set.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ber_str2bv.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/bind_textdomain_codeset.html comp-c-htmlman html +./usr/share/man/html3/bindresvport.html comp-c-htmlman html +./usr/share/man/html3/bindresvport_sa.html comp-c-htmlman html +./usr/share/man/html3/bindtextdomain.html comp-c-htmlman html +./usr/share/man/html3/bit_alloc.html comp-c-htmlman html +./usr/share/man/html3/bit_clear.html comp-c-htmlman html +./usr/share/man/html3/bit_decl.html comp-c-htmlman html +./usr/share/man/html3/bit_ffc.html comp-c-htmlman html +./usr/share/man/html3/bit_ffs.html comp-c-htmlman html +./usr/share/man/html3/bit_nclear.html comp-c-htmlman html +./usr/share/man/html3/bit_nset.html comp-c-htmlman html +./usr/share/man/html3/bit_set.html comp-c-htmlman html +./usr/share/man/html3/bit_test.html comp-c-htmlman html +./usr/share/man/html3/bitops.html comp-c-htmlman html +./usr/share/man/html3/bits.html comp-c-htmlman html +./usr/share/man/html3/bitstr_size.html comp-c-htmlman html +./usr/share/man/html3/bitstring.html comp-c-htmlman html +./usr/share/man/html3/bkgd.html comp-c-htmlman html +./usr/share/man/html3/bkgdset.html comp-c-htmlman html +./usr/share/man/html3/bluetooth.html comp-c-htmlman html +./usr/share/man/html3/bm.html comp-c-htmlman html +./usr/share/man/html3/bm_comp.html comp-c-htmlman html +./usr/share/man/html3/bm_exec.html comp-c-htmlman html +./usr/share/man/html3/bm_free.html comp-c-htmlman html +./usr/share/man/html3/border.html comp-c-htmlman html +./usr/share/man/html3/box.html comp-c-htmlman html +./usr/share/man/html3/bsearch.html comp-c-htmlman html +./usr/share/man/html3/bstring.html comp-c-htmlman html +./usr/share/man/html3/bswap.html comp-c-htmlman html +./usr/share/man/html3/bswap16.html comp-c-htmlman html +./usr/share/man/html3/bswap32.html comp-c-htmlman html +./usr/share/man/html3/bswap64.html comp-c-htmlman html +./usr/share/man/html3/bt_aton.html comp-c-htmlman html +./usr/share/man/html3/bt_dev.html comp-c-htmlman html +./usr/share/man/html3/bt_devaddr.html comp-c-htmlman html +./usr/share/man/html3/bt_devenum.html comp-c-htmlman html +./usr/share/man/html3/bt_devfilter.html comp-c-htmlman html +./usr/share/man/html3/bt_devfilter_evt_clr.html comp-c-htmlman html +./usr/share/man/html3/bt_devfilter_evt_set.html comp-c-htmlman html +./usr/share/man/html3/bt_devfilter_evt_tst.html comp-c-htmlman html +./usr/share/man/html3/bt_devfilter_pkt_clr.html comp-c-htmlman html +./usr/share/man/html3/bt_devfilter_pkt_set.html comp-c-htmlman html +./usr/share/man/html3/bt_devfilter_pkt_tst.html comp-c-htmlman html +./usr/share/man/html3/bt_devinfo.html comp-c-htmlman html +./usr/share/man/html3/bt_devinquiry.html comp-c-htmlman html +./usr/share/man/html3/bt_devname.html comp-c-htmlman html +./usr/share/man/html3/bt_devopen.html comp-c-htmlman html +./usr/share/man/html3/bt_devrecv.html comp-c-htmlman html +./usr/share/man/html3/bt_devreq.html comp-c-htmlman html +./usr/share/man/html3/bt_devsend.html comp-c-htmlman html +./usr/share/man/html3/bt_endhostent.html comp-c-htmlman html +./usr/share/man/html3/bt_endprotoent.html comp-c-htmlman html +./usr/share/man/html3/bt_gethostbyaddr.html comp-c-htmlman html +./usr/share/man/html3/bt_gethostbyname.html comp-c-htmlman html +./usr/share/man/html3/bt_gethostent.html comp-c-htmlman html +./usr/share/man/html3/bt_getprotobyname.html comp-c-htmlman html +./usr/share/man/html3/bt_getprotobynumber.html comp-c-htmlman html +./usr/share/man/html3/bt_getprotoent.html comp-c-htmlman html +./usr/share/man/html3/bt_ntoa.html comp-c-htmlman html +./usr/share/man/html3/bt_sethostent.html comp-c-htmlman html +./usr/share/man/html3/bt_setprotoent.html comp-c-htmlman html +./usr/share/man/html3/btowc.html comp-c-htmlman html +./usr/share/man/html3/btree.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_base_set.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_disable.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_enable.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_free.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_new.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_read.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_settimeout.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_write.html comp-c-htmlman html +./usr/share/man/html3/bufferevent_write_buffer.html comp-c-htmlman html +./usr/share/man/html3/byteorder.html comp-c-htmlman html +./usr/share/man/html3/bzero.html comp-c-htmlman html +./usr/share/man/html3/cabs.html comp-c-htmlman complex,html +./usr/share/man/html3/cabsf.html comp-c-htmlman complex,html +./usr/share/man/html3/cacos.html comp-c-htmlman complex,html +./usr/share/man/html3/cacosf.html comp-c-htmlman complex,html +./usr/share/man/html3/cacosh.html comp-c-htmlman complex,html +./usr/share/man/html3/cacoshf.html comp-c-htmlman complex,html +./usr/share/man/html3/calloc.html comp-c-htmlman html +./usr/share/man/html3/callrpc.html comp-c-htmlman html +./usr/share/man/html3/can_change_color.html comp-c-htmlman html +./usr/share/man/html3/carg.html comp-c-htmlman complex,html +./usr/share/man/html3/cargf.html comp-c-htmlman complex,html +./usr/share/man/html3/casin.html comp-c-htmlman complex,html +./usr/share/man/html3/casinf.html comp-c-htmlman complex,html +./usr/share/man/html3/casinh.html comp-c-htmlman complex,html +./usr/share/man/html3/casinhf.html comp-c-htmlman complex,html +./usr/share/man/html3/catan.html comp-c-htmlman complex,html +./usr/share/man/html3/catanf.html comp-c-htmlman complex,html +./usr/share/man/html3/catanh.html comp-c-htmlman complex,html +./usr/share/man/html3/catanhf.html comp-c-htmlman complex,html +./usr/share/man/html3/catclose.html comp-c-htmlman html +./usr/share/man/html3/catgets.html comp-c-htmlman html +./usr/share/man/html3/catopen.html comp-c-htmlman html +./usr/share/man/html3/cbreak.html comp-c-htmlman html +./usr/share/man/html3/cbrt.html comp-c-htmlman html +./usr/share/man/html3/cbrtf.html comp-c-htmlman html +./usr/share/man/html3/ccos.html comp-c-htmlman complex,html +./usr/share/man/html3/ccosf.html comp-c-htmlman complex,html +./usr/share/man/html3/ccosh.html comp-c-htmlman complex,html +./usr/share/man/html3/ccoshf.html comp-c-htmlman complex,html +./usr/share/man/html3/cdbr.html comp-c-htmlman html +./usr/share/man/html3/cdbr_close.html comp-c-htmlman html +./usr/share/man/html3/cdbr_entries.html comp-c-htmlman html +./usr/share/man/html3/cdbr_find.html comp-c-htmlman html +./usr/share/man/html3/cdbr_get.html comp-c-htmlman html +./usr/share/man/html3/cdbr_open.html comp-c-htmlman html +./usr/share/man/html3/cdbw.html comp-c-htmlman html +./usr/share/man/html3/cdbw_close.html comp-c-htmlman html +./usr/share/man/html3/cdbw_open.html comp-c-htmlman html +./usr/share/man/html3/cdbw_output.html comp-c-htmlman html +./usr/share/man/html3/cdbw_put.html comp-c-htmlman html +./usr/share/man/html3/cdbw_put_data.html comp-c-htmlman html +./usr/share/man/html3/cdbw_put_key.html comp-c-htmlman html +./usr/share/man/html3/cdefs.html comp-c-htmlman html +./usr/share/man/html3/ceil.html comp-c-htmlman html +./usr/share/man/html3/ceilf.html comp-c-htmlman html +./usr/share/man/html3/cexp.html comp-c-htmlman complex,html +./usr/share/man/html3/cexpf.html comp-c-htmlman complex,html +./usr/share/man/html3/cfgetispeed.html comp-c-htmlman html +./usr/share/man/html3/cfgetospeed.html comp-c-htmlman html +./usr/share/man/html3/cfmakeraw.html comp-c-htmlman html +./usr/share/man/html3/cfsetispeed.html comp-c-htmlman html +./usr/share/man/html3/cfsetospeed.html comp-c-htmlman html +./usr/share/man/html3/cfsetspeed.html comp-c-htmlman html +./usr/share/man/html3/cgetcap.html comp-c-htmlman html +./usr/share/man/html3/cgetclose.html comp-c-htmlman html +./usr/share/man/html3/cgetent.html comp-c-htmlman html +./usr/share/man/html3/cgetfirst.html comp-c-htmlman html +./usr/share/man/html3/cgetmatch.html comp-c-htmlman html +./usr/share/man/html3/cgetnext.html comp-c-htmlman html +./usr/share/man/html3/cgetnum.html comp-c-htmlman html +./usr/share/man/html3/cgetset.html comp-c-htmlman html +./usr/share/man/html3/cgetstr.html comp-c-htmlman html +./usr/share/man/html3/cgetustr.html comp-c-htmlman html +./usr/share/man/html3/chgat.html comp-c-htmlman html +./usr/share/man/html3/cimag.html comp-c-htmlman complex,html +./usr/share/man/html3/cimagf.html comp-c-htmlman complex,html +./usr/share/man/html3/cimagl.html comp-c-htmlman complex,html +./usr/share/man/html3/clear.html comp-c-htmlman html +./usr/share/man/html3/clearerr.html comp-c-htmlman html +./usr/share/man/html3/clearok.html comp-c-htmlman html +./usr/share/man/html3/clnt_broadcast.html comp-c-htmlman html +./usr/share/man/html3/clnt_call.html comp-c-htmlman html +./usr/share/man/html3/clnt_control.html comp-c-htmlman html +./usr/share/man/html3/clnt_create.html comp-c-htmlman html +./usr/share/man/html3/clnt_create_vers.html comp-c-htmlman html +./usr/share/man/html3/clnt_destroy.html comp-c-htmlman html +./usr/share/man/html3/clnt_dg_create.html comp-c-htmlman html +./usr/share/man/html3/clnt_freeres.html comp-c-htmlman html +./usr/share/man/html3/clnt_geterr.html comp-c-htmlman html +./usr/share/man/html3/clnt_pcreateerror.html comp-c-htmlman html +./usr/share/man/html3/clnt_perrno.html comp-c-htmlman html +./usr/share/man/html3/clnt_perror.html comp-c-htmlman html +./usr/share/man/html3/clnt_raw_create.html comp-c-htmlman html +./usr/share/man/html3/clnt_spcreateerror.html comp-c-htmlman html +./usr/share/man/html3/clnt_sperrno.html comp-c-htmlman html +./usr/share/man/html3/clnt_sperror.html comp-c-htmlman html +./usr/share/man/html3/clnt_tli_create.html comp-c-htmlman html +./usr/share/man/html3/clnt_tp_create.html comp-c-htmlman html +./usr/share/man/html3/clnt_vc_create.html comp-c-htmlman html +./usr/share/man/html3/clntraw_create.html comp-c-htmlman html +./usr/share/man/html3/clnttcp_create.html comp-c-htmlman html +./usr/share/man/html3/clntudp_bufcreate.html comp-c-htmlman html +./usr/share/man/html3/clntudp_create.html comp-c-htmlman html +./usr/share/man/html3/clock.html comp-c-htmlman html +./usr/share/man/html3/clog.html comp-c-htmlman complex,html +./usr/share/man/html3/clogf.html comp-c-htmlman complex,html +./usr/share/man/html3/closedir.html comp-c-htmlman html +./usr/share/man/html3/closefrom.html comp-c-htmlman html +./usr/share/man/html3/closelog.html comp-c-htmlman html +./usr/share/man/html3/closelog_r.html comp-c-htmlman html +./usr/share/man/html3/clrtobot.html comp-c-htmlman html +./usr/share/man/html3/clrtoeol.html comp-c-htmlman html +./usr/share/man/html3/cmsg.html comp-c-htmlman html +./usr/share/man/html3/color_content.html comp-c-htmlman html +./usr/share/man/html3/color_set.html comp-c-htmlman html +./usr/share/man/html3/com_err.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/com_err_va.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/confstr.html comp-c-htmlman html +./usr/share/man/html3/conj.html comp-c-htmlman complex,html +./usr/share/man/html3/conjf.html comp-c-htmlman complex,html +./usr/share/man/html3/conjl.html comp-c-htmlman complex,html +./usr/share/man/html3/copysign.html comp-c-htmlman html +./usr/share/man/html3/copysignf.html comp-c-htmlman html +./usr/share/man/html3/copysignl.html comp-c-htmlman html +./usr/share/man/html3/copywin.html comp-c-htmlman html +./usr/share/man/html3/cos.html comp-c-htmlman html +./usr/share/man/html3/cosf.html comp-c-htmlman html +./usr/share/man/html3/cosh.html comp-c-htmlman html +./usr/share/man/html3/coshf.html comp-c-htmlman html +./usr/share/man/html3/cpow.html comp-c-htmlman complex,html +./usr/share/man/html3/cpowf.html comp-c-htmlman complex,html +./usr/share/man/html3/cproj.html comp-c-htmlman complex,html +./usr/share/man/html3/cprojf.html comp-c-htmlman complex,html +./usr/share/man/html3/cprojl.html comp-c-htmlman complex,html +./usr/share/man/html3/cpuset.html comp-c-htmlman html +./usr/share/man/html3/cpuset_clr.html comp-c-htmlman html +./usr/share/man/html3/cpuset_create.html comp-c-htmlman html +./usr/share/man/html3/cpuset_destroy.html comp-c-htmlman html +./usr/share/man/html3/cpuset_isset.html comp-c-htmlman html +./usr/share/man/html3/cpuset_set.html comp-c-htmlman html +./usr/share/man/html3/cpuset_size.html comp-c-htmlman html +./usr/share/man/html3/cpuset_zero.html comp-c-htmlman html +./usr/share/man/html3/cpxattr.html comp-c-htmlman html +./usr/share/man/html3/creal.html comp-c-htmlman complex,html +./usr/share/man/html3/crealf.html comp-c-htmlman complex,html +./usr/share/man/html3/creall.html comp-c-htmlman complex,html +./usr/share/man/html3/creat.html comp-c-htmlman html +./usr/share/man/html3/crypt.html comp-c-htmlman html +./usr/share/man/html3/crypto.html comp-c-htmlman crypto,html +./usr/share/man/html3/csin.html comp-c-htmlman complex,html +./usr/share/man/html3/csinf.html comp-c-htmlman complex,html +./usr/share/man/html3/csinh.html comp-c-htmlman complex,html +./usr/share/man/html3/csinhf.html comp-c-htmlman complex,html +./usr/share/man/html3/csqrt.html comp-c-htmlman complex,html +./usr/share/man/html3/csqrtf.html comp-c-htmlman complex,html +./usr/share/man/html3/ctan.html comp-c-htmlman complex,html +./usr/share/man/html3/ctanf.html comp-c-htmlman complex,html +./usr/share/man/html3/ctanh.html comp-c-htmlman complex,html +./usr/share/man/html3/ctanhf.html comp-c-htmlman complex,html +./usr/share/man/html3/ctermid.html comp-c-htmlman html +./usr/share/man/html3/ctime.html comp-c-htmlman html +./usr/share/man/html3/ctime_r.html comp-c-htmlman html +./usr/share/man/html3/ctime_rz.html comp-c-htmlman html +./usr/share/man/html3/ctype.html comp-c-htmlman html +./usr/share/man/html3/current_field.html comp-c-htmlman html +./usr/share/man/html3/current_item.html comp-c-htmlman html +./usr/share/man/html3/curs_set.html comp-c-htmlman html +./usr/share/man/html3/curses.html comp-c-htmlman html +./usr/share/man/html3/curses_addch.html comp-c-htmlman html +./usr/share/man/html3/curses_addchstr.html comp-c-htmlman html +./usr/share/man/html3/curses_addstr.html comp-c-htmlman html +./usr/share/man/html3/curses_attributes.html comp-c-htmlman html +./usr/share/man/html3/curses_background.html comp-c-htmlman html +./usr/share/man/html3/curses_border.html comp-c-htmlman html +./usr/share/man/html3/curses_chgat.html comp-c-htmlman html +./usr/share/man/html3/curses_clear.html comp-c-htmlman html +./usr/share/man/html3/curses_color.html comp-c-htmlman html +./usr/share/man/html3/curses_cursor.html comp-c-htmlman html +./usr/share/man/html3/curses_default_colors.html comp-c-htmlman html +./usr/share/man/html3/curses_delch.html comp-c-htmlman html +./usr/share/man/html3/curses_deleteln.html comp-c-htmlman html +./usr/share/man/html3/curses_echochar.html comp-c-htmlman html +./usr/share/man/html3/curses_fileio.html comp-c-htmlman html +./usr/share/man/html3/curses_inch.html comp-c-htmlman html +./usr/share/man/html3/curses_input.html comp-c-htmlman html +./usr/share/man/html3/curses_insdelln.html comp-c-htmlman html +./usr/share/man/html3/curses_insertch.html comp-c-htmlman html +./usr/share/man/html3/curses_insertln.html comp-c-htmlman html +./usr/share/man/html3/curses_keyname.html comp-c-htmlman html +./usr/share/man/html3/curses_line.html comp-c-htmlman html +./usr/share/man/html3/curses_pad.html comp-c-htmlman html +./usr/share/man/html3/curses_print.html comp-c-htmlman html +./usr/share/man/html3/curses_refresh.html comp-c-htmlman html +./usr/share/man/html3/curses_scanw.html comp-c-htmlman html +./usr/share/man/html3/curses_screen.html comp-c-htmlman html +./usr/share/man/html3/curses_scroll.html comp-c-htmlman html +./usr/share/man/html3/curses_standout.html comp-c-htmlman html +./usr/share/man/html3/curses_termcap.html comp-c-htmlman html +./usr/share/man/html3/curses_touch.html comp-c-htmlman html +./usr/share/man/html3/curses_tty.html comp-c-htmlman html +./usr/share/man/html3/curses_underscore.html comp-c-htmlman html +./usr/share/man/html3/curses_window.html comp-c-htmlman html +./usr/share/man/html3/cuserid.html comp-c-htmlman html +./usr/share/man/html3/d2i_ASN1_OBJECT.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_DHparams.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_DSAPublicKey.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_PKCS8PrivateKey.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_RSAPublicKey.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_SSL_SESSION.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_X509.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_X509_ALGOR.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_X509_CRL.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_X509_NAME.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_X509_REQ.html comp-c-htmlman crypto,html +./usr/share/man/html3/d2i_X509_SIG.html comp-c-htmlman crypto,html +./usr/share/man/html3/daemon.html comp-c-htmlman html +./usr/share/man/html3/data_ahead.html comp-c-htmlman html +./usr/share/man/html3/data_behind.html comp-c-htmlman html +./usr/share/man/html3/daylight.html comp-c-htmlman html +./usr/share/man/html3/db.html comp-c-htmlman html +./usr/share/man/html3/dbm_clearerr.html comp-c-htmlman html +./usr/share/man/html3/dbm_close.html comp-c-htmlman html +./usr/share/man/html3/dbm_delete.html comp-c-htmlman html +./usr/share/man/html3/dbm_dirfno.html comp-c-htmlman html +./usr/share/man/html3/dbm_error.html comp-c-htmlman html +./usr/share/man/html3/dbm_fetch.html comp-c-htmlman html +./usr/share/man/html3/dbm_firstkey.html comp-c-htmlman html +./usr/share/man/html3/dbm_nextkey.html comp-c-htmlman html +./usr/share/man/html3/dbm_open.html comp-c-htmlman html +./usr/share/man/html3/dbm_store.html comp-c-htmlman html +./usr/share/man/html3/dbopen.html comp-c-htmlman html +./usr/share/man/html3/dcgettext.html comp-c-htmlman html +./usr/share/man/html3/dcngettext.html comp-c-htmlman html +./usr/share/man/html3/def_prog_mode.html comp-c-htmlman html +./usr/share/man/html3/def_shell_mode.html comp-c-htmlman html +./usr/share/man/html3/define_key.html comp-c-htmlman html +./usr/share/man/html3/dehumanize_number.html comp-c-htmlman html +./usr/share/man/html3/del_curterm.html comp-c-htmlman html +./usr/share/man/html3/delay_output.html comp-c-htmlman html +./usr/share/man/html3/delch.html comp-c-htmlman html +./usr/share/man/html3/deleteln.html comp-c-htmlman html +./usr/share/man/html3/delscreen.html comp-c-htmlman html +./usr/share/man/html3/delwin.html comp-c-htmlman html +./usr/share/man/html3/derwin.html comp-c-htmlman html +./usr/share/man/html3/des.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_cbc_cksum.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_cfb64_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_cfb_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_crypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ecb2_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ecb3_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ecb_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ede2_cbc_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ede2_cfb64_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ede2_ofb64_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ede3_cbc_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ede3_cbcm_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ede3_cfb64_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ede3_ofb64_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_enc_read.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_enc_write.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_fcrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_is_weak_key.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_key_sched.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ncbc_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ofb64_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_ofb_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_pcbc_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_quad_cksum.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_random_key.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_read_2passwords.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_read_password.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_read_pw_string.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_set_key.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_set_key_checked.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_set_key_unchecked.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_set_odd_parity.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_string_to_2keys.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_string_to_key.html comp-c-htmlman crypto,html +./usr/share/man/html3/des_xcbc_encrypt.html comp-c-htmlman crypto,html +./usr/share/man/html3/devname.html comp-c-htmlman html +./usr/share/man/html3/dgettext.html comp-c-htmlman html +./usr/share/man/html3/difftime.html comp-c-htmlman html +./usr/share/man/html3/dir.html comp-c-htmlman html +./usr/share/man/html3/directory.html comp-c-htmlman html +./usr/share/man/html3/dirent.html comp-c-htmlman html +./usr/share/man/html3/dirfd.html comp-c-htmlman html +./usr/share/man/html3/dirname.html comp-c-htmlman html +./usr/share/man/html3/disklabel_dkcksum.html comp-c-htmlman html +./usr/share/man/html3/disklabel_scan.html comp-c-htmlman html +./usr/share/man/html3/div.html comp-c-htmlman html +./usr/share/man/html3/dl_iterate_phdr.html comp-c-htmlman html +./usr/share/man/html3/dladdr.html comp-c-htmlman html +./usr/share/man/html3/dlclose.html comp-c-htmlman html +./usr/share/man/html3/dlctl.html comp-c-htmlman html +./usr/share/man/html3/dlerror.html comp-c-htmlman html +./usr/share/man/html3/dlfcn.html comp-c-htmlman html +./usr/share/man/html3/dlopen.html comp-c-htmlman html +./usr/share/man/html3/dlsym.html comp-c-htmlman html +./usr/share/man/html3/dlvsym.html comp-c-htmlman html +./usr/share/man/html3/dm.html comp-c-htmlman html +./usr/share/man/html3/dn_comp.html comp-c-htmlman html +./usr/share/man/html3/dn_expand.html comp-c-htmlman html +./usr/share/man/html3/dngettext.html comp-c-htmlman html +./usr/share/man/html3/doupdate.html comp-c-htmlman html +./usr/share/man/html3/dprintf.html comp-c-htmlman html +./usr/share/man/html3/drand48.html comp-c-htmlman html +./usr/share/man/html3/dup_field.html comp-c-htmlman html +./usr/share/man/html3/dupwin.html comp-c-htmlman html +./usr/share/man/html3/dynamic_field_info.html comp-c-htmlman html +./usr/share/man/html3/easprintf.html comp-c-htmlman html +./usr/share/man/html3/ecalloc.html comp-c-htmlman html +./usr/share/man/html3/echo.html comp-c-htmlman html +./usr/share/man/html3/echochar.html comp-c-htmlman html +./usr/share/man/html3/edata.html comp-c-htmlman html +./usr/share/man/html3/editline.html comp-c-htmlman html +./usr/share/man/html3/efopen.html comp-c-htmlman html +./usr/share/man/html3/efun.html comp-c-htmlman html +./usr/share/man/html3/el_deletestr.html comp-c-htmlman html +./usr/share/man/html3/el_end.html comp-c-htmlman html +./usr/share/man/html3/el_get.html comp-c-htmlman html +./usr/share/man/html3/el_getc.html comp-c-htmlman html +./usr/share/man/html3/el_gets.html comp-c-htmlman html +./usr/share/man/html3/el_init.html comp-c-htmlman html +./usr/share/man/html3/el_insertstr.html comp-c-htmlman html +./usr/share/man/html3/el_line.html comp-c-htmlman html +./usr/share/man/html3/el_parse.html comp-c-htmlman html +./usr/share/man/html3/el_push.html comp-c-htmlman html +./usr/share/man/html3/el_reset.html comp-c-htmlman html +./usr/share/man/html3/el_resize.html comp-c-htmlman html +./usr/share/man/html3/el_set.html comp-c-htmlman html +./usr/share/man/html3/el_source.html comp-c-htmlman html +./usr/share/man/html3/elf.html comp-c-htmlman html +./usr/share/man/html3/elf32_checksum.html comp-c-htmlman html +./usr/share/man/html3/elf32_fsize.html comp-c-htmlman html +./usr/share/man/html3/elf32_getehdr.html comp-c-htmlman html +./usr/share/man/html3/elf32_getphdr.html comp-c-htmlman html +./usr/share/man/html3/elf32_getshdr.html comp-c-htmlman html +./usr/share/man/html3/elf32_newehdr.html comp-c-htmlman html +./usr/share/man/html3/elf32_newphdr.html comp-c-htmlman html +./usr/share/man/html3/elf32_xlatetof.html comp-c-htmlman html +./usr/share/man/html3/elf32_xlatetom.html comp-c-htmlman html +./usr/share/man/html3/elf64_checksum.html comp-c-htmlman html +./usr/share/man/html3/elf64_fsize.html comp-c-htmlman html +./usr/share/man/html3/elf64_getehdr.html comp-c-htmlman html +./usr/share/man/html3/elf64_getphdr.html comp-c-htmlman html +./usr/share/man/html3/elf64_getshdr.html comp-c-htmlman html +./usr/share/man/html3/elf64_newehdr.html comp-c-htmlman html +./usr/share/man/html3/elf64_newphdr.html comp-c-htmlman html +./usr/share/man/html3/elf64_xlatetof.html comp-c-htmlman html +./usr/share/man/html3/elf64_xlatetom.html comp-c-htmlman html +./usr/share/man/html3/elf_begin.html comp-c-htmlman html +./usr/share/man/html3/elf_cntl.html comp-c-htmlman html +./usr/share/man/html3/elf_end.html comp-c-htmlman html +./usr/share/man/html3/elf_errmsg.html comp-c-htmlman html +./usr/share/man/html3/elf_errno.html comp-c-htmlman html +./usr/share/man/html3/elf_fill.html comp-c-htmlman html +./usr/share/man/html3/elf_flagdata.html comp-c-htmlman html +./usr/share/man/html3/elf_flagehdr.html comp-c-htmlman html +./usr/share/man/html3/elf_flagelf.html comp-c-htmlman html +./usr/share/man/html3/elf_flagphdr.html comp-c-htmlman html +./usr/share/man/html3/elf_flagscn.html comp-c-htmlman html +./usr/share/man/html3/elf_flagshdr.html comp-c-htmlman html +./usr/share/man/html3/elf_getarhdr.html comp-c-htmlman html +./usr/share/man/html3/elf_getarsym.html comp-c-htmlman html +./usr/share/man/html3/elf_getbase.html comp-c-htmlman html +./usr/share/man/html3/elf_getdata.html comp-c-htmlman html +./usr/share/man/html3/elf_getident.html comp-c-htmlman html +./usr/share/man/html3/elf_getphnum.html comp-c-htmlman html +./usr/share/man/html3/elf_getscn.html comp-c-htmlman html +./usr/share/man/html3/elf_getshnum.html comp-c-htmlman html +./usr/share/man/html3/elf_getshstrndx.html comp-c-htmlman html +./usr/share/man/html3/elf_hash.html comp-c-htmlman html +./usr/share/man/html3/elf_kind.html comp-c-htmlman html +./usr/share/man/html3/elf_memory.html comp-c-htmlman html +./usr/share/man/html3/elf_ndxscn.html comp-c-htmlman html +./usr/share/man/html3/elf_newdata.html comp-c-htmlman html +./usr/share/man/html3/elf_newscn.html comp-c-htmlman html +./usr/share/man/html3/elf_next.html comp-c-htmlman html +./usr/share/man/html3/elf_nextscn.html comp-c-htmlman html +./usr/share/man/html3/elf_rand.html comp-c-htmlman html +./usr/share/man/html3/elf_rawdata.html comp-c-htmlman html +./usr/share/man/html3/elf_rawfile.html comp-c-htmlman html +./usr/share/man/html3/elf_setshstrndx.html comp-c-htmlman html +./usr/share/man/html3/elf_strptr.html comp-c-htmlman html +./usr/share/man/html3/elf_update.html comp-c-htmlman html +./usr/share/man/html3/elf_version.html comp-c-htmlman html +./usr/share/man/html3/emalloc.html comp-c-htmlman html +./usr/share/man/html3/encrypt.html comp-c-htmlman html +./usr/share/man/html3/end.html comp-c-htmlman html +./usr/share/man/html3/endfsent.html comp-c-htmlman html +./usr/share/man/html3/endgrent.html comp-c-htmlman html +./usr/share/man/html3/endhostent.html comp-c-htmlman html +./usr/share/man/html3/endnetconfig.html comp-c-htmlman html +./usr/share/man/html3/endnetent.html comp-c-htmlman html +./usr/share/man/html3/endnetgrent.html comp-c-htmlman html +./usr/share/man/html3/endnetpath.html comp-c-htmlman html +./usr/share/man/html3/endprotoent.html comp-c-htmlman html +./usr/share/man/html3/endpwent.html comp-c-htmlman html +./usr/share/man/html3/endrpcent.html comp-c-htmlman html +./usr/share/man/html3/endservent.html comp-c-htmlman html +./usr/share/man/html3/endttyent.html comp-c-htmlman html +./usr/share/man/html3/endusershell.html comp-c-htmlman html +./usr/share/man/html3/endutxent.html comp-c-htmlman html +./usr/share/man/html3/endwin.html comp-c-htmlman html +./usr/share/man/html3/erand48.html comp-c-htmlman html +./usr/share/man/html3/erase.html comp-c-htmlman html +./usr/share/man/html3/erasechar.html comp-c-htmlman html +./usr/share/man/html3/erealloc.html comp-c-htmlman html +./usr/share/man/html3/erf.html comp-c-htmlman html +./usr/share/man/html3/erfc.html comp-c-htmlman html +./usr/share/man/html3/erfcf.html comp-c-htmlman html +./usr/share/man/html3/erff.html comp-c-htmlman html +./usr/share/man/html3/err.html comp-c-htmlman html +./usr/share/man/html3/error_message.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/error_table_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/errx.html comp-c-htmlman html +./usr/share/man/html3/esetfunc.html comp-c-htmlman html +./usr/share/man/html3/estrdup.html comp-c-htmlman html +./usr/share/man/html3/estrlcat.html comp-c-htmlman html +./usr/share/man/html3/estrlcpy.html comp-c-htmlman html +./usr/share/man/html3/estrndup.html comp-c-htmlman html +./usr/share/man/html3/etext.html comp-c-htmlman html +./usr/share/man/html3/ether_aton.html comp-c-htmlman html +./usr/share/man/html3/ether_hostton.html comp-c-htmlman html +./usr/share/man/html3/ether_line.html comp-c-htmlman html +./usr/share/man/html3/ether_ntoa.html comp-c-htmlman html +./usr/share/man/html3/ether_ntohost.html comp-c-htmlman html +./usr/share/man/html3/ethers.html comp-c-htmlman html +./usr/share/man/html3/evasprintf.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_add.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_add_buffer.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_add_printf.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_add_vprintf.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_drain.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_find.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_free.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_new.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_read.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_readline.html comp-c-htmlman html +./usr/share/man/html3/evbuffer_write.html comp-c-htmlman html +./usr/share/man/html3/evdns.html comp-c-htmlman html +./usr/share/man/html3/evdns_clear_nameservers_and_suspend.html comp-c-htmlman html +./usr/share/man/html3/evdns_count_nameservers.html comp-c-htmlman html +./usr/share/man/html3/evdns_err_to_string.html comp-c-htmlman html +./usr/share/man/html3/evdns_init.html comp-c-htmlman html +./usr/share/man/html3/evdns_nameserver_add.html comp-c-htmlman html +./usr/share/man/html3/evdns_nameserver_ip_add.html comp-c-htmlman html +./usr/share/man/html3/evdns_resolv_conf_parse.html comp-c-htmlman html +./usr/share/man/html3/evdns_resolve_ipv4.html comp-c-htmlman html +./usr/share/man/html3/evdns_resolve_reverse.html comp-c-htmlman html +./usr/share/man/html3/evdns_resume.html comp-c-htmlman html +./usr/share/man/html3/evdns_search_add.html comp-c-htmlman html +./usr/share/man/html3/evdns_search_clear.html comp-c-htmlman html +./usr/share/man/html3/evdns_search_ndots_set.html comp-c-htmlman html +./usr/share/man/html3/evdns_set_log_fn.html comp-c-htmlman html +./usr/share/man/html3/evdns_shutdown.html comp-c-htmlman html +./usr/share/man/html3/event.html comp-c-htmlman html +./usr/share/man/html3/event_add.html comp-c-htmlman html +./usr/share/man/html3/event_base_dispatch.html comp-c-htmlman html +./usr/share/man/html3/event_base_free.html comp-c-htmlman html +./usr/share/man/html3/event_base_loop.html comp-c-htmlman html +./usr/share/man/html3/event_base_loopbreak.html comp-c-htmlman html +./usr/share/man/html3/event_base_loopexit.html comp-c-htmlman html +./usr/share/man/html3/event_base_once.html comp-c-htmlman html +./usr/share/man/html3/event_base_set.html comp-c-htmlman html +./usr/share/man/html3/event_del.html comp-c-htmlman html +./usr/share/man/html3/event_dispatch.html comp-c-htmlman html +./usr/share/man/html3/event_init.html comp-c-htmlman html +./usr/share/man/html3/event_initialized.html comp-c-htmlman html +./usr/share/man/html3/event_loop.html comp-c-htmlman html +./usr/share/man/html3/event_loopbreak.html comp-c-htmlman html +./usr/share/man/html3/event_loopexit.html comp-c-htmlman html +./usr/share/man/html3/event_once.html comp-c-htmlman html +./usr/share/man/html3/event_pending.html comp-c-htmlman html +./usr/share/man/html3/event_set.html comp-c-htmlman html +./usr/share/man/html3/evhttp_bind_socket.html comp-c-htmlman html +./usr/share/man/html3/evhttp_free.html comp-c-htmlman html +./usr/share/man/html3/evhttp_new.html comp-c-htmlman html +./usr/share/man/html3/evtimer_add.html comp-c-htmlman html +./usr/share/man/html3/evtimer_del.html comp-c-htmlman html +./usr/share/man/html3/evtimer_initialized.html comp-c-htmlman html +./usr/share/man/html3/evtimer_pending.html comp-c-htmlman html +./usr/share/man/html3/evtimer_set.html comp-c-htmlman html +./usr/share/man/html3/exec.html comp-c-htmlman html +./usr/share/man/html3/execl.html comp-c-htmlman html +./usr/share/man/html3/execle.html comp-c-htmlman html +./usr/share/man/html3/execlp.html comp-c-htmlman html +./usr/share/man/html3/exect.html comp-c-htmlman html +./usr/share/man/html3/execv.html comp-c-htmlman html +./usr/share/man/html3/execvp.html comp-c-htmlman html +./usr/share/man/html3/exit.html comp-c-htmlman html +./usr/share/man/html3/exp.html comp-c-htmlman html +./usr/share/man/html3/exp2.html comp-c-htmlman html +./usr/share/man/html3/exp2f.html comp-c-htmlman html +./usr/share/man/html3/expf.html comp-c-htmlman html +./usr/share/man/html3/expm1.html comp-c-htmlman html +./usr/share/man/html3/expm1f.html comp-c-htmlman html +./usr/share/man/html3/extattr.html comp-obsolete obsolete +./usr/share/man/html3/extattr_copy_fd.html comp-c-htmlman html +./usr/share/man/html3/extattr_copy_file.html comp-c-htmlman html +./usr/share/man/html3/extattr_copy_link.html comp-c-htmlman html +./usr/share/man/html3/extattr_namespace_to_string.html comp-c-htmlman html +./usr/share/man/html3/extattr_string_to_namespace.html comp-c-htmlman html +./usr/share/man/html3/fabs.html comp-c-htmlman html +./usr/share/man/html3/fabsf.html comp-c-htmlman html +./usr/share/man/html3/fast_divide32.html comp-c-htmlman html +./usr/share/man/html3/fast_divide32_prepare.html comp-c-htmlman html +./usr/share/man/html3/fast_remainder32.html comp-c-htmlman html +./usr/share/man/html3/fclose.html comp-c-htmlman html +./usr/share/man/html3/fcpxattr.html comp-c-htmlman html +./usr/share/man/html3/fdim.html comp-c-htmlman html +./usr/share/man/html3/fdimf.html comp-c-htmlman html +./usr/share/man/html3/fdiml.html comp-c-htmlman html +./usr/share/man/html3/fdopen.html comp-c-htmlman html +./usr/share/man/html3/fdopendir.html comp-c-htmlman html +./usr/share/man/html3/feclearexcept.html comp-c-htmlman html +./usr/share/man/html3/fedisableexcept.html comp-c-htmlman html +./usr/share/man/html3/feenableexcept.html comp-c-htmlman html +./usr/share/man/html3/fegetenv.html comp-c-htmlman html +./usr/share/man/html3/fegetexcept.html comp-c-htmlman html +./usr/share/man/html3/fegetexceptflag.html comp-c-htmlman html +./usr/share/man/html3/fegetround.html comp-c-htmlman html +./usr/share/man/html3/feholdexcept.html comp-c-htmlman html +./usr/share/man/html3/fenv.html comp-c-htmlman html +./usr/share/man/html3/feof.html comp-c-htmlman html +./usr/share/man/html3/feraiseexcept.html comp-c-htmlman html +./usr/share/man/html3/ferror.html comp-c-htmlman html +./usr/share/man/html3/feseteexcpetflag.html comp-obsolete obsolete +./usr/share/man/html3/fesetenv.html comp-c-htmlman html +./usr/share/man/html3/fesetexceptflag.html comp-c-htmlman html +./usr/share/man/html3/fesetround.html comp-c-htmlman html +./usr/share/man/html3/fetch.html comp-c-htmlman html +./usr/share/man/html3/fetestexcept.html comp-c-htmlman html +./usr/share/man/html3/feupdateenv.html comp-c-html html +./usr/share/man/html3/fflush.html comp-c-htmlman html +./usr/share/man/html3/ffs.html comp-c-htmlman html +./usr/share/man/html3/ffs32.html comp-c-htmlman html +./usr/share/man/html3/ffs64.html comp-c-htmlman html +./usr/share/man/html3/fgetc.html comp-c-htmlman html +./usr/share/man/html3/fgetln.html comp-c-htmlman html +./usr/share/man/html3/fgetpos.html comp-c-htmlman html +./usr/share/man/html3/fgets.html comp-c-htmlman html +./usr/share/man/html3/fgetwc.html comp-c-htmlman html +./usr/share/man/html3/fgetwln.html comp-c-htmlman html +./usr/share/man/html3/fgetws.html comp-c-htmlman html +./usr/share/man/html3/field_arg.html comp-c-htmlman html +./usr/share/man/html3/field_back.html comp-c-htmlman html +./usr/share/man/html3/field_buffer.html comp-c-htmlman html +./usr/share/man/html3/field_count.html comp-c-htmlman html +./usr/share/man/html3/field_fore.html comp-c-htmlman html +./usr/share/man/html3/field_index.html comp-c-htmlman html +./usr/share/man/html3/field_info.html comp-c-htmlman html +./usr/share/man/html3/field_init.html comp-c-htmlman html +./usr/share/man/html3/field_just.html comp-c-htmlman html +./usr/share/man/html3/field_opts.html comp-c-htmlman html +./usr/share/man/html3/field_opts_off.html comp-c-htmlman html +./usr/share/man/html3/field_opts_on.html comp-c-htmlman html +./usr/share/man/html3/field_pad.html comp-c-htmlman html +./usr/share/man/html3/field_status.html comp-c-htmlman html +./usr/share/man/html3/field_term.html comp-c-htmlman html +./usr/share/man/html3/field_type.html comp-c-htmlman html +./usr/share/man/html3/field_userptr.html comp-c-htmlman html +./usr/share/man/html3/fileno.html comp-c-htmlman html +./usr/share/man/html3/finite.html comp-c-htmlman html +./usr/share/man/html3/finitef.html comp-c-htmlman html +./usr/share/man/html3/flags_to_string.html comp-c-htmlman html +./usr/share/man/html3/flash.html comp-c-htmlman html +./usr/share/man/html3/flockfile.html comp-c-htmlman html +./usr/share/man/html3/floor.html comp-c-htmlman html +./usr/share/man/html3/floorf.html comp-c-htmlman html +./usr/share/man/html3/fls32.html comp-c-htmlman html +./usr/share/man/html3/fls64.html comp-c-htmlman html +./usr/share/man/html3/flushinp.html comp-c-htmlman html +./usr/share/man/html3/flushok.html comp-c-htmlman html +./usr/share/man/html3/fmax.html comp-c-htmlman html +./usr/share/man/html3/fmaxf.html comp-c-htmlman html +./usr/share/man/html3/fmaxl.html comp-c-htmlman html +./usr/share/man/html3/fmemopen.html comp-c-htmlman html +./usr/share/man/html3/fmin.html comp-c-htmlman html +./usr/share/man/html3/fminf.html comp-c-htmlman html +./usr/share/man/html3/fminl.html comp-c-htmlman html +./usr/share/man/html3/fmod.html comp-c-htmlman html +./usr/share/man/html3/fmodf.html comp-c-htmlman html +./usr/share/man/html3/fmtcheck.html comp-c-htmlman html +./usr/share/man/html3/fmtmsg.html comp-c-htmlman html +./usr/share/man/html3/fnmatch.html comp-c-htmlman html +./usr/share/man/html3/fopen.html comp-c-htmlman html +./usr/share/man/html3/forkpty.html comp-c-htmlman html +./usr/share/man/html3/form.html comp-c-htmlman html +./usr/share/man/html3/form_cursor.html comp-c-htmlman html +./usr/share/man/html3/form_data.html comp-c-htmlman html +./usr/share/man/html3/form_driver.html comp-c-htmlman html +./usr/share/man/html3/form_field.html comp-c-htmlman html +./usr/share/man/html3/form_field_attributes.html comp-c-htmlman html +./usr/share/man/html3/form_field_buffer.html comp-c-htmlman html +./usr/share/man/html3/form_field_info.html comp-c-htmlman html +./usr/share/man/html3/form_field_just.html comp-c-htmlman html +./usr/share/man/html3/form_field_new.html comp-c-htmlman html +./usr/share/man/html3/form_field_opts.html comp-c-htmlman html +./usr/share/man/html3/form_field_userptr.html comp-c-htmlman html +./usr/share/man/html3/form_field_validation.html comp-c-htmlman html +./usr/share/man/html3/form_fields.html comp-c-htmlman html +./usr/share/man/html3/form_fieldtype.html comp-c-htmlman html +./usr/share/man/html3/form_hook.html comp-c-htmlman html +./usr/share/man/html3/form_init.html comp-c-htmlman html +./usr/share/man/html3/form_max_page.html comp-c-htmlman html +./usr/share/man/html3/form_new.html comp-c-htmlman html +./usr/share/man/html3/form_new_page.html comp-c-htmlman html +./usr/share/man/html3/form_opts.html comp-c-htmlman html +./usr/share/man/html3/form_opts_off.html comp-c-htmlman html +./usr/share/man/html3/form_opts_on.html comp-c-htmlman html +./usr/share/man/html3/form_page.html comp-c-htmlman html +./usr/share/man/html3/form_post.html comp-c-htmlman html +./usr/share/man/html3/form_sub.html comp-c-htmlman html +./usr/share/man/html3/form_term.html comp-c-htmlman html +./usr/share/man/html3/form_userptr.html comp-c-htmlman html +./usr/share/man/html3/form_win.html comp-c-htmlman html +./usr/share/man/html3/forms.html comp-c-htmlman html +./usr/share/man/html3/fp_nquery.html comp-c-htmlman html +./usr/share/man/html3/fp_resstat.html comp-c-htmlman html +./usr/share/man/html3/fparseln.html comp-c-htmlman html +./usr/share/man/html3/fpclassify.html comp-c-htmlman html +./usr/share/man/html3/fpgetmask.html comp-c-htmlman html +./usr/share/man/html3/fpgetprec.html comp-c-htmlman html +./usr/share/man/html3/fpgetround.html comp-c-htmlman html +./usr/share/man/html3/fpgetsticky.html comp-c-htmlman html +./usr/share/man/html3/fprintf.html comp-c-htmlman html +./usr/share/man/html3/fpsetmask.html comp-c-htmlman html +./usr/share/man/html3/fpsetprec.html comp-c-htmlman html +./usr/share/man/html3/fpsetround.html comp-c-htmlman html +./usr/share/man/html3/fpsetsticky.html comp-c-htmlman html +./usr/share/man/html3/fpurge.html comp-c-htmlman html +./usr/share/man/html3/fputc.html comp-c-htmlman html +./usr/share/man/html3/fputs.html comp-c-htmlman html +./usr/share/man/html3/fputwc.html comp-c-htmlman html +./usr/share/man/html3/fputws.html comp-c-htmlman html +./usr/share/man/html3/fread.html comp-c-htmlman html +./usr/share/man/html3/free.html comp-c-htmlman html +./usr/share/man/html3/free_field.html comp-c-htmlman html +./usr/share/man/html3/free_fieldtype.html comp-c-htmlman html +./usr/share/man/html3/free_form.html comp-c-htmlman html +./usr/share/man/html3/free_item.html comp-c-htmlman html +./usr/share/man/html3/free_menu.html comp-c-htmlman html +./usr/share/man/html3/freeaddrinfo.html comp-c-htmlman html +./usr/share/man/html3/freeifaddrs.html comp-c-htmlman html +./usr/share/man/html3/freopen.html comp-c-htmlman html +./usr/share/man/html3/frexp.html comp-c-htmlman html +./usr/share/man/html3/fropen.html comp-c-htmlman html +./usr/share/man/html3/fropen2.html comp-c-htmlman html +./usr/share/man/html3/fscanf.html comp-c-htmlman html +./usr/share/man/html3/fseek.html comp-c-htmlman html +./usr/share/man/html3/fseeko.html comp-c-htmlman html +./usr/share/man/html3/fsetpos.html comp-c-htmlman html +./usr/share/man/html3/ftell.html comp-c-htmlman html +./usr/share/man/html3/ftello.html comp-c-htmlman html +./usr/share/man/html3/ftime.html comp-c-htmlman html +./usr/share/man/html3/ftok.html comp-c-htmlman html +./usr/share/man/html3/ftrylockfile.html comp-c-htmlman html +./usr/share/man/html3/fts.html comp-c-htmlman html +./usr/share/man/html3/fts_children.html comp-c-htmlman html +./usr/share/man/html3/fts_close.html comp-c-htmlman html +./usr/share/man/html3/fts_open.html comp-c-htmlman html +./usr/share/man/html3/fts_read.html comp-c-htmlman html +./usr/share/man/html3/fts_set.html comp-c-htmlman html +./usr/share/man/html3/ftw.html comp-c-htmlman html +./usr/share/man/html3/fullname.html comp-c-htmlman html +./usr/share/man/html3/funlockfile.html comp-c-htmlman html +./usr/share/man/html3/funopen.html comp-c-htmlman html +./usr/share/man/html3/funopen2.html comp-c-htmlman html +./usr/share/man/html3/fwide.html comp-c-htmlman html +./usr/share/man/html3/fwopen.html comp-c-htmlman html +./usr/share/man/html3/fwopen2.html comp-c-htmlman html +./usr/share/man/html3/fwprintf.html comp-c-htmlman html +./usr/share/man/html3/fwrite.html comp-c-htmlman html +./usr/share/man/html3/fwscanf.html comp-c-htmlman html +./usr/share/man/html3/gai_strerror.html comp-c-htmlman html +./usr/share/man/html3/gamma.html comp-c-htmlman html +./usr/share/man/html3/gamma_r.html comp-c-htmlman html +./usr/share/man/html3/gammaf.html comp-c-htmlman html +./usr/share/man/html3/gammaf_r.html comp-c-htmlman html +./usr/share/man/html3/gcq.html comp-c-htmlman html +./usr/share/man/html3/gcq_clear.html comp-c-htmlman html +./usr/share/man/html3/gcq_empty.html comp-c-htmlman html +./usr/share/man/html3/gcq_head.html comp-c-htmlman html +./usr/share/man/html3/gcq_hq.html comp-c-htmlman html +./usr/share/man/html3/gcq_init.html comp-c-htmlman html +./usr/share/man/html3/gcq_init_head.html comp-c-htmlman html +./usr/share/man/html3/gcq_insert_after.html comp-c-htmlman html +./usr/share/man/html3/gcq_insert_before.html comp-c-htmlman html +./usr/share/man/html3/gcq_insert_head.html comp-c-htmlman html +./usr/share/man/html3/gcq_insert_tail.html comp-c-htmlman html +./usr/share/man/html3/gcq_linked.html comp-c-htmlman html +./usr/share/man/html3/gcq_merge.html comp-c-htmlman html +./usr/share/man/html3/gcq_merge_head.html comp-c-htmlman html +./usr/share/man/html3/gcq_merge_tail.html comp-c-htmlman html +./usr/share/man/html3/gcq_onlist.html comp-c-htmlman html +./usr/share/man/html3/gcq_q.html comp-c-htmlman html +./usr/share/man/html3/gcq_remove.html comp-c-htmlman html +./usr/share/man/html3/gcq_remove_all.html comp-c-htmlman html +./usr/share/man/html3/gcq_tie.html comp-c-htmlman html +./usr/share/man/html3/gcq_tie_after.html comp-c-htmlman html +./usr/share/man/html3/gcq_tie_before.html comp-c-htmlman html +./usr/share/man/html3/gelf.html comp-c-htmlman html +./usr/share/man/html3/gelf_checksum.html comp-c-htmlman html +./usr/share/man/html3/gelf_fsize.html comp-c-htmlman html +./usr/share/man/html3/gelf_getcap.html comp-c-htmlman html +./usr/share/man/html3/gelf_getclass.html comp-c-htmlman html +./usr/share/man/html3/gelf_getdyn.html comp-c-htmlman html +./usr/share/man/html3/gelf_getehdr.html comp-c-htmlman html +./usr/share/man/html3/gelf_getmove.html comp-c-htmlman html +./usr/share/man/html3/gelf_getphdr.html comp-c-htmlman html +./usr/share/man/html3/gelf_getrel.html comp-c-htmlman html +./usr/share/man/html3/gelf_getrela.html comp-c-htmlman html +./usr/share/man/html3/gelf_getshdr.html comp-c-htmlman html +./usr/share/man/html3/gelf_getsym.html comp-c-htmlman html +./usr/share/man/html3/gelf_getsyminfo.html comp-c-htmlman html +./usr/share/man/html3/gelf_getsymshndx.html comp-c-htmlman html +./usr/share/man/html3/gelf_newehdr.html comp-c-htmlman html +./usr/share/man/html3/gelf_newphdr.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_cap.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_dyn.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_ehdr.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_move.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_phdr.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_rel.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_rela.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_shdr.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_sym.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_syminfo.html comp-c-htmlman html +./usr/share/man/html3/gelf_update_symshndx.html comp-c-htmlman html +./usr/share/man/html3/gelf_xlatetof.html comp-c-htmlman html +./usr/share/man/html3/gelf_xlatetom.html comp-c-htmlman html +./usr/share/man/html3/get_myaddress.html comp-c-htmlman html +./usr/share/man/html3/getaddrinfo.html comp-c-htmlman html +./usr/share/man/html3/getattrs.html comp-c-htmlman html +./usr/share/man/html3/getbegx.html comp-c-htmlman html +./usr/share/man/html3/getbegy.html comp-c-htmlman html +./usr/share/man/html3/getbkgd.html comp-c-htmlman html +./usr/share/man/html3/getbootfile.html comp-c-htmlman html +./usr/share/man/html3/getbsize.html comp-c-htmlman html +./usr/share/man/html3/getc.html comp-c-htmlman html +./usr/share/man/html3/getc_unlocked.html comp-c-htmlman html +./usr/share/man/html3/getcap.html comp-obsolete obsolete +./usr/share/man/html3/getch.html comp-c-htmlman html +./usr/share/man/html3/getchar.html comp-c-htmlman html +./usr/share/man/html3/getchar_unlocked.html comp-c-htmlman html +./usr/share/man/html3/getcurx.html comp-c-htmlman html +./usr/share/man/html3/getcury.html comp-c-htmlman html +./usr/share/man/html3/getcwd.html comp-c-htmlman html +./usr/share/man/html3/getdate.html comp-c-htmlman html +./usr/share/man/html3/getdate_err.html comp-c-htmlman html +./usr/share/man/html3/getdelim.html comp-c-htmlman html +./usr/share/man/html3/getdevmajor.html comp-c-htmlman html +./usr/share/man/html3/getdirentries.html comp-c-htmlman html +./usr/share/man/html3/getdiskbyname.html comp-c-htmlman html +./usr/share/man/html3/getdiskcookedname.html comp-c-htmlman html +./usr/share/man/html3/getdiskrawname.html comp-c-htmlman html +./usr/share/man/html3/getdomainname.html comp-c-htmlman html +./usr/share/man/html3/getdtablesize.html comp-c-htmlman html +./usr/share/man/html3/getenv.html comp-c-htmlman html +./usr/share/man/html3/getenv_r.html comp-c-htmlman html +./usr/share/man/html3/getfsent.html comp-c-htmlman html +./usr/share/man/html3/getfsfile.html comp-c-htmlman html +./usr/share/man/html3/getfsspec.html comp-c-htmlman html +./usr/share/man/html3/getfsspecname.html comp-c-htmlman html +./usr/share/man/html3/getfstypename.html comp-c-htmlman html +./usr/share/man/html3/getgrent.html comp-c-htmlman html +./usr/share/man/html3/getgrent_r.html comp-c-htmlman html +./usr/share/man/html3/getgrgid.html comp-c-htmlman html +./usr/share/man/html3/getgrgid_r.html comp-c-htmlman html +./usr/share/man/html3/getgrnam.html comp-c-htmlman html +./usr/share/man/html3/getgrnam_r.html comp-c-htmlman html +./usr/share/man/html3/getgrouplist.html comp-c-htmlman html +./usr/share/man/html3/getgroupmembership.html comp-c-htmlman html +./usr/share/man/html3/gethostbyaddr.html comp-c-htmlman html +./usr/share/man/html3/gethostbyname.html comp-c-htmlman html +./usr/share/man/html3/gethostbyname2.html comp-c-htmlman html +./usr/share/man/html3/gethostent.html comp-c-htmlman html +./usr/share/man/html3/gethostid.html comp-c-htmlman html +./usr/share/man/html3/gethostname.html comp-c-htmlman html +./usr/share/man/html3/getifaddrs.html comp-c-htmlman html +./usr/share/man/html3/getlabeloffset.html comp-c-htmlman html +./usr/share/man/html3/getlabelsector.html comp-c-htmlman html +./usr/share/man/html3/getlabelusesmbr.html comp-c-htmlman html +./usr/share/man/html3/getlastlogx.html comp-c-htmlman html +./usr/share/man/html3/getline.html comp-c-htmlman html +./usr/share/man/html3/getloadavg.html comp-c-htmlman html +./usr/share/man/html3/getmaxpartitions.html comp-c-htmlman html +./usr/share/man/html3/getmaxx.html comp-c-htmlman html +./usr/share/man/html3/getmaxy.html comp-c-htmlman html +./usr/share/man/html3/getmaxyx.html comp-c-htmlman html +./usr/share/man/html3/getmntinfo.html comp-c-htmlman html +./usr/share/man/html3/getmntopts.html comp-c-htmlman html +./usr/share/man/html3/getmode.html comp-c-htmlman html +./usr/share/man/html3/getnameinfo.html comp-c-htmlman html +./usr/share/man/html3/getnetbyaddr.html comp-c-htmlman html +./usr/share/man/html3/getnetbyname.html comp-c-htmlman html +./usr/share/man/html3/getnetconfig.html comp-c-htmlman html +./usr/share/man/html3/getnetconfigent.html comp-c-htmlman html +./usr/share/man/html3/getnetent.html comp-c-htmlman html +./usr/share/man/html3/getnetgrent.html comp-c-htmlman html +./usr/share/man/html3/getnetpath.html comp-c-htmlman html +./usr/share/man/html3/getnstr.html comp-c-htmlman html +./usr/share/man/html3/getopt.html comp-c-htmlman html +./usr/share/man/html3/getopt_long.html comp-c-htmlman html +./usr/share/man/html3/getpagesize.html comp-c-htmlman html +./usr/share/man/html3/getparx.html comp-c-htmlman html +./usr/share/man/html3/getpary.html comp-c-htmlman html +./usr/share/man/html3/getparyx.html comp-c-htmlman html +./usr/share/man/html3/getpass.html comp-c-htmlman html +./usr/share/man/html3/getpass_r.html comp-c-htmlman html +./usr/share/man/html3/getpassfd.html comp-c-htmlman html +./usr/share/man/html3/getpeereid.html comp-c-htmlman html +./usr/share/man/html3/getprogname.html comp-c-htmlman html +./usr/share/man/html3/getprotobyname.html comp-c-htmlman html +./usr/share/man/html3/getprotobynumber.html comp-c-htmlman html +./usr/share/man/html3/getprotoent.html comp-c-htmlman html +./usr/share/man/html3/getpwent.html comp-c-htmlman html +./usr/share/man/html3/getpwent_r.html comp-c-htmlman html +./usr/share/man/html3/getpwnam.html comp-c-htmlman html +./usr/share/man/html3/getpwnam_r.html comp-c-htmlman html +./usr/share/man/html3/getpwuid.html comp-c-htmlman html +./usr/share/man/html3/getpwuid_r.html comp-c-htmlman html +./usr/share/man/html3/getrawpartition.html comp-c-htmlman html +./usr/share/man/html3/getrpcbyname.html comp-c-htmlman html +./usr/share/man/html3/getrpcbynumber.html comp-c-htmlman html +./usr/share/man/html3/getrpcent.html comp-c-htmlman html +./usr/share/man/html3/getrpcport.html comp-c-htmlman html +./usr/share/man/html3/gets.html comp-c-htmlman html +./usr/share/man/html3/getservbyname.html comp-c-htmlman html +./usr/share/man/html3/getservbyport.html comp-c-htmlman html +./usr/share/man/html3/getservent.html comp-c-htmlman html +./usr/share/man/html3/getskeyprompt.html comp-c-htmlman skey,html +./usr/share/man/html3/getstr.html comp-c-htmlman html +./usr/share/man/html3/getsubopt.html comp-c-htmlman html +./usr/share/man/html3/gettext.html comp-c-htmlman html +./usr/share/man/html3/gettmode.html comp-c-htmlman html +./usr/share/man/html3/getttyent.html comp-c-htmlman html +./usr/share/man/html3/getttynam.html comp-c-htmlman html +./usr/share/man/html3/getusershell.html comp-c-htmlman html +./usr/share/man/html3/getutmp.html comp-c-htmlman html +./usr/share/man/html3/getutmpx.html comp-c-htmlman html +./usr/share/man/html3/getutxent.html comp-c-htmlman html +./usr/share/man/html3/getutxid.html comp-c-htmlman html +./usr/share/man/html3/getutxline.html comp-c-htmlman html +./usr/share/man/html3/getw.html comp-c-htmlman html +./usr/share/man/html3/getwc.html comp-c-htmlman html +./usr/share/man/html3/getwchar.html comp-c-htmlman html +./usr/share/man/html3/getwd.html comp-c-htmlman html +./usr/share/man/html3/getwin.html comp-c-htmlman html +./usr/share/man/html3/getyx.html comp-c-htmlman html +./usr/share/man/html3/gid_from_group.html comp-c-htmlman html +./usr/share/man/html3/glob.html comp-c-htmlman html +./usr/share/man/html3/glob_pattern_p.html comp-c-htmlman html +./usr/share/man/html3/globfree.html comp-c-htmlman html +./usr/share/man/html3/gmtime.html comp-c-htmlman html +./usr/share/man/html3/gmtime_r.html comp-c-htmlman html +./usr/share/man/html3/grantpt.html comp-c-htmlman html +./usr/share/man/html3/group_from_gid.html comp-c-htmlman html +./usr/share/man/html3/gss_accept_sec_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_acquire_cred.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_add_cred.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_add_oid_set_member.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_canonicalize_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_compare_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_context_time.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_create_empty_oid_set.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_delete_sec_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_display_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_display_status.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_duplicate_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_export_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_export_sec_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_get_mic.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_import_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_import_sec_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_indicate_mechs.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_init_sec_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_inquire_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_inquire_cred.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_inquire_cred_by_mech.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_inquire_mechs_for_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_inquire_names_for_mech.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_krb5_ccache_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_krb5_compat_des3_mic.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_krb5_copy_ccache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_krb5_get_tkt_flags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_krb5_import_ccache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_krb5_import_cred.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_process_context_token.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_release_buffer.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_release_cred.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_release_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_release_oid_set.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_seal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_sign.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_test_oid_set_member.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_unseal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_unwrap.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_verify.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_verify_mic.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_wrap.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gss_wrap_size_limit.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gssapi.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gsskrb5_extract_authz_data_from_sec_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gsskrb5_register_acceptor_identity.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/gtty.html comp-c-htmlman html +./usr/share/man/html3/halfdelay.html comp-c-htmlman html +./usr/share/man/html3/has_colors.html comp-c-htmlman html +./usr/share/man/html3/has_ic.html comp-c-htmlman html +./usr/share/man/html3/has_il.html comp-c-htmlman html +./usr/share/man/html3/hash.html comp-c-htmlman html +./usr/share/man/html3/hcreate.html comp-c-htmlman html +./usr/share/man/html3/hcreate_r.html comp-c-htmlman html +./usr/share/man/html3/hdestroy.html comp-c-htmlman html +./usr/share/man/html3/hdestroy_r.html comp-c-htmlman html +./usr/share/man/html3/heapsort.html comp-c-htmlman html +./usr/share/man/html3/herror.html comp-c-htmlman html +./usr/share/man/html3/hesiod.html comp-c-htmlman hesiod,html +./usr/share/man/html3/hesiod_end.html comp-c-htmlman hesiod,html +./usr/share/man/html3/hesiod_free_list.html comp-c-htmlman hesiod,html +./usr/share/man/html3/hesiod_init.html comp-c-htmlman hesiod,html +./usr/share/man/html3/hesiod_resolve.html comp-c-htmlman hesiod,html +./usr/share/man/html3/hesiod_to_bind.html comp-c-htmlman hesiod,html +./usr/share/man/html3/hid_dispose_report_desc.html comp-c-htmlman html +./usr/share/man/html3/hid_end_parse.html comp-c-htmlman html +./usr/share/man/html3/hid_get_data.html comp-c-htmlman html +./usr/share/man/html3/hid_get_item.html comp-c-htmlman html +./usr/share/man/html3/hid_get_report_desc.html comp-c-htmlman html +./usr/share/man/html3/hid_init.html comp-c-htmlman html +./usr/share/man/html3/hid_locate.html comp-c-htmlman html +./usr/share/man/html3/hid_report_size.html comp-c-htmlman html +./usr/share/man/html3/hid_set_data.html comp-c-htmlman html +./usr/share/man/html3/hid_start_parse.html comp-c-htmlman html +./usr/share/man/html3/hid_usage_in_page.html comp-c-htmlman html +./usr/share/man/html3/hid_usage_page.html comp-c-htmlman html +./usr/share/man/html3/history.html comp-c-htmlman html +./usr/share/man/html3/history_end.html comp-c-htmlman html +./usr/share/man/html3/history_init.html comp-c-htmlman html +./usr/share/man/html3/hline.html comp-c-htmlman html +./usr/share/man/html3/hostalias.html comp-c-htmlman html +./usr/share/man/html3/hosts_access.html comp-c-htmlman html +./usr/share/man/html3/hosts_ctl.html comp-c-htmlman html +./usr/share/man/html3/hsearch.html comp-c-htmlman html +./usr/share/man/html3/hsearch_r.html comp-c-htmlman html +./usr/share/man/html3/hstrerror.html comp-c-htmlman html +./usr/share/man/html3/htonl.html comp-c-htmlman html +./usr/share/man/html3/htons.html comp-c-htmlman html +./usr/share/man/html3/humanize_number.html comp-c-htmlman html +./usr/share/man/html3/hypot.html comp-c-htmlman html +./usr/share/man/html3/hypotf.html comp-c-htmlman html +./usr/share/man/html3/iconv.html comp-c-htmlman html +./usr/share/man/html3/iconv_close.html comp-c-htmlman html +./usr/share/man/html3/iconv_open.html comp-c-htmlman html +./usr/share/man/html3/idcok.html comp-c-htmlman html +./usr/share/man/html3/idlok.html comp-c-htmlman html +./usr/share/man/html3/ieee.html comp-obsolete obsolete +./usr/share/man/html3/ieee_test.html comp-c-htmlman html +./usr/share/man/html3/if_freenameindex.html comp-c-htmlman html +./usr/share/man/html3/if_indextoname.html comp-c-htmlman html +./usr/share/man/html3/if_nameindex.html comp-c-htmlman html +./usr/share/man/html3/if_nametoindex.html comp-c-htmlman html +./usr/share/man/html3/ilog2.html comp-c-htmlman html +./usr/share/man/html3/ilogb.html comp-c-htmlman html +./usr/share/man/html3/ilogbf.html comp-c-htmlman html +./usr/share/man/html3/ilogbl.html comp-c-htmlman html +./usr/share/man/html3/imaxabs.html comp-c-htmlman html +./usr/share/man/html3/imaxdiv.html comp-c-htmlman html +./usr/share/man/html3/inch.html comp-c-htmlman html +./usr/share/man/html3/inchnstr.html comp-c-htmlman html +./usr/share/man/html3/inchstr.html comp-c-htmlman html +./usr/share/man/html3/index.html comp-c-htmlman html +./usr/share/man/html3/inet.html comp-c-htmlman html +./usr/share/man/html3/inet6_opt_append.html comp-c-htmlman html +./usr/share/man/html3/inet6_opt_find.html comp-c-htmlman html +./usr/share/man/html3/inet6_opt_finish.html comp-c-htmlman html +./usr/share/man/html3/inet6_opt_get_val.html comp-c-htmlman html +./usr/share/man/html3/inet6_opt_init.html comp-c-htmlman html +./usr/share/man/html3/inet6_opt_next.html comp-c-htmlman html +./usr/share/man/html3/inet6_opt_set_val.html comp-c-htmlman html +./usr/share/man/html3/inet6_option_alloc.html comp-c-htmlman html +./usr/share/man/html3/inet6_option_append.html comp-c-htmlman html +./usr/share/man/html3/inet6_option_find.html comp-c-htmlman html +./usr/share/man/html3/inet6_option_init.html comp-c-htmlman html +./usr/share/man/html3/inet6_option_next.html comp-c-htmlman html +./usr/share/man/html3/inet6_option_space.html comp-c-htmlman html +./usr/share/man/html3/inet6_rth_add.html comp-c-htmlman html +./usr/share/man/html3/inet6_rth_getaddr.html comp-c-htmlman html +./usr/share/man/html3/inet6_rth_init.html comp-c-htmlman html +./usr/share/man/html3/inet6_rth_reverse.html comp-c-htmlman html +./usr/share/man/html3/inet6_rth_segments.html comp-c-htmlman html +./usr/share/man/html3/inet6_rth_space.html comp-c-htmlman html +./usr/share/man/html3/inet6_rthdr_add.html comp-c-htmlman html +./usr/share/man/html3/inet6_rthdr_getaddr.html comp-c-htmlman html +./usr/share/man/html3/inet6_rthdr_getflags.html comp-c-htmlman html +./usr/share/man/html3/inet6_rthdr_init.html comp-c-htmlman html +./usr/share/man/html3/inet6_rthdr_lasthop.html comp-c-htmlman html +./usr/share/man/html3/inet6_rthdr_reverse.html comp-c-htmlman html +./usr/share/man/html3/inet6_rthdr_segments.html comp-c-htmlman html +./usr/share/man/html3/inet6_rthdr_space.html comp-c-htmlman html +./usr/share/man/html3/inet_addr.html comp-c-htmlman html +./usr/share/man/html3/inet_aton.html comp-c-htmlman html +./usr/share/man/html3/inet_lnaof.html comp-c-htmlman html +./usr/share/man/html3/inet_makeaddr.html comp-c-htmlman html +./usr/share/man/html3/inet_net.html comp-c-htmlman html +./usr/share/man/html3/inet_net_ntop.html comp-c-htmlman html +./usr/share/man/html3/inet_net_pton.html comp-c-htmlman html +./usr/share/man/html3/inet_netof.html comp-c-htmlman html +./usr/share/man/html3/inet_network.html comp-c-htmlman html +./usr/share/man/html3/inet_ntoa.html comp-c-htmlman html +./usr/share/man/html3/inet_ntop.html comp-c-htmlman html +./usr/share/man/html3/inet_pton.html comp-c-htmlman html +./usr/share/man/html3/init_color.html comp-c-htmlman html +./usr/share/man/html3/init_error_table.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/init_pair.html comp-c-htmlman html +./usr/share/man/html3/initgroups.html comp-c-htmlman html +./usr/share/man/html3/initscr.html comp-c-htmlman html +./usr/share/man/html3/initstate.html comp-c-htmlman html +./usr/share/man/html3/innetgr.html comp-c-htmlman html +./usr/share/man/html3/innstr.html comp-c-htmlman html +./usr/share/man/html3/insch.html comp-c-htmlman html +./usr/share/man/html3/insdelln.html comp-c-htmlman html +./usr/share/man/html3/insertln.html comp-c-htmlman html +./usr/share/man/html3/insque.html comp-c-htmlman html +./usr/share/man/html3/instr.html comp-c-htmlman html +./usr/share/man/html3/intrflush.html comp-c-htmlman html +./usr/share/man/html3/intro.html comp-c-htmlman html +./usr/share/man/html3/inttypes.html comp-c-htmlman html +./usr/share/man/html3/ipsec_dump_policy.html comp-c-htmlman html +./usr/share/man/html3/ipsec_get_policylen.html comp-c-htmlman html +./usr/share/man/html3/ipsec_set_policy.html comp-c-htmlman html +./usr/share/man/html3/ipsec_strerror.html comp-c-htmlman html +./usr/share/man/html3/iruserok.html comp-c-htmlman html +./usr/share/man/html3/iruserok_sa.html comp-c-htmlman html +./usr/share/man/html3/is_linetouched.html comp-c-htmlman html +./usr/share/man/html3/is_wintouched.html comp-c-htmlman html +./usr/share/man/html3/isalnum.html comp-c-htmlman html +./usr/share/man/html3/isalpha.html comp-c-htmlman html +./usr/share/man/html3/isascii.html comp-c-htmlman html +./usr/share/man/html3/isatty.html comp-c-htmlman html +./usr/share/man/html3/isblank.html comp-c-htmlman html +./usr/share/man/html3/iscntrl.html comp-c-htmlman html +./usr/share/man/html3/isdigit.html comp-c-htmlman html +./usr/share/man/html3/isendwin.html comp-c-htmlman html +./usr/share/man/html3/isfinite.html comp-c-htmlman html +./usr/share/man/html3/isgraph.html comp-c-htmlman html +./usr/share/man/html3/isgreater.html comp-c-htmlman html +./usr/share/man/html3/isinf.html comp-c-htmlman html +./usr/share/man/html3/isinff.html comp-c-htmlman html +./usr/share/man/html3/islower.html comp-c-htmlman html +./usr/share/man/html3/isnan.html comp-c-htmlman html +./usr/share/man/html3/isnanf.html comp-c-htmlman html +./usr/share/man/html3/isnormal.html comp-c-htmlman html +./usr/share/man/html3/isns.html comp-c-htmlman html +./usr/share/man/html3/isns.html comp-isns-htmlman .html +./usr/share/man/html3/iso646.html comp-c-htmlman html +./usr/share/man/html3/iso_addr.html comp-c-htmlman html +./usr/share/man/html3/isprint.html comp-c-htmlman html +./usr/share/man/html3/ispunct.html comp-c-htmlman html +./usr/share/man/html3/isspace.html comp-c-htmlman html +./usr/share/man/html3/isupper.html comp-c-htmlman html +./usr/share/man/html3/iswalnum.html comp-c-htmlman html +./usr/share/man/html3/iswalpha.html comp-c-htmlman html +./usr/share/man/html3/iswblank.html comp-c-htmlman html +./usr/share/man/html3/iswcntrl.html comp-c-htmlman html +./usr/share/man/html3/iswctype.html comp-c-htmlman html +./usr/share/man/html3/iswdigit.html comp-c-htmlman html +./usr/share/man/html3/iswgraph.html comp-c-htmlman html +./usr/share/man/html3/iswlower.html comp-c-htmlman html +./usr/share/man/html3/iswprint.html comp-c-htmlman html +./usr/share/man/html3/iswpunct.html comp-c-htmlman html +./usr/share/man/html3/iswspace.html comp-c-htmlman html +./usr/share/man/html3/iswupper.html comp-c-htmlman html +./usr/share/man/html3/iswxdigit.html comp-c-htmlman html +./usr/share/man/html3/isxdigit.html comp-c-htmlman html +./usr/share/man/html3/item_count.html comp-c-htmlman html +./usr/share/man/html3/item_description.html comp-c-htmlman html +./usr/share/man/html3/item_index.html comp-c-htmlman html +./usr/share/man/html3/item_init.html comp-c-htmlman html +./usr/share/man/html3/item_name.html comp-c-htmlman html +./usr/share/man/html3/item_opts.html comp-c-htmlman html +./usr/share/man/html3/item_opts_off.html comp-c-htmlman html +./usr/share/man/html3/item_opts_on.html comp-c-htmlman html +./usr/share/man/html3/item_selected.html comp-c-htmlman html +./usr/share/man/html3/item_term.html comp-c-htmlman html +./usr/share/man/html3/item_userptr.html comp-c-htmlman html +./usr/share/man/html3/item_value.html comp-c-htmlman html +./usr/share/man/html3/item_visible.html comp-c-htmlman html +./usr/share/man/html3/itimerspec.html comp-c-htmlman html +./usr/share/man/html3/itimerval.html comp-c-htmlman html +./usr/share/man/html3/j0.html comp-c-htmlman html +./usr/share/man/html3/j0f.html comp-c-htmlman html +./usr/share/man/html3/j1.html comp-c-htmlman html +./usr/share/man/html3/j1f.html comp-c-htmlman html +./usr/share/man/html3/jemalloc.html comp-c-htmlman html +./usr/share/man/html3/jn.html comp-c-htmlman html +./usr/share/man/html3/jnf.html comp-c-htmlman html +./usr/share/man/html3/jrand48.html comp-c-htmlman html +./usr/share/man/html3/kadm5_pwcheck.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/kafs.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/keyname.html comp-c-htmlman html +./usr/share/man/html3/keypad.html comp-c-htmlman html +./usr/share/man/html3/killchar.html comp-c-htmlman html +./usr/share/man/html3/killpg.html comp-c-htmlman html +./usr/share/man/html3/krb5.html comp-obsolete obsolete +./usr/share/man/html3/krb524_convert_creds_kdc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb524_convert_creds_kdc_ccache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_425_conv_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_425_conv_principal_ext.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_524_conv_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_abort.html comp-obsolete obsolete +./usr/share/man/html3/krb5_abortx.html comp-obsolete obsolete +./usr/share/man/html3/krb5_acl_match_file.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_acl_match_string.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_add_et_list.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_add_extra_addresses.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_add_ignore_addresses.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_addlog_dest.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_addlog_func.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_addr2sockaddr.html comp-obsolete obsolete +./usr/share/man/html3/krb5_address.html comp-obsolete obsolete +./usr/share/man/html3/krb5_address_compare.html comp-obsolete obsolete +./usr/share/man/html3/krb5_address_order.html comp-obsolete obsolete +./usr/share/man/html3/krb5_address_search.html comp-obsolete obsolete +./usr/share/man/html3/krb5_addresses.html comp-obsolete obsolete +./usr/share/man/html3/krb5_aname_to_localname.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_anyaddr.html comp-obsolete obsolete +./usr/share/man/html3/krb5_appdefault.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_appdefault_boolean.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_appdefault_string.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_appdefault_time.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_append_addresses.html comp-obsolete obsolete +./usr/share/man/html3/krb5_auth_con_addflags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_free.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_genaddrs.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_generatelocalsubkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_getaddrs.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_getauthenticator.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_getflags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_getkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_getlocalsubkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_getrcache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_getremotesubkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_getuserkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_init.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_initivector.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_removeflags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setaddrs.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setaddrs_from_fd.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setflags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setivector.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setlocalsubkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setrcache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setremotesubkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_con_setuserkey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_getcksumtype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_getkeytype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_getlocalseqnumber.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_getremoteseqnumber.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_setcksumtype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_setkeytype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_setlocalseqnumber.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_auth_setremoteseqnumber.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_build_ap_req.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_build_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_build_principal_ext.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_build_principal_va.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_build_principal_va_ext.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_block_size.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_checksum_length.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_decrypt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_encrypt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_encrypt_length.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_enctype_compare.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_get_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_is_coll_proof_cksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_is_keyed_cksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_keylength.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_make_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_make_random_key.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_set_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_valid_cksumtype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_valid_enctype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_c_verify_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_cc_clear_mcred.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_close.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_copy_cache.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_cursor.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_default_name.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_destroy.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_end_seq_get.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_gen_new.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_get_full_name.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_get_name.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_get_ops.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_get_prefix_ops.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_get_principal.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_get_type.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_get_version.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_initialize.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_new_unique.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_next_cred.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_next_cred_match.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_ops.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_register.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_remove_cred.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_resolve.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_retrieve_cred.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_set_default_name.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_set_flags.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_start_seq_get.html comp-obsolete obsolete +./usr/share/man/html3/krb5_cc_store_cred.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ccache.html comp-obsolete obsolete +./usr/share/man/html3/krb5_change_password.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_check_transited.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_check_transited_realms.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_checksum_disable.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_checksum_is_collision_proof.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_checksum_is_keyed.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_checksumsize.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_cksumtype_valid.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_clear_error_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_closelog.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_compare_creds.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_file_free.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_free_strings.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_bool.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_bool_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_int.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_int_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_list.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_next.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_string_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_strings.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_time.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_get_time_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_parse_file.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_parse_file_multi.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_bool.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_bool_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_int.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_int_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_list.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_next.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_string_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_strings.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_time.html comp-obsolete obsolete +./usr/share/man/html3/krb5_config_vget_time_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_copy_address.html comp-obsolete obsolete +./usr/share/man/html3/krb5_copy_addresses.html comp-obsolete obsolete +./usr/share/man/html3/krb5_copy_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_copy_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_copy_creds_contents.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_copy_data.html comp-obsolete obsolete +./usr/share/man/html3/krb5_copy_host_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_copy_keyblock.html comp-obsolete obsolete +./usr/share/man/html3/krb5_copy_keyblock_contents.html comp-obsolete obsolete +./usr/share/man/html3/krb5_copy_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_copy_ticket.html comp-obsolete obsolete +./usr/share/man/html3/krb5_create_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_crypto_destroy.html comp-obsolete obsolete +./usr/share/man/html3/krb5_crypto_get_checksum_type.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_crypto_getblocksize.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_crypto_getconfoundersize.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_crypto_getenctype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_crypto_getpadsize.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_crypto_init.html comp-obsolete obsolete +./usr/share/man/html3/krb5_crypto_overhead.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_data.html comp-obsolete obsolete +./usr/share/man/html3/krb5_data_alloc.html comp-obsolete obsolete +./usr/share/man/html3/krb5_data_cmp.html comp-obsolete obsolete +./usr/share/man/html3/krb5_data_copy.html comp-obsolete obsolete +./usr/share/man/html3/krb5_data_free.html comp-obsolete obsolete +./usr/share/man/html3/krb5_data_realloc.html comp-obsolete obsolete +./usr/share/man/html3/krb5_data_zero.html comp-obsolete obsolete +./usr/share/man/html3/krb5_decrypt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_decrypt_EncryptedData.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_decrypt_ivec.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_decrypt_ticket.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_alloc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_free.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_get_a1_hash.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_get_client_binding.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_get_identifier.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_get_opaque.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_get_responseData.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_get_rsp.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_get_server_nonce.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_get_tickets.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_init_request.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_request.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_authentication_user.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_authid.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_client_nonce.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_digest.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_hostname.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_identifier.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_method.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_nonceCount.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_opaque.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_qop.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_server_cb.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_server_nonce.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_type.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_uri.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_digest_set_username.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_domain_x500_decode.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_domain_x500_encode.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_eai_to_heim_errno.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_encrypt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_encrypt_EncryptedData.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_encrypt_ivec.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_enctype_disable.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_enctype_keysize.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_enctype_to_string.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_enctype_valid.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_err.html comp-obsolete obsolete +./usr/share/man/html3/krb5_error_from_rd_error.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_errx.html comp-obsolete obsolete +./usr/share/man/html3/krb5_expand_hostname.html comp-obsolete obsolete +./usr/share/man/html3/krb5_expand_hostname_realms.html comp-obsolete obsolete +./usr/share/man/html3/krb5_fcc_ops.html comp-obsolete obsolete +./usr/share/man/html3/krb5_find_padata.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_format_time.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_address.html comp-obsolete obsolete +./usr/share/man/html3/krb5_free_addresses.html comp-obsolete obsolete +./usr/share/man/html3/krb5_free_authenticator.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_checksum_contents.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_config_files.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_cred_contents.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_data.html comp-obsolete obsolete +./usr/share/man/html3/krb5_free_data_contents.html comp-obsolete obsolete +./usr/share/man/html3/krb5_free_error.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_error_contents.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_error_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_free_host_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_kdc_rep.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_keyblock.html comp-obsolete obsolete +./usr/share/man/html3/krb5_free_keyblock_contents.html comp-obsolete obsolete +./usr/share/man/html3/krb5_free_krbhst.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_salt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_free_ticket.html comp-obsolete obsolete +./usr/share/man/html3/krb5_fwd_tgt_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_generate_random_block.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_generate_random_keyblock.html comp-obsolete obsolete +./usr/share/man/html3/krb5_generate_subkey.html comp-obsolete obsolete +./usr/share/man/html3/krb5_generate_subkey_extended.html comp-obsolete obsolete +./usr/share/man/html3/krb5_get_all_client_addrs.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_all_server_addrs.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_cred_from_kdc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_cred_from_kdc_opt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_credentials.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_credentials_with_flags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_creds_opt_add_options.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_creds_opt_alloc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_creds_opt_free.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_creds_opt_set_enctype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_creds_opt_set_impersonate.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_creds_opt_set_options.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_creds_opt_set_ticket.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_default_config_files.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_default_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_default_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_default_realms.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_dns_canonize_hostname.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_err_text.html comp-obsolete obsolete +./usr/share/man/html3/krb5_get_error_message.html comp-obsolete obsolete +./usr/share/man/html3/krb5_get_error_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_get_extra_addresses.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_fcache_version.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_forwarded_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_host_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_ignore_addresses.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_in_cred.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_in_tkt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_in_tkt_with_keytab.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_in_tkt_with_password.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_in_tkt_with_skey.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_keytab.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_alloc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_free.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_init.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_address_list.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_addressless.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_anonymous.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_canonicalize.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_default_flags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_etype_list.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_forwardable.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_pa_password.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_paq_request.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_preauth_list.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_proxiable.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_renew_life.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_salt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_tkt_life.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_opt_set_win2k.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_init_creds_password.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_kdc_cred.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_kdc_sec_offset.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_krb524hst.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_krb_admin_hst.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_krb_changepw_hst.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_krbhst.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_max_time_skew.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_pw_salt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_renewed_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_server_rcache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_use_admin_kdc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_get_warn_dest.html comp-obsolete obsolete +./usr/share/man/html3/krb5_get_wrapped_length.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_getportbyname.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_h_addr2addr.html comp-obsolete obsolete +./usr/share/man/html3/krb5_h_addr2sockaddr.html comp-obsolete obsolete +./usr/share/man/html3/krb5_h_errno_to_heim_errno.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_have_error_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_hmac.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_init_context.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_init_ets.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_initlog.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_is_thread_safe.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_keyblock.html comp-obsolete obsolete +./usr/share/man/html3/krb5_keyblock_get_enctype.html comp-obsolete obsolete +./usr/share/man/html3/krb5_keyblock_init.html comp-obsolete obsolete +./usr/share/man/html3/krb5_keyblock_zero.html comp-obsolete obsolete +./usr/share/man/html3/krb5_keytab.html comp-obsolete obsolete +./usr/share/man/html3/krb5_keytab_entry.html comp-obsolete obsolete +./usr/share/man/html3/krb5_krbhst_format_string.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_krbhst_free.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_krbhst_get_addrinfo.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_krbhst_init.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_krbhst_init_flags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_krbhst_next.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_krbhst_next_as_string.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_krbhst_reset.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_kt_add_entry.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_close.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_compare.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_copy_entry_contents.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_cursor.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_default.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_default_modify_name.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_default_name.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_end_seq_get.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_free_entry.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_get_entry.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_get_name.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_get_type.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_next_entry.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_ops.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_read_service_key.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_register.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_remove_entry.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_resolve.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kt_start_seq_get.html comp-obsolete obsolete +./usr/share/man/html3/krb5_kuserok.html comp-obsolete obsolete +./usr/share/man/html3/krb5_log.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_log_msg.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_make_addrport.html comp-obsolete obsolete +./usr/share/man/html3/krb5_make_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_max_sockaddr_size.html comp-obsolete obsolete +./usr/share/man/html3/krb5_mcc_ops.html comp-obsolete obsolete +./usr/share/man/html3/krb5_mk_priv.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_mk_rep.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_mk_rep_exact.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_mk_rep_extended.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_mk_req.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_mk_req_exact.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_mk_req_extended.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_mk_safe.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_openlog.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_padata_add.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_parse.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_parse_address.html comp-obsolete obsolete +./usr/share/man/html3/krb5_parse_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_parse_name_flags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_parse_nametype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_passwd_result_to_string.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_password_key_proc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_prepend_config_files.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_prepend_config_files_default.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_princ_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_princ_set_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_principal_compare.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_principal_compare_any_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_principal_get_comp_string.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_principal_get_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_principal_get_type.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_principal_match.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_principal_set_type.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_print_address.html comp-obsolete obsolete +./usr/share/man/html3/krb5_prompt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_prompter_posix.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_random_to_key.html comp-obsolete obsolete +./usr/share/man/html3/krb5_rc_close.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_default.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_default_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_default_type.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_destroy.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_expunge.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_get_lifespan.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_get_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_get_type.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_initialize.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_recover.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_resolve.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_resolve_full.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_resolve_type.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rc_store.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rcache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rd_error.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rd_priv.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rd_rep.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rd_req.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rd_req_with_keyblock.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_rd_safe.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_realm_compare.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_ret_address.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_addrs.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_authdata.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_creds.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_data.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_int16.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_int32.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_int8.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_keyblock.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_principal.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_stringnl.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_stringz.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_times.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_uint16.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_uint32.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ret_uint8.html comp-obsolete obsolete +./usr/share/man/html3/krb5_set_config_files.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_default_realm.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_dns_canonize_hostname.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_error_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_set_extra_addresses.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_fcache_version.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_ignore_addresses.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_max_time_skew.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_password.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_password_using_ccache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_real_time.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_use_admin_kdc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_set_warn_dest.html comp-obsolete obsolete +./usr/share/man/html3/krb5_sname_to_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_sock_to_principal.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_sockaddr2address.html comp-obsolete obsolete +./usr/share/man/html3/krb5_sockaddr2port.html comp-obsolete obsolete +./usr/share/man/html3/krb5_sockaddr_uninteresting.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_clear_flags.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_emem.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_free.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_from_data.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_from_fd.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_from_mem.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_get_byteorder.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_is_flags.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_read.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_seek.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_set_byteorder.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_set_eof_code.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_set_flags.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_to_data.html comp-obsolete obsolete +./usr/share/man/html3/krb5_storage_write.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_address.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_addrs.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_authdata.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_creds.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_data.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_int16.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_int32.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_int8.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_keyblock.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_principal.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_stringnl.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_stringz.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_times.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_uint16.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_uint32.html comp-obsolete obsolete +./usr/share/man/html3/krb5_store_uint8.html comp-obsolete obsolete +./usr/share/man/html3/krb5_string_to_deltat.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_string_to_enctype.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_string_to_key.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_string_to_key_data.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_string_to_key_data_salt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_string_to_key_data_salt_opaque.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_string_to_key_salt.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_string_to_key_salt_opaque.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_ticket.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ticket_get_authorization_data_type.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ticket_get_client.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ticket_get_endtime.html comp-obsolete obsolete +./usr/share/man/html3/krb5_ticket_get_server.html comp-obsolete obsolete +./usr/share/man/html3/krb5_timeofday.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_unparse_name.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_unparse_name_fixed.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_unparse_name_fixed_flags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_unparse_name_fixed_short.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_unparse_name_flags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_unparse_name_short.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_us_timeofday.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_vabort.html comp-obsolete obsolete +./usr/share/man/html3/krb5_vabortx.html comp-obsolete obsolete +./usr/share/man/html3/krb5_verify_ap_req.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_checksum.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_init_creds.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_init_creds_opt_init.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_init_creds_opt_set_ap_req_nofail.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_opt_alloc.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_opt_free.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_opt_init.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_opt_set_ccache.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_opt_set_flags.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_opt_set_keytab.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_opt_set_secure.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_opt_set_service.html comp-krb5c-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_user.html comp-krb5c-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_user_lrealm.html comp-krb5c-htmlman kerberos,html +./usr/share/man/html3/krb5_verify_user_opt.html comp-krb5c-htmlman kerberos,html +./usr/share/man/html3/krb5_verr.html comp-obsolete obsolete +./usr/share/man/html3/krb5_verrx.html comp-obsolete obsolete +./usr/share/man/html3/krb5_vlog.html comp-krb5c-htmlman kerberos,html +./usr/share/man/html3/krb5_vlog_msg.html comp-krb5c-htmlman kerberos,html +./usr/share/man/html3/krb5_vset_error_string.html comp-obsolete obsolete +./usr/share/man/html3/krb5_vwarn.html comp-obsolete obsolete +./usr/share/man/html3/krb5_vwarnx.html comp-obsolete obsolete +./usr/share/man/html3/krb5_warn.html comp-obsolete obsolete +./usr/share/man/html3/krb5_warnx.html comp-obsolete obsolete +./usr/share/man/html3/kvm.html comp-c-htmlman html +./usr/share/man/html3/kvm_close.html comp-c-htmlman html +./usr/share/man/html3/kvm_dump.html comp-c-htmlman html +./usr/share/man/html3/kvm_dump_inval.html comp-c-htmlman html +./usr/share/man/html3/kvm_dump_mkheader.html comp-c-htmlman html +./usr/share/man/html3/kvm_dump_wrtheader.html comp-c-htmlman html +./usr/share/man/html3/kvm_getargv.html comp-c-htmlman html +./usr/share/man/html3/kvm_getargv2.html comp-c-htmlman html +./usr/share/man/html3/kvm_getenvv.html comp-c-htmlman html +./usr/share/man/html3/kvm_getenvv2.html comp-c-htmlman html +./usr/share/man/html3/kvm_geterr.html comp-c-htmlman html +./usr/share/man/html3/kvm_getfiles.html comp-c-htmlman html +./usr/share/man/html3/kvm_getkernelname.html comp-c-htmlman html +./usr/share/man/html3/kvm_getloadavg.html comp-c-htmlman html +./usr/share/man/html3/kvm_getlwps.html comp-c-htmlman html +./usr/share/man/html3/kvm_getproc2.html comp-c-htmlman html +./usr/share/man/html3/kvm_getprocs.html comp-c-htmlman html +./usr/share/man/html3/kvm_nlist.html comp-c-htmlman html +./usr/share/man/html3/kvm_open.html comp-c-htmlman html +./usr/share/man/html3/kvm_openfiles.html comp-c-htmlman html +./usr/share/man/html3/kvm_read.html comp-c-htmlman html +./usr/share/man/html3/kvm_write.html comp-c-htmlman html +./usr/share/man/html3/l64a.html comp-c-htmlman html +./usr/share/man/html3/l64a_r.html comp-c-htmlman html +./usr/share/man/html3/labs.html comp-c-htmlman html +./usr/share/man/html3/lber-decode.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/lber-encode.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/lber-memory.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/lber-sockbuf.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/lber-types.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/lcong48.html comp-c-htmlman html +./usr/share/man/html3/lcpxattr.html comp-c-htmlman html +./usr/share/man/html3/ld_errno.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_abandon.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_abandon_ext.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_add.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_add_ext.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_add_ext_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_add_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_attributetype2name.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_attributetype2str.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_attributetype_free.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_bind.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_bind_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_compare.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_compare_ext.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_compare_ext_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_compare_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_count_entries.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_count_messages.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_count_references.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_count_values.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_count_values_len.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_dcedn2dn.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_delete.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_delete_ext.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_delete_ext_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_delete_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_dn2ad_canonical.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_dn2dcedn.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_dn2str.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_dn2ufn.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_err2string.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_errlist.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_error.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_explode_dn.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_explode_rdn.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_first_attribute.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_first_entry.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_first_message.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_first_reference.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_free_urldesc.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_get_dn.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_get_values.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_get_values_len.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_init.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_is_ldap_url.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_kerberos_bind1.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_kerberos_bind1_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_kerberos_bind2.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_kerberos_bind2_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_kerberos_bind_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_matchingrule2name.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_matchingrule2str.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_matchingrule_free.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_modify.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_modify_ext.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_modify_ext_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_modify_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_modrdn.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_modrdn2.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_modrdn2_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_modrdn_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_mods_free.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_msgfree.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_msgid.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_msgtype.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_next_attribute.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_next_entry.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_next_message.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_next_reference.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_objectclass2name.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_objectclass2str.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_objectclass_free.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_open.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_parse_extended_result.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_parse_reference.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_parse_result.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_parse_sasl_bind_result.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_perror.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_result.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_result2error.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_sasl_bind.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_sasl_bind_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_schema.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_scherr2str.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_search.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_search_ext.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_search_ext_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_search_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_search_st.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_simple_bind.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_simple_bind_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_sort.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_sort_entries.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_sort_strcasecmp.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_sort_values.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_str2attributetype.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_str2dn.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_str2matchingrule.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_str2objectclass.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_str2syntax.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_syntax2name.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_syntax2str.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_syntax_free.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_unbind.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_unbind_ext.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_unbind_ext_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_unbind_s.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_url.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_url_parse.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_value_free.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldap_value_free_len.html comp-ldap-htmlman ldap,html +./usr/share/man/html3/ldexp.html comp-c-htmlman html +./usr/share/man/html3/ldiv.html comp-c-htmlman html +./usr/share/man/html3/leaveok.html comp-c-htmlman html +./usr/share/man/html3/lfind.html comp-c-htmlman html +./usr/share/man/html3/lgamma.html comp-c-htmlman html +./usr/share/man/html3/lgamma_r.html comp-c-htmlman html +./usr/share/man/html3/lgammaf.html comp-c-htmlman html +./usr/share/man/html3/lgammaf_r.html comp-c-htmlman html +./usr/share/man/html3/lh_stats.html comp-c-htmlman crypto,html +./usr/share/man/html3/libarchive.html comp-c-htmlman html +./usr/share/man/html3/libarchive_internals.html comp-c-htmlman html +./usr/share/man/html3/libiscsi.html comp-c-htmlman iscsi,html +./usr/share/man/html3/libmagic.html comp-c-htmlman html +./usr/share/man/html3/libmj.html comp-c-htmlman crypto,html +./usr/share/man/html3/libnetpgp.html comp-c-htmlman crypto,html +./usr/share/man/html3/libperfuse.html comp-perfuse-htmlman html +./usr/share/man/html3/libquota.html comp-c-htmlman html +./usr/share/man/html3/libradius.html comp-c-htmlman html +./usr/share/man/html3/libsaslc.html comp-c-htmlman crypto,html +./usr/share/man/html3/libusbhid.html comp-c-htmlman html +./usr/share/man/html3/libutil.html comp-c-htmlman html +./usr/share/man/html3/limits.html comp-c-htmlman html +./usr/share/man/html3/link_addr.html comp-c-htmlman html +./usr/share/man/html3/link_field.html comp-c-htmlman html +./usr/share/man/html3/link_fieldtype.html comp-c-htmlman html +./usr/share/man/html3/link_ntoa.html comp-c-htmlman html +./usr/share/man/html3/linkaddr.html comp-c-htmlman html +./usr/share/man/html3/linkntoa.html comp-c-htmlman html +./usr/share/man/html3/lio_listio.html comp-c-htmlman html +./usr/share/man/html3/llabs.html comp-c-htmlman html +./usr/share/man/html3/lldiv.html comp-c-htmlman html +./usr/share/man/html3/llrint.html comp-c-htmlman html +./usr/share/man/html3/llrintf.html comp-c-htmlman html +./usr/share/man/html3/localeconv.html comp-c-htmlman html +./usr/share/man/html3/localtime.html comp-c-htmlman html +./usr/share/man/html3/localtime_r.html comp-c-htmlman html +./usr/share/man/html3/localtime_rz.html comp-c-htmlman html +./usr/share/man/html3/lockf.html comp-c-htmlman html +./usr/share/man/html3/log.html comp-c-htmlman html +./usr/share/man/html3/log10.html comp-c-htmlman html +./usr/share/man/html3/log10f.html comp-c-htmlman html +./usr/share/man/html3/log1p.html comp-c-htmlman html +./usr/share/man/html3/log1pf.html comp-c-htmlman html +./usr/share/man/html3/log2.html comp-c-htmlman html +./usr/share/man/html3/log2f.html comp-c-htmlman html +./usr/share/man/html3/logb.html comp-c-htmlman html +./usr/share/man/html3/logbf.html comp-c-htmlman html +./usr/share/man/html3/logbl.html comp-c-htmlman html +./usr/share/man/html3/logf.html comp-c-htmlman html +./usr/share/man/html3/login.html comp-c-htmlman html +./usr/share/man/html3/login_cap.html comp-c-htmlman html +./usr/share/man/html3/login_close.html comp-c-htmlman html +./usr/share/man/html3/login_getcapbool.html comp-c-htmlman html +./usr/share/man/html3/login_getcapnum.html comp-c-htmlman html +./usr/share/man/html3/login_getcapsize.html comp-c-htmlman html +./usr/share/man/html3/login_getcapstr.html comp-c-htmlman html +./usr/share/man/html3/login_getcaptime.html comp-c-htmlman html +./usr/share/man/html3/login_getclass.html comp-c-htmlman html +./usr/share/man/html3/login_tty.html comp-c-htmlman html +./usr/share/man/html3/loginx.html comp-c-htmlman html +./usr/share/man/html3/logout.html comp-c-htmlman html +./usr/share/man/html3/logoutx.html comp-c-htmlman html +./usr/share/man/html3/logwtmp.html comp-c-htmlman html +./usr/share/man/html3/logwtmpx.html comp-c-htmlman html +./usr/share/man/html3/longjmp.html comp-c-htmlman html +./usr/share/man/html3/longjmperror.html comp-c-htmlman html +./usr/share/man/html3/longname.html comp-c-htmlman html +./usr/share/man/html3/lrand48.html comp-c-htmlman html +./usr/share/man/html3/lrint.html comp-c-htmlman html +./usr/share/man/html3/lrintf.html comp-c-htmlman html +./usr/share/man/html3/lsearch.html comp-c-htmlman html +./usr/share/man/html3/magic_buffer.html comp-c-htmlman html +./usr/share/man/html3/magic_check.html comp-c-htmlman html +./usr/share/man/html3/magic_close.html comp-c-htmlman html +./usr/share/man/html3/magic_compile.html comp-c-htmlman html +./usr/share/man/html3/magic_error.html comp-c-htmlman html +./usr/share/man/html3/magic_file.html comp-c-htmlman html +./usr/share/man/html3/magic_load.html comp-c-htmlman html +./usr/share/man/html3/magic_open.html comp-c-htmlman html +./usr/share/man/html3/magic_setflags.html comp-c-htmlman html +./usr/share/man/html3/major.html comp-c-htmlman html +./usr/share/man/html3/makecontext.html comp-c-htmlman html +./usr/share/man/html3/makedev.html comp-c-htmlman html +./usr/share/man/html3/malloc.html comp-c-htmlman html +./usr/share/man/html3/man.html comp-obsolete obsolete +./usr/share/man/html3/mandoc.html comp-mdocml-htmlman html +./usr/share/man/html3/math.html comp-c-htmlman html +./usr/share/man/html3/mblen.html comp-c-htmlman html +./usr/share/man/html3/mbrlen.html comp-c-htmlman html +./usr/share/man/html3/mbrtowc.html comp-c-htmlman html +./usr/share/man/html3/mbsinit.html comp-c-htmlman html +./usr/share/man/html3/mbsrtowcs.html comp-c-htmlman html +./usr/share/man/html3/mbstowcs.html comp-c-htmlman html +./usr/share/man/html3/mbtowc.html comp-c-htmlman html +./usr/share/man/html3/md2.html comp-c-htmlman html +./usr/share/man/html3/md4.html comp-c-htmlman html +./usr/share/man/html3/md5.html comp-c-htmlman html +./usr/share/man/html3/mdoc.html comp-obsolete obsolete +./usr/share/man/html3/membar_consumer.html comp-c-htmlman html +./usr/share/man/html3/membar_enter.html comp-c-htmlman html +./usr/share/man/html3/membar_exit.html comp-c-htmlman html +./usr/share/man/html3/membar_ops.html comp-c-htmlman html +./usr/share/man/html3/membar_producer.html comp-c-htmlman html +./usr/share/man/html3/membar_sync.html comp-c-htmlman html +./usr/share/man/html3/memccpy.html comp-c-htmlman html +./usr/share/man/html3/memchr.html comp-c-htmlman html +./usr/share/man/html3/memcmp.html comp-c-htmlman html +./usr/share/man/html3/memcpy.html comp-c-htmlman html +./usr/share/man/html3/memmem.html comp-c-htmlman html +./usr/share/man/html3/memmove.html comp-c-htmlman html +./usr/share/man/html3/memory.html comp-c-htmlman html +./usr/share/man/html3/memrchr.html comp-c-htmlman html +./usr/share/man/html3/memset.html comp-c-htmlman html +./usr/share/man/html3/menu_attributes.html comp-c-htmlman html +./usr/share/man/html3/menu_back.html comp-c-htmlman html +./usr/share/man/html3/menu_cursor.html comp-c-htmlman html +./usr/share/man/html3/menu_driver.html comp-c-htmlman html +./usr/share/man/html3/menu_fore.html comp-c-htmlman html +./usr/share/man/html3/menu_format.html comp-c-htmlman html +./usr/share/man/html3/menu_grey.html comp-c-htmlman html +./usr/share/man/html3/menu_hook.html comp-c-htmlman html +./usr/share/man/html3/menu_init.html comp-c-htmlman html +./usr/share/man/html3/menu_item_current.html comp-c-htmlman html +./usr/share/man/html3/menu_item_name.html comp-c-htmlman html +./usr/share/man/html3/menu_item_new.html comp-c-htmlman html +./usr/share/man/html3/menu_item_opts.html comp-c-htmlman html +./usr/share/man/html3/menu_item_userptr.html comp-c-htmlman html +./usr/share/man/html3/menu_item_value.html comp-c-htmlman html +./usr/share/man/html3/menu_item_visible.html comp-c-htmlman html +./usr/share/man/html3/menu_items.html comp-c-htmlman html +./usr/share/man/html3/menu_mark.html comp-c-htmlman html +./usr/share/man/html3/menu_new.html comp-c-htmlman html +./usr/share/man/html3/menu_opts.html comp-c-htmlman html +./usr/share/man/html3/menu_opts_on.html comp-c-htmlman html +./usr/share/man/html3/menu_opts_off.html comp-c-htmlman html +./usr/share/man/html3/menu_pad.html comp-c-htmlman html +./usr/share/man/html3/menu_pattern.html comp-c-htmlman html +./usr/share/man/html3/menu_post.html comp-c-htmlman html +./usr/share/man/html3/menu_sub.html comp-c-htmlman html +./usr/share/man/html3/menu_term.html comp-c-htmlman html +./usr/share/man/html3/menu_unmark.html comp-c-htmlman html +./usr/share/man/html3/menu_userptr.html comp-c-htmlman html +./usr/share/man/html3/menu_win.html comp-c-htmlman html +./usr/share/man/html3/menus.html comp-c-htmlman html +./usr/share/man/html3/mergesort.html comp-c-htmlman html +./usr/share/man/html3/meta.html comp-c-htmlman html +./usr/share/man/html3/mi_vector_hash.html comp-c-htmlman html +./usr/share/man/html3/minor.html comp-c-htmlman html +./usr/share/man/html3/mkdtemp.html comp-c-htmlman html +./usr/share/man/html3/mkstemp.html comp-c-htmlman html +./usr/share/man/html3/mktemp.html comp-c-htmlman html +./usr/share/man/html3/mktime.html comp-c-htmlman html +./usr/share/man/html3/mktime_z.html comp-c-htmlman html +./usr/share/man/html3/modf.html comp-c-htmlman html +./usr/share/man/html3/moncontrol.html comp-c-htmlman html +./usr/share/man/html3/monstartup.html comp-c-htmlman html +./usr/share/man/html3/move.html comp-c-htmlman html +./usr/share/man/html3/move_field.html comp-c-htmlman html +./usr/share/man/html3/mpool.html comp-c-htmlman html +./usr/share/man/html3/mpool_close.html comp-c-htmlman html +./usr/share/man/html3/mpool_filter.html comp-c-htmlman html +./usr/share/man/html3/mpool_get.html comp-c-htmlman html +./usr/share/man/html3/mpool_new.html comp-c-htmlman html +./usr/share/man/html3/mpool_open.html comp-c-htmlman html +./usr/share/man/html3/mpool_put.html comp-c-htmlman html +./usr/share/man/html3/mpool_sync.html comp-c-htmlman html +./usr/share/man/html3/mq.html comp-c-htmlman html +./usr/share/man/html3/mq_close.html comp-c-htmlman html +./usr/share/man/html3/mq_getattr.html comp-c-htmlman html +./usr/share/man/html3/mq_notify.html comp-c-htmlman html +./usr/share/man/html3/mq_open.html comp-c-htmlman html +./usr/share/man/html3/mq_receive.html comp-c-htmlman html +./usr/share/man/html3/mq_send.html comp-c-htmlman html +./usr/share/man/html3/mq_setattr.html comp-c-htmlman html +./usr/share/man/html3/mq_timedreceive.html comp-c-htmlman html +./usr/share/man/html3/mq_timedsend.html comp-c-htmlman html +./usr/share/man/html3/mq_unlink.html comp-c-htmlman html +./usr/share/man/html3/mqueue.html comp-c-htmlman html +./usr/share/man/html3/mrand48.html comp-c-htmlman html +./usr/share/man/html3/mvaddch.html comp-c-htmlman html +./usr/share/man/html3/mvaddchnstr.html comp-c-htmlman html +./usr/share/man/html3/mvaddchstr.html comp-c-htmlman html +./usr/share/man/html3/mvaddnstr.html comp-c-htmlman html +./usr/share/man/html3/mvaddstr.html comp-c-htmlman html +./usr/share/man/html3/mvchgat.html comp-c-htmlman html +./usr/share/man/html3/mvcur.html comp-c-htmlman html +./usr/share/man/html3/mvderwin.html comp-c-htmlman html +./usr/share/man/html3/mvgetch.html comp-c-htmlman html +./usr/share/man/html3/mvgetnstr.html comp-c-htmlman html +./usr/share/man/html3/mvgetstr.html comp-c-htmlman html +./usr/share/man/html3/mvhline.html comp-c-htmlman html +./usr/share/man/html3/mvinchnstr.html comp-c-htmlman html +./usr/share/man/html3/mvinchstr.html comp-c-htmlman html +./usr/share/man/html3/mvinnstr.html comp-c-htmlman html +./usr/share/man/html3/mvinstr.html comp-c-htmlman html +./usr/share/man/html3/mvprintw.html comp-c-htmlman html +./usr/share/man/html3/mvvline.html comp-c-htmlman html +./usr/share/man/html3/mvwaddch.html comp-c-htmlman html +./usr/share/man/html3/mvwaddchnstr.html comp-c-htmlman html +./usr/share/man/html3/mvwaddchstr.html comp-c-htmlman html +./usr/share/man/html3/mvwaddnstr.html comp-c-htmlman html +./usr/share/man/html3/mvwaddstr.html comp-c-htmlman html +./usr/share/man/html3/mvwchgat.html comp-c-htmlman html +./usr/share/man/html3/mvwgetch.html comp-c-htmlman html +./usr/share/man/html3/mvwgetnstr.html comp-c-htmlman html +./usr/share/man/html3/mvwgetstr.html comp-c-htmlman html +./usr/share/man/html3/mvwhline.html comp-c-htmlman html +./usr/share/man/html3/mvwin.html comp-c-htmlman html +./usr/share/man/html3/mvwinchnstr.html comp-c-htmlman html +./usr/share/man/html3/mvwinchstr.html comp-c-htmlman html +./usr/share/man/html3/mvwinnstr.html comp-c-htmlman html +./usr/share/man/html3/mvwinstr.html comp-c-htmlman html +./usr/share/man/html3/mvwprintw.html comp-c-htmlman html +./usr/share/man/html3/mvwvline.html comp-c-htmlman html +./usr/share/man/html3/nan.html comp-c-htmlman html +./usr/share/man/html3/nanf.html comp-c-htmlman html +./usr/share/man/html3/nanl.html comp-c-htmlman html +./usr/share/man/html3/napms.html comp-c-htmlman html +./usr/share/man/html3/nc_perror.html comp-c-htmlman html +./usr/share/man/html3/nc_sperror.html comp-c-htmlman html +./usr/share/man/html3/ndbm.html comp-c-htmlman html +./usr/share/man/html3/network.html comp-c-htmlman html +./usr/share/man/html3/new_field.html comp-c-htmlman html +./usr/share/man/html3/new_fieldtype.html comp-c-htmlman html +./usr/share/man/html3/new_form.html comp-c-htmlman html +./usr/share/man/html3/new_item.html comp-c-htmlman html +./usr/share/man/html3/new_menu.html comp-c-htmlman html +./usr/share/man/html3/new_page.html comp-c-htmlman html +./usr/share/man/html3/newpad.html comp-c-htmlman html +./usr/share/man/html3/newterm.html comp-c-htmlman html +./usr/share/man/html3/newwin.html comp-c-htmlman html +./usr/share/man/html3/nextafter.html comp-c-htmlman html +./usr/share/man/html3/nextafterf.html comp-c-htmlman html +./usr/share/man/html3/nextafterl.html comp-c-htmlman html +./usr/share/man/html3/nexttoward.html comp-c-htmlman html +./usr/share/man/html3/nftw.html comp-c-htmlman html +./usr/share/man/html3/ngettext.html comp-c-htmlman html +./usr/share/man/html3/nice.html comp-c-htmlman html +./usr/share/man/html3/nl.html comp-c-htmlman html +./usr/share/man/html3/nl_langinfo.html comp-c-htmlman html +./usr/share/man/html3/nlist.html comp-c-htmlman html +./usr/share/man/html3/nocbreak.html comp-c-htmlman html +./usr/share/man/html3/nodelay.html comp-c-htmlman html +./usr/share/man/html3/noecho.html comp-c-htmlman html +./usr/share/man/html3/nonl.html comp-c-htmlman html +./usr/share/man/html3/noqiflush.html comp-c-htmlman html +./usr/share/man/html3/noraw.html comp-c-htmlman html +./usr/share/man/html3/notimeout.html comp-c-htmlman html +./usr/share/man/html3/npf.html comp-npf-htmlman html,npf +./usr/share/man/html3/nrand48.html comp-c-htmlman html +./usr/share/man/html3/nsdispatch.html comp-c-htmlman html +./usr/share/man/html3/ntoa.html comp-c-htmlman html +./usr/share/man/html3/ntohl.html comp-c-htmlman html +./usr/share/man/html3/ntohs.html comp-c-htmlman html +./usr/share/man/html3/nvis.html comp-c-htmlman html +./usr/share/man/html3/offsetof.html comp-c-htmlman html +./usr/share/man/html3/offtime.html comp-c-htmlman html +./usr/share/man/html3/offtime_r.html comp-c-htmlman html +./usr/share/man/html3/opendir.html comp-c-htmlman html +./usr/share/man/html3/opendisk.html comp-c-htmlman html +./usr/share/man/html3/openlog.html comp-c-htmlman html +./usr/share/man/html3/openlog_r.html comp-c-htmlman html +./usr/share/man/html3/openpam.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_borrow_cred.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_free_data.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_free_envlist.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_get_option.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_log.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_nullconv.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_readline.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_restore_cred.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_set_option.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_subst.html comp-c-htmlman html,pam +./usr/share/man/html3/openpam_ttyconv.html comp-c-htmlman html,pam +./usr/share/man/html3/openpgpsdk.html comp-obsolete obsolete +./usr/share/man/html3/openpty.html comp-c-htmlman html +./usr/share/man/html3/openssl_bio.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_blowfish.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_bn.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_bn_internal.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_buffer.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_des.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_dh.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_dsa.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_ecdsa.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_engine.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_err.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_evp.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_hmac.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_lhash.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_md5.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_mdc2.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_pem.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_rand.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_rc4.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_ripemd.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_rsa.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_sha.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_threads.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_ui.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_ui_compat.html comp-c-htmlman crypto,html +./usr/share/man/html3/openssl_x509.html comp-c-htmlman crypto,html +./usr/share/man/html3/orcmd.html comp-c-htmlman html +./usr/share/man/html3/orcmd_af.html comp-c-htmlman html +./usr/share/man/html3/ossaudio.html comp-c-htmlman html +./usr/share/man/html3/overlay.html comp-c-htmlman html +./usr/share/man/html3/overwrite.html comp-c-htmlman html +./usr/share/man/html3/p2k.html comp-puffs-htmlman html,rump +./usr/share/man/html3/p_query.html comp-c-htmlman html +./usr/share/man/html3/pair_content.html comp-c-htmlman html +./usr/share/man/html3/pam.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_acct_mgmt.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_authenticate.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_chauthtok.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_close_session.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_conv.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_end.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_error.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_get_authtok.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_get_data.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_get_item.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_get_user.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_getenv.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_getenvlist.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_info.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_open_session.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_prompt.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_putenv.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_set_data.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_set_item.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_setcred.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_setenv.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_sm_acct_mgmt.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_sm_authenticate.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_sm_chauthtok.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_sm_close_session.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_sm_open_session.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_sm_setcred.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_start.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_strerror.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_verror.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_vinfo.html comp-c-htmlman html,pam +./usr/share/man/html3/pam_vprompt.html comp-c-htmlman html,pam +./usr/share/man/html3/param.html comp-c-htmlman html +./usr/share/man/html3/parsedate.html comp-c-htmlman html +./usr/share/man/html3/paths.html comp-c-htmlman html +./usr/share/man/html3/pause.html comp-c-htmlman html +./usr/share/man/html3/pcap.html comp-c-htmlman html +./usr/share/man/html3/pcap_activate.html comp-c-htmlman html +./usr/share/man/html3/pcap_breakloop.html comp-c-htmlman html +./usr/share/man/html3/pcap_can_set_rfmon.html comp-c-htmlman html +./usr/share/man/html3/pcap_close.html comp-c-htmlman html +./usr/share/man/html3/pcap_compile.html comp-c-htmlman html +./usr/share/man/html3/pcap_create.html comp-c-htmlman html +./usr/share/man/html3/pcap_datalink.html comp-c-htmlman html +./usr/share/man/html3/pcap_datalink_name_to_val.html comp-c-htmlman html +./usr/share/man/html3/pcap_datalink_val_to_name.html comp-c-htmlman html +./usr/share/man/html3/pcap_dump.html comp-c-htmlman html +./usr/share/man/html3/pcap_dump_close.html comp-c-htmlman html +./usr/share/man/html3/pcap_dump_file.html comp-c-htmlman html +./usr/share/man/html3/pcap_dump_flush.html comp-c-htmlman html +./usr/share/man/html3/pcap_dump_ftell.html comp-c-htmlman html +./usr/share/man/html3/pcap_dump_open.html comp-c-htmlman html +./usr/share/man/html3/pcap_file.html comp-c-htmlman html +./usr/share/man/html3/pcap_fileno.html comp-c-htmlman html +./usr/share/man/html3/pcap_findalldevs.html comp-c-htmlman html +./usr/share/man/html3/pcap_free_datalinks.html comp-c-htmlman html +./usr/share/man/html3/pcap_freealldevs.html comp-c-htmlman html +./usr/share/man/html3/pcap_freecode.html comp-c-htmlman html +./usr/share/man/html3/pcap_get_selectable_fd.html comp-c-htmlman html +./usr/share/man/html3/pcap_geterr.html comp-c-htmlman html +./usr/share/man/html3/pcap_inject.html comp-c-htmlman html +./usr/share/man/html3/pcap_is_swapped.html comp-c-htmlman html +./usr/share/man/html3/pcap_lib_version.html comp-c-htmlman html +./usr/share/man/html3/pcap_list_datalinks.html comp-c-htmlman html +./usr/share/man/html3/pcap_lookupdev.html comp-c-htmlman html +./usr/share/man/html3/pcap_lookupnet.html comp-c-htmlman html +./usr/share/man/html3/pcap_loop.html comp-c-htmlman html +./usr/share/man/html3/pcap_major_version.html comp-c-htmlman html +./usr/share/man/html3/pcap_next_ex.html comp-c-htmlman html +./usr/share/man/html3/pcap_offline_filter.html comp-c-htmlman html +./usr/share/man/html3/pcap_open_dead.html comp-c-htmlman html +./usr/share/man/html3/pcap_open_live.html comp-c-htmlman html +./usr/share/man/html3/pcap_open_offline.html comp-c-htmlman html +./usr/share/man/html3/pcap_set_buffer_size.html comp-c-htmlman html +./usr/share/man/html3/pcap_set_datalink.html comp-c-htmlman html +./usr/share/man/html3/pcap_set_promisc.html comp-c-htmlman html +./usr/share/man/html3/pcap_set_rfmon.html comp-c-htmlman html +./usr/share/man/html3/pcap_set_snaplen.html comp-c-htmlman html +./usr/share/man/html3/pcap_set_timeout.html comp-c-htmlman html +./usr/share/man/html3/pcap_setdirection.html comp-c-htmlman html +./usr/share/man/html3/pcap_setfilter.html comp-c-htmlman html +./usr/share/man/html3/pcap_setnonblock.html comp-c-htmlman html +./usr/share/man/html3/pcap_snapshot.html comp-c-htmlman html +./usr/share/man/html3/pcap_stats.html comp-c-htmlman html +./usr/share/man/html3/pcap_statustostr.html comp-c-htmlman html +./usr/share/man/html3/pcap_strerror.html comp-c-htmlman html +./usr/share/man/html3/pci.html comp-c-htmlman html +./usr/share/man/html3/pci_conf_print.html comp-c-htmlman html +./usr/share/man/html3/pci_devinfo.html comp-c-htmlman html +./usr/share/man/html3/pci_findvendor.html comp-c-htmlman html +./usr/share/man/html3/pcibus_conf_read.html comp-c-htmlman html +./usr/share/man/html3/pcibus_conf_write.html comp-c-htmlman html +./usr/share/man/html3/pcidev_conf_read.html comp-c-htmlman html +./usr/share/man/html3/pcidev_conf_write.html comp-c-htmlman html +./usr/share/man/html3/pclose.html comp-c-htmlman html +./usr/share/man/html3/pechochar.html comp-c-htmlman html +./usr/share/man/html3/perror.html comp-c-htmlman html +./usr/share/man/html3/pidfile.html comp-c-htmlman html +./usr/share/man/html3/pidlock.html comp-c-htmlman html +./usr/share/man/html3/pmap_getmaps.html comp-c-htmlman html +./usr/share/man/html3/pmap_getport.html comp-c-htmlman html +./usr/share/man/html3/pmap_rmtcall.html comp-c-htmlman html +./usr/share/man/html3/pmap_set.html comp-c-htmlman html +./usr/share/man/html3/pmap_unset.html comp-c-htmlman html +./usr/share/man/html3/pmc.html comp-c-htmlman html +./usr/share/man/html3/pnoutrefresh.html comp-c-htmlman html +./usr/share/man/html3/popcount.html comp-c-htmlman html +./usr/share/man/html3/popcount32.html comp-c-htmlman html +./usr/share/man/html3/popcount64.html comp-c-htmlman html +./usr/share/man/html3/popcountl.html comp-c-htmlman html +./usr/share/man/html3/popcountll.html comp-c-htmlman html +./usr/share/man/html3/popen.html comp-c-htmlman html +./usr/share/man/html3/pos_form_cursor.html comp-c-htmlman html +./usr/share/man/html3/pos_menu_cursor.html comp-c-htmlman html +./usr/share/man/html3/posix2time.html comp-c-htmlman html +./usr/share/man/html3/posix2time_z.html comp-c-htmlman html +./usr/share/man/html3/posix_memalign.html comp-c-htmlman html +./usr/share/man/html3/posix_openpt.html comp-c-htmlman html +./usr/share/man/html3/posix_spawn.html comp-c-htmlman html +./usr/share/man/html3/posix_spawn_file_actions_addclose.html comp-c-htmlman html +./usr/share/man/html3/posix_spawn_file_actions_adddup2.html comp-c-htmlman html +./usr/share/man/html3/posix_spawn_file_actions_addopen.html comp-c-htmlman html +./usr/share/man/html3/posix_spawn_file_actions_destroy.html comp-c-htmlman html +./usr/share/man/html3/posix_spawn_file_actions_init.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_destroy.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_getflags.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_getpgroup.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_getschedparam.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_getschedpolicy.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_getsigdefault.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_getsigmask.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_init.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_setflags.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_setpgroup.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_setschedparam.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_setschedpolicy.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_setsigdefault.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnattr_setsigmask.html comp-c-htmlman html +./usr/share/man/html3/posix_spawnp.html comp-c-htmlman html +./usr/share/man/html3/post_form.html comp-c-htmlman html +./usr/share/man/html3/post_menu.html comp-c-htmlman html +./usr/share/man/html3/pow.html comp-c-htmlman html +./usr/share/man/html3/powf.html comp-c-htmlman html +./usr/share/man/html3/ppath.html comp-c-htmlman html +./usr/share/man/html3/ppath_bool.html comp-c-htmlman html +./usr/share/man/html3/ppath_component_at.html comp-c-htmlman html +./usr/share/man/html3/ppath_component_idx.html comp-c-htmlman html +./usr/share/man/html3/ppath_component_key.html comp-c-htmlman html +./usr/share/man/html3/ppath_component_release.html comp-c-htmlman html +./usr/share/man/html3/ppath_component_retain.html comp-c-htmlman html +./usr/share/man/html3/ppath_copy.html comp-c-htmlman html +./usr/share/man/html3/ppath_copydel_bool.html comp-c-htmlman html +./usr/share/man/html3/ppath_copydel_int64.html comp-c-htmlman html +./usr/share/man/html3/ppath_copydel_object.html comp-c-htmlman html +./usr/share/man/html3/ppath_copydel_uint64.html comp-c-htmlman html +./usr/share/man/html3/ppath_copyset_bool.html comp-c-htmlman html +./usr/share/man/html3/ppath_copyset_int64.html comp-c-htmlman html +./usr/share/man/html3/ppath_copyset_object.html comp-c-htmlman html +./usr/share/man/html3/ppath_copyset_uint64.html comp-c-htmlman html +./usr/share/man/html3/ppath_create.html comp-c-htmlman html +./usr/share/man/html3/ppath_delete_bool.html comp-c-htmlman html +./usr/share/man/html3/ppath_delete_int64.html comp-c-htmlman html +./usr/share/man/html3/ppath_delete_object.html comp-c-htmlman html +./usr/share/man/html3/ppath_delete_uint64.html comp-c-htmlman html +./usr/share/man/html3/ppath_get_bool.html comp-c-htmlman html +./usr/share/man/html3/ppath_get_int64.html comp-c-htmlman html +./usr/share/man/html3/ppath_get_object.html comp-c-htmlman html +./usr/share/man/html3/ppath_get_uint64.html comp-c-htmlman html +./usr/share/man/html3/ppath_idx.html comp-c-htmlman html +./usr/share/man/html3/ppath_key.html comp-c-htmlman html +./usr/share/man/html3/ppath_length.html comp-c-htmlman html +./usr/share/man/html3/ppath_lookup.html comp-c-htmlman html +./usr/share/man/html3/ppath_number.html comp-c-htmlman html +./usr/share/man/html3/ppath_object.html comp-c-htmlman html +./usr/share/man/html3/ppath_pop.html comp-c-htmlman html +./usr/share/man/html3/ppath_push.html comp-c-htmlman html +./usr/share/man/html3/ppath_push_idx.html comp-c-htmlman html +./usr/share/man/html3/ppath_push_key.html comp-c-htmlman html +./usr/share/man/html3/ppath_release.html comp-c-htmlman html +./usr/share/man/html3/ppath_replace_idx.html comp-c-htmlman html +./usr/share/man/html3/ppath_replace_key.html comp-c-htmlman html +./usr/share/man/html3/ppath_retain.html comp-c-htmlman html +./usr/share/man/html3/ppath_set_bool.html comp-c-htmlman html +./usr/share/man/html3/ppath_set_int64.html comp-c-htmlman html +./usr/share/man/html3/ppath_set_object.html comp-c-htmlman html +./usr/share/man/html3/ppath_set_uint64.html comp-c-htmlman html +./usr/share/man/html3/ppath_subpath.html comp-c-htmlman html +./usr/share/man/html3/prefresh.html comp-c-htmlman html +./usr/share/man/html3/printf.html comp-c-htmlman html +./usr/share/man/html3/printw.html comp-c-htmlman html +./usr/share/man/html3/proc_compare.html comp-c-htmlman html +./usr/share/man/html3/prop_array.html comp-c-htmlman html +./usr/share/man/html3/prop_array_add.html comp-c-htmlman html +./usr/share/man/html3/prop_array_capacity.html comp-c-htmlman html +./usr/share/man/html3/prop_array_copy.html comp-c-htmlman html +./usr/share/man/html3/prop_array_copy_mutable.html comp-c-htmlman html +./usr/share/man/html3/prop_array_count.html comp-c-htmlman html +./usr/share/man/html3/prop_array_create.html comp-c-htmlman html +./usr/share/man/html3/prop_array_create_with_capacity.html comp-c-htmlman html +./usr/share/man/html3/prop_array_ensure_capacity.html comp-c-htmlman html +./usr/share/man/html3/prop_array_equals.html comp-c-htmlman html +./usr/share/man/html3/prop_array_externalize.html comp-c-htmlman html +./usr/share/man/html3/prop_array_externalize_to_file.html comp-c-htmlman html +./usr/share/man/html3/prop_array_externalize_to_pref.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_bool.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_cstring.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_cstring_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_int16.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_int32.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_int64.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_int8.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_uint16.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_uint32.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_uint64.html comp-c-htmlman html +./usr/share/man/html3/prop_array_get_uint8.html comp-c-htmlman html +./usr/share/man/html3/prop_array_internalize.html comp-c-htmlman html +./usr/share/man/html3/prop_array_internalize_from_file.html comp-c-htmlman html +./usr/share/man/html3/prop_array_internalize_from_pref.html comp-c-htmlman html +./usr/share/man/html3/prop_array_iterator.html comp-c-htmlman html +./usr/share/man/html3/prop_array_make_immutable.html comp-c-htmlman html +./usr/share/man/html3/prop_array_mutable.html comp-c-htmlman html +./usr/share/man/html3/prop_array_recv_ioctl.html comp-c-htmlman html +./usr/share/man/html3/prop_array_recv_syscall.html comp-c-htmlman html +./usr/share/man/html3/prop_array_remove.html comp-c-htmlman html +./usr/share/man/html3/prop_array_send_ioctl.html comp-c-htmlman html +./usr/share/man/html3/prop_array_send_syscall.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_bool.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_cstring.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_cstring_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_int16.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_int32.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_int64.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_int8.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_uint16.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_uint32.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_uint64.html comp-c-htmlman html +./usr/share/man/html3/prop_array_set_uint8.html comp-c-htmlman html +./usr/share/man/html3/prop_array_util.html comp-c-htmlman html +./usr/share/man/html3/prop_bool.html comp-c-htmlman html +./usr/share/man/html3/prop_bool_copy.html comp-c-htmlman html +./usr/share/man/html3/prop_bool_create.html comp-c-htmlman html +./usr/share/man/html3/prop_bool_true.html comp-c-htmlman html +./usr/share/man/html3/prop_data.html comp-c-htmlman html +./usr/share/man/html3/prop_data_copy.html comp-c-htmlman html +./usr/share/man/html3/prop_data_create_data.html comp-c-htmlman html +./usr/share/man/html3/prop_data_create_data_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_data_data.html comp-c-htmlman html +./usr/share/man/html3/prop_data_data_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_data_equals.html comp-c-htmlman html +./usr/share/man/html3/prop_data_equals_data.html comp-c-htmlman html +./usr/share/man/html3/prop_data_size.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_all_keys.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_capacity.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_copy.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_copy_mutable.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_count.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_create.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_create_with_capacity.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_ensure_capacity.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_equals.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_externalize.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_externalize_to_file.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_externalize_to_pref.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_bool.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_cstring.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_cstring_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_int16.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_int32.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_int64.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_int8.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_keysym.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_uint16.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_uint32.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_uint64.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_get_uint8.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_ingest.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_internalize.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_internalize_from_file.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_internalize_from_pref.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_iterator.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_keysym_cstring_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_keysym_equals.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_make_immutable.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_mutable.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_recv_ioctl.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_recv_syscall.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_remove.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_remove_keysym.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_send_ioctl.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_send_syscall.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_sendrecv_ioctl.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_bool.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_cstring.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_cstring_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_int16.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_int32.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_int64.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_int8.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_keysym.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_uint16.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_uint32.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_uint64.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_set_uint8.html comp-c-htmlman html +./usr/share/man/html3/prop_dictionary_util.html comp-c-htmlman html +./usr/share/man/html3/prop_ingest.html comp-c-htmlman html +./usr/share/man/html3/prop_ingest_context_alloc.html comp-c-htmlman html +./usr/share/man/html3/prop_ingest_context_error.html comp-c-htmlman html +./usr/share/man/html3/prop_ingest_context_free.html comp-c-htmlman html +./usr/share/man/html3/prop_ingest_context_key.html comp-c-htmlman html +./usr/share/man/html3/prop_ingest_context_private.html comp-c-htmlman html +./usr/share/man/html3/prop_ingest_context_type.html comp-c-htmlman html +./usr/share/man/html3/prop_number.html comp-c-htmlman html +./usr/share/man/html3/prop_number_copy.html comp-c-htmlman html +./usr/share/man/html3/prop_number_create_integer.html comp-c-htmlman html +./usr/share/man/html3/prop_number_create_unsigned_integer.html comp-c-htmlman html +./usr/share/man/html3/prop_number_equals.html comp-c-htmlman html +./usr/share/man/html3/prop_number_equals_integer.html comp-c-htmlman html +./usr/share/man/html3/prop_number_equals_unsigned_integer.html comp-c-htmlman html +./usr/share/man/html3/prop_number_integer_value.html comp-c-htmlman html +./usr/share/man/html3/prop_number_size.html comp-c-htmlman html +./usr/share/man/html3/prop_number_unsigned.html comp-c-htmlman html +./usr/share/man/html3/prop_number_unsigned_integer_value.html comp-c-htmlman html +./usr/share/man/html3/prop_object.html comp-c-htmlman html +./usr/share/man/html3/prop_object_equals.html comp-c-htmlman html +./usr/share/man/html3/prop_object_iterator_next.html comp-c-htmlman html +./usr/share/man/html3/prop_object_iterator_release.html comp-c-htmlman html +./usr/share/man/html3/prop_object_iterator_reset.html comp-c-htmlman html +./usr/share/man/html3/prop_object_release.html comp-c-htmlman html +./usr/share/man/html3/prop_object_retain.html comp-c-htmlman html +./usr/share/man/html3/prop_object_type.html comp-c-htmlman html +./usr/share/man/html3/prop_send_ioctl.html comp-c-htmlman html +./usr/share/man/html3/prop_send_syscall.html comp-c-htmlman html +./usr/share/man/html3/prop_string.html comp-c-htmlman html +./usr/share/man/html3/prop_string_append.html comp-c-htmlman html +./usr/share/man/html3/prop_string_append_cstring.html comp-c-htmlman html +./usr/share/man/html3/prop_string_copy.html comp-c-htmlman html +./usr/share/man/html3/prop_string_copy_mutable.html comp-c-htmlman html +./usr/share/man/html3/prop_string_create.html comp-c-htmlman html +./usr/share/man/html3/prop_string_create_cstring.html comp-c-htmlman html +./usr/share/man/html3/prop_string_create_cstring_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_string_cstring.html comp-c-htmlman html +./usr/share/man/html3/prop_string_cstring_nocopy.html comp-c-htmlman html +./usr/share/man/html3/prop_string_equals.html comp-c-htmlman html +./usr/share/man/html3/prop_string_equals_cstring.html comp-c-htmlman html +./usr/share/man/html3/prop_string_mutable.html comp-c-htmlman html +./usr/share/man/html3/prop_string_size.html comp-c-htmlman html +./usr/share/man/html3/proplib.html comp-c-htmlman html +./usr/share/man/html3/pset.html comp-c-htmlman html +./usr/share/man/html3/pset_assign.html comp-c-htmlman html +./usr/share/man/html3/pset_bind.html comp-c-htmlman html +./usr/share/man/html3/pset_create.html comp-c-htmlman html +./usr/share/man/html3/pset_destroy.html comp-c-htmlman html +./usr/share/man/html3/psiginfo.html comp-c-htmlman html +./usr/share/man/html3/psignal.html comp-c-htmlman html +./usr/share/man/html3/pthread.html comp-c-htmlman html +./usr/share/man/html3/pthread_atfork.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_get_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getdetachstate.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getguardsize.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getinheritsched.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getname_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getschedparam.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getschedpolicy.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getscope.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getstack.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getstackaddr.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_getstacksize.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setcreatesuspend_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setdetachstate.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setguardsize.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setinheritsched.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setname_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setschedparam.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setschedpolicy.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setscope.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setstack.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setstackaddr.html comp-c-htmlman html +./usr/share/man/html3/pthread_attr_setstacksize.html comp-c-htmlman html +./usr/share/man/html3/pthread_barrier.html comp-c-htmlman html +./usr/share/man/html3/pthread_barrier_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_barrier_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_barrier_wait.html comp-c-htmlman html +./usr/share/man/html3/pthread_barrierattr.html comp-c-htmlman html +./usr/share/man/html3/pthread_barrierattr_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_barrierattr_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_cancel.html comp-c-htmlman html +./usr/share/man/html3/pthread_cleanup_pop.html comp-c-htmlman html +./usr/share/man/html3/pthread_cleanup_push.html comp-c-htmlman html +./usr/share/man/html3/pthread_cond.html comp-c-htmlman html +./usr/share/man/html3/pthread_cond_broadcast.html comp-c-htmlman html +./usr/share/man/html3/pthread_cond_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_cond_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_cond_signal.html comp-c-htmlman html +./usr/share/man/html3/pthread_cond_timedwait.html comp-c-htmlman html +./usr/share/man/html3/pthread_cond_wait.html comp-c-htmlman html +./usr/share/man/html3/pthread_condattr.html comp-c-htmlman html +./usr/share/man/html3/pthread_condattr_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_condattr_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_create.html comp-c-htmlman html +./usr/share/man/html3/pthread_curcpu_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_detach.html comp-c-htmlman html +./usr/share/man/html3/pthread_equal.html comp-c-htmlman html +./usr/share/man/html3/pthread_exit.html comp-c-htmlman html +./usr/share/man/html3/pthread_getaffinity_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_getattr_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_getname_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_getschedparam.html comp-c-htmlman html +./usr/share/man/html3/pthread_getspecific.html comp-c-htmlman html +./usr/share/man/html3/pthread_join.html comp-c-htmlman html +./usr/share/man/html3/pthread_key_create.html comp-c-htmlman html +./usr/share/man/html3/pthread_key_delete.html comp-c-htmlman html +./usr/share/man/html3/pthread_kill.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutex.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutex_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutex_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutex_lock.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutex_trylock.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutex_unlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutexattr.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutexattr_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutexattr_gettype.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutexattr_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_mutexattr_settype.html comp-c-htmlman html +./usr/share/man/html3/pthread_once.html comp-c-htmlman html +./usr/share/man/html3/pthread_resume_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_rdlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_timedrdlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_timedwrlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_tryrdlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_trywrlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_unlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlock_wrlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlockattr.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlockattr_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_rwlockattr_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_schedparam.html comp-c-htmlman html +./usr/share/man/html3/pthread_self.html comp-c-htmlman html +./usr/share/man/html3/pthread_setaffinity_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_setcancelstate.html comp-c-htmlman html +./usr/share/man/html3/pthread_setcanceltype.html comp-c-htmlman html +./usr/share/man/html3/pthread_setname_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_setschedparam.html comp-c-htmlman html +./usr/share/man/html3/pthread_setspecific.html comp-c-htmlman html +./usr/share/man/html3/pthread_sigmask.html comp-c-htmlman html +./usr/share/man/html3/pthread_spin.html comp-c-htmlman html +./usr/share/man/html3/pthread_spin_destroy.html comp-c-htmlman html +./usr/share/man/html3/pthread_spin_init.html comp-c-htmlman html +./usr/share/man/html3/pthread_spin_lock.html comp-c-htmlman html +./usr/share/man/html3/pthread_spin_trylock.html comp-c-htmlman html +./usr/share/man/html3/pthread_spin_unlock.html comp-c-htmlman html +./usr/share/man/html3/pthread_suspend_np.html comp-c-htmlman html +./usr/share/man/html3/pthread_testcancel.html comp-c-htmlman html +./usr/share/man/html3/ptsname.html comp-c-htmlman html +./usr/share/man/html3/puffs.html comp-puffs-htmlman html +./usr/share/man/html3/puffs_cc.html comp-puffs-htmlman html +./usr/share/man/html3/puffs_cred.html comp-puffs-htmlman html +./usr/share/man/html3/puffs_flush.html comp-puffs-htmlman html +./usr/share/man/html3/puffs_framebuf.html comp-puffs-htmlman html +./usr/share/man/html3/puffs_node.html comp-puffs-htmlman html +./usr/share/man/html3/puffs_ops.html comp-puffs-htmlman html +./usr/share/man/html3/puffs_path.html comp-puffs-htmlman html +./usr/share/man/html3/puffs_suspend.html comp-obsolete obsolete +./usr/share/man/html3/putc.html comp-c-htmlman html +./usr/share/man/html3/putc_unlocked.html comp-c-htmlman html +./usr/share/man/html3/putchar.html comp-c-htmlman html +./usr/share/man/html3/putchar_unlocked.html comp-c-htmlman html +./usr/share/man/html3/putenv.html comp-c-htmlman html +./usr/share/man/html3/putp.html comp-c-htmlman html +./usr/share/man/html3/puts.html comp-c-htmlman html +./usr/share/man/html3/pututxline.html comp-c-htmlman html +./usr/share/man/html3/putw.html comp-c-htmlman html +./usr/share/man/html3/putwc.html comp-c-htmlman html +./usr/share/man/html3/putwchar.html comp-c-htmlman html +./usr/share/man/html3/putwin.html comp-c-htmlman html +./usr/share/man/html3/pw_abort.html comp-c-htmlman html +./usr/share/man/html3/pw_copy.html comp-c-htmlman html +./usr/share/man/html3/pw_copyx.html comp-c-htmlman html +./usr/share/man/html3/pw_edit.html comp-c-htmlman html +./usr/share/man/html3/pw_error.html comp-c-htmlman html +./usr/share/man/html3/pw_getconf.html comp-c-htmlman html +./usr/share/man/html3/pw_getprefix.html comp-c-htmlman html +./usr/share/man/html3/pw_getpwconf.html comp-c-htmlman html +./usr/share/man/html3/pw_init.html comp-c-htmlman html +./usr/share/man/html3/pw_lock.html comp-c-htmlman html +./usr/share/man/html3/pw_mkdb.html comp-c-htmlman html +./usr/share/man/html3/pw_policy.html comp-obsolete obsolete +./usr/share/man/html3/pw_prompt.html comp-c-htmlman html +./usr/share/man/html3/pw_scan.html comp-c-htmlman html +./usr/share/man/html3/pw_setprefix.html comp-c-htmlman html +./usr/share/man/html3/pwcache.html comp-c-htmlman html +./usr/share/man/html3/pwcache_groupdb.html comp-c-htmlman html +./usr/share/man/html3/pwcache_userdb.html comp-c-htmlman html +./usr/share/man/html3/qabs.html comp-c-htmlman html +./usr/share/man/html3/qdiv.html comp-c-htmlman html +./usr/share/man/html3/qiflush.html comp-c-htmlman html +./usr/share/man/html3/qsort.html comp-c-htmlman html +./usr/share/man/html3/queue.html comp-c-htmlman html +./usr/share/man/html3/quota_close.html comp-c-htmlman html +./usr/share/man/html3/quota_delete.html comp-c-htmlman html +./usr/share/man/html3/quota_get.html comp-c-htmlman html +./usr/share/man/html3/quota_getimplname.html comp-c-htmlman html +./usr/share/man/html3/quota_getmountdevice.html comp-c-htmlman html +./usr/share/man/html3/quota_getmountpoint.html comp-c-htmlman html +./usr/share/man/html3/quota_getnumidtypes.html comp-c-htmlman html +./usr/share/man/html3/quota_getnumobjtypes.html comp-c-htmlman html +./usr/share/man/html3/quota_getrestrictions.html comp-c-htmlman html +./usr/share/man/html3/quota_idtype_getname.html comp-c-htmlman html +./usr/share/man/html3/quota_objtype_getname.html comp-c-htmlman html +./usr/share/man/html3/quota_objtype_isbytes.html comp-c-htmlman html +./usr/share/man/html3/quota_open.html comp-c-htmlman html +./usr/share/man/html3/quota_opencursor.html comp-c-htmlman html +./usr/share/man/html3/quota_put.html comp-c-htmlman html +./usr/share/man/html3/quota_quotaoff.html comp-c-htmlman html +./usr/share/man/html3/quota_quotaon.html comp-c-htmlman html +./usr/share/man/html3/quotacursor_atend.html comp-c-htmlman html +./usr/share/man/html3/quotacursor_close.html comp-c-htmlman html +./usr/share/man/html3/quotacursor_get.html comp-c-htmlman html +./usr/share/man/html3/quotacursor_getn.html comp-c-htmlman html +./usr/share/man/html3/quotacursor_rewind.html comp-c-htmlman html +./usr/share/man/html3/quotacursor_skipidtype.html comp-c-htmlman html +./usr/share/man/html3/quotaval_clear.html comp-c-htmlman html +./usr/share/man/html3/radixsort.html comp-c-htmlman html +./usr/share/man/html3/raise.html comp-c-htmlman html +./usr/share/man/html3/raise_default_signal.html comp-c-htmlman html +./usr/share/man/html3/rand.html comp-c-htmlman html +./usr/share/man/html3/rand48.html comp-c-htmlman html +./usr/share/man/html3/rand_r.html comp-c-htmlman html +./usr/share/man/html3/random.html comp-c-htmlman html +./usr/share/man/html3/randomid.html comp-c-htmlman html +./usr/share/man/html3/randomid_delete.html comp-c-htmlman html +./usr/share/man/html3/randomid_new.html comp-c-htmlman html +./usr/share/man/html3/raw.html comp-c-htmlman html +./usr/share/man/html3/rb.html comp-obsolete obsolete +./usr/share/man/html3/rb_tree_find_node.html comp-c-htmlman html +./usr/share/man/html3/rb_tree_find_node_geq.html comp-c-htmlman html +./usr/share/man/html3/rb_tree_find_node_leq.html comp-c-htmlman html +./usr/share/man/html3/rb_tree_init.html comp-c-htmlman html +./usr/share/man/html3/rb_tree_insert_node.html comp-c-htmlman html +./usr/share/man/html3/rb_tree_iterate.html comp-c-htmlman html +./usr/share/man/html3/rbtree.html comp-c-htmlman html +./usr/share/man/html3/rcmd.html comp-c-htmlman html +./usr/share/man/html3/rcmd_af.html comp-c-htmlman html +./usr/share/man/html3/re_comp.html comp-c-htmlman html +./usr/share/man/html3/re_exec.html comp-c-htmlman html +./usr/share/man/html3/readdir.html comp-c-htmlman html +./usr/share/man/html3/readdir_r.html comp-c-htmlman html +./usr/share/man/html3/realloc.html comp-c-htmlman html +./usr/share/man/html3/realpath.html comp-c-htmlman html +./usr/share/man/html3/recno.html comp-c-htmlman html +./usr/share/man/html3/refresh.html comp-c-htmlman html +./usr/share/man/html3/refuse.html comp-refuse-htmlman html +./usr/share/man/html3/regcomp.html comp-c-htmlman html +./usr/share/man/html3/regerror.html comp-c-htmlman html +./usr/share/man/html3/regex.html comp-c-htmlman html +./usr/share/man/html3/regexec.html comp-c-htmlman html +./usr/share/man/html3/regexp.html comp-c-htmlman html +./usr/share/man/html3/regfree.html comp-c-htmlman html +./usr/share/man/html3/registerrpc.html comp-c-htmlman html +./usr/share/man/html3/remainder.html comp-c-htmlman html +./usr/share/man/html3/remainderf.html comp-c-htmlman html +./usr/share/man/html3/remove.html comp-c-htmlman html +./usr/share/man/html3/remque.html comp-c-htmlman html +./usr/share/man/html3/remquo.html comp-c-htmlman html +./usr/share/man/html3/remquof.html comp-c-htmlman html +./usr/share/man/html3/request_init.html comp-c-htmlman html +./usr/share/man/html3/request_set.html comp-c-htmlman html +./usr/share/man/html3/res_close.html comp-c-htmlman html +./usr/share/man/html3/res_findzonecut.html comp-c-htmlman html +./usr/share/man/html3/res_getservers.html comp-c-htmlman html +./usr/share/man/html3/res_hostalias.html comp-c-htmlman html +./usr/share/man/html3/res_init.html comp-c-htmlman html +./usr/share/man/html3/res_isourserver.html comp-c-htmlman html +./usr/share/man/html3/res_mkquery.html comp-c-htmlman html +./usr/share/man/html3/res_nclose.html comp-c-htmlman html +./usr/share/man/html3/res_ndestroy.html comp-c-htmlman html +./usr/share/man/html3/res_ninit.html comp-c-htmlman html +./usr/share/man/html3/res_nmkquery.html comp-c-htmlman html +./usr/share/man/html3/res_nmkupdate.html comp-c-htmlman html +./usr/share/man/html3/res_nquery.html comp-c-htmlman html +./usr/share/man/html3/res_nquerydomain.html comp-c-htmlman html +./usr/share/man/html3/res_nsearch.html comp-c-htmlman html +./usr/share/man/html3/res_nsend.html comp-c-htmlman html +./usr/share/man/html3/res_nsendsigned.html comp-c-htmlman html +./usr/share/man/html3/res_nupdate.html comp-c-htmlman html +./usr/share/man/html3/res_ourserver_p.html comp-c-htmlman html +./usr/share/man/html3/res_pquery.html comp-c-htmlman html +./usr/share/man/html3/res_query.html comp-c-htmlman html +./usr/share/man/html3/res_querydomain.html comp-c-htmlman html +./usr/share/man/html3/res_search.html comp-c-htmlman html +./usr/share/man/html3/res_send.html comp-c-htmlman html +./usr/share/man/html3/res_setservers.html comp-c-htmlman html +./usr/share/man/html3/res_update.html comp-c-htmlman html +./usr/share/man/html3/reset_com_err_hook.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/reset_prog_mode.html comp-c-htmlman html +./usr/share/man/html3/reset_shell_mode.html comp-c-htmlman html +./usr/share/man/html3/resetty.html comp-c-htmlman html +./usr/share/man/html3/resizeterm.html comp-c-htmlman html +./usr/share/man/html3/resolver.html comp-c-htmlman html +./usr/share/man/html3/rewind.html comp-c-htmlman html +./usr/share/man/html3/rewinddir.html comp-c-htmlman html +./usr/share/man/html3/rexec.html comp-c-htmlman html +./usr/share/man/html3/rindex.html comp-c-htmlman html +./usr/share/man/html3/rint.html comp-c-htmlman html +./usr/share/man/html3/rintf.html comp-c-htmlman html +./usr/share/man/html3/rmd160.html comp-c-htmlman html +./usr/share/man/html3/rmtops.html comp-c-htmlman html +./usr/share/man/html3/round.html comp-c-htmlman html +./usr/share/man/html3/roundf.html comp-c-htmlman html +./usr/share/man/html3/rpc.html comp-c-htmlman html +./usr/share/man/html3/rpc_broadcast.html comp-c-htmlman html +./usr/share/man/html3/rpc_broadcast_exp.html comp-c-htmlman html +./usr/share/man/html3/rpc_call.html comp-c-htmlman html +./usr/share/man/html3/rpc_clnt_auth.html comp-c-htmlman html +./usr/share/man/html3/rpc_clnt_calls.html comp-c-htmlman html +./usr/share/man/html3/rpc_clnt_create.html comp-c-htmlman html +./usr/share/man/html3/rpc_createerr.html comp-c-htmlman html +./usr/share/man/html3/rpc_reg.html comp-c-htmlman html +./usr/share/man/html3/rpc_soc.html comp-c-htmlman html +./usr/share/man/html3/rpc_svc_calls.html comp-c-htmlman html +./usr/share/man/html3/rpc_svc_create.html comp-c-htmlman html +./usr/share/man/html3/rpc_svc_err.html comp-c-htmlman html +./usr/share/man/html3/rpc_svc_reg.html comp-c-htmlman html +./usr/share/man/html3/rpc_xdr.html comp-c-htmlman html +./usr/share/man/html3/rpcb_getaddr.html comp-c-htmlman html +./usr/share/man/html3/rpcb_getmaps.html comp-c-htmlman html +./usr/share/man/html3/rpcb_gettime.html comp-c-htmlman html +./usr/share/man/html3/rpcb_rmtcall.html comp-c-htmlman html +./usr/share/man/html3/rpcb_set.html comp-c-htmlman html +./usr/share/man/html3/rpcb_unset.html comp-c-htmlman html +./usr/share/man/html3/rpcbind.html comp-c-htmlman html +./usr/share/man/html3/rresvport.html comp-c-htmlman html +./usr/share/man/html3/rresvport_af.html comp-c-htmlman html +./usr/share/man/html3/rump.html comp-c-htmlman html,rump +./usr/share/man/html3/rump_etfs.html comp-c-htmlman html,rump +./usr/share/man/html3/rump_lwproc.html comp-c-htmlman html,rump +./usr/share/man/html3/rumpclient.html comp-c-htmlman html,rump +./usr/share/man/html3/rumphijack.html comp-c-htmlman html,rump +./usr/share/man/html3/rumpuser.html comp-c-htmlman html,rump +./usr/share/man/html3/ruserok.html comp-c-htmlman html +./usr/share/man/html3/saslc.d.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_alloc.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_end.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_init.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_cont.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_decode.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_encode.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_end.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_getmech.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_getprop.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_init.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_setprop.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_sess_strerror.html comp-c-htmlman crypto,html +./usr/share/man/html3/saslc_strerror.html comp-c-htmlman crypto,html +./usr/share/man/html3/savetty.html comp-c-htmlman html +./usr/share/man/html3/scalb.html comp-c-htmlman html +./usr/share/man/html3/scalbf.html comp-c-htmlman html +./usr/share/man/html3/scalbn.html comp-c-htmlman html +./usr/share/man/html3/scalbnf.html comp-c-htmlman html +./usr/share/man/html3/scalbnl.html comp-c-htmlman html +./usr/share/man/html3/scale_form.html comp-c-htmlman html +./usr/share/man/html3/scale_menu.html comp-c-htmlman html +./usr/share/man/html3/scandir.html comp-c-htmlman html +./usr/share/man/html3/scanf.html comp-c-htmlman html +./usr/share/man/html3/scanw.html comp-c-htmlman html +./usr/share/man/html3/sched.html comp-c-htmlman html +./usr/share/man/html3/sched_get_priority_max.html comp-c-htmlman html +./usr/share/man/html3/sched_get_priority_min.html comp-c-htmlman html +./usr/share/man/html3/sched_getparam.html comp-c-htmlman html +./usr/share/man/html3/sched_getscheduler.html comp-c-htmlman html +./usr/share/man/html3/sched_rr_get_interval.html comp-c-htmlman html +./usr/share/man/html3/sched_setparam.html comp-c-htmlman html +./usr/share/man/html3/sched_setscheduler.html comp-c-htmlman html +./usr/share/man/html3/sched_yield.html comp-c-htmlman html +./usr/share/man/html3/scrl.html comp-c-htmlman html +./usr/share/man/html3/scroll.html comp-c-htmlman html +./usr/share/man/html3/scrollok.html comp-c-htmlman html +./usr/share/man/html3/sdp.html comp-c-htmlman html +./usr/share/man/html3/sdp_attr2desc.html comp-obsolete obsolete +./usr/share/man/html3/sdp_change_service.html comp-obsolete obsolete +./usr/share/man/html3/sdp_close.html comp-c-htmlman html +./usr/share/man/html3/sdp_data.html comp-c-htmlman html +./usr/share/man/html3/sdp_data_print.html comp-c-htmlman html +./usr/share/man/html3/sdp_data_size.html comp-c-htmlman html +./usr/share/man/html3/sdp_data_type.html comp-c-htmlman html +./usr/share/man/html3/sdp_data_valid.html comp-c-htmlman html +./usr/share/man/html3/sdp_error.html comp-obsolete obsolete +./usr/share/man/html3/sdp_get_alt.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_attr.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_bool.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_data.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_int.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_seq.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_str.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_uint.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_url.html comp-c-htmlman html +./usr/share/man/html3/sdp_get_uuid.html comp-c-htmlman html +./usr/share/man/html3/sdp_match_uuid16.html comp-c-htmlman html +./usr/share/man/html3/sdp_open.html comp-c-htmlman html +./usr/share/man/html3/sdp_open_local.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_alt.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_attr.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_bool.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_data.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_int.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_int16.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_int32.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_int64.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_int8.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_seq.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_str.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uint.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uint16.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uint32.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uint64.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uint8.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_url.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uuid.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uuid128.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uuid16.html comp-c-htmlman html +./usr/share/man/html3/sdp_put_uuid32.html comp-c-htmlman html +./usr/share/man/html3/sdp_record_insert.html comp-c-htmlman html +./usr/share/man/html3/sdp_record_remove.html comp-c-htmlman html +./usr/share/man/html3/sdp_record_update.html comp-c-htmlman html +./usr/share/man/html3/sdp_register_service.html comp-obsolete obsolete +./usr/share/man/html3/sdp_search.html comp-obsolete obsolete +./usr/share/man/html3/sdp_service_attribute.html comp-c-htmlman html +./usr/share/man/html3/sdp_service_search.html comp-c-htmlman html +./usr/share/man/html3/sdp_service_search_attribute.html comp-c-htmlman html +./usr/share/man/html3/sdp_set_alt.html comp-c-htmlman html +./usr/share/man/html3/sdp_set_bool.html comp-c-htmlman html +./usr/share/man/html3/sdp_set_int.html comp-c-htmlman html +./usr/share/man/html3/sdp_set_seq.html comp-c-htmlman html +./usr/share/man/html3/sdp_set_uint.html comp-c-htmlman html +./usr/share/man/html3/sdp_unregister_service.html comp-obsolete obsolete +./usr/share/man/html3/sdp_uuid2desc.html comp-obsolete obsolete +./usr/share/man/html3/secure_path.html comp-c-htmlman html +./usr/share/man/html3/seed48.html comp-c-htmlman html +./usr/share/man/html3/seekdir.html comp-c-htmlman html +./usr/share/man/html3/sem_close.html comp-c-htmlman html +./usr/share/man/html3/sem_destroy.html comp-c-htmlman html +./usr/share/man/html3/sem_getvalue.html comp-c-htmlman html +./usr/share/man/html3/sem_init.html comp-c-htmlman html +./usr/share/man/html3/sem_open.html comp-c-htmlman html +./usr/share/man/html3/sem_post.html comp-c-htmlman html +./usr/share/man/html3/sem_timedwait.html comp-c-htmlman html +./usr/share/man/html3/sem_trywait.html comp-c-htmlman html +./usr/share/man/html3/sem_unlink.html comp-c-htmlman html +./usr/share/man/html3/sem_wait.html comp-c-htmlman html +./usr/share/man/html3/set_com_err_hook.html comp-krb5-htmlman kerberos,html +./usr/share/man/html3/set_current_field.html comp-c-htmlman html +./usr/share/man/html3/set_current_item.html comp-c-htmlman html +./usr/share/man/html3/set_curterm.html comp-c-htmlman html +./usr/share/man/html3/set_field_back.html comp-c-htmlman html +./usr/share/man/html3/set_field_buffer.html comp-c-htmlman html +./usr/share/man/html3/set_field_fore.html comp-c-htmlman html +./usr/share/man/html3/set_field_init.html comp-c-htmlman html +./usr/share/man/html3/set_field_just.html comp-c-htmlman html +./usr/share/man/html3/set_field_opts.html comp-c-htmlman html +./usr/share/man/html3/set_field_pad.html comp-c-htmlman html +./usr/share/man/html3/set_field_printf.html comp-c-htmlman html +./usr/share/man/html3/set_field_status.html comp-c-htmlman html +./usr/share/man/html3/set_field_term.html comp-c-htmlman html +./usr/share/man/html3/set_field_type.html comp-c-htmlman html +./usr/share/man/html3/set_field_userptr.html comp-c-htmlman html +./usr/share/man/html3/set_fieldtype_arg.html comp-c-htmlman html +./usr/share/man/html3/set_fieldtype_choice.html comp-c-htmlman html +./usr/share/man/html3/set_form_fields.html comp-c-htmlman html +./usr/share/man/html3/set_form_init.html comp-c-htmlman html +./usr/share/man/html3/set_form_opts.html comp-c-htmlman html +./usr/share/man/html3/set_form_page.html comp-c-htmlman html +./usr/share/man/html3/set_form_sub.html comp-c-htmlman html +./usr/share/man/html3/set_form_term.html comp-c-htmlman html +./usr/share/man/html3/set_form_userptr.html comp-c-htmlman html +./usr/share/man/html3/set_form_win.html comp-c-htmlman html +./usr/share/man/html3/set_item_init.html comp-c-htmlman html +./usr/share/man/html3/set_item_term.html comp-c-htmlman html +./usr/share/man/html3/set_item_userptr.html comp-c-htmlman html +./usr/share/man/html3/set_item_value.html comp-c-htmlman html +./usr/share/man/html3/set_max_field.html comp-c-htmlman html +./usr/share/man/html3/set_menu_back.html comp-c-htmlman html +./usr/share/man/html3/set_menu_fore.html comp-c-htmlman html +./usr/share/man/html3/set_menu_format.html comp-c-htmlman html +./usr/share/man/html3/set_menu_grey.html comp-c-htmlman html +./usr/share/man/html3/set_menu_init.html comp-c-htmlman html +./usr/share/man/html3/set_menu_items.html comp-c-htmlman html +./usr/share/man/html3/set_menu_mark.html comp-c-htmlman html +./usr/share/man/html3/set_menu_opts.html comp-c-htmlman html +./usr/share/man/html3/set_menu_pad.html comp-c-htmlman html +./usr/share/man/html3/set_menu_sub.html comp-c-htmlman html +./usr/share/man/html3/set_menu_term.html comp-c-htmlman html +./usr/share/man/html3/set_menu_unmark.html comp-c-htmlman html +./usr/share/man/html3/set_menu_userptr.html comp-c-htmlman html +./usr/share/man/html3/set_menu_win.html comp-c-htmlman html +./usr/share/man/html3/set_new_page.html comp-c-htmlman html +./usr/share/man/html3/set_term.html comp-c-htmlman html +./usr/share/man/html3/set_top_row.html comp-c-htmlman html +./usr/share/man/html3/setbuf.html comp-c-htmlman html +./usr/share/man/html3/setbuffer.html comp-c-htmlman html +./usr/share/man/html3/setclasscontext.html comp-c-htmlman html +./usr/share/man/html3/setdisktab.html comp-c-htmlman html +./usr/share/man/html3/setdomainname.html comp-c-htmlman html +./usr/share/man/html3/setenv.html comp-c-htmlman html +./usr/share/man/html3/setfsent.html comp-c-htmlman html +./usr/share/man/html3/setgrent.html comp-c-htmlman html +./usr/share/man/html3/setgroupent.html comp-c-htmlman html +./usr/share/man/html3/sethostent.html comp-c-htmlman html +./usr/share/man/html3/sethostid.html comp-c-htmlman html +./usr/share/man/html3/sethostname.html comp-c-htmlman html +./usr/share/man/html3/setjmp.html comp-c-htmlman html +./usr/share/man/html3/setkey.html comp-c-htmlman html +./usr/share/man/html3/setlinebuf.html comp-c-htmlman html +./usr/share/man/html3/setlocale.html comp-c-htmlman html +./usr/share/man/html3/setlogmask.html comp-c-htmlman html +./usr/share/man/html3/setlogmask_r.html comp-c-htmlman html +./usr/share/man/html3/setmode.html comp-c-htmlman html +./usr/share/man/html3/setnetconfig.html comp-c-htmlman html +./usr/share/man/html3/setnetent.html comp-c-htmlman html +./usr/share/man/html3/setnetgrent.html comp-c-htmlman html +./usr/share/man/html3/setnetpath.html comp-c-htmlman html +./usr/share/man/html3/setpassent.html comp-c-htmlman html +./usr/share/man/html3/setproctitle.html comp-c-htmlman html +./usr/share/man/html3/setprogname.html comp-c-htmlman html +./usr/share/man/html3/setprotoent.html comp-c-htmlman html +./usr/share/man/html3/setpwent.html comp-c-htmlman html +./usr/share/man/html3/setrgid.html comp-c-htmlman html +./usr/share/man/html3/setrpcent.html comp-c-htmlman html +./usr/share/man/html3/setruid.html comp-c-htmlman html +./usr/share/man/html3/setscrreg.html comp-c-htmlman html +./usr/share/man/html3/setservent.html comp-c-htmlman html +./usr/share/man/html3/setstate.html comp-c-htmlman html +./usr/share/man/html3/setterm.html comp-c-htmlman html +./usr/share/man/html3/setttyent.html comp-c-htmlman html +./usr/share/man/html3/setttyentpath.html comp-c-htmlman html +./usr/share/man/html3/setupterm.html comp-c-htmlman html +./usr/share/man/html3/setusercontext.html comp-c-htmlman html +./usr/share/man/html3/setusershell.html comp-c-htmlman html +./usr/share/man/html3/setutxent.html comp-c-htmlman html +./usr/share/man/html3/setvbuf.html comp-c-htmlman html +./usr/share/man/html3/sha1.html comp-c-htmlman html +./usr/share/man/html3/sha2.html comp-c-htmlman html +./usr/share/man/html3/shquote.html comp-c-htmlman html +./usr/share/man/html3/shquotev.html comp-c-htmlman html +./usr/share/man/html3/sigaddset.html comp-c-htmlman html +./usr/share/man/html3/sigblock.html comp-c-htmlman html +./usr/share/man/html3/sigdelset.html comp-c-htmlman html +./usr/share/man/html3/sigemptyset.html comp-c-htmlman html +./usr/share/man/html3/sigevent.html comp-c-htmlman html +./usr/share/man/html3/sigfillset.html comp-c-htmlman html +./usr/share/man/html3/sighold.html comp-c-htmlman html +./usr/share/man/html3/sigignore.html comp-c-htmlman html +./usr/share/man/html3/siginterrupt.html comp-c-htmlman html +./usr/share/man/html3/sigismember.html comp-c-htmlman html +./usr/share/man/html3/siglongjmp.html comp-c-htmlman html +./usr/share/man/html3/signal.html comp-c-htmlman html +./usr/share/man/html3/signal_add.html comp-c-htmlman html +./usr/share/man/html3/signal_del.html comp-c-htmlman html +./usr/share/man/html3/signal_initialized.html comp-c-htmlman html +./usr/share/man/html3/signal_pending.html comp-c-htmlman html +./usr/share/man/html3/signal_set.html comp-c-htmlman html +./usr/share/man/html3/signbit.html comp-c-htmlman html +./usr/share/man/html3/significand.html comp-c-htmlman html +./usr/share/man/html3/significandf.html comp-c-htmlman html +./usr/share/man/html3/sigpause.html comp-c-htmlman html +./usr/share/man/html3/sigrelse.html comp-c-htmlman html +./usr/share/man/html3/sigset.html comp-c-htmlman html +./usr/share/man/html3/sigsetjmp.html comp-c-htmlman html +./usr/share/man/html3/sigsetmask.html comp-c-htmlman html +./usr/share/man/html3/sigsetops.html comp-c-htmlman html +./usr/share/man/html3/sigvec.html comp-c-htmlman html +./usr/share/man/html3/sin.html comp-c-htmlman html +./usr/share/man/html3/sinf.html comp-c-htmlman html +./usr/share/man/html3/sinh.html comp-c-htmlman html +./usr/share/man/html3/sinhf.html comp-c-htmlman html +./usr/share/man/html3/skey.html comp-c-htmlman skey,html +./usr/share/man/html3/skey_authenticate.html comp-c-htmlman skey,html +./usr/share/man/html3/skey_get_algorithm.html comp-c-htmlman skey,html +./usr/share/man/html3/skey_haskey.html comp-c-htmlman skey,html +./usr/share/man/html3/skey_keyinfo.html comp-c-htmlman skey,html +./usr/share/man/html3/skey_passcheck.html comp-c-htmlman skey,html +./usr/share/man/html3/skey_set_algorithm.html comp-c-htmlman skey,html +./usr/share/man/html3/skeychallenge.html comp-c-htmlman skey,html +./usr/share/man/html3/skeygetnext.html comp-c-htmlman skey,html +./usr/share/man/html3/skeylookup.html comp-c-htmlman skey,html +./usr/share/man/html3/skeyverify.html comp-c-htmlman skey,html +./usr/share/man/html3/skeyzero.html comp-c-htmlman skey,html +./usr/share/man/html3/sl_add.html comp-c-htmlman html +./usr/share/man/html3/sl_find.html comp-c-htmlman html +./usr/share/man/html3/sl_free.html comp-c-htmlman html +./usr/share/man/html3/sl_init.html comp-c-htmlman html +./usr/share/man/html3/sleep.html comp-c-htmlman html +./usr/share/man/html3/snprintb.html comp-c-htmlman html +./usr/share/man/html3/snprintb_m.html comp-c-htmlman html +./usr/share/man/html3/snprintf.html comp-c-htmlman html +./usr/share/man/html3/snvis.html comp-c-htmlman html +./usr/share/man/html3/sockaddr_snprintf.html comp-c-htmlman html +./usr/share/man/html3/sockatmark.html comp-c-htmlman html +./usr/share/man/html3/sprintf.html comp-c-htmlman html +./usr/share/man/html3/sqrt.html comp-c-htmlman html +./usr/share/man/html3/sqrtf.html comp-c-htmlman html +./usr/share/man/html3/sradixsort.html comp-c-htmlman html +./usr/share/man/html3/srand.html comp-c-htmlman html +./usr/share/man/html3/srand48.html comp-c-htmlman html +./usr/share/man/html3/srandom.html comp-c-htmlman html +./usr/share/man/html3/sscanf.html comp-c-htmlman html +./usr/share/man/html3/ssl.html comp-c-htmlman crypto,html +./usr/share/man/html3/ssp.html comp-c-htmlman html +./usr/share/man/html3/standend.html comp-c-htmlman html +./usr/share/man/html3/standout.html comp-c-htmlman html +./usr/share/man/html3/start_color.html comp-c-htmlman html +./usr/share/man/html3/stat_flags.html comp-c-htmlman html +./usr/share/man/html3/stdarg.html comp-c-htmlman html +./usr/share/man/html3/stdbool.html comp-c-htmlman html +./usr/share/man/html3/stddef.html comp-c-htmlman html +./usr/share/man/html3/stdint.html comp-c-htmlman html +./usr/share/man/html3/stdio.html comp-c-htmlman html +./usr/share/man/html3/stdlib.html comp-c-htmlman html +./usr/share/man/html3/stpcpy.html comp-c-htmlman html +./usr/share/man/html3/stpncpy.html comp-c-htmlman html +./usr/share/man/html3/strcasecmp.html comp-c-htmlman html +./usr/share/man/html3/strcasestr.html comp-c-htmlman html +./usr/share/man/html3/strcat.html comp-c-htmlman html +./usr/share/man/html3/strchr.html comp-c-htmlman html +./usr/share/man/html3/strcmp.html comp-c-htmlman html +./usr/share/man/html3/strcoll.html comp-c-htmlman html +./usr/share/man/html3/strcpy.html comp-c-htmlman html +./usr/share/man/html3/strcspn.html comp-c-htmlman html +./usr/share/man/html3/strdup.html comp-c-htmlman html +./usr/share/man/html3/strerror.html comp-c-htmlman html +./usr/share/man/html3/strerror_r.html comp-c-htmlman html +./usr/share/man/html3/stresep.html comp-c-htmlman html +./usr/share/man/html3/strfmon.html comp-c-htmlman html +./usr/share/man/html3/strftime.html comp-c-htmlman html +./usr/share/man/html3/strftime_z.html comp-c-htmlman html +./usr/share/man/html3/string.html comp-c-htmlman html +./usr/share/man/html3/string_to_flags.html comp-c-htmlman html +./usr/share/man/html3/stringlist.html comp-c-htmlman html +./usr/share/man/html3/strings.html comp-c-htmlman html +./usr/share/man/html3/strlcat.html comp-c-htmlman html +./usr/share/man/html3/strlcpy.html comp-c-htmlman html +./usr/share/man/html3/strlen.html comp-c-htmlman html +./usr/share/man/html3/strmode.html comp-c-htmlman html +./usr/share/man/html3/strncasecmp.html comp-c-htmlman html +./usr/share/man/html3/strncat.html comp-c-htmlman html +./usr/share/man/html3/strncmp.html comp-c-htmlman html +./usr/share/man/html3/strncpy.html comp-c-htmlman html +./usr/share/man/html3/strndup.html comp-c-htmlman html +./usr/share/man/html3/strnlen.html comp-c-htmlman html +./usr/share/man/html3/strnunvis.html comp-c-htmlman html +./usr/share/man/html3/strnunvisx.html comp-c-htmlman html +./usr/share/man/html3/strnvis.html comp-c-htmlman html +./usr/share/man/html3/strnvisx.html comp-c-htmlman html +./usr/share/man/html3/strpbrk.html comp-c-htmlman html +./usr/share/man/html3/strpct.html comp-c-htmlman html +./usr/share/man/html3/strptime.html comp-c-htmlman html +./usr/share/man/html3/strrchr.html comp-c-htmlman html +./usr/share/man/html3/strsep.html comp-c-htmlman html +./usr/share/man/html3/strsignal.html comp-c-htmlman html +./usr/share/man/html3/strsnvis.html comp-c-htmlman html +./usr/share/man/html3/strsnvisx.html comp-c-htmlman html +./usr/share/man/html3/strspct.html comp-c-htmlman html +./usr/share/man/html3/strspn.html comp-c-htmlman html +./usr/share/man/html3/strstr.html comp-c-htmlman html +./usr/share/man/html3/strsuftoll.html comp-c-htmlman html +./usr/share/man/html3/strsuftollx.html comp-c-htmlman html +./usr/share/man/html3/strsvis.html comp-c-htmlman html +./usr/share/man/html3/strsvisx.html comp-c-htmlman html +./usr/share/man/html3/strtod.html comp-c-htmlman html +./usr/share/man/html3/strtof.html comp-c-htmlman html +./usr/share/man/html3/strtoimax.html comp-c-htmlman html +./usr/share/man/html3/strtok.html comp-c-htmlman html +./usr/share/man/html3/strtok_r.html comp-c-htmlman html +./usr/share/man/html3/strtol.html comp-c-htmlman html +./usr/share/man/html3/strtold.html comp-c-htmlman html +./usr/share/man/html3/strtoll.html comp-c-htmlman html +./usr/share/man/html3/strtoq.html comp-c-htmlman html +./usr/share/man/html3/strtoul.html comp-c-htmlman html +./usr/share/man/html3/strtoull.html comp-c-htmlman html +./usr/share/man/html3/strtoumax.html comp-c-htmlman html +./usr/share/man/html3/strtouq.html comp-c-htmlman html +./usr/share/man/html3/strunvis.html comp-c-htmlman html +./usr/share/man/html3/strunvisx.html comp-c-htmlman html +./usr/share/man/html3/strvis.html comp-c-htmlman html +./usr/share/man/html3/strvisx.html comp-c-htmlman html +./usr/share/man/html3/strxfrm.html comp-c-htmlman html +./usr/share/man/html3/stty.html comp-c-htmlman html +./usr/share/man/html3/subpad.html comp-c-htmlman html +./usr/share/man/html3/subwin.html comp-c-htmlman html +./usr/share/man/html3/svc_auth_reg.html comp-c-htmlman html +./usr/share/man/html3/svc_control.html comp-c-htmlman html +./usr/share/man/html3/svc_create.html comp-c-htmlman html +./usr/share/man/html3/svc_destroy.html comp-c-htmlman html +./usr/share/man/html3/svc_dg_create.html comp-c-htmlman html +./usr/share/man/html3/svc_dg_enablecache.html comp-c-htmlman html +./usr/share/man/html3/svc_exit.html comp-c-htmlman html +./usr/share/man/html3/svc_fd_create.html comp-c-htmlman html +./usr/share/man/html3/svc_fds.html comp-c-htmlman html +./usr/share/man/html3/svc_fdset.html comp-c-htmlman html +./usr/share/man/html3/svc_freeargs.html comp-c-htmlman html +./usr/share/man/html3/svc_getargs.html comp-c-htmlman html +./usr/share/man/html3/svc_getcaller.html comp-c-htmlman html +./usr/share/man/html3/svc_getreq_common.html comp-c-htmlman html +./usr/share/man/html3/svc_getreq_poll.html comp-c-htmlman html +./usr/share/man/html3/svc_getreqset.html comp-c-htmlman html +./usr/share/man/html3/svc_getrpccaller.html comp-c-htmlman html +./usr/share/man/html3/svc_pollset.html comp-c-htmlman html +./usr/share/man/html3/svc_raw_create.html comp-c-htmlman html +./usr/share/man/html3/svc_reg.html comp-c-htmlman html +./usr/share/man/html3/svc_register.html comp-c-htmlman html +./usr/share/man/html3/svc_run.html comp-c-htmlman html +./usr/share/man/html3/svc_sendreply.html comp-c-htmlman html +./usr/share/man/html3/svc_tli_create.html comp-c-htmlman html +./usr/share/man/html3/svc_tp_create.html comp-c-htmlman html +./usr/share/man/html3/svc_unreg.html comp-c-htmlman html +./usr/share/man/html3/svc_unregister.html comp-c-htmlman html +./usr/share/man/html3/svc_vc_create.html comp-c-htmlman html +./usr/share/man/html3/svcerr_auth.html comp-c-htmlman html +./usr/share/man/html3/svcerr_decode.html comp-c-htmlman html +./usr/share/man/html3/svcerr_noproc.html comp-c-htmlman html +./usr/share/man/html3/svcerr_noprog.html comp-c-htmlman html +./usr/share/man/html3/svcerr_progvers.html comp-c-htmlman html +./usr/share/man/html3/svcerr_systemerr.html comp-c-htmlman html +./usr/share/man/html3/svcerr_weakauth.html comp-c-htmlman html +./usr/share/man/html3/svcfd_create.html comp-c-htmlman html +./usr/share/man/html3/svcraw_create.html comp-c-htmlman html +./usr/share/man/html3/svctcp_create.html comp-c-htmlman html +./usr/share/man/html3/svcudp_bufcreate.html comp-c-htmlman html +./usr/share/man/html3/svcudp_create.html comp-c-htmlman html +./usr/share/man/html3/svis.html comp-c-htmlman html +./usr/share/man/html3/swab.html comp-c-htmlman html +./usr/share/man/html3/swapcontext.html comp-c-htmlman html +./usr/share/man/html3/swapon.html comp-c-htmlman html +./usr/share/man/html3/swprintf.html comp-c-htmlman html +./usr/share/man/html3/swscanf.html comp-c-htmlman html +./usr/share/man/html3/sys_errlist.html comp-c-htmlman html +./usr/share/man/html3/sys_nerr.html comp-c-htmlman html +./usr/share/man/html3/sys_siglist.html comp-c-htmlman html +./usr/share/man/html3/sys_signame.html comp-c-htmlman html +./usr/share/man/html3/sysconf.html comp-c-htmlman html +./usr/share/man/html3/sysctl.html comp-c-htmlman html +./usr/share/man/html3/sysctlbyname.html comp-c-htmlman html +./usr/share/man/html3/sysctlgetmibinfo.html comp-c-htmlman html +./usr/share/man/html3/sysctlnametomib.html comp-c-htmlman html +./usr/share/man/html3/sysexits.html comp-c-htmlman html +./usr/share/man/html3/syslog.html comp-c-htmlman html +./usr/share/man/html3/syslog_r.html comp-c-htmlman html +./usr/share/man/html3/syslogp.html comp-c-htmlman html +./usr/share/man/html3/syslogp_r.html comp-c-htmlman html +./usr/share/man/html3/system.html comp-c-htmlman html +./usr/share/man/html3/t_freent.html comp-obsolete obsolete +./usr/share/man/html3/t_getent.html comp-obsolete obsolete +./usr/share/man/html3/t_getflag.html comp-obsolete obsolete +./usr/share/man/html3/t_getnum.html comp-obsolete obsolete +./usr/share/man/html3/t_getstr.html comp-obsolete obsolete +./usr/share/man/html3/t_goto.html comp-obsolete obsolete +./usr/share/man/html3/t_parm.html comp-obsolete obsolete +./usr/share/man/html3/t_puts.html comp-obsolete obsolete +./usr/share/man/html3/t_putws.html comp-obsolete obsolete +./usr/share/man/html3/t_vparm.html comp-obsolete obsolete +./usr/share/man/html3/tan.html comp-c-htmlman html +./usr/share/man/html3/tanf.html comp-c-htmlman html +./usr/share/man/html3/tanh.html comp-c-htmlman html +./usr/share/man/html3/tanhf.html comp-c-htmlman html +./usr/share/man/html3/tcdrain.html comp-c-htmlman html +./usr/share/man/html3/tcflow.html comp-c-htmlman html +./usr/share/man/html3/tcflush.html comp-c-htmlman html +./usr/share/man/html3/tcgetattr.html comp-c-htmlman html +./usr/share/man/html3/tcgetpgrp.html comp-c-htmlman html +./usr/share/man/html3/tcgetsid.html comp-c-htmlman html +./usr/share/man/html3/tcsendbreak.html comp-c-htmlman html +./usr/share/man/html3/tcsetattr.html comp-c-htmlman html +./usr/share/man/html3/tcsetpgrp.html comp-c-htmlman html +./usr/share/man/html3/tdelete.html comp-c-htmlman html +./usr/share/man/html3/telldir.html comp-c-htmlman html +./usr/share/man/html3/tempnam.html comp-c-htmlman html +./usr/share/man/html3/termcap.html comp-c-htmlman html +./usr/share/man/html3/terminfo.html comp-c-htmlman html +./usr/share/man/html3/termname.html comp-c-htmlman html +./usr/share/man/html3/textdomain.html comp-c-htmlman html +./usr/share/man/html3/tfind.html comp-c-htmlman html +./usr/share/man/html3/tgamma.html comp-c-htmlman html +./usr/share/man/html3/tgammaf.html comp-c-htmlman html +./usr/share/man/html3/tgetent.html comp-c-htmlman html +./usr/share/man/html3/tgetflag.html comp-c-htmlman html +./usr/share/man/html3/tgetnum.html comp-c-htmlman html +./usr/share/man/html3/tgetstr.html comp-c-htmlman html +./usr/share/man/html3/tgmath.html comp-c-htmlman html +./usr/share/man/html3/tgoto.html comp-c-htmlman html +./usr/share/man/html3/ti_getflag.html comp-c-htmlman html +./usr/share/man/html3/ti_getnum.html comp-c-htmlman html +./usr/share/man/html3/ti_getstr.html comp-c-htmlman html +./usr/share/man/html3/ti_putp.html comp-c-htmlman html +./usr/share/man/html3/ti_puts.html comp-c-htmlman html +./usr/share/man/html3/ti_setupterm.html comp-c-htmlman html +./usr/share/man/html3/ti_tiparm.html comp-c-htmlman html +./usr/share/man/html3/tigetflag.html comp-c-htmlman html +./usr/share/man/html3/tigetnum.html comp-c-htmlman html +./usr/share/man/html3/tigetstr.html comp-c-htmlman html +./usr/share/man/html3/time.html comp-c-htmlman html +./usr/share/man/html3/time2posix.html comp-c-htmlman html +./usr/share/man/html3/time2posix_z.html comp-c-htmlman html +./usr/share/man/html3/timegm.html comp-c-htmlman html +./usr/share/man/html3/timelocal.html comp-c-htmlman html +./usr/share/man/html3/timeoff.html comp-c-htmlman html +./usr/share/man/html3/timeout.html comp-c-htmlman html +./usr/share/man/html3/timeradd.html comp-c-htmlman html +./usr/share/man/html3/timerclear.html comp-c-htmlman html +./usr/share/man/html3/timercmp.html comp-c-htmlman html +./usr/share/man/html3/timerisset.html comp-c-htmlman html +./usr/share/man/html3/timersub.html comp-c-htmlman html +./usr/share/man/html3/times.html comp-c-htmlman html +./usr/share/man/html3/timespec.html comp-c-htmlman html +./usr/share/man/html3/timespecadd.html comp-c-htmlman html +./usr/share/man/html3/timespecclear.html comp-c-htmlman html +./usr/share/man/html3/timespeccmp.html comp-c-htmlman html +./usr/share/man/html3/timespecisset.html comp-c-htmlman html +./usr/share/man/html3/timespecsub.html comp-c-htmlman html +./usr/share/man/html3/timeval.html comp-c-htmlman html +./usr/share/man/html3/timezone.html comp-c-htmlman html +./usr/share/man/html3/tiparm.html comp-c-htmlman html +./usr/share/man/html3/tm.html comp-c-htmlman html +./usr/share/man/html3/tmpfile.html comp-c-htmlman html +./usr/share/man/html3/tmpnam.html comp-c-htmlman html +./usr/share/man/html3/toascii.html comp-c-htmlman html +./usr/share/man/html3/tok_end.html comp-c-htmlman html +./usr/share/man/html3/tok_init.html comp-c-htmlman html +./usr/share/man/html3/tok_line.html comp-c-htmlman html +./usr/share/man/html3/tok_reset.html comp-c-htmlman html +./usr/share/man/html3/tok_str.html comp-c-htmlman html +./usr/share/man/html3/tolower.html comp-c-htmlman html +./usr/share/man/html3/top_row.html comp-c-htmlman html +./usr/share/man/html3/touchline.html comp-c-htmlman html +./usr/share/man/html3/touchoverlap.html comp-c-htmlman html +./usr/share/man/html3/touchwin.html comp-c-htmlman html +./usr/share/man/html3/toupper.html comp-c-htmlman html +./usr/share/man/html3/towctrans.html comp-c-htmlman html +./usr/share/man/html3/towlower.html comp-c-htmlman html +./usr/share/man/html3/towupper.html comp-c-htmlman html +./usr/share/man/html3/tparm.html comp-c-htmlman html +./usr/share/man/html3/tputs.html comp-c-htmlman html +./usr/share/man/html3/tree.html comp-c-htmlman html +./usr/share/man/html3/trunc.html comp-c-htmlman html +./usr/share/man/html3/truncf.html comp-c-htmlman html +./usr/share/man/html3/tsearch.html comp-c-htmlman html +./usr/share/man/html3/ttyaction.html comp-c-htmlman html +./usr/share/man/html3/ttylock.html comp-c-htmlman html +./usr/share/man/html3/ttymsg.html comp-c-htmlman html +./usr/share/man/html3/ttyname.html comp-c-htmlman html +./usr/share/man/html3/ttyname_r.html comp-c-htmlman html +./usr/share/man/html3/ttyslot.html comp-c-htmlman html +./usr/share/man/html3/ttyunlock.html comp-c-htmlman html +./usr/share/man/html3/twalk.html comp-c-htmlman html +./usr/share/man/html3/typeof.html comp-c-htmlman html +./usr/share/man/html3/types.html comp-c-htmlman html +./usr/share/man/html3/tzalloc.html comp-c-htmlman html +./usr/share/man/html3/tzfree.html comp-c-htmlman html +./usr/share/man/html3/tzgetname.html comp-c-htmlman html +./usr/share/man/html3/tzset.html comp-c-htmlman html +./usr/share/man/html3/tzsetwall.html comp-c-htmlman html +./usr/share/man/html3/ualarm.html comp-c-htmlman html +./usr/share/man/html3/uid_from_user.html comp-c-htmlman html +./usr/share/man/html3/ukfs.html comp-c-htmlman html,rump +./usr/share/man/html3/ulimit.html comp-c-htmlman html +./usr/share/man/html3/uname.html comp-c-htmlman html +./usr/share/man/html3/unctrl.html comp-c-htmlman html +./usr/share/man/html3/underend.html comp-c-htmlman html +./usr/share/man/html3/underscore.html comp-c-htmlman html +./usr/share/man/html3/ungetc.html comp-c-htmlman html +./usr/share/man/html3/ungetch.html comp-c-htmlman html +./usr/share/man/html3/ungetwc.html comp-c-htmlman html +./usr/share/man/html3/unistd.html comp-c-htmlman html +./usr/share/man/html3/unlockpt.html comp-c-htmlman html +./usr/share/man/html3/unpost_form.html comp-c-htmlman html +./usr/share/man/html3/unpost_menu.html comp-c-htmlman html +./usr/share/man/html3/unsetenv.html comp-c-htmlman html +./usr/share/man/html3/untouchwin.html comp-c-htmlman html +./usr/share/man/html3/unvis.html comp-c-htmlman html +./usr/share/man/html3/updlastlogx.html comp-c-htmlman html +./usr/share/man/html3/updwtmpx.html comp-c-htmlman html +./usr/share/man/html3/usbhid.html comp-c-htmlman html +./usr/share/man/html3/use_default_colors.html comp-c-htmlman html +./usr/share/man/html3/user_from_uid.html comp-c-htmlman html +./usr/share/man/html3/usleep.html comp-c-htmlman html +./usr/share/man/html3/util.html comp-c-htmlman html +./usr/share/man/html3/utime.html comp-c-htmlman html +./usr/share/man/html3/utmpxname.html comp-c-htmlman html +./usr/share/man/html3/uuid.html comp-c-htmlman html +./usr/share/man/html3/uuid_compare.html comp-c-htmlman html +./usr/share/man/html3/uuid_create.html comp-c-htmlman html +./usr/share/man/html3/uuid_create_nil.html comp-c-htmlman html +./usr/share/man/html3/uuid_dec_be.html comp-c-htmlman html +./usr/share/man/html3/uuid_dec_le.html comp-c-htmlman html +./usr/share/man/html3/uuid_enc_be.html comp-c-htmlman html +./usr/share/man/html3/uuid_enc_le.html comp-c-htmlman html +./usr/share/man/html3/uuid_equal.html comp-c-htmlman html +./usr/share/man/html3/uuid_from_string.html comp-c-htmlman html +./usr/share/man/html3/uuid_hash.html comp-c-htmlman html +./usr/share/man/html3/uuid_is_nil.html comp-c-htmlman html +./usr/share/man/html3/uuid_to_string.html comp-c-htmlman html +./usr/share/man/html3/va_arg.html comp-c-htmlman html +./usr/share/man/html3/va_copy.html comp-c-htmlman html +./usr/share/man/html3/va_end.html comp-c-htmlman html +./usr/share/man/html3/va_start.html comp-c-htmlman html +./usr/share/man/html3/valloc.html comp-c-htmlman html +./usr/share/man/html3/varargs.html comp-obsolete obsolete +./usr/share/man/html3/vasprintf.html comp-c-htmlman html +./usr/share/man/html3/vdprintf.html comp-c-htmlman html +./usr/share/man/html3/verr.html comp-c-htmlman html +./usr/share/man/html3/verrx.html comp-c-htmlman html +./usr/share/man/html3/vfprintf.html comp-c-htmlman html +./usr/share/man/html3/vfscanf.html comp-c-htmlman html +./usr/share/man/html3/vfwprintf.html comp-c-htmlman html +./usr/share/man/html3/vfwscanf.html comp-c-htmlman html +./usr/share/man/html3/vis.html comp-c-htmlman html +./usr/share/man/html3/vline.html comp-c-htmlman html +./usr/share/man/html3/vprintf.html comp-c-htmlman html +./usr/share/man/html3/vscanf.html comp-c-htmlman html +./usr/share/man/html3/vsnprintf.html comp-c-htmlman html +./usr/share/man/html3/vsnprintf_ss.html comp-c-htmlman html +./usr/share/man/html3/vsprintf.html comp-c-htmlman html +./usr/share/man/html3/vsscanf.html comp-c-htmlman html +./usr/share/man/html3/vswprintf.html comp-c-htmlman html +./usr/share/man/html3/vswscanf.html comp-c-htmlman html +./usr/share/man/html3/vsyslog.html comp-c-htmlman html +./usr/share/man/html3/vsyslog_r.html comp-c-htmlman html +./usr/share/man/html3/vsyslogp.html comp-c-htmlman html +./usr/share/man/html3/vsyslogp_r.html comp-c-htmlman html +./usr/share/man/html3/vwarn.html comp-c-htmlman html +./usr/share/man/html3/vwarnx.html comp-c-htmlman html +./usr/share/man/html3/vwprintf.html comp-c-htmlman html +./usr/share/man/html3/vwscanf.html comp-c-htmlman html +./usr/share/man/html3/waddch.html comp-c-htmlman html +./usr/share/man/html3/waddchnstr.html comp-c-htmlman html +./usr/share/man/html3/waddchstr.html comp-c-htmlman html +./usr/share/man/html3/waddnstr.html comp-c-htmlman html +./usr/share/man/html3/waddstr.html comp-c-htmlman html +./usr/share/man/html3/warn.html comp-c-htmlman html +./usr/share/man/html3/warnx.html comp-c-htmlman html +./usr/share/man/html3/wattr_get.html comp-c-htmlman html +./usr/share/man/html3/wattr_off.html comp-c-htmlman html +./usr/share/man/html3/wattr_on.html comp-c-htmlman html +./usr/share/man/html3/wattr_set.html comp-c-htmlman html +./usr/share/man/html3/wattroff.html comp-c-htmlman html +./usr/share/man/html3/wattron.html comp-c-htmlman html +./usr/share/man/html3/wattrset.html comp-c-htmlman html +./usr/share/man/html3/wbkgd.html comp-c-htmlman html +./usr/share/man/html3/wbkgdset.html comp-c-htmlman html +./usr/share/man/html3/wborder.html comp-c-htmlman html +./usr/share/man/html3/wchgat.html comp-c-htmlman html +./usr/share/man/html3/wclear.html comp-c-htmlman html +./usr/share/man/html3/wclrtobot.html comp-c-htmlman html +./usr/share/man/html3/wclrtoeol.html comp-c-htmlman html +./usr/share/man/html3/wcolor_set.html comp-c-htmlman html +./usr/share/man/html3/wcrtomb.html comp-c-htmlman html +./usr/share/man/html3/wcscasecmp.html comp-c-htmlman html +./usr/share/man/html3/wcscat.html comp-c-htmlman html +./usr/share/man/html3/wcschr.html comp-c-htmlman html +./usr/share/man/html3/wcscmp.html comp-c-htmlman html +./usr/share/man/html3/wcscoll.html comp-c-htmlman html +./usr/share/man/html3/wcscpy.html comp-c-htmlman html +./usr/share/man/html3/wcscspn.html comp-c-htmlman html +./usr/share/man/html3/wcsdup.html comp-c-htmlman html +./usr/share/man/html3/wcsftime.html comp-c-htmlman html +./usr/share/man/html3/wcslcat.html comp-c-htmlman html +./usr/share/man/html3/wcslcpy.html comp-c-htmlman html +./usr/share/man/html3/wcslen.html comp-c-htmlman html +./usr/share/man/html3/wcsncasecmp.html comp-c-htmlman html +./usr/share/man/html3/wcsncat.html comp-c-htmlman html +./usr/share/man/html3/wcsncmp.html comp-c-htmlman html +./usr/share/man/html3/wcsncpy.html comp-c-htmlman html +./usr/share/man/html3/wcspbrk.html comp-c-htmlman html +./usr/share/man/html3/wcsrchr.html comp-c-htmlman html +./usr/share/man/html3/wcsrtombs.html comp-c-htmlman html +./usr/share/man/html3/wcsspn.html comp-c-htmlman html +./usr/share/man/html3/wcsstr.html comp-c-htmlman html +./usr/share/man/html3/wcstod.html comp-c-htmlman html +./usr/share/man/html3/wcstof.html comp-c-htmlman html +./usr/share/man/html3/wcstoimax.html comp-c-htmlman html +./usr/share/man/html3/wcstok.html comp-c-htmlman html +./usr/share/man/html3/wcstol.html comp-c-htmlman html +./usr/share/man/html3/wcstold.html comp-c-htmlman html +./usr/share/man/html3/wcstoll.html comp-c-htmlman html +./usr/share/man/html3/wcstombs.html comp-c-htmlman html +./usr/share/man/html3/wcstoul.html comp-c-htmlman html +./usr/share/man/html3/wcstoull.html comp-c-htmlman html +./usr/share/man/html3/wcstoumax.html comp-c-htmlman html +./usr/share/man/html3/wcswcs.html comp-c-htmlman html +./usr/share/man/html3/wcswidth.html comp-c-htmlman html +./usr/share/man/html3/wcsxfrm.html comp-c-htmlman html +./usr/share/man/html3/wctob.html comp-c-htmlman html +./usr/share/man/html3/wctomb.html comp-c-htmlman html +./usr/share/man/html3/wctrans.html comp-c-htmlman html +./usr/share/man/html3/wctype.html comp-c-htmlman html +./usr/share/man/html3/wcwidth.html comp-c-htmlman html +./usr/share/man/html3/wdelch.html comp-c-htmlman html +./usr/share/man/html3/wdeleteln.html comp-c-htmlman html +./usr/share/man/html3/wechochar.html comp-c-htmlman html +./usr/share/man/html3/werase.html comp-c-htmlman html +./usr/share/man/html3/wgetch.html comp-c-htmlman html +./usr/share/man/html3/wgetnstr.html comp-c-htmlman html +./usr/share/man/html3/wgetstr.html comp-c-htmlman html +./usr/share/man/html3/whline.html comp-c-htmlman html +./usr/share/man/html3/winch.html comp-c-htmlman html +./usr/share/man/html3/winchnstr.html comp-c-htmlman html +./usr/share/man/html3/winchstr.html comp-c-htmlman html +./usr/share/man/html3/winnstr.html comp-c-htmlman html +./usr/share/man/html3/winsch.html comp-c-htmlman html +./usr/share/man/html3/winsdelln.html comp-c-htmlman html +./usr/share/man/html3/winsertln.html comp-c-htmlman html +./usr/share/man/html3/winstr.html comp-c-htmlman html +./usr/share/man/html3/wmemchr.html comp-c-htmlman html +./usr/share/man/html3/wmemcmp.html comp-c-htmlman html +./usr/share/man/html3/wmemcpy.html comp-c-htmlman html +./usr/share/man/html3/wmemmove.html comp-c-htmlman html +./usr/share/man/html3/wmemset.html comp-c-htmlman html +./usr/share/man/html3/wmove.html comp-c-htmlman html +./usr/share/man/html3/wnoutrefresh.html comp-c-htmlman html +./usr/share/man/html3/wordexp.html comp-c-htmlman html +./usr/share/man/html3/wprintf.html comp-c-htmlman html +./usr/share/man/html3/wprintw.html comp-c-htmlman html +./usr/share/man/html3/wrefresh.html comp-c-htmlman html +./usr/share/man/html3/wresize.html comp-c-htmlman html +./usr/share/man/html3/wscanf.html comp-c-htmlman html +./usr/share/man/html3/wscanw.html comp-c-htmlman html +./usr/share/man/html3/wscrl.html comp-c-htmlman html +./usr/share/man/html3/wsetscrreg.html comp-c-htmlman html +./usr/share/man/html3/wstandend.html comp-c-htmlman html +./usr/share/man/html3/wstandout.html comp-c-htmlman html +./usr/share/man/html3/wtimeout.html comp-c-htmlman html +./usr/share/man/html3/wtouchln.html comp-c-htmlman html +./usr/share/man/html3/wunderend.html comp-c-htmlman html +./usr/share/man/html3/wunderscore.html comp-c-htmlman html +./usr/share/man/html3/wvline.html comp-c-htmlman html +./usr/share/man/html3/xdr.html comp-c-htmlman html +./usr/share/man/html3/xdr_accepted_reply.html comp-c-htmlman html +./usr/share/man/html3/xdr_array.html comp-c-htmlman html +./usr/share/man/html3/xdr_authsys_parms.html comp-c-htmlman html +./usr/share/man/html3/xdr_bool.html comp-c-htmlman html +./usr/share/man/html3/xdr_bytes.html comp-c-htmlman html +./usr/share/man/html3/xdr_callhdr.html comp-c-htmlman html +./usr/share/man/html3/xdr_callmsg.html comp-c-htmlman html +./usr/share/man/html3/xdr_char.html comp-c-htmlman html +./usr/share/man/html3/xdr_destroy.html comp-c-htmlman html +./usr/share/man/html3/xdr_double.html comp-c-htmlman html +./usr/share/man/html3/xdr_enum.html comp-c-htmlman html +./usr/share/man/html3/xdr_float.html comp-c-htmlman html +./usr/share/man/html3/xdr_free.html comp-c-htmlman html +./usr/share/man/html3/xdr_getpos.html comp-c-htmlman html +./usr/share/man/html3/xdr_inline.html comp-c-htmlman html +./usr/share/man/html3/xdr_int.html comp-c-htmlman html +./usr/share/man/html3/xdr_long.html comp-c-htmlman html +./usr/share/man/html3/xdr_opaque.html comp-c-htmlman html +./usr/share/man/html3/xdr_opaque_auth.html comp-c-htmlman html +./usr/share/man/html3/xdr_pmap.html comp-c-htmlman html +./usr/share/man/html3/xdr_pmaplist.html comp-c-htmlman html +./usr/share/man/html3/xdr_pointer.html comp-c-htmlman html +./usr/share/man/html3/xdr_reference.html comp-c-htmlman html +./usr/share/man/html3/xdr_rejected_reply.html comp-c-htmlman html +./usr/share/man/html3/xdr_replymsg.html comp-c-htmlman html +./usr/share/man/html3/xdr_setpos.html comp-c-htmlman html +./usr/share/man/html3/xdr_short.html comp-c-htmlman html +./usr/share/man/html3/xdr_sizeof.html comp-c-htmlman html +./usr/share/man/html3/xdr_string.html comp-c-htmlman html +./usr/share/man/html3/xdr_u_char.html comp-c-htmlman html +./usr/share/man/html3/xdr_u_long.html comp-c-htmlman html +./usr/share/man/html3/xdr_u_short.html comp-c-htmlman html +./usr/share/man/html3/xdr_union.html comp-c-htmlman html +./usr/share/man/html3/xdr_vector.html comp-c-htmlman html +./usr/share/man/html3/xdr_void.html comp-c-htmlman html +./usr/share/man/html3/xdr_wrapstring.html comp-c-htmlman html +./usr/share/man/html3/xdrmem_create.html comp-c-htmlman html +./usr/share/man/html3/xdrrec_create.html comp-c-htmlman html +./usr/share/man/html3/xdrrec_endofrecord.html comp-c-htmlman html +./usr/share/man/html3/xdrrec_eof.html comp-c-htmlman html +./usr/share/man/html3/xdrrec_skiprecord.html comp-c-htmlman html +./usr/share/man/html3/xdrstdio_create.html comp-c-htmlman html +./usr/share/man/html3/xprt_register.html comp-c-htmlman html +./usr/share/man/html3/xprt_unregister.html comp-c-htmlman html +./usr/share/man/html3/y0.html comp-c-htmlman html +./usr/share/man/html3/y0f.html comp-c-htmlman html +./usr/share/man/html3/y1.html comp-c-htmlman html +./usr/share/man/html3/y1f.html comp-c-htmlman html +./usr/share/man/html3/yn.html comp-c-htmlman html +./usr/share/man/html3/ynf.html comp-c-htmlman html +./usr/share/man/html3/yp_all.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_bind.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_first.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_get_default_domain.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_master.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_match.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_next.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_order.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_setbindtries.html comp-c-htmlman yp,html +./usr/share/man/html3/yp_unbind.html comp-c-htmlman yp,html +./usr/share/man/html3/ypclnt.html comp-c-htmlman yp,html +./usr/share/man/html3/yperr_string.html comp-c-htmlman yp,html +./usr/share/man/html3/ypprot_err.html comp-c-htmlman yp,html +./usr/share/man/html3/zlib.html comp-c-htmlman html +./usr/share/man/html5/config.html comp-util-htmlman html +./usr/share/man/html5/config.samples.html comp-util-htmlman html +./usr/share/man/html5/cpio.html comp-util-htmlman html +./usr/share/man/html5/cvs.html comp-cvs-htmlman cvs,html +./usr/share/man/html5/ldap.conf.html comp-ldap-htmlman ldap,html +./usr/share/man/html5/ldif.html comp-ldap-htmlman ldap,html +./usr/share/man/html5/libarchive-formats.html comp-util-htmlman html +./usr/share/man/html5/mech.html comp-krb5-htmlman kerberos,html +./usr/share/man/html5/mk.conf.html comp-util-htmlman html +./usr/share/man/html5/mtree.html comp-util-htmlman html +./usr/share/man/html5/ranlib.html comp-util-htmlman html +./usr/share/man/html5/statvfs.html comp-util-htmlman html +./usr/share/man/html5/tar.html comp-util-htmlman html +./usr/share/man/html7/operator.html comp-c-htmlman html +./usr/share/man/html8/cvsbug.html comp-cvs-htmlman cvs,html +./usr/share/man/html8/kgmon.html comp-sysutil-htmlman html +./usr/share/man/html9/BOOT_FLAG.html comp-sys-htmlman html +./usr/share/man/html9/CARDBUS_PRODUCT.html comp-sys-htmlman html +./usr/share/man/html9/CARDBUS_VENDOR.html comp-sys-htmlman html +./usr/share/man/html9/CLR.html comp-sys-htmlman html +./usr/share/man/html9/CTASSERT.html comp-sys-htmlman html +./usr/share/man/html9/Cardbus_conf_read.html comp-sys-htmlman html +./usr/share/man/html9/Cardbus_conf_write.html comp-sys-htmlman html +./usr/share/man/html9/Cardbus_free_tag.html comp-sys-htmlman html +./usr/share/man/html9/Cardbus_function_disable.html comp-sys-htmlman html +./usr/share/man/html9/Cardbus_function_enable.html comp-sys-htmlman html +./usr/share/man/html9/Cardbus_make_tag.html comp-sys-htmlman html +./usr/share/man/html9/Cardbus_mapreg_map.html comp-sys-htmlman html +./usr/share/man/html9/Cardbus_mapreg_unmap.html comp-sys-htmlman html +./usr/share/man/html9/DELAY.html comp-sys-htmlman html +./usr/share/man/html9/ETHER_FIRST_MULTI.html comp-sys-htmlman html +./usr/share/man/html9/ETHER_IS_MULTICAST.html comp-sys-htmlman html +./usr/share/man/html9/ETHER_NEXT_MULTI.html comp-sys-htmlman html +./usr/share/man/html9/FILE_IS_USABLE.html comp-sys-htmlman html +./usr/share/man/html9/FILE_SET_MATURE.html comp-sys-htmlman html +./usr/share/man/html9/FILE_UNUSE.html comp-sys-htmlman html +./usr/share/man/html9/FILE_USE.html comp-sys-htmlman html +./usr/share/man/html9/FREE.html comp-sys-htmlman html +./usr/share/man/html9/HOLDRELE.html comp-obsolete obsolete +./usr/share/man/html9/ISSET.html comp-sys-htmlman html +./usr/share/man/html9/KASSERT.html comp-sys-htmlman html +./usr/share/man/html9/KASSERTMSG.html comp-sys-htmlman html +./usr/share/man/html9/KDASSERT.html comp-sys-htmlman html +./usr/share/man/html9/KDASSERTMSG.html comp-sys-htmlman html +./usr/share/man/html9/KNOTE.html comp-sys-htmlman html +./usr/share/man/html9/LWP_CACHE_CREDS.html comp-sys-htmlman html +./usr/share/man/html9/MALLOC.html comp-sys-htmlman html +./usr/share/man/html9/MALLOC_DECLARE.html comp-sys-htmlman html +./usr/share/man/html9/MALLOC_DEFINE.html comp-sys-htmlman html +./usr/share/man/html9/MALLOC_DEFINE_LIMIT.html comp-sys-htmlman html +./usr/share/man/html9/MCHTYPE.html comp-sys-htmlman html +./usr/share/man/html9/MCLGET.html comp-sys-htmlman html +./usr/share/man/html9/MEXTADD.html comp-sys-htmlman html +./usr/share/man/html9/MEXTMALLOC.html comp-sys-htmlman html +./usr/share/man/html9/MFREE.html comp-sys-htmlman html +./usr/share/man/html9/MGET.html comp-sys-htmlman html +./usr/share/man/html9/MGETHDR.html comp-sys-htmlman html +./usr/share/man/html9/MH_ALIGN.html comp-sys-htmlman html +./usr/share/man/html9/M_ALIGN.html comp-sys-htmlman html +./usr/share/man/html9/M_COPY_PKTHDR.html comp-sys-htmlman html +./usr/share/man/html9/M_LEADINGSPACE.html comp-sys-htmlman html +./usr/share/man/html9/M_MOVE_PKTHDR.html comp-sys-htmlman html +./usr/share/man/html9/M_PREPEND.html comp-sys-htmlman html +./usr/share/man/html9/M_TRAILINGSPACE.html comp-sys-htmlman html +./usr/share/man/html9/NDINIT.html comp-sys-htmlman html +./usr/share/man/html9/PCI_PRODUCT.html comp-sys-htmlman html +./usr/share/man/html9/PCI_REVISION.html comp-sys-htmlman html +./usr/share/man/html9/PCI_VENDOR.html comp-sys-htmlman html +./usr/share/man/html9/PMC_ENABLED.html comp-sys-htmlman html +./usr/share/man/html9/RUN_ONCE.html comp-sys-htmlman html +./usr/share/man/html9/SET.html comp-sys-htmlman html +./usr/share/man/html9/STACK.html comp-sys-htmlman html +./usr/share/man/html9/STACK_ALIGN.html comp-sys-htmlman html +./usr/share/man/html9/STACK_ALLOC.html comp-sys-htmlman html +./usr/share/man/html9/STACK_GROW.html comp-sys-htmlman html +./usr/share/man/html9/STACK_MAX.html comp-sys-htmlman html +./usr/share/man/html9/STACK_SHRINK.html comp-sys-htmlman html +./usr/share/man/html9/TC_DENSE_TO_SPARSE.html comp-sys-htmlman html +./usr/share/man/html9/TC_PHYS_TO_UNCACHED.html comp-sys-htmlman html +./usr/share/man/html9/VATTR_NULL.html comp-obsolete obsolete +./usr/share/man/html9/VFS_CHECKEXP.html comp-sys-htmlman html +./usr/share/man/html9/VFS_FHTOVP.html comp-sys-htmlman html +./usr/share/man/html9/VFS_MOUNT.html comp-sys-htmlman html +./usr/share/man/html9/VFS_QUOTACTL.html comp-sys-htmlman html +./usr/share/man/html9/VFS_ROOT.html comp-sys-htmlman html +./usr/share/man/html9/VFS_SNAPSHOT.html comp-sys-htmlman html +./usr/share/man/html9/VFS_START.html comp-sys-htmlman html +./usr/share/man/html9/VFS_STATVFS.html comp-sys-htmlman html +./usr/share/man/html9/VFS_SUSPENDCTL.html comp-sys-htmlman html +./usr/share/man/html9/VFS_SYNC.html comp-sys-htmlman html +./usr/share/man/html9/VFS_UNMOUNT.html comp-sys-htmlman html +./usr/share/man/html9/VFS_VGET.html comp-sys-htmlman html +./usr/share/man/html9/VFS_VPTOFH.html comp-sys-htmlman html +./usr/share/man/html9/VHOLD.html comp-obsolete obsolete +./usr/share/man/html9/VOP_ABORTOP.html comp-sys-htmlman html +./usr/share/man/html9/VOP_ACCESS.html comp-sys-htmlman html +./usr/share/man/html9/VOP_ADVLOCK.html comp-sys-htmlman html +./usr/share/man/html9/VOP_BMAP.html comp-sys-htmlman html +./usr/share/man/html9/VOP_BWRITE.html comp-sys-htmlman html +./usr/share/man/html9/VOP_CLOSE.html comp-sys-htmlman html +./usr/share/man/html9/VOP_CREATE.html comp-sys-htmlman html +./usr/share/man/html9/VOP_FCNTL.html comp-sys-htmlman html +./usr/share/man/html9/VOP_FSYNC.html comp-sys-htmlman html +./usr/share/man/html9/VOP_GETATTR.html comp-sys-htmlman html +./usr/share/man/html9/VOP_GETEXTATTR.html comp-sys-htmlman html +./usr/share/man/html9/VOP_GETPAGES.html comp-sys-htmlman html +./usr/share/man/html9/VOP_INACTIVE.html comp-sys-htmlman html +./usr/share/man/html9/VOP_IOCTL.html comp-sys-htmlman html +./usr/share/man/html9/VOP_ISLOCKED.html comp-sys-htmlman html +./usr/share/man/html9/VOP_LEASE.html comp-sys-htmlman html +./usr/share/man/html9/VOP_LINK.html comp-sys-htmlman html +./usr/share/man/html9/VOP_LISTEXTATTR.html comp-sys-htmlman html +./usr/share/man/html9/VOP_LOCK.html comp-sys-htmlman html +./usr/share/man/html9/VOP_LOOKUP.html comp-sys-htmlman html +./usr/share/man/html9/VOP_MKDIR.html comp-sys-htmlman html +./usr/share/man/html9/VOP_MKNOD.html comp-sys-htmlman html +./usr/share/man/html9/VOP_MMAP.html comp-sys-htmlman html +./usr/share/man/html9/VOP_OPEN.html comp-sys-htmlman html +./usr/share/man/html9/VOP_PATHCONF.html comp-sys-htmlman html +./usr/share/man/html9/VOP_POLL.html comp-sys-htmlman html +./usr/share/man/html9/VOP_PRINT.html comp-sys-htmlman html +./usr/share/man/html9/VOP_PUTPAGES.html comp-sys-htmlman html +./usr/share/man/html9/VOP_READ.html comp-sys-htmlman html +./usr/share/man/html9/VOP_READDIR.html comp-sys-htmlman html +./usr/share/man/html9/VOP_READLINK.html comp-sys-htmlman html +./usr/share/man/html9/VOP_RECLAIM.html comp-sys-htmlman html +./usr/share/man/html9/VOP_REMOVE.html comp-sys-htmlman html +./usr/share/man/html9/VOP_RENAME.html comp-sys-htmlman html +./usr/share/man/html9/VOP_REVOKE.html comp-sys-htmlman html +./usr/share/man/html9/VOP_RMDIR.html comp-sys-htmlman html +./usr/share/man/html9/VOP_SEEK.html comp-sys-htmlman html +./usr/share/man/html9/VOP_SETATTR.html comp-sys-htmlman html +./usr/share/man/html9/VOP_SETEXTATTR.html comp-sys-htmlman html +./usr/share/man/html9/VOP_STRATEGY.html comp-sys-htmlman html +./usr/share/man/html9/VOP_SYMLINK.html comp-sys-htmlman html +./usr/share/man/html9/VOP_UNLOCK.html comp-sys-htmlman html +./usr/share/man/html9/VOP_WHITEOUT.html comp-sys-htmlman html +./usr/share/man/html9/VOP_WRITE.html comp-sys-htmlman html +./usr/share/man/html9/VREF.html comp-obsolete obsolete +./usr/share/man/html9/atop.html comp-sys-htmlman html +./usr/share/man/html9/accept_filt_add.html comp-sys-htmlman html +./usr/share/man/html9/accept_filt_del.html comp-sys-htmlman html +./usr/share/man/html9/accept_filt_generic_mod_event.html comp-sys-htmlman html +./usr/share/man/html9/accept_filt_get.html comp-sys-htmlman html +./usr/share/man/html9/accept_filter.html comp-sys-htmlman html +./usr/share/man/html9/accf_data.html comp-sys-htmlman html +./usr/share/man/html9/accf_http.html comp-sys-htmlman html +./usr/share/man/html9/allocbuf.html comp-sys-htmlman html +./usr/share/man/html9/altq.html comp-sys-htmlman html +./usr/share/man/html9/aprint_debug.html comp-sys-htmlman html +./usr/share/man/html9/aprint_debug_dev.html comp-sys-htmlman html +./usr/share/man/html9/aprint_debug_ifnet.html comp-sys-htmlman html +./usr/share/man/html9/aprint_error.html comp-sys-htmlman html +./usr/share/man/html9/aprint_error_dev.html comp-sys-htmlman html +./usr/share/man/html9/aprint_error_ifnet.html comp-sys-htmlman html +./usr/share/man/html9/aprint_get_error_count.html comp-sys-htmlman html +./usr/share/man/html9/aprint_naive.html comp-sys-htmlman html +./usr/share/man/html9/aprint_naive_dev.html comp-sys-htmlman html +./usr/share/man/html9/aprint_naive_ifnet.html comp-sys-htmlman html +./usr/share/man/html9/aprint_normal.html comp-sys-htmlman html +./usr/share/man/html9/aprint_normal_dev.html comp-sys-htmlman html +./usr/share/man/html9/aprint_normal_ifnet.html comp-sys-htmlman html +./usr/share/man/html9/aprint_verbose.html comp-sys-htmlman html +./usr/share/man/html9/aprint_verbose_dev.html comp-sys-htmlman html +./usr/share/man/html9/aprint_verbose_ifnet.html comp-sys-htmlman html +./usr/share/man/html9/arc4randbytes.html comp-sys-htmlman html +./usr/share/man/html9/arc4random.html comp-sys-htmlman html +./usr/share/man/html9/arp.html comp-sys-htmlman html +./usr/share/man/html9/arp_ifinit.html comp-sys-htmlman html +./usr/share/man/html9/arpintr.html comp-sys-htmlman html +./usr/share/man/html9/arpresolve.html comp-sys-htmlman html +./usr/share/man/html9/audio.html comp-sys-htmlman html +./usr/share/man/html9/autoconf.html comp-sys-htmlman html +./usr/share/man/html9/bawrite.html comp-sys-htmlman html +./usr/share/man/html9/bcdtobin.html comp-sys-htmlman html +./usr/share/man/html9/bcmp.html comp-sys-htmlman html +./usr/share/man/html9/bcopy.html comp-sys-htmlman html +./usr/share/man/html9/bdevvp.html comp-sys-htmlman html +./usr/share/man/html9/bdwrite.html comp-sys-htmlman html +./usr/share/man/html9/be16dec.html comp-sys-htmlman html +./usr/share/man/html9/be16enc.html comp-sys-htmlman html +./usr/share/man/html9/be16toh.html comp-sys-htmlman html +./usr/share/man/html9/be32dec.html comp-sys-htmlman html +./usr/share/man/html9/be32enc.html comp-sys-htmlman html +./usr/share/man/html9/be32toh.html comp-sys-htmlman html +./usr/share/man/html9/be64dec.html comp-sys-htmlman html +./usr/share/man/html9/be64enc.html comp-sys-htmlman html +./usr/share/man/html9/be64toh.html comp-sys-htmlman html +./usr/share/man/html9/bintime.html comp-sys-htmlman html +./usr/share/man/html9/bintime2timespec.html comp-sys-htmlman html +./usr/share/man/html9/bintime2timeval.html comp-sys-htmlman html +./usr/share/man/html9/bintime_add.html comp-sys-htmlman html +./usr/share/man/html9/bintime_addx.html comp-sys-htmlman html +./usr/share/man/html9/bintime_sub.html comp-sys-htmlman html +./usr/share/man/html9/bintobcd.html comp-sys-htmlman html +./usr/share/man/html9/binuptime.html comp-sys-htmlman html +./usr/share/man/html9/biodone.html comp-sys-htmlman html +./usr/share/man/html9/biowait.html comp-sys-htmlman html +./usr/share/man/html9/bitmask_snprintf.html comp-obsolete obsolete +./usr/share/man/html9/bluetooth.html comp-sys-htmlman html +./usr/share/man/html9/boothowto.html comp-sys-htmlman html +./usr/share/man/html9/boottime.html comp-sys-htmlman html +./usr/share/man/html9/bounds_check_with_label.html comp-sys-htmlman html +./usr/share/man/html9/bpf.html comp-sys-htmlman html +./usr/share/man/html9/bread.html comp-sys-htmlman html +./usr/share/man/html9/breada.html comp-sys-htmlman html +./usr/share/man/html9/breadn.html comp-sys-htmlman html +./usr/share/man/html9/brelse.html comp-sys-htmlman html +./usr/share/man/html9/bswap16.html comp-sys-htmlman html +./usr/share/man/html9/bswap32.html comp-sys-htmlman html +./usr/share/man/html9/bswap64.html comp-sys-htmlman html +./usr/share/man/html9/btoc.html comp-sys-htmlman html +./usr/share/man/html9/btodb.html comp-sys-htmlman html +./usr/share/man/html9/buffercache.html comp-sys-htmlman html +./usr/share/man/html9/bufq.html comp-sys-htmlman html +./usr/share/man/html9/bus_dma.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamap_create.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamap_destroy.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamap_load.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamap_load_mbuf.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamap_load_raw.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamap_load_uio.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamap_sync.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamap_unload.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamem_alloc.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamem_free.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamem_map.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamem_mmap.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmamem_unmap.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmatag_destroy.html comp-sys-htmlman html +./usr/share/man/html9/bus_dmatag_subregion.html comp-sys-htmlman html +./usr/share/man/html9/bus_space.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_alloc.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_barrier.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_copy_region_1.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_copy_region_2.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_copy_region_4.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_copy_region_8.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_free.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_is_equal.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_map.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_mmap.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_1.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_2.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_4.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_8.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_multi_1.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_multi_2.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_multi_4.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_multi_8.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_region_1.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_region_2.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_region_4.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_read_region_8.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_set_region_1.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_set_region_2.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_set_region_4.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_set_region_8.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_subregion.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_unmap.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_vaddr.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_1.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_2.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_4.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_8.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_multi_1.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_multi_2.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_multi_4.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_multi_8.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_region_1.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_region_2.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_region_4.html comp-sys-htmlman html +./usr/share/man/html9/bus_space_write_region_8.html comp-sys-htmlman html +./usr/share/man/html9/bwrite.html comp-sys-htmlman html +./usr/share/man/html9/byteorder.html comp-sys-htmlman html +./usr/share/man/html9/bzero.html comp-sys-htmlman html +./usr/share/man/html9/cache_enter.html comp-sys-htmlman html +./usr/share/man/html9/cache_lookup.html comp-sys-htmlman html +./usr/share/man/html9/cache_purge.html comp-sys-htmlman html +./usr/share/man/html9/cache_purgevfs.html comp-sys-htmlman html +./usr/share/man/html9/cache_revlookup.html comp-sys-htmlman html +./usr/share/man/html9/callback.html comp-sys-htmlman html +./usr/share/man/html9/callback_head_destroy.html comp-sys-htmlman html +./usr/share/man/html9/callback_head_init.html comp-sys-htmlman html +./usr/share/man/html9/callback_register.html comp-sys-htmlman html +./usr/share/man/html9/callback_run_roundrobin.html comp-sys-htmlman html +./usr/share/man/html9/callback_unregister.html comp-sys-htmlman html +./usr/share/man/html9/callout.html comp-sys-htmlman html +./usr/share/man/html9/callout_ack.html comp-sys-htmlman html +./usr/share/man/html9/callout_destroy.html comp-sys-htmlman html +./usr/share/man/html9/callout_expired.html comp-sys-htmlman html +./usr/share/man/html9/callout_halt.html comp-sys-htmlman html +./usr/share/man/html9/callout_init.html comp-sys-htmlman html +./usr/share/man/html9/callout_invoking.html comp-sys-htmlman html +./usr/share/man/html9/callout_pending.html comp-sys-htmlman html +./usr/share/man/html9/callout_reset.html comp-sys-htmlman html +./usr/share/man/html9/callout_schedule.html comp-sys-htmlman html +./usr/share/man/html9/callout_setfunc.html comp-sys-htmlman html +./usr/share/man/html9/callout_stop.html comp-sys-htmlman html +./usr/share/man/html9/cardbus.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_attach_card.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_conf_read.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_conf_write.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_detach_card.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_free_tag.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_function_disable.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_function_enable.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_get_capability.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_intr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_intr_establish.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_make_tag.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_mapreg_map.html comp-sys-htmlman html +./usr/share/man/html9/cardbus_mapreg_unmap.html comp-sys-htmlman html +./usr/share/man/html9/cdevvp.html comp-sys-htmlman html +./usr/share/man/html9/checkalias.html comp-obsolete obsolete +./usr/share/man/html9/child_return.html comp-sys-htmlman html +./usr/share/man/html9/clock_secs_to_ymdhms.html comp-sys-htmlman html +./usr/share/man/html9/clock_ymdhms_to_secs.html comp-sys-htmlman html +./usr/share/man/html9/closef.html comp-sys-htmlman html +./usr/share/man/html9/clrbit.html comp-sys-htmlman html +./usr/share/man/html9/cltom.html comp-sys-htmlman html +./usr/share/man/html9/cn_check_magic.html comp-sys-htmlman html +./usr/share/man/html9/cn_destroy_magic.html comp-sys-htmlman html +./usr/share/man/html9/cn_get_magic.html comp-sys-htmlman html +./usr/share/man/html9/cn_init_magic.html comp-sys-htmlman html +./usr/share/man/html9/cn_isconsole.html comp-sys-htmlman html +./usr/share/man/html9/cn_set_magic.html comp-sys-htmlman html +./usr/share/man/html9/cn_trap.html comp-sys-htmlman html +./usr/share/man/html9/cnbell.html comp-sys-htmlman html +./usr/share/man/html9/cngetc.html comp-sys-htmlman html +./usr/share/man/html9/cngetsn.html comp-sys-htmlman html +./usr/share/man/html9/cnmagic.html comp-sys-htmlman html +./usr/share/man/html9/cnpollc.html comp-sys-htmlman html +./usr/share/man/html9/cnputc.html comp-sys-htmlman html +./usr/share/man/html9/condvar.html comp-sys-htmlman html +./usr/share/man/html9/config.html comp-sys-htmlman html +./usr/share/man/html9/config_activate.html comp-obsolete obsolete +./usr/share/man/html9/config_attach.html comp-sys-htmlman html +./usr/share/man/html9/config_attach_loc.html comp-sys-htmlman html +./usr/share/man/html9/config_attach_pseudo.html comp-sys-htmlman html +./usr/share/man/html9/config_deactivate.html comp-sys-htmlman html +./usr/share/man/html9/config_defer.html comp-sys-htmlman html +./usr/share/man/html9/config_detach.html comp-sys-htmlman html +./usr/share/man/html9/config_detach_children.html comp-sys-htmlman html +./usr/share/man/html9/config_finalize_register.html comp-sys-htmlman html +./usr/share/man/html9/config_found.html comp-sys-htmlman html +./usr/share/man/html9/config_found_ia.html comp-sys-htmlman html +./usr/share/man/html9/config_found_sm.html comp-obsolete obsolete +./usr/share/man/html9/config_found_sm_loc.html comp-sys-htmlman html +./usr/share/man/html9/config_interrupts.html comp-sys-htmlman html +./usr/share/man/html9/config_match.html comp-sys-htmlman html +./usr/share/man/html9/config_mountroot.html comp-sys-htmlman html +./usr/share/man/html9/config_pending_decr.html comp-sys-htmlman html +./usr/share/man/html9/config_pending_incr.html comp-sys-htmlman html +./usr/share/man/html9/config_search_ia.html comp-sys-htmlman html +./usr/share/man/html9/config_search_loc.html comp-sys-htmlman html +./usr/share/man/html9/cons.html comp-sys-htmlman html +./usr/share/man/html9/copy.html comp-sys-htmlman html +./usr/share/man/html9/copyin.html comp-sys-htmlman html +./usr/share/man/html9/copyin_proc.html comp-sys-htmlman html +./usr/share/man/html9/copyinstr.html comp-sys-htmlman html +./usr/share/man/html9/copyout.html comp-sys-htmlman html +./usr/share/man/html9/copyout_proc.html comp-sys-htmlman html +./usr/share/man/html9/copyoutstr.html comp-sys-htmlman html +./usr/share/man/html9/copystr.html comp-sys-htmlman html +./usr/share/man/html9/coredump_write.html comp-sys-htmlman html +./usr/share/man/html9/cprng.html comp-sys-htmlman html +./usr/share/man/html9/cprng_fast.html comp-sys-htmlman html +./usr/share/man/html9/cprng_fast32.html comp-sys-htmlman html +./usr/share/man/html9/cprng_fast64.html comp-sys-htmlman html +./usr/share/man/html9/cprng_strong.html comp-sys-htmlman html +./usr/share/man/html9/cprng_strong32.html comp-sys-htmlman html +./usr/share/man/html9/cprng_strong64.html comp-sys-htmlman html +./usr/share/man/html9/cprng_strong_create.html comp-sys-htmlman html +./usr/share/man/html9/cprng_strong_destroy.html comp-sys-htmlman html +./usr/share/man/html9/cprng_strong_getflags.html comp-sys-htmlman html +./usr/share/man/html9/cprng_strong_setflags.html comp-sys-htmlman html +./usr/share/man/html9/cpu_configure.html comp-sys-htmlman html +./usr/share/man/html9/cpu_coredump.html comp-sys-htmlman html +./usr/share/man/html9/cpu_dump.html comp-sys-htmlman html +./usr/share/man/html9/cpu_dumpconf.html comp-sys-htmlman html +./usr/share/man/html9/cpu_dumpsize.html comp-sys-htmlman html +./usr/share/man/html9/cpu_idle.html comp-sys-htmlman html +./usr/share/man/html9/cpu_initclocks.html comp-sys-htmlman html +./usr/share/man/html9/cpu_lwp_fork.html comp-sys-htmlman html +./usr/share/man/html9/cpu_need_resched.html comp-sys-htmlman html +./usr/share/man/html9/cpu_number.html comp-sys-htmlman html +./usr/share/man/html9/cpu_reboot.html comp-sys-htmlman html +./usr/share/man/html9/cpu_rootconf.html comp-sys-htmlman html +./usr/share/man/html9/cpu_startup.html comp-sys-htmlman html +./usr/share/man/html9/cpu_swapin.html comp-obsolete obsolete +./usr/share/man/html9/cpu_swapout.html comp-obsolete obsolete +./usr/share/man/html9/cpu_switchto.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_deregister.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_get.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_get_backend.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_get_state.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_get_state_index.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_register.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_resume.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_set.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_set_all.html comp-sys-htmlman html +./usr/share/man/html9/cpufreq_suspend.html comp-sys-htmlman html +./usr/share/man/html9/crypto_dispatch.html comp-sys-htmlman html +./usr/share/man/html9/crypto_done.html comp-sys-htmlman html +./usr/share/man/html9/crypto_freereq.html comp-sys-htmlman html +./usr/share/man/html9/crypto_freesession.html comp-sys-htmlman html +./usr/share/man/html9/crypto_get_driverid.html comp-sys-htmlman html +./usr/share/man/html9/crypto_getreq.html comp-sys-htmlman html +./usr/share/man/html9/crypto_kdispatch.html comp-sys-htmlman html +./usr/share/man/html9/crypto_kdone.html comp-sys-htmlman html +./usr/share/man/html9/crypto_kregister.html comp-sys-htmlman html +./usr/share/man/html9/crypto_newsession.html comp-sys-htmlman html +./usr/share/man/html9/crypto_register.html comp-sys-htmlman html +./usr/share/man/html9/crypto_unregister.html comp-sys-htmlman html +./usr/share/man/html9/csf.html comp-sys-htmlman html +./usr/share/man/html9/ctob.html comp-sys-htmlman html +./usr/share/man/html9/ctod.html comp-sys-htmlman html +./usr/share/man/html9/curcpu.html comp-sys-htmlman html +./usr/share/man/html9/curlwp.html comp-sys-htmlman html +./usr/share/man/html9/curproc.html comp-sys-htmlman html +./usr/share/man/html9/cv.html comp-sys-htmlman html +./usr/share/man/html9/cv_broadcast.html comp-sys-htmlman html +./usr/share/man/html9/cv_destroy.html comp-sys-htmlman html +./usr/share/man/html9/cv_has_waiters.html comp-sys-htmlman html +./usr/share/man/html9/cv_init.html comp-sys-htmlman html +./usr/share/man/html9/cv_signal.html comp-sys-htmlman html +./usr/share/man/html9/cv_timedwait.html comp-sys-htmlman html +./usr/share/man/html9/cv_timedwait_sig.html comp-sys-htmlman html +./usr/share/man/html9/cv_wait.html comp-sys-htmlman html +./usr/share/man/html9/cv_wait_sig.html comp-sys-htmlman html +./usr/share/man/html9/cv_wakeup.html comp-obsolete obsolete +./usr/share/man/html9/dbtob.html comp-sys-htmlman html +./usr/share/man/html9/ddc.html comp-sys-htmlman html +./usr/share/man/html9/delay.html comp-sys-htmlman html +./usr/share/man/html9/device_printf.html comp-sys-htmlman html +./usr/share/man/html9/deviter.html comp-sys-htmlman html +./usr/share/man/html9/deviter_first.html comp-sys-htmlman html +./usr/share/man/html9/deviter_init.html comp-sys-htmlman html +./usr/share/man/html9/deviter_next.html comp-sys-htmlman html +./usr/share/man/html9/deviter_release.html comp-sys-htmlman html +./usr/share/man/html9/disk.html comp-sys-htmlman html +./usr/share/man/html9/disk_attach.html comp-sys-htmlman html +./usr/share/man/html9/disk_begindetach.html comp-sys-htmlman html +./usr/share/man/html9/disk_busy.html comp-sys-htmlman html +./usr/share/man/html9/disk_destroy.html comp-sys-htmlman html +./usr/share/man/html9/disk_detach.html comp-sys-htmlman html +./usr/share/man/html9/disk_find.html comp-sys-htmlman html +./usr/share/man/html9/disk_init.html comp-sys-htmlman html +./usr/share/man/html9/disk_unbusy.html comp-sys-htmlman html +./usr/share/man/html9/disklabel.html comp-sys-htmlman html +./usr/share/man/html9/dmover.html comp-sys-htmlman html +./usr/share/man/html9/dmover_backend_register.html comp-sys-htmlman html +./usr/share/man/html9/dmover_backend_unregister.html comp-sys-htmlman html +./usr/share/man/html9/dmover_done.html comp-sys-htmlman html +./usr/share/man/html9/dmover_process.html comp-sys-htmlman html +./usr/share/man/html9/dmover_request_alloc.html comp-sys-htmlman html +./usr/share/man/html9/dmover_request_free.html comp-sys-htmlman html +./usr/share/man/html9/dmover_session_create.html comp-sys-htmlman html +./usr/share/man/html9/dmover_session_destroy.html comp-sys-htmlman html +./usr/share/man/html9/do_setresgid.html comp-sys-htmlman html +./usr/share/man/html9/do_setresuid.html comp-sys-htmlman html +./usr/share/man/html9/dofileread.html comp-sys-htmlman html +./usr/share/man/html9/dofilereadv.html comp-sys-htmlman html +./usr/share/man/html9/dofilewrite.html comp-sys-htmlman html +./usr/share/man/html9/dofilewritev.html comp-sys-htmlman html +./usr/share/man/html9/dopowerhooks.html comp-sys-htmlman html +./usr/share/man/html9/doshutdownhooks.html comp-sys-htmlman html +./usr/share/man/html9/driver.html comp-sys-htmlman html +./usr/share/man/html9/dtoc.html comp-sys-htmlman html +./usr/share/man/html9/dumpsys.html comp-sys-htmlman html +./usr/share/man/html9/dupfdopen.html comp-sys-htmlman html +./usr/share/man/html9/edid.html comp-sys-htmlman html +./usr/share/man/html9/enodev.html comp-sys-htmlman html +./usr/share/man/html9/enoioctl.html comp-sys-htmlman html +./usr/share/man/html9/enosys.html comp-sys-htmlman html +./usr/share/man/html9/enxio.html comp-sys-htmlman html +./usr/share/man/html9/eopnotsupp.html comp-sys-htmlman html +./usr/share/man/html9/errno.html comp-sys-htmlman html +./usr/share/man/html9/ether_addmulti.html comp-sys-htmlman html +./usr/share/man/html9/ether_delmulti.html comp-sys-htmlman html +./usr/share/man/html9/ether_ifattach.html comp-sys-htmlman html +./usr/share/man/html9/ethersubr.html comp-sys-htmlman html +./usr/share/man/html9/evcnt.html comp-sys-htmlman html +./usr/share/man/html9/evcnt_attach_dynamic.html comp-sys-htmlman html +./usr/share/man/html9/evcnt_attach_static.html comp-sys-htmlman html +./usr/share/man/html9/evcnt_detach.html comp-sys-htmlman html +./usr/share/man/html9/execsigs.html comp-sys-htmlman html +./usr/share/man/html9/extattr.html comp-sys-htmlman html +./usr/share/man/html9/extent.html comp-sys-htmlman html +./usr/share/man/html9/extent_alloc.html comp-sys-htmlman html +./usr/share/man/html9/extent_alloc_region.html comp-sys-htmlman html +./usr/share/man/html9/extent_alloc_subregion.html comp-sys-htmlman html +./usr/share/man/html9/extent_create.html comp-sys-htmlman html +./usr/share/man/html9/extent_destroy.html comp-sys-htmlman html +./usr/share/man/html9/extent_free.html comp-sys-htmlman html +./usr/share/man/html9/extent_print.html comp-sys-htmlman html +./usr/share/man/html9/falloc.html comp-sys-htmlman html +./usr/share/man/html9/fd_getfile.html comp-sys-htmlman html +./usr/share/man/html9/fdalloc.html comp-sys-htmlman html +./usr/share/man/html9/fdcheckstd.html comp-sys-htmlman html +./usr/share/man/html9/fdclear.html comp-sys-htmlman html +./usr/share/man/html9/fdclone.html comp-sys-htmlman html +./usr/share/man/html9/fdcloseexec.html comp-sys-htmlman html +./usr/share/man/html9/fdcopy.html comp-sys-htmlman html +./usr/share/man/html9/fddi_addmulti.html comp-sys-htmlman html +./usr/share/man/html9/fddi_delmulti.html comp-sys-htmlman html +./usr/share/man/html9/fddi_ifattach.html comp-sys-htmlman html +./usr/share/man/html9/fdexpand.html comp-sys-htmlman html +./usr/share/man/html9/fdfree.html comp-sys-htmlman html +./usr/share/man/html9/fdinit.html comp-sys-htmlman html +./usr/share/man/html9/fdrelease.html comp-sys-htmlman html +./usr/share/man/html9/fdremove.html comp-sys-htmlman html +./usr/share/man/html9/fdshare.html comp-sys-htmlman html +./usr/share/man/html9/fdunshare.html comp-sys-htmlman html +./usr/share/man/html9/fetch.html comp-sys-htmlman html +./usr/share/man/html9/ffree.html comp-sys-htmlman html +./usr/share/man/html9/fgetown.html comp-sys-htmlman html +./usr/share/man/html9/file.html comp-sys-htmlman html +./usr/share/man/html9/fileassoc.html comp-sys-htmlman html +./usr/share/man/html9/filedesc.html comp-sys-htmlman html +./usr/share/man/html9/firmload.html comp-sys-htmlman html +./usr/share/man/html9/firmware_close.html comp-sys-htmlman html +./usr/share/man/html9/firmware_free.html comp-sys-htmlman html +./usr/share/man/html9/firmware_get_size.html comp-sys-htmlman html +./usr/share/man/html9/firmware_malloc.html comp-sys-htmlman html +./usr/share/man/html9/firmware_open.html comp-sys-htmlman html +./usr/share/man/html9/firmware_read.html comp-sys-htmlman html +./usr/share/man/html9/flash.html comp-sys-htmlman html +./usr/share/man/html9/fork1.html comp-sys-htmlman html +./usr/share/man/html9/format_bytes.html comp-sys-htmlman html +./usr/share/man/html9/fownsignal.html comp-sys-htmlman html +./usr/share/man/html9/free.html comp-sys-htmlman html +./usr/share/man/html9/fscow_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/fscow_establish.html comp-sys-htmlman html +./usr/share/man/html9/fscow_run.html comp-sys-htmlman html +./usr/share/man/html9/fsetown.html comp-sys-htmlman html +./usr/share/man/html9/fstrans.html comp-sys-htmlman html +./usr/share/man/html9/fstrans_done.html comp-sys-htmlman html +./usr/share/man/html9/fstrans_getstate.html comp-sys-htmlman html +./usr/share/man/html9/fstrans_is_owner.html comp-sys-htmlman html +./usr/share/man/html9/fstrans_setstate.html comp-sys-htmlman html +./usr/share/man/html9/fstrans_start.html comp-sys-htmlman html +./usr/share/man/html9/fstrans_start_nowait.html comp-sys-htmlman html +./usr/share/man/html9/fubyte.html comp-sys-htmlman html +./usr/share/man/html9/fuibyte.html comp-sys-htmlman html +./usr/share/man/html9/fuiword.html comp-sys-htmlman html +./usr/share/man/html9/fuswintr.html comp-sys-htmlman html +./usr/share/man/html9/fusword.html comp-sys-htmlman html +./usr/share/man/html9/fuword.html comp-sys-htmlman html +./usr/share/man/html9/genfs.html comp-sys-htmlman html +./usr/share/man/html9/getbintime.html comp-sys-htmlman html +./usr/share/man/html9/getbinuptime.html comp-sys-htmlman html +./usr/share/man/html9/getblk.html comp-sys-htmlman html +./usr/share/man/html9/geteblk.html comp-sys-htmlman html +./usr/share/man/html9/getiobuf.html comp-sys-htmlman html +./usr/share/man/html9/getmicrotime.html comp-sys-htmlman html +./usr/share/man/html9/getmicrouptime.html comp-sys-htmlman html +./usr/share/man/html9/getnanotime.html comp-sys-htmlman html +./usr/share/man/html9/getnanouptime.html comp-sys-htmlman html +./usr/share/man/html9/getnewvnode.html comp-sys-htmlman html +./usr/share/man/html9/gsignal.html comp-obsolete obsolete +./usr/share/man/html9/hardclock.html comp-sys-htmlman html +./usr/share/man/html9/hash.html comp-sys-htmlman html +./usr/share/man/html9/hash32_buf.html comp-sys-htmlman html +./usr/share/man/html9/hash32_str.html comp-sys-htmlman html +./usr/share/man/html9/hash32_strn.html comp-sys-htmlman html +./usr/share/man/html9/hashdone.html comp-sys-htmlman html +./usr/share/man/html9/hashinit.html comp-sys-htmlman html +./usr/share/man/html9/holdrele.html comp-sys-htmlman html +./usr/share/man/html9/howmany.html comp-sys-htmlman html +./usr/share/man/html9/htobe16.html comp-sys-htmlman html +./usr/share/man/html9/htobe32.html comp-sys-htmlman html +./usr/share/man/html9/htobe64.html comp-sys-htmlman html +./usr/share/man/html9/htole16.html comp-sys-htmlman html +./usr/share/man/html9/htole32.html comp-sys-htmlman html +./usr/share/man/html9/htole64.html comp-sys-htmlman html +./usr/share/man/html9/humanize_number.html comp-sys-htmlman html +./usr/share/man/html9/hz.html comp-sys-htmlman html +./usr/share/man/html9/hztoms.html comp-sys-htmlman html +./usr/share/man/html9/i386/bios32_service.html comp-sys-htmlman html +./usr/share/man/html9/i386/bioscall.html comp-sys-htmlman html +./usr/share/man/html9/i386/nmi.html comp-obsolete obsolete +./usr/share/man/html9/i386/nmi_disestablish.html comp-obsolete obsolete +./usr/share/man/html9/i386/nmi_establish.html comp-obsolete obsolete +./usr/share/man/html9/i386/return_address.html comp-sys-htmlman html +./usr/share/man/html9/i386/spllower.html comp-sys-htmlman html +./usr/share/man/html9/i386/splraise.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_chan2ieee.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_chan2mode.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_crypto.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_ieee2mhz.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_ifattach.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_ifdetach.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_input.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_ioctl.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_media2rate.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_media_change.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_media_init.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_media_status.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_mhz2ieee.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_node.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_output.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_proto.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_radiotap.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_rate2media.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_rssadapt_choose.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_rssadapt_input.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_rssadapt_lower_rate.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_rssadapt_raise_rate.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_rssadapt_updatestats.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_setmode.html comp-sys-htmlman html +./usr/share/man/html9/ieee80211_watchdog.html comp-sys-htmlman html +./usr/share/man/html9/iic.html comp-sys-htmlman html +./usr/share/man/html9/iic_acquire_bus.html comp-sys-htmlman html +./usr/share/man/html9/iic_exec.html comp-sys-htmlman html +./usr/share/man/html9/iic_release_bus.html comp-sys-htmlman html +./usr/share/man/html9/iic_smbus_read_byte.html comp-sys-htmlman html +./usr/share/man/html9/iic_smbus_receive_byte.html comp-sys-htmlman html +./usr/share/man/html9/iic_smbus_write_byte.html comp-sys-htmlman html +./usr/share/man/html9/imax.html comp-sys-htmlman html +./usr/share/man/html9/imin.html comp-sys-htmlman html +./usr/share/man/html9/in4_cksum.html comp-sys-htmlman html +./usr/share/man/html9/in6_cksum.html comp-sys-htmlman html +./usr/share/man/html9/in_cksum.html comp-sys-htmlman html +./usr/share/man/html9/in_getifa.html comp-sys-htmlman html +./usr/share/man/html9/incore.html comp-sys-htmlman html +./usr/share/man/html9/inittodr.html comp-sys-htmlman html +./usr/share/man/html9/intro.html comp-sys-htmlman html +./usr/share/man/html9/ioasic.html comp-sys-htmlman html +./usr/share/man/html9/ioasic_attach_devs.html comp-sys-htmlman html +./usr/share/man/html9/ioasic_intr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/ioasic_intr_establish.html comp-sys-htmlman html +./usr/share/man/html9/ioasic_intr_evcnt.html comp-sys-htmlman html +./usr/share/man/html9/ioasic_submatch.html comp-sys-htmlman html +./usr/share/man/html9/ioctl.html comp-sys-htmlman html +./usr/share/man/html9/ioctl_copyin.html comp-sys-htmlman html +./usr/share/man/html9/ioctl_copyout.html comp-sys-htmlman html +./usr/share/man/html9/ipkdb.html comp-sys-htmlman html +./usr/share/man/html9/ipkdb_connect.html comp-sys-htmlman html +./usr/share/man/html9/ipkdb_init.html comp-sys-htmlman html +./usr/share/man/html9/ipkdb_poll.html comp-sys-htmlman html +./usr/share/man/html9/ipkdb_trap.html comp-sys-htmlman html +./usr/share/man/html9/ipkdbcmds.html comp-sys-htmlman html +./usr/share/man/html9/ipkdbfbyte.html comp-sys-htmlman html +./usr/share/man/html9/ipkdbif_init.html comp-sys-htmlman html +./usr/share/man/html9/ipkdbinit.html comp-sys-htmlman html +./usr/share/man/html9/ipkdbsbyte.html comp-sys-htmlman html +./usr/share/man/html9/isa.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmaabort.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmacascade.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmacount.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmadone.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmamap_create.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmamap_destroy.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmamaxsize.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmamem_alloc.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmamem_free.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmamem_map.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmamem_unmap.html comp-sys-htmlman html +./usr/share/man/html9/isa_dmastart.html comp-sys-htmlman html +./usr/share/man/html9/isa_drq_isfree.html comp-sys-htmlman html +./usr/share/man/html9/isa_free.html comp-sys-htmlman html +./usr/share/man/html9/isa_intr_alloc.html comp-sys-htmlman html +./usr/share/man/html9/isa_intr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/isa_intr_establish.html comp-sys-htmlman html +./usr/share/man/html9/isa_intr_evcnt.html comp-sys-htmlman html +./usr/share/man/html9/isa_malloc.html comp-sys-htmlman html +./usr/share/man/html9/isa_mappage.html comp-sys-htmlman html +./usr/share/man/html9/isapnp.html comp-sys-htmlman html +./usr/share/man/html9/isapnp_config.html comp-sys-htmlman html +./usr/share/man/html9/isapnp_devmatch.html comp-sys-htmlman html +./usr/share/man/html9/isapnp_unconfig.html comp-sys-htmlman html +./usr/share/man/html9/isclr.html comp-sys-htmlman html +./usr/share/man/html9/isset.html comp-sys-htmlman html +./usr/share/man/html9/issignal.html comp-sys-htmlman html +./usr/share/man/html9/itimerfix.html comp-sys-htmlman html +./usr/share/man/html9/kauth.html comp-sys-htmlman html +./usr/share/man/html9/kcopy.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_atomic_clear.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_atomic_set.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_clear.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_copy.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_copyin.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_copyout.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_create.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_destroy.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_fill.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_isset.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_iszero.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_match.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_merge.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_set.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_unuse.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_use.html comp-sys-htmlman html +./usr/share/man/html9/kcpuset_zero.html comp-sys-htmlman html +./usr/share/man/html9/kfilter_register.html comp-sys-htmlman html +./usr/share/man/html9/kfilter_unregister.html comp-sys-htmlman html +./usr/share/man/html9/killproc.html comp-sys-htmlman html +./usr/share/man/html9/kmem.html comp-sys-htmlman html +./usr/share/man/html9/kmem_alloc.html comp-sys-htmlman html +./usr/share/man/html9/kmem_asprintf.html comp-sys-htmlman html +./usr/share/man/html9/kmem_free.html comp-sys-htmlman html +./usr/share/man/html9/kmem_zalloc.html comp-sys-htmlman html +./usr/share/man/html9/knote.html comp-sys-htmlman html +./usr/share/man/html9/kpause.html comp-sys-htmlman html +./usr/share/man/html9/kpgsignal.html comp-sys-htmlman html +./usr/share/man/html9/kpreempt.html comp-sys-htmlman html +./usr/share/man/html9/kpreempt_disable.html comp-sys-htmlman html +./usr/share/man/html9/kpreempt_disabled.html comp-sys-htmlman html +./usr/share/man/html9/kpreempt_enable.html comp-sys-htmlman html +./usr/share/man/html9/kprintf.html comp-sys-htmlman html +./usr/share/man/html9/kpsignal.html comp-sys-htmlman html +./usr/share/man/html9/kthread.html comp-sys-htmlman html +./usr/share/man/html9/kthread_create.html comp-sys-htmlman html +./usr/share/man/html9/kthread_destroy.html comp-sys-htmlman html +./usr/share/man/html9/kthread_exit.html comp-sys-htmlman html +./usr/share/man/html9/kthread_join.html comp-sys-htmlman html +./usr/share/man/html9/le16dec.html comp-sys-htmlman html +./usr/share/man/html9/le16enc.html comp-sys-htmlman html +./usr/share/man/html9/le16toh.html comp-sys-htmlman html +./usr/share/man/html9/le32dec.html comp-sys-htmlman html +./usr/share/man/html9/le32enc.html comp-sys-htmlman html +./usr/share/man/html9/le32toh.html comp-sys-htmlman html +./usr/share/man/html9/le64dec.html comp-sys-htmlman html +./usr/share/man/html9/le64enc.html comp-sys-htmlman html +./usr/share/man/html9/le64toh.html comp-sys-htmlman html +./usr/share/man/html9/linedisc.html comp-sys-htmlman html +./usr/share/man/html9/lock.html comp-sys-htmlman html +./usr/share/man/html9/lockinit.html comp-sys-htmlman html +./usr/share/man/html9/lockmgr.html comp-sys-htmlman html +./usr/share/man/html9/lockmgr_printinfo.html comp-sys-htmlman html +./usr/share/man/html9/lockstatus.html comp-sys-htmlman html +./usr/share/man/html9/log.html comp-sys-htmlman html +./usr/share/man/html9/longjmp.html comp-sys-htmlman html +./usr/share/man/html9/lookup.html comp-sys-htmlman html +./usr/share/man/html9/ltsleep.html comp-sys-htmlman html +./usr/share/man/html9/m_adj.html comp-sys-htmlman html +./usr/share/man/html9/m_cat.html comp-sys-htmlman html +./usr/share/man/html9/m_copyback.html comp-sys-htmlman html +./usr/share/man/html9/m_copyback_cow.html comp-sys-htmlman html +./usr/share/man/html9/m_copydata.html comp-sys-htmlman html +./usr/share/man/html9/m_copym.html comp-sys-htmlman html +./usr/share/man/html9/m_copypacket.html comp-sys-htmlman html +./usr/share/man/html9/m_devget.html comp-sys-htmlman html +./usr/share/man/html9/m_dup.html comp-sys-htmlman html +./usr/share/man/html9/m_free.html comp-sys-htmlman html +./usr/share/man/html9/m_freem.html comp-sys-htmlman html +./usr/share/man/html9/m_get.html comp-sys-htmlman html +./usr/share/man/html9/m_getclr.html comp-sys-htmlman html +./usr/share/man/html9/m_gethdr.html comp-sys-htmlman html +./usr/share/man/html9/m_makewritable.html comp-sys-htmlman html +./usr/share/man/html9/m_prepend.html comp-sys-htmlman html +./usr/share/man/html9/m_pulldown.html comp-sys-htmlman html +./usr/share/man/html9/m_pullup.html comp-sys-htmlman html +./usr/share/man/html9/m_split.html comp-sys-htmlman html +./usr/share/man/html9/m_tag.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_copy.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_copy_chain.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_delete.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_delete_chain.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_delete_nonpersistent.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_find.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_first.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_free.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_get.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_init.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_next.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_prepend.html comp-sys-htmlman html +./usr/share/man/html9/m_tag_unlink.html comp-sys-htmlman html +./usr/share/man/html9/makeiplcookie.html comp-sys-htmlman html +./usr/share/man/html9/malloc.html comp-sys-htmlman html +./usr/share/man/html9/malloc_roundup.html comp-sys-htmlman html +./usr/share/man/html9/malloc_type_attach.html comp-sys-htmlman html +./usr/share/man/html9/malloc_type_detach.html comp-sys-htmlman html +./usr/share/man/html9/malloc_type_setlimit.html comp-sys-htmlman html +./usr/share/man/html9/mb.html comp-sys-htmlman html +./usr/share/man/html9/mb_memory.html comp-sys-htmlman html +./usr/share/man/html9/mb_read.html comp-sys-htmlman html +./usr/share/man/html9/mb_write.html comp-sys-htmlman html +./usr/share/man/html9/mbuf.html comp-sys-htmlman html +./usr/share/man/html9/mca.html comp-sys-htmlman html +./usr/share/man/html9/mca_conf_read.html comp-sys-htmlman html +./usr/share/man/html9/mca_conf_write.html comp-sys-htmlman html +./usr/share/man/html9/mca_intr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/mca_intr_establish.html comp-sys-htmlman html +./usr/share/man/html9/mca_intr_evcnt.html comp-sys-htmlman html +./usr/share/man/html9/memcmp.html comp-sys-htmlman html +./usr/share/man/html9/memcpy.html comp-sys-htmlman html +./usr/share/man/html9/memmove.html comp-sys-htmlman html +./usr/share/man/html9/memoryallocators.html comp-sys-htmlman html +./usr/share/man/html9/memset.html comp-sys-htmlman html +./usr/share/man/html9/mi_switch.html comp-sys-htmlman html +./usr/share/man/html9/microtime.html comp-sys-htmlman html +./usr/share/man/html9/microuptime.html comp-sys-htmlman html +./usr/share/man/html9/module.html comp-sys-htmlman html +./usr/share/man/html9/module_autoload.html comp-sys-htmlman html +./usr/share/man/html9/module_builtin_require_force.html comp-sys-htmlman html +./usr/share/man/html9/module_find_section.html comp-sys-htmlman html +./usr/share/man/html9/module_hold.html comp-sys-htmlman html +./usr/share/man/html9/module_init.html comp-sys-htmlman html +./usr/share/man/html9/module_init_class.html comp-sys-htmlman html +./usr/share/man/html9/module_load.html comp-sys-htmlman html +./usr/share/man/html9/module_load_vfs_init.html comp-sys-htmlman html +./usr/share/man/html9/module_rele.html comp-sys-htmlman html +./usr/share/man/html9/module_start_unload_thread.html comp-sys-htmlman html +./usr/share/man/html9/module_unload.html comp-sys-htmlman html +./usr/share/man/html9/mstohz.html comp-sys-htmlman html +./usr/share/man/html9/mtocl.html comp-sys-htmlman html +./usr/share/man/html9/mtod.html comp-sys-htmlman html +./usr/share/man/html9/mutex.html comp-sys-htmlman html +./usr/share/man/html9/mutex_destroy.html comp-sys-htmlman html +./usr/share/man/html9/mutex_enter.html comp-sys-htmlman html +./usr/share/man/html9/mutex_exit.html comp-sys-htmlman html +./usr/share/man/html9/mutex_init.html comp-sys-htmlman html +./usr/share/man/html9/mutex_owned.html comp-sys-htmlman html +./usr/share/man/html9/mutex_spin_enter.html comp-sys-htmlman html +./usr/share/man/html9/mutex_spin_exit.html comp-sys-htmlman html +./usr/share/man/html9/mutex_tryenter.html comp-sys-htmlman html +./usr/share/man/html9/namecache.html comp-sys-htmlman html +./usr/share/man/html9/namecache_print.html comp-sys-htmlman html +./usr/share/man/html9/namei.html comp-sys-htmlman html +./usr/share/man/html9/nanotime.html comp-sys-htmlman html +./usr/share/man/html9/nanouptime.html comp-sys-htmlman html +./usr/share/man/html9/npf_ncode.html comp-sys-htmlman html +./usr/share/man/html9/nullop.html comp-sys-htmlman html +./usr/share/man/html9/old_sysctl.html comp-sys-htmlman html +./usr/share/man/html9/opencrypto.html comp-sys-htmlman html +./usr/share/man/html9/optstr.html comp-sys-htmlman html +./usr/share/man/html9/optstr_get.html comp-sys-htmlman html +./usr/share/man/html9/p_find.html comp-obsolete obsolete +./usr/share/man/html9/panic.html comp-sys-htmlman html +./usr/share/man/html9/pathbuf.html comp-sys-htmlman html +./usr/share/man/html9/pci.html comp-sys-htmlman html +./usr/share/man/html9/pci_conf_hook.html comp-sys-htmlman html +./usr/share/man/html9/pci_conf_interrupt.html comp-sys-htmlman html +./usr/share/man/html9/pci_conf_print.html comp-sys-htmlman html +./usr/share/man/html9/pci_conf_read.html comp-sys-htmlman html +./usr/share/man/html9/pci_conf_write.html comp-sys-htmlman html +./usr/share/man/html9/pci_configure_bus.html comp-sys-htmlman html +./usr/share/man/html9/pci_decompose_tag.html comp-sys-htmlman html +./usr/share/man/html9/pci_devinfo.html comp-sys-htmlman html +./usr/share/man/html9/pci_find_device.html comp-sys-htmlman html +./usr/share/man/html9/pci_findvendor.html comp-sys-htmlman html +./usr/share/man/html9/pci_get_capability.html comp-sys-htmlman html +./usr/share/man/html9/pci_get_powerstate.html comp-sys-htmlman html +./usr/share/man/html9/pci_intr.html comp-sys-htmlman html +./usr/share/man/html9/pci_intr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/pci_intr_establish.html comp-sys-htmlman html +./usr/share/man/html9/pci_intr_evcnt.html comp-sys-htmlman html +./usr/share/man/html9/pci_intr_map.html comp-sys-htmlman html +./usr/share/man/html9/pci_intr_string.html comp-sys-htmlman html +./usr/share/man/html9/pci_make_tag.html comp-sys-htmlman html +./usr/share/man/html9/pci_mapreg_info.html comp-sys-htmlman html +./usr/share/man/html9/pci_mapreg_map.html comp-sys-htmlman html +./usr/share/man/html9/pci_mapreg_type.html comp-sys-htmlman html +./usr/share/man/html9/pci_set_powerstate.html comp-sys-htmlman html +./usr/share/man/html9/pci_vpd_read.html comp-sys-htmlman html +./usr/share/man/html9/pci_vpd_write.html comp-sys-htmlman html +./usr/share/man/html9/pckbport.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_attach.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_attach_slot.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_cnattach.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_enqueue_cmd.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_flush.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_poll_cmd.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_poll_data.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_set_inputhandler.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_set_poll.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_slot_enable.html comp-sys-htmlman html +./usr/share/man/html9/pckbport_xt_translation.html comp-sys-htmlman html +./usr/share/man/html9/pckbportintr.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_cis_read_1.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_cis_read_2.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_cis_read_3.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_cis_read_4.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_cis_read_n.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_function_disable.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_function_enable.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_function_init.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_intr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_intr_establish.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_io_alloc.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_io_free.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_io_map.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_io_unmap.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_mem_alloc.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_mem_free.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_mem_map.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_mem_unmap.html comp-sys-htmlman html +./usr/share/man/html9/pcmcia_scan_cis.html comp-sys-htmlman html +./usr/share/man/html9/pcq.html comp-sys-htmlman html +./usr/share/man/html9/pcq_create.html comp-sys-htmlman html +./usr/share/man/html9/pcq_destroy.html comp-sys-htmlman html +./usr/share/man/html9/pcq_get.html comp-sys-htmlman html +./usr/share/man/html9/pcq_maxitems.html comp-sys-htmlman html +./usr/share/man/html9/pcq_peek.html comp-sys-htmlman html +./usr/share/man/html9/pcq_put.html comp-sys-htmlman html +./usr/share/man/html9/percpu.html comp-sys-htmlman html +./usr/share/man/html9/percpu_alloc.html comp-sys-htmlman html +./usr/share/man/html9/percpu_foreach.html comp-sys-htmlman html +./usr/share/man/html9/percpu_free.html comp-sys-htmlman html +./usr/share/man/html9/percpu_getref.html comp-sys-htmlman html +./usr/share/man/html9/percpu_init.html comp-obsolete obsolete +./usr/share/man/html9/percpu_init_cpu.html comp-obsolete obsolete +./usr/share/man/html9/percpu_putref.html comp-sys-htmlman html +./usr/share/man/html9/pfil.html comp-sys-htmlman html +./usr/share/man/html9/pfil_add_hook.html comp-sys-htmlman html +./usr/share/man/html9/pfil_head_get.html comp-sys-htmlman html +./usr/share/man/html9/pfil_head_register.html comp-sys-htmlman html +./usr/share/man/html9/pfil_head_unregister.html comp-sys-htmlman html +./usr/share/man/html9/pfil_hook_get.html comp-sys-htmlman html +./usr/share/man/html9/pfil_remove_hook.html comp-sys-htmlman html +./usr/share/man/html9/pfil_run_hooks.html comp-sys-htmlman html +./usr/share/man/html9/pfind.html comp-obsolete obsolete +./usr/share/man/html9/pg_find.html comp-obsolete obsolete +./usr/share/man/html9/pgfind.html comp-obsolete obsolete +./usr/share/man/html9/pgrp_find.html comp-sys-htmlman html +./usr/share/man/html9/pgsignal.html comp-sys-htmlman html +./usr/share/man/html9/physio.html comp-sys-htmlman html +./usr/share/man/html9/pmap.html comp-sys-htmlman html +./usr/share/man/html9/pmatch.html comp-sys-htmlman html +./usr/share/man/html9/pmc.html comp-sys-htmlman html +./usr/share/man/html9/pmc_accumulate.html comp-sys-htmlman html +./usr/share/man/html9/pmc_alloc_kernel_counter.html comp-sys-htmlman html +./usr/share/man/html9/pmc_configure_counter.html comp-sys-htmlman html +./usr/share/man/html9/pmc_counter_isconfigured.html comp-sys-htmlman html +./usr/share/man/html9/pmc_counter_isrunning.html comp-sys-htmlman html +./usr/share/man/html9/pmc_disable_counter.html comp-sys-htmlman html +./usr/share/man/html9/pmc_enable_counter.html comp-sys-htmlman html +./usr/share/man/html9/pmc_free_kernel_counter.html comp-sys-htmlman html +./usr/share/man/html9/pmc_get_counter_type.html comp-sys-htmlman html +./usr/share/man/html9/pmc_get_counter_value.html comp-sys-htmlman html +./usr/share/man/html9/pmc_get_num_counters.html comp-sys-htmlman html +./usr/share/man/html9/pmc_restore_context.html comp-sys-htmlman html +./usr/share/man/html9/pmc_save_context.html comp-sys-htmlman html +./usr/share/man/html9/pmc_start_profiling.html comp-sys-htmlman html +./usr/share/man/html9/pmc_stop_profiling.html comp-sys-htmlman html +./usr/share/man/html9/pmf.html comp-sys-htmlman html +./usr/share/man/html9/pmf_class_display_register.html comp-sys-htmlman html +./usr/share/man/html9/pmf_class_input_register.html comp-sys-htmlman html +./usr/share/man/html9/pmf_class_network_register.html comp-sys-htmlman html +./usr/share/man/html9/pmf_device_deregister.html comp-sys-htmlman html +./usr/share/man/html9/pmf_device_recursive_resume.html comp-sys-htmlman html +./usr/share/man/html9/pmf_device_recursive_suspend.html comp-sys-htmlman html +./usr/share/man/html9/pmf_device_register.html comp-sys-htmlman html +./usr/share/man/html9/pmf_device_register1.html comp-sys-htmlman html +./usr/share/man/html9/pmf_device_resume.html comp-sys-htmlman html +./usr/share/man/html9/pmf_device_resume_subtree.html comp-obsolete obsolete +./usr/share/man/html9/pmf_device_subtree_resume.html comp-sys-htmlman html +./usr/share/man/html9/pmf_device_suspend.html comp-sys-htmlman html +./usr/share/man/html9/pmf_event_deregister.html comp-sys-htmlman html +./usr/share/man/html9/pmf_event_inject.html comp-sys-htmlman html +./usr/share/man/html9/pmf_event_register.html comp-sys-htmlman html +./usr/share/man/html9/pmf_get_platform.html comp-sys-htmlman html +./usr/share/man/html9/pmf_set_platform.html comp-sys-htmlman html +./usr/share/man/html9/pmf_system_resume.html comp-sys-htmlman html +./usr/share/man/html9/pmf_system_shutdown.html comp-sys-htmlman html +./usr/share/man/html9/pmf_system_suspend.html comp-sys-htmlman html +./usr/share/man/html9/pool.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_destroy.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_destruct_object.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_get.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_get_paddr.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_init.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_invalidate.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_invalidate_local.html comp-obsolete obsolete +./usr/share/man/html9/pool_cache_put.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_put_paddr.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_sethardlimit.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_sethiwat.html comp-sys-htmlman html +./usr/share/man/html9/pool_cache_setlowat.html comp-sys-htmlman html +./usr/share/man/html9/pool_create.html comp-sys-htmlman html +./usr/share/man/html9/pool_destroy.html comp-sys-htmlman html +./usr/share/man/html9/pool_get.html comp-sys-htmlman html +./usr/share/man/html9/pool_init.html comp-sys-htmlman html +./usr/share/man/html9/pool_prime.html comp-sys-htmlman html +./usr/share/man/html9/pool_put.html comp-sys-htmlman html +./usr/share/man/html9/pool_sethardlimit.html comp-sys-htmlman html +./usr/share/man/html9/pool_sethiwat.html comp-sys-htmlman html +./usr/share/man/html9/pool_setlowat.html comp-sys-htmlman html +./usr/share/man/html9/postsig.html comp-sys-htmlman html +./usr/share/man/html9/powerhook_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/powerhook_establish.html comp-sys-htmlman html +./usr/share/man/html9/powerof2.html comp-sys-htmlman html +./usr/share/man/html9/ppsratecheck.html comp-sys-htmlman html +./usr/share/man/html9/preempt.html comp-sys-htmlman html +./usr/share/man/html9/printf.html comp-sys-htmlman html +./usr/share/man/html9/printf_nolog.html comp-sys-htmlman html +./usr/share/man/html9/proc_find.html comp-sys-htmlman html +./usr/share/man/html9/proc_trampoline.html comp-sys-htmlman html +./usr/share/man/html9/profhz.html comp-sys-htmlman html +./usr/share/man/html9/prop_array_copyin_ioctl.html comp-sys-htmlman html +./usr/share/man/html9/prop_array_copyout_ioctl.html comp-sys-htmlman html +./usr/share/man/html9/prop_copyin_ioctl.html comp-sys-htmlman html +./usr/share/man/html9/prop_dictionary_copyin_ioctl.html comp-sys-htmlman html +./usr/share/man/html9/prop_dictionary_copyout_ioctl.html comp-sys-htmlman html +./usr/share/man/html9/pserialize.html comp-sys-htmlman html +./usr/share/man/html9/pserialize_create.html comp-sys-htmlman html +./usr/share/man/html9/pserialize_destroy.html comp-sys-htmlman html +./usr/share/man/html9/pserialize_perform.html comp-sys-htmlman html +./usr/share/man/html9/pserialize_read_enter.html comp-sys-htmlman html +./usr/share/man/html9/pserialize_read_exit.html comp-sys-htmlman html +./usr/share/man/html9/psignal.html comp-sys-htmlman html +./usr/share/man/html9/ptoa.html comp-sys-htmlman html +./usr/share/man/html9/putiobuf.html comp-sys-htmlman html +./usr/share/man/html9/putter.html comp-sys-htmlman html +./usr/share/man/html9/radio.html comp-sys-htmlman html +./usr/share/man/html9/ras.html comp-sys-htmlman html +./usr/share/man/html9/ras_fork.html comp-sys-htmlman html +./usr/share/man/html9/ras_lookup.html comp-sys-htmlman html +./usr/share/man/html9/ras_purgeall.html comp-sys-htmlman html +./usr/share/man/html9/rasops.html comp-sys-htmlman html +./usr/share/man/html9/rasops_init.html comp-sys-htmlman html +./usr/share/man/html9/rasops_reconfig.html comp-sys-htmlman html +./usr/share/man/html9/ratecheck.html comp-sys-htmlman html +./usr/share/man/html9/readdisklabel.html comp-sys-htmlman html +./usr/share/man/html9/realloc.html comp-sys-htmlman html +./usr/share/man/html9/relookup.html comp-sys-htmlman html +./usr/share/man/html9/resettodr.html comp-sys-htmlman html +./usr/share/man/html9/rnd.html comp-sys-htmlman html +./usr/share/man/html9/rnd_add_data.html comp-sys-htmlman html +./usr/share/man/html9/rnd_add_uint32.html comp-sys-htmlman html +./usr/share/man/html9/rnd_attach_source.html comp-sys-htmlman html +./usr/share/man/html9/rnd_detach_source.html comp-sys-htmlman html +./usr/share/man/html9/rnd_extract_data.html comp-sys-htmlman html +./usr/share/man/html9/rootconf.html comp-sys-htmlman html +./usr/share/man/html9/round_page.html comp-sys-htmlman html +./usr/share/man/html9/rounddown.html comp-sys-htmlman html +./usr/share/man/html9/roundup.html comp-sys-htmlman html +./usr/share/man/html9/roundup2.html comp-sys-htmlman html +./usr/share/man/html9/rssadapt.html comp-sys-htmlman html +./usr/share/man/html9/rt_timer.html comp-sys-htmlman html +./usr/share/man/html9/rt_timer_add.html comp-sys-htmlman html +./usr/share/man/html9/rt_timer_queue_change.html comp-sys-htmlman html +./usr/share/man/html9/rt_timer_queue_create.html comp-sys-htmlman html +./usr/share/man/html9/rt_timer_queue_destroy.html comp-sys-htmlman html +./usr/share/man/html9/rt_timer_remove_all.html comp-sys-htmlman html +./usr/share/man/html9/rw.html comp-sys-htmlman html +./usr/share/man/html9/rw_destroy.html comp-sys-htmlman html +./usr/share/man/html9/rw_downgrade.html comp-sys-htmlman html +./usr/share/man/html9/rw_enter.html comp-sys-htmlman html +./usr/share/man/html9/rw_exit.html comp-sys-htmlman html +./usr/share/man/html9/rw_init.html comp-sys-htmlman html +./usr/share/man/html9/rw_lock_held.html comp-sys-htmlman html +./usr/share/man/html9/rw_read_held.html comp-sys-htmlman html +./usr/share/man/html9/rw_tryenter.html comp-sys-htmlman html +./usr/share/man/html9/rw_tryupgrade.html comp-sys-htmlman html +./usr/share/man/html9/rw_write_held.html comp-sys-htmlman html +./usr/share/man/html9/rwlock.html comp-sys-htmlman html +./usr/share/man/html9/scanc.html comp-sys-htmlman html +./usr/share/man/html9/sched_4bsd.html comp-sys-htmlman html +./usr/share/man/html9/sched_m2.html comp-sys-htmlman html +./usr/share/man/html9/sched_psignal.html comp-obsolete obsolete +./usr/share/man/html9/scsipi.html comp-sys-htmlman html +./usr/share/man/html9/secmodel.html comp-sys-htmlman html +./usr/share/man/html9/secmodel_bsd44.html comp-sys-htmlman html +./usr/share/man/html9/secmodel_deregister.html comp-sys-htmlman html +./usr/share/man/html9/secmodel_eval.html comp-sys-htmlman html +./usr/share/man/html9/secmodel_extensions.html comp-sys-htmlman html +./usr/share/man/html9/secmodel_overlay.html comp-sys-htmlman html +./usr/share/man/html9/secmodel_register.html comp-sys-htmlman html +./usr/share/man/html9/secmodel_securelevel.html comp-sys-htmlman html +./usr/share/man/html9/secmodel_suser.html comp-sys-htmlman html +./usr/share/man/html9/seldestroy.html comp-sys-htmlman html +./usr/share/man/html9/select.html comp-sys-htmlman html +./usr/share/man/html9/selinit.html comp-sys-htmlman html +./usr/share/man/html9/selnotify.html comp-sys-htmlman html +./usr/share/man/html9/selrecord.html comp-sys-htmlman html +./usr/share/man/html9/sendsig.html comp-sys-htmlman html +./usr/share/man/html9/setbit.html comp-sys-htmlman html +./usr/share/man/html9/setdisklabel.html comp-sys-htmlman html +./usr/share/man/html9/setjmp.html comp-sys-htmlman html +./usr/share/man/html9/setroot.html comp-sys-htmlman html +./usr/share/man/html9/shutdownhook_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/shutdownhook_establish.html comp-sys-htmlman html +./usr/share/man/html9/sigaction1.html comp-sys-htmlman html +./usr/share/man/html9/sigactsfree.html comp-sys-htmlman html +./usr/share/man/html9/sigactsinit.html comp-sys-htmlman html +./usr/share/man/html9/sigactsunshare.html comp-sys-htmlman html +./usr/share/man/html9/sigaltstack1.html comp-sys-htmlman html +./usr/share/man/html9/sigcode.html comp-sys-htmlman html +./usr/share/man/html9/sigexit.html comp-sys-htmlman html +./usr/share/man/html9/siginit.html comp-sys-htmlman html +./usr/share/man/html9/sigmasked.html comp-obsolete obsolete +./usr/share/man/html9/signal.html comp-sys-htmlman html +./usr/share/man/html9/sigpending1.html comp-sys-htmlman html +./usr/share/man/html9/sigprocmask1.html comp-sys-htmlman html +./usr/share/man/html9/sigsuspend1.html comp-sys-htmlman html +./usr/share/man/html9/sigtramp.html comp-sys-htmlman html +./usr/share/man/html9/simple_lock.html comp-sys-htmlman html +./usr/share/man/html9/simple_lock_dump.html comp-sys-htmlman html +./usr/share/man/html9/simple_lock_freecheck.html comp-sys-htmlman html +./usr/share/man/html9/simple_lock_init.html comp-sys-htmlman html +./usr/share/man/html9/simple_lock_try.html comp-sys-htmlman html +./usr/share/man/html9/simple_unlock.html comp-sys-htmlman html +./usr/share/man/html9/skpc.html comp-sys-htmlman html +./usr/share/man/html9/snprintf.html comp-sys-htmlman html +./usr/share/man/html9/sockopt.html comp-sys-htmlman html +./usr/share/man/html9/sockopt_destroy.html comp-sys-htmlman html +./usr/share/man/html9/sockopt_get.html comp-sys-htmlman html +./usr/share/man/html9/sockopt_getint.html comp-sys-htmlman html +./usr/share/man/html9/sockopt_init.html comp-sys-htmlman html +./usr/share/man/html9/sockopt_set.html comp-sys-htmlman html +./usr/share/man/html9/sockopt_setint.html comp-sys-htmlman html +./usr/share/man/html9/softint.html comp-sys-htmlman html +./usr/share/man/html9/softint_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/softint_establish.html comp-sys-htmlman html +./usr/share/man/html9/softint_schedule.html comp-sys-htmlman html +./usr/share/man/html9/softintr.html comp-sys-htmlman html +./usr/share/man/html9/softintr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/softintr_establish.html comp-sys-htmlman html +./usr/share/man/html9/softintr_schedule.html comp-sys-htmlman html +./usr/share/man/html9/spinlockinit.html comp-sys-htmlman html +./usr/share/man/html9/spinlockmgr.html comp-sys-htmlman html +./usr/share/man/html9/spl.html comp-sys-htmlman html +./usr/share/man/html9/spl0.html comp-sys-htmlman html +./usr/share/man/html9/splbio.html comp-sys-htmlman html +./usr/share/man/html9/splclock.html comp-sys-htmlman html +./usr/share/man/html9/splhigh.html comp-sys-htmlman html +./usr/share/man/html9/splimp.html comp-sys-htmlman html +./usr/share/man/html9/spllower.html comp-obsolete obsolete +./usr/share/man/html9/spllowersoftclock.html comp-sys-htmlman html +./usr/share/man/html9/splnet.html comp-sys-htmlman html +./usr/share/man/html9/splraise.html comp-obsolete obsolete +./usr/share/man/html9/splraiseipl.html comp-sys-htmlman html +./usr/share/man/html9/splsched.html comp-sys-htmlman html +./usr/share/man/html9/splserial.html comp-sys-htmlman html +./usr/share/man/html9/splsoftbio.html comp-sys-htmlman html +./usr/share/man/html9/splsoftclock.html comp-sys-htmlman html +./usr/share/man/html9/splsoftnet.html comp-sys-htmlman html +./usr/share/man/html9/splsoftserial.html comp-sys-htmlman html +./usr/share/man/html9/splstatclock.html comp-sys-htmlman html +./usr/share/man/html9/spltty.html comp-sys-htmlman html +./usr/share/man/html9/splvm.html comp-sys-htmlman html +./usr/share/man/html9/splx.html comp-sys-htmlman html +./usr/share/man/html9/sprintf.html comp-sys-htmlman html +./usr/share/man/html9/stathz.html comp-sys-htmlman html +./usr/share/man/html9/store.html comp-sys-htmlman html +./usr/share/man/html9/subyte.html comp-sys-htmlman html +./usr/share/man/html9/suibyte.html comp-sys-htmlman html +./usr/share/man/html9/suiword.html comp-sys-htmlman html +./usr/share/man/html9/sun3/isr_add.html comp-sys-htmlman html +./usr/share/man/html9/sun3/isr_add_autovect.html comp-sys-htmlman html +./usr/share/man/html9/sun3/isr_add_custom.html comp-sys-htmlman html +./usr/share/man/html9/sun3/isr_add_vectored.html comp-sys-htmlman html +./usr/share/man/html9/suspendsched.html comp-sys-htmlman html +./usr/share/man/html9/suswintr.html comp-sys-htmlman html +./usr/share/man/html9/susword.html comp-sys-htmlman html +./usr/share/man/html9/suword.html comp-sys-htmlman html +./usr/share/man/html9/sysctl.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_create.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_createv.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_destroy.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_destroyv.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_dispatch.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_free.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_init.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_locate.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_lock.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_lookup.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_needfunc.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_notavail.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_null.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_query.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_teardown.html comp-sys-htmlman html +./usr/share/man/html9/sysctl_unlock.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_envsys.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_envsys_create.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_envsys_destroy.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_envsys_register.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_envsys_sensor_attach.html comp-sys-htmlan html +./usr/share/man/html9/sysmon_envsys_sensor_detach.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_envsys_unregister.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_pswitch.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_pswitch_event.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_pswitch_register.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_pswitch_unregister.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_task_queue_fini.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_task_queue_init.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_task_queue_preinit.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_task_queue_sched.html comp-sys-htmlman html +./usr/share/man/html9/sysmon_taskq.html comp-sys-htmlman html +./usr/share/man/html9/tc.html comp-sys-htmlman html +./usr/share/man/html9/tc_badaddr.html comp-sys-htmlman html +./usr/share/man/html9/tc_init.html comp-sys-htmlman html +./usr/share/man/html9/tc_intr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/tc_intr_establish.html comp-sys-htmlman html +./usr/share/man/html9/tc_intr_evcnt.html comp-sys-htmlman html +./usr/share/man/html9/tc_mb.html comp-sys-htmlman html +./usr/share/man/html9/tc_syncbus.html comp-sys-htmlman html +./usr/share/man/html9/tc_wmb.html comp-sys-htmlman html +./usr/share/man/html9/tcp_congctl.html comp-sys-htmlman html +./usr/share/man/html9/tick.html comp-sys-htmlman html +./usr/share/man/html9/tickadj.html comp-sys-htmlman html +./usr/share/man/html9/time_second.html comp-sys-htmlman html +./usr/share/man/html9/time_uptime.html comp-sys-htmlman html +./usr/share/man/html9/timecounter.html comp-sys-htmlman html +./usr/share/man/html9/timeout.html comp-sys-htmlman html +./usr/share/man/html9/timespec2bintime.html comp-sys-htmlman html +./usr/share/man/html9/timeval2bintime.html comp-sys-htmlman html +./usr/share/man/html9/todr.html comp-sys-htmlman html +./usr/share/man/html9/todr_gettime.html comp-sys-htmlman html +./usr/share/man/html9/todr_settime.html comp-sys-htmlman html +./usr/share/man/html9/tprintf.html comp-sys-htmlman html +./usr/share/man/html9/tprintf_close.html comp-sys-htmlman html +./usr/share/man/html9/tprintf_open.html comp-sys-htmlman html +./usr/share/man/html9/transferlockers.html comp-sys-htmlman html +./usr/share/man/html9/trapsignal.html comp-sys-htmlman html +./usr/share/man/html9/trunc_page.html comp-sys-htmlman html +./usr/share/man/html9/tsleep.html comp-sys-htmlman html +./usr/share/man/html9/ttyldisc_add.html comp-sys-htmlman html +./usr/share/man/html9/ttyldisc_lookup.html comp-sys-htmlman html +./usr/share/man/html9/ttyldisc_remove.html comp-sys-htmlman html +./usr/share/man/html9/ttyprintf.html comp-sys-htmlman html +./usr/share/man/html9/tvtohz.html comp-sys-htmlman html +./usr/share/man/html9/uao_create.html comp-sys-htmlman html +./usr/share/man/html9/uao_detach.html comp-sys-htmlman html +./usr/share/man/html9/uao_reference.html comp-sys-htmlman html +./usr/share/man/html9/ubc.html comp-sys-htmlman html +./usr/share/man/html9/ubc_alloc.html comp-sys-htmlman html +./usr/share/man/html9/ubc_release.html comp-sys-htmlman html +./usr/share/man/html9/ubc_uiomove.html comp-sys-htmlman html +./usr/share/man/html9/ucas.html comp-sys-htmlman html +./usr/share/man/html9/ucom.html comp-sys-htmlman html +./usr/share/man/html9/uiomove.html comp-sys-htmlman html +./usr/share/man/html9/ungetnewvnode.html comp-sys-htmlman html +./usr/share/man/html9/untimeout.html comp-sys-htmlman html +./usr/share/man/html9/uprintf.html comp-sys-htmlman html +./usr/share/man/html9/usbd_status.html comp-sys-htmlman html +./usr/share/man/html9/usbdi.html comp-sys-htmlman html +./usr/share/man/html9/userret.html comp-sys-htmlman html +./usr/share/man/html9/uvm.html comp-sys-htmlman html +./usr/share/man/html9/uvm_chgkprot.html comp-sys-htmlman html +./usr/share/man/html9/uvm_deallocate.html comp-sys-htmlman html +./usr/share/man/html9/uvm_fault.html comp-sys-htmlman html +./usr/share/man/html9/uvm_fork.html comp-sys-htmlman html +./usr/share/man/html9/uvm_grow.html comp-sys-htmlman html +./usr/share/man/html9/uvm_init.html comp-sys-htmlman html +./usr/share/man/html9/uvm_init_limits.html comp-sys-htmlman html +./usr/share/man/html9/uvm_io.html comp-sys-htmlman html +./usr/share/man/html9/uvm_kernacc.html comp-sys-htmlman html +./usr/share/man/html9/uvm_km.html comp-sys-htmlman html +./usr/share/man/html9/uvm_km_alloc.html comp-sys-htmlman html +./usr/share/man/html9/uvm_km_free.html comp-sys-htmlman html +./usr/share/man/html9/uvm_km_suballoc.html comp-sys-htmlman html +./usr/share/man/html9/uvm_loan.html comp-sys-htmlman html +./usr/share/man/html9/uvm_map.html comp-sys-htmlman html +./usr/share/man/html9/uvm_map_checkprot.html comp-sys-htmlman html +./usr/share/man/html9/uvm_map_pageable.html comp-sys-htmlman html +./usr/share/man/html9/uvm_map_protect.html comp-sys-htmlman html +./usr/share/man/html9/uvm_meter.html comp-sys-htmlman html +./usr/share/man/html9/uvm_page_physload.html comp-sys-htmlman html +./usr/share/man/html9/uvm_pagealloc.html comp-sys-htmlman html +./usr/share/man/html9/uvm_pagefree.html comp-sys-htmlman html +./usr/share/man/html9/uvm_pageout.html comp-sys-htmlman html +./usr/share/man/html9/uvm_pagerealloc.html comp-sys-htmlman html +./usr/share/man/html9/uvm_pglistalloc.html comp-sys-htmlman html +./usr/share/man/html9/uvm_pglistfree.html comp-sys-htmlman html +./usr/share/man/html9/uvm_scheduler.html comp-sys-htmlman html +./usr/share/man/html9/uvm_setpagesize.html comp-sys-htmlman html +./usr/share/man/html9/uvm_swap_init.html comp-sys-htmlman html +./usr/share/man/html9/uvm_swapin.html comp-obsolete obsolete +./usr/share/man/html9/uvm_unloan.html comp-sys-htmlman html +./usr/share/man/html9/uvm_unmap.html comp-sys-htmlman html +./usr/share/man/html9/uvm_vnp_setsize.html comp-sys-htmlman html +./usr/share/man/html9/uvm_vslock.html comp-sys-htmlman html +./usr/share/man/html9/uvm_vsunlock.html comp-sys-htmlman html +./usr/share/man/html9/uvmspace_alloc.html comp-sys-htmlman html +./usr/share/man/html9/uvmspace_exec.html comp-sys-htmlman html +./usr/share/man/html9/uvmspace_fork.html comp-sys-htmlman html +./usr/share/man/html9/uvmspace_free.html comp-sys-htmlman html +./usr/share/man/html9/uvmspace_share.html comp-sys-htmlman html +./usr/share/man/html9/uvmspace_unshare.html comp-sys-htmlman html +./usr/share/man/html9/uvn_findpages.html comp-sys-htmlman html +./usr/share/man/html9/vaccess.html comp-sys-htmlman html +./usr/share/man/html9/vattr.html comp-sys-htmlman html +./usr/share/man/html9/vattr_null.html comp-sys-htmlman html +./usr/share/man/html9/vcons.html comp-sys-htmlman html +./usr/share/man/html9/vcount.html comp-obsolete obsolete +./usr/share/man/html9/vdevgone.html comp-sys-htmlman html +./usr/share/man/html9/veriexec.html comp-sys-htmlman html +./usr/share/man/html9/vfinddev.html comp-sys-htmlman html +./usr/share/man/html9/vflush.html comp-sys-htmlman html +./usr/share/man/html9/vflushbuf.html comp-sys-htmlman html +./usr/share/man/html9/vfs.html comp-sys-htmlman html +./usr/share/man/html9/vfs_attach.html comp-sys-htmlman html +./usr/share/man/html9/vfs_busy.html comp-sys-htmlman html +./usr/share/man/html9/vfs_detach.html comp-sys-htmlman html +./usr/share/man/html9/vfs_export.html comp-sys-htmlman html +./usr/share/man/html9/vfs_export_lookup.html comp-sys-htmlman html +./usr/share/man/html9/vfs_getnewfsid.html comp-sys-htmlman html +./usr/share/man/html9/vfs_getopsbyname.html comp-sys-htmlman html +./usr/share/man/html9/vfs_getvfs.html comp-sys-htmlman html +./usr/share/man/html9/vfs_hooks.html comp-sys-htmlman html +./usr/share/man/html9/vfs_hooks_unmount.html comp-sys-htmlman html +./usr/share/man/html9/vfs_mountalloc.html comp-sys-htmlman html +./usr/share/man/html9/vfs_mountedon.html comp-sys-htmlman html +./usr/share/man/html9/vfs_mountroot.html comp-sys-htmlman html +./usr/share/man/html9/vfs_reinit.html comp-sys-htmlman html +./usr/share/man/html9/vfs_resume.html comp-sys-htmlman html +./usr/share/man/html9/vfs_rootmountalloc.html comp-sys-htmlman html +./usr/share/man/html9/vfs_setpublicfs.html comp-sys-htmlman html +./usr/share/man/html9/vfs_showexport.html comp-sys-htmlman html +./usr/share/man/html9/vfs_shutdown.html comp-sys-htmlman html +./usr/share/man/html9/vfs_suspend.html comp-sys-htmlman html +./usr/share/man/html9/vfs_unbusy.html comp-sys-htmlman html +./usr/share/man/html9/vfs_unmountall.html comp-sys-htmlman html +./usr/share/man/html9/vfsops.html comp-sys-htmlman html +./usr/share/man/html9/vfssubr.html comp-sys-htmlman html +./usr/share/man/html9/vget.html comp-sys-htmlman html +./usr/share/man/html9/vgone.html comp-sys-htmlman html +./usr/share/man/html9/vgonel.html comp-sys-htmlman html +./usr/share/man/html9/vhold.html comp-sys-htmlman html +./usr/share/man/html9/video.html comp-sys-htmlman html +./usr/share/man/html9/vinvalbuf.html comp-sys-htmlman html +./usr/share/man/html9/vme.html comp-sys-htmlman html +./usr/share/man/html9/vme_dmamap_create.html comp-sys-htmlman html +./usr/share/man/html9/vme_dmamap_destroy.html comp-sys-htmlman html +./usr/share/man/html9/vme_dmamem_alloc.html comp-sys-htmlman html +./usr/share/man/html9/vme_dmamem_free.html comp-sys-htmlman html +./usr/share/man/html9/vme_intr_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/vme_intr_establish.html comp-sys-htmlman html +./usr/share/man/html9/vme_intr_evcnt.html comp-sys-htmlman html +./usr/share/man/html9/vme_intr_map.html comp-sys-htmlman html +./usr/share/man/html9/vme_probe.html comp-sys-htmlman html +./usr/share/man/html9/vme_space_alloc.html comp-sys-htmlman html +./usr/share/man/html9/vme_space_free.html comp-sys-htmlman html +./usr/share/man/html9/vme_space_get.html comp-sys-htmlman html +./usr/share/man/html9/vme_space_map.html comp-sys-htmlman html +./usr/share/man/html9/vme_space_unmap.html comp-sys-htmlman html +./usr/share/man/html9/vmem.html comp-sys-htmlman html +./usr/share/man/html9/vmem_alloc.html comp-sys-htmlman html +./usr/share/man/html9/vmem_create.html comp-sys-htmlman html +./usr/share/man/html9/vmem_destroy.html comp-sys-htmlman html +./usr/share/man/html9/vmem_free.html comp-sys-htmlman html +./usr/share/man/html9/vmem_xalloc.html comp-sys-htmlman html +./usr/share/man/html9/vmem_xfree.html comp-sys-htmlman html +./usr/share/man/html9/vn_bwrite.html comp-sys-htmlman html +./usr/share/man/html9/vn_close.html comp-sys-htmlman html +./usr/share/man/html9/vn_closefile.html comp-sys-htmlman html +./usr/share/man/html9/vn_default_error.html comp-sys-htmlman html +./usr/share/man/html9/vn_fcntl.html comp-sys-htmlman html +./usr/share/man/html9/vn_ioctl.html comp-sys-htmlman html +./usr/share/man/html9/vn_isunder.html comp-sys-htmlman html +./usr/share/man/html9/vn_lock.html comp-sys-htmlman html +./usr/share/man/html9/vn_markexec.html comp-sys-htmlman html +./usr/share/man/html9/vn_marktext.html comp-sys-htmlman html +./usr/share/man/html9/vn_open.html comp-sys-htmlman html +./usr/share/man/html9/vn_poll.html comp-sys-htmlman html +./usr/share/man/html9/vn_rdwr.html comp-sys-htmlman html +./usr/share/man/html9/vn_read.html comp-sys-htmlman html +./usr/share/man/html9/vn_restorerecurse.html comp-sys-htmlman obsolete +./usr/share/man/html9/vn_setrecurse.html comp-sys-htmlman obsolete +./usr/share/man/html9/vn_stat.html comp-sys-htmlman html +./usr/share/man/html9/vn_statfile.html comp-sys-htmlman html +./usr/share/man/html9/vn_write.html comp-sys-htmlman html +./usr/share/man/html9/vn_writechk.html comp-sys-htmlman html +./usr/share/man/html9/vnfileops.html comp-sys-htmlman html +./usr/share/man/html9/vnode.html comp-sys-htmlman html +./usr/share/man/html9/vnodeops.html comp-sys-htmlman html +./usr/share/man/html9/vnsubr.html comp-sys-htmlman html +./usr/share/man/html9/voidop.html comp-sys-htmlman html +./usr/share/man/html9/vpanic.html comp-sys-htmlman html +./usr/share/man/html9/vprint.html comp-sys-htmlman html +./usr/share/man/html9/vprintf.html comp-sys-htmlman html +./usr/share/man/html9/vput.html comp-sys-htmlman html +./usr/share/man/html9/vrecycle.html comp-sys-htmlman html +./usr/share/man/html9/vref.html comp-sys-htmlman html +./usr/share/man/html9/vrele.html comp-sys-htmlman html +./usr/share/man/html9/vrele_async.html comp-sys-htmlman html +./usr/share/man/html9/vsnprintf.html comp-sys-htmlman html +./usr/share/man/html9/vsprintf.html comp-sys-htmlman html +./usr/share/man/html9/vtruncbuf.html comp-sys-htmlman html +./usr/share/man/html9/vwakeup.html comp-sys-htmlman html +./usr/share/man/html9/wakeup.html comp-sys-htmlman html +./usr/share/man/html9/wdc.html comp-sys-htmlman html +./usr/share/man/html9/workqueue.html comp-sys-htmlman html +./usr/share/man/html9/workqueue_create.html comp-sys-htmlman html +./usr/share/man/html9/workqueue_destroy.html comp-sys-htmlman html +./usr/share/man/html9/workqueue_enqueue.html comp-sys-htmlman html +./usr/share/man/html9/writedisklabel.html comp-sys-htmlman html +./usr/share/man/html9/wscons.html comp-sys-htmlman html +./usr/share/man/html9/wsdisplay.html comp-sys-htmlman html +./usr/share/man/html9/wsdisplay_cnattach.html comp-sys-htmlman html +./usr/share/man/html9/wsdisplay_switchtoconsole.html comp-sys-htmlman html +./usr/share/man/html9/wsdisplaydevprint.html comp-sys-htmlman html +./usr/share/man/html9/wsemuldisplaydevprint.html comp-sys-htmlman html +./usr/share/man/html9/wsfont.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_add.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_enum.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_find.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_getflg.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_init.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_lock.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_map_unichar.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_matches.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_remove.html comp-sys-htmlman html +./usr/share/man/html9/wsfont_unlock.html comp-sys-htmlman html +./usr/share/man/html9/wskbd.html comp-sys-htmlman html +./usr/share/man/html9/wskbd_cnattach.html comp-sys-htmlman html +./usr/share/man/html9/wskbd_cndetach.html comp-sys-htmlman html +./usr/share/man/html9/wskbd_input.html comp-sys-htmlman html +./usr/share/man/html9/wskbd_rawinput.html comp-sys-htmlman html +./usr/share/man/html9/wskbddevprint.html comp-sys-htmlman html +./usr/share/man/html9/wsmouse.html comp-sys-htmlman html +./usr/share/man/html9/wsmouse_input.html comp-sys-htmlman html +./usr/share/man/html9/wsmousedevprint.html comp-sys-htmlman html +./usr/share/man/html9/x86/msr.html comp-sys-htmlman html +./usr/share/man/html9/x86/nmi.html comp-sys-htmlman html +./usr/share/man/html9/x86/nmi_disestablish.html comp-sys-htmlman html +./usr/share/man/html9/x86/nmi_establish.html comp-sys-htmlman html +./usr/share/man/html9/x86/rdmsr.html comp-sys-htmlman html +./usr/share/man/html9/x86/rdmsr_safe.html comp-sys-htmlman html +./usr/share/man/html9/x86/rdtsc.html comp-sys-htmlman html +./usr/share/man/html9/x86/tsc.html comp-sys-htmlman html +./usr/share/man/html9/x86/tsc_sync_ap.html comp-sys-htmlman html +./usr/share/man/html9/x86/tsc_sync_bp.html comp-sys-htmlman html +./usr/share/man/html9/x86/tsc_sync_drift.html comp-sys-htmlman html +./usr/share/man/html9/x86/tsc_tc_init.html comp-sys-htmlman html +./usr/share/man/html9/x86/wrmsr.html comp-sys-htmlman html +./usr/share/man/html9/x86/x86_msr_xcall.html comp-sys-htmlman html +./usr/share/man/html9/xc_broadcast.html comp-sys-htmlman html +./usr/share/man/html9/xc_unicast.html comp-sys-htmlman html +./usr/share/man/html9/xc_wait.html comp-sys-htmlman html +./usr/share/man/html9/xcall.html comp-sys-htmlman html +./usr/share/man/html9/yield.html comp-sys-htmlman html +./usr/share/man/man1/addr2line.1 comp-debug-man binutils,.man +./usr/share/man/man1/ar.1 comp-util-man binutils,.man +./usr/share/man/man1/as.1 comp-util-man binutils,.man +./usr/share/man/man1/asa.1 comp-fortran-man .man +./usr/share/man/man1/c++.1 comp-cxx-man gcccmds,.man +./usr/share/man/man1/c++filt.1 comp-cxx-man binutils,.man +./usr/share/man/man1/c89.1 comp-c-man .man +./usr/share/man/man1/c99.1 comp-c-man .man +./usr/share/man/man1/cc.1 comp-c-man gcccmds,.man +./usr/share/man/man1/cccp.1 comp-util-man gcccmds,.man +./usr/share/man/man1/config.1 comp-util-man .man +./usr/share/man/man1/crunchgen.1 comp-c-man .man +./usr/share/man/man1/crunchide.1 comp-c-man .man +./usr/share/man/man1/cvs.1 comp-cvs-man cvs,.man +./usr/share/man/man1/elf2aout.1 comp-sysutil-man .man +./usr/share/man/man1/elf2ecoff.1 comp-sysutil-man .man +./usr/share/man/man1/elfedit.1 comp-util-man binutils,.man +./usr/share/man/man1/f77.1 comp-fortran-man gcc=3,gcccmds,.man +./usr/share/man/man1/f77.1 comp-obsolete gcc=4,obsolete +./usr/share/man/man1/fgen.1 comp-util-man .man +./usr/share/man/man1/flex.1 comp-c-man .man +./usr/share/man/man1/fort77.1 comp-fortran-man gcc=3,gcccmds,.man +./usr/share/man/man1/fort77.1 comp-obsolete gcc=4,obsolete +./usr/share/man/man1/fpr.1 comp-fortran-man .man +./usr/share/man/man1/g++.1 comp-cxx-man gcccmds,.man +./usr/share/man/man1/g77.1 comp-fortran-man gcc=3,gcccmds,.man +./usr/share/man/man1/g77.1 comp-obsolete gcc=4,obsolete +./usr/share/man/man1/gcc.1 comp-c-man gcccmds,.man +./usr/share/man/man1/gcore.1 comp-debug-man .man +./usr/share/man/man1/gcov.1 comp-debug-man gcccmds,.man +./usr/share/man/man1/gdb.1 comp-debug-man gdb,.man +./usr/share/man/man1/genassym.1 comp-util-man .man +./usr/share/man/man1/gprof.1 comp-debug-man binutils,.man +./usr/share/man/man1/ld.1 comp-util-man binutils,.man +./usr/share/man/man1/lex.1 comp-c-man .man +./usr/share/man/man1/lint.1 comp-c-man .man +./usr/share/man/man1/lorder.1 comp-util-man .man +./usr/share/man/man1/luac.1 comp-util-man .man +./usr/share/man/man1/menuc.1 comp-c-man .man +./usr/share/man/man1/mkstr.1 comp-c-man .man +./usr/share/man/man1/msg_clear.1 comp-obsolete obsolete +./usr/share/man/man1/msg_display.1 comp-obsolete obsolete +./usr/share/man/man1/msg_display_add.1 comp-obsolete obsolete +./usr/share/man/man1/msg_prompt.1 comp-obsolete obsolete +./usr/share/man/man1/msg_prompt_add.1 comp-obsolete obsolete +./usr/share/man/man1/msg_prompt_noecho.1 comp-obsolete obsolete +./usr/share/man/man1/msg_prompt_win.1 comp-obsolete obsolete +./usr/share/man/man1/msg_standend.1 comp-obsolete obsolete +./usr/share/man/man1/msg_standout.1 comp-obsolete obsolete +./usr/share/man/man1/msg_string.1 comp-obsolete obsolete +./usr/share/man/man1/msg_table_add.1 comp-obsolete obsolete +./usr/share/man/man1/msg_window.1 comp-obsolete obsolete +./usr/share/man/man1/msgc.1 comp-c-man .man +./usr/share/man/man1/nbperf.1 comp-util-man .man +./usr/share/man/man1/nm.1 comp-util-man binutils,.man +./usr/share/man/man1/objcopy.1 comp-util-man binutils,.man +./usr/share/man/man1/objdump.1 comp-util-man binutils,.man +./usr/share/man/man1/openssl_ocsp.1 comp-c-man crypto,.man +./usr/share/man/man1/ranlib.1 comp-util-man binutils,.man +./usr/share/man/man1/rcs2log.1 comp-cvs-man cvs,.man +./usr/share/man/man1/readelf.1 comp-util-man binutils,.man +./usr/share/man/man1/rpcgen.1 comp-c-man .man +./usr/share/man/man1/size.1 comp-util-man binutils,.man +./usr/share/man/man1/strings.1 comp-util-man binutils,.man +./usr/share/man/man1/strip.1 comp-util-man binutils,.man +./usr/share/man/man1/tsort.1 comp-util-man .man +./usr/share/man/man1/unifdef.1 comp-util-man .man +./usr/share/man/man1/unifdefall.1 comp-util-man .man +./usr/share/man/man1/xstr.1 comp-c-man .man +./usr/share/man/man1/yacc.1 comp-c-man .man +./usr/share/man/man2/_Exit.2 comp-c-man .man +./usr/share/man/man2/__clone.2 comp-c-man .man +./usr/share/man/man2/__quotactl.2 comp-c-man .man +./usr/share/man/man2/__syscall.2 comp-c-man .man +./usr/share/man/man2/_exit.2 comp-c-man .man +./usr/share/man/man2/_lwp_continue.2 comp-c-man .man +./usr/share/man/man2/_lwp_create.2 comp-c-man .man +./usr/share/man/man2/_lwp_ctl.2 comp-c-man .man +./usr/share/man/man2/_lwp_detach.2 comp-c-man .man +./usr/share/man/man2/_lwp_exit.2 comp-c-man .man +./usr/share/man/man2/_lwp_getname.2 comp-c-man .man +./usr/share/man/man2/_lwp_getprivate.2 comp-c-man .man +./usr/share/man/man2/_lwp_kill.2 comp-c-man .man +./usr/share/man/man2/_lwp_park.2 comp-c-man .man +./usr/share/man/man2/_lwp_self.2 comp-c-man .man +./usr/share/man/man2/_lwp_setname.2 comp-c-man .man +./usr/share/man/man2/_lwp_setprivate.2 comp-c-man .man +./usr/share/man/man2/_lwp_suspend.2 comp-c-man .man +./usr/share/man/man2/_lwp_unpark.2 comp-c-man .man +./usr/share/man/man2/_lwp_unpark_all.2 comp-c-man .man +./usr/share/man/man2/_lwp_wait.2 comp-c-man .man +./usr/share/man/man2/_lwp_wakeup.2 comp-c-man .man +./usr/share/man/man2/accept.2 comp-c-man .man +./usr/share/man/man2/access.2 comp-c-man .man +./usr/share/man/man2/acct.2 comp-c-man .man +./usr/share/man/man2/adjtime.2 comp-c-man .man +./usr/share/man/man2/arm32_drain_writebuf.2 comp-obsolete obsolete +./usr/share/man/man2/arm32_sync_icache.2 comp-obsolete obsolete +./usr/share/man/man2/arm_drain_writebuf.2 comp-c-man .man +./usr/share/man/man2/arm_sync_icache.2 comp-c-man .man +./usr/share/man/man2/bind.2 comp-c-man .man +./usr/share/man/man2/brk.2 comp-c-man .man +./usr/share/man/man2/chdir.2 comp-c-man .man +./usr/share/man/man2/chflags.2 comp-c-man .man +./usr/share/man/man2/chmod.2 comp-c-man .man +./usr/share/man/man2/chown.2 comp-c-man .man +./usr/share/man/man2/chroot.2 comp-c-man .man +./usr/share/man/man2/clock_getres.2 comp-c-man .man +./usr/share/man/man2/clock_gettime.2 comp-c-man .man +./usr/share/man/man2/clock_nanosleep.2 comp-c-man .man +./usr/share/man/man2/clock_settime.2 comp-c-man .man +./usr/share/man/man2/clone.2 comp-c-man .man +./usr/share/man/man2/close.2 comp-c-man .man +./usr/share/man/man2/connect.2 comp-c-man .man +./usr/share/man/man2/dup.2 comp-c-man .man +./usr/share/man/man2/dup2.2 comp-c-man .man +./usr/share/man/man2/dup3.2 comp-c-man .man +./usr/share/man/man2/errno.2 comp-c-man .man +./usr/share/man/man2/execve.2 comp-c-man .man +./usr/share/man/man2/extattr_delete_fd.2 comp-c-man .man +./usr/share/man/man2/extattr_delete_file.2 comp-c-man .man +./usr/share/man/man2/extattr_delete_link.2 comp-c-man .man +./usr/share/man/man2/extattr_get_fd.2 comp-c-man .man +./usr/share/man/man2/extattr_get_file.2 comp-c-man .man +./usr/share/man/man2/extattr_get_link.2 comp-c-man .man +./usr/share/man/man2/extattr_list_fd.2 comp-c-man .man +./usr/share/man/man2/extattr_list_file.2 comp-c-man .man +./usr/share/man/man2/extattr_list_link.2 comp-c-man .man +./usr/share/man/man2/extattr_set_fd.2 comp-c-man .man +./usr/share/man/man2/extattr_set_file.2 comp-c-man .man +./usr/share/man/man2/extattr_set_link.2 comp-c-man .man +./usr/share/man/man2/fchdir.2 comp-c-man .man +./usr/share/man/man2/fchflags.2 comp-c-man .man +./usr/share/man/man2/fchmod.2 comp-c-man .man +./usr/share/man/man2/fchown.2 comp-c-man .man +./usr/share/man/man2/fchroot.2 comp-c-man .man +./usr/share/man/man2/fcntl.2 comp-c-man .man +./usr/share/man/man2/fdatasync.2 comp-c-man .man +./usr/share/man/man2/fhopen.2 comp-c-man .man +./usr/share/man/man2/fhstat.2 comp-c-man .man +./usr/share/man/man2/fhstatfs.2 comp-obsolete obsolete +./usr/share/man/man2/fhstatvfs.2 comp-c-man .man +./usr/share/man/man2/fhstatvfs1.2 comp-c-man .man +./usr/share/man/man2/fktrace.2 comp-c-man .man +./usr/share/man/man2/flock.2 comp-c-man .man +./usr/share/man/man2/fork.2 comp-c-man .man +./usr/share/man/man2/fpathconf.2 comp-c-man .man +./usr/share/man/man2/fstat.2 comp-c-man .man +./usr/share/man/man2/fstatfs.2 comp-obsolete obsolete +./usr/share/man/man2/fstatvfs.2 comp-c-man .man +./usr/share/man/man2/fstatvfs1.2 comp-c-man .man +./usr/share/man/man2/fsync.2 comp-c-man .man +./usr/share/man/man2/fsync_range.2 comp-c-man .man +./usr/share/man/man2/ftruncate.2 comp-c-man .man +./usr/share/man/man2/futimens.2 comp-c-man .man +./usr/share/man/man2/futimes.2 comp-c-man .man +./usr/share/man/man2/getcontext.2 comp-c-man .man +./usr/share/man/man2/getdents.2 comp-c-man .man +./usr/share/man/man2/getegid.2 comp-c-man .man +./usr/share/man/man2/geteuid.2 comp-c-man .man +./usr/share/man/man2/getfh.2 comp-c-man .man +./usr/share/man/man2/getfsstat.2 comp-obsolete obsolete +./usr/share/man/man2/getgid.2 comp-c-man .man +./usr/share/man/man2/getgroups.2 comp-c-man .man +./usr/share/man/man2/getitimer.2 comp-c-man .man +./usr/share/man/man2/getlogin.2 comp-c-man .man +./usr/share/man/man2/getlogin_r.2 comp-c-man .man +./usr/share/man/man2/getpeername.2 comp-c-man .man +./usr/share/man/man2/getpgid.2 comp-c-man .man +./usr/share/man/man2/getpgrp.2 comp-c-man .man +./usr/share/man/man2/getpid.2 comp-c-man .man +./usr/share/man/man2/getppid.2 comp-c-man .man +./usr/share/man/man2/getpriority.2 comp-c-man .man +./usr/share/man/man2/getrlimit.2 comp-c-man .man +./usr/share/man/man2/getrusage.2 comp-c-man .man +./usr/share/man/man2/getsid.2 comp-c-man .man +./usr/share/man/man2/getsockname.2 comp-c-man .man +./usr/share/man/man2/getsockopt.2 comp-c-man .man +./usr/share/man/man2/gettimeofday.2 comp-c-man .man +./usr/share/man/man2/getuid.2 comp-c-man .man +./usr/share/man/man2/getvfsstat.2 comp-c-man .man +./usr/share/man/man2/i386_get_ioperm.2 comp-obsolete obsolete +./usr/share/man/man2/i386_get_ldt.2 comp-c-man .man +./usr/share/man/man2/i386_get_mtrr.2 comp-c-man .man +./usr/share/man/man2/i386_iopl.2 comp-c-man .man +./usr/share/man/man2/i386_pmc_info.2 comp-c-man .man +./usr/share/man/man2/i386_pmc_read.2 comp-c-man .man +./usr/share/man/man2/i386_pmc_startstop.2 comp-c-man .man +./usr/share/man/man2/i386_set_ioperm.2 comp-obsolete obsolete +./usr/share/man/man2/i386_set_ldt.2 comp-c-man .man +./usr/share/man/man2/i386_set_mtrr.2 comp-c-man .man +./usr/share/man/man2/i386_vm86.2 comp-c-man .man +./usr/share/man/man2/intro.2 comp-c-man .man +./usr/share/man/man2/ioctl.2 comp-c-man .man +./usr/share/man/man2/issetugid.2 comp-c-man .man +./usr/share/man/man2/kevent.2 comp-c-man .man +./usr/share/man/man2/kill.2 comp-c-man .man +./usr/share/man/man2/kqueue.2 comp-c-man .man +./usr/share/man/man2/ktrace.2 comp-c-man .man +./usr/share/man/man2/lchflags.2 comp-c-man .man +./usr/share/man/man2/lchmod.2 comp-c-man .man +./usr/share/man/man2/lchown.2 comp-c-man .man +./usr/share/man/man2/lfs_bmapv.2 comp-c-man .man +./usr/share/man/man2/lfs_markv.2 comp-c-man .man +./usr/share/man/man2/lfs_segclean.2 comp-c-man .man +./usr/share/man/man2/lfs_segwait.2 comp-c-man .man +./usr/share/man/man2/link.2 comp-c-man .man +./usr/share/man/man2/linkat.2 comp-c-man .man +./usr/share/man/man2/listen.2 comp-c-man .man +./usr/share/man/man2/lseek.2 comp-c-man .man +./usr/share/man/man2/lstat.2 comp-c-man .man +./usr/share/man/man2/lutimes.2 comp-c-man .man +./usr/share/man/man2/m68k_sync_icache.2 comp-c-man .man +./usr/share/man/man2/madvise.2 comp-c-man .man +./usr/share/man/man2/mincore.2 comp-c-man .man +./usr/share/man/man2/minherit.2 comp-c-man .man +./usr/share/man/man2/mkdir.2 comp-c-man .man +./usr/share/man/man2/mkfifo.2 comp-c-man .man +./usr/share/man/man2/mknod.2 comp-c-man .man +./usr/share/man/man2/mlock.2 comp-c-man .man +./usr/share/man/man2/mlockall.2 comp-c-man .man +./usr/share/man/man2/mmap.2 comp-c-man .man +./usr/share/man/man2/modctl.2 comp-c-man .man +./usr/share/man/man2/mount.2 comp-c-man .man +./usr/share/man/man2/mprotect.2 comp-c-man .man +./usr/share/man/man2/mremap.2 comp-c-man .man +./usr/share/man/man2/msgctl.2 comp-c-man .man +./usr/share/man/man2/msgget.2 comp-c-man .man +./usr/share/man/man2/msgrcv.2 comp-c-man .man +./usr/share/man/man2/msgsnd.2 comp-c-man .man +./usr/share/man/man2/msync.2 comp-c-man .man +./usr/share/man/man2/munlock.2 comp-c-man .man +./usr/share/man/man2/munlockall.2 comp-c-man .man +./usr/share/man/man2/munmap.2 comp-c-man .man +./usr/share/man/man2/nanosleep.2 comp-c-man .man +./usr/share/man/man2/nfssvc.2 comp-c-man .man +./usr/share/man/man2/ntp_adjtime.2 comp-c-man .man +./usr/share/man/man2/ntp_gettime.2 comp-c-man .man +./usr/share/man/man2/open.2 comp-c-man .man +./usr/share/man/man2/paccept.2 comp-c-man .man +./usr/share/man/man2/pathconf.2 comp-c-man .man +./usr/share/man/man2/pipe.2 comp-c-man .man +./usr/share/man/man2/pipe2.2 comp-c-man .man +./usr/share/man/man2/pmc_control.2 comp-c-man .man +./usr/share/man/man2/pmc_get_info.2 comp-c-man .man +./usr/share/man/man2/poll.2 comp-c-man .man +./usr/share/man/man2/pollts.2 comp-c-man .man +./usr/share/man/man2/posix_fadvise.2 comp-c-man .man +./usr/share/man/man2/posix_madvise.2 comp-c-man .man +./usr/share/man/man2/pread.2 comp-c-man .man +./usr/share/man/man2/preadv.2 comp-c-man .man +./usr/share/man/man2/profil.2 comp-c-man .man +./usr/share/man/man2/pselect.2 comp-c-man .man +./usr/share/man/man2/ptrace.2 comp-c-man .man +./usr/share/man/man2/pwrite.2 comp-c-man .man +./usr/share/man/man2/pwritev.2 comp-c-man .man +./usr/share/man/man2/quotactl.2 comp-obsolete obsolete +./usr/share/man/man2/rasctl.2 comp-c-man .man +./usr/share/man/man2/read.2 comp-c-man .man +./usr/share/man/man2/readlink.2 comp-c-man .man +./usr/share/man/man2/readv.2 comp-c-man .man +./usr/share/man/man2/reboot.2 comp-c-man .man +./usr/share/man/man2/recv.2 comp-c-man .man +./usr/share/man/man2/recvfrom.2 comp-c-man .man +./usr/share/man/man2/recvmmsg.2 comp-c-man .man +./usr/share/man/man2/recvmsg.2 comp-c-man .man +./usr/share/man/man2/rename.2 comp-c-man .man +./usr/share/man/man2/revoke.2 comp-c-man .man +./usr/share/man/man2/rmdir.2 comp-c-man .man +./usr/share/man/man2/sa_enable.2 comp-obsolete obsolete +./usr/share/man/man2/sa_register.2 comp-obsolete obsolete +./usr/share/man/man2/sa_setconcurrency.2 comp-obsolete obsolete +./usr/share/man/man2/sa_stacks.2 comp-obsolete obsolete +./usr/share/man/man2/sa_yield.2 comp-obsolete obsolete +./usr/share/man/man2/sbrk.2 comp-c-man .man +./usr/share/man/man2/seek.2 comp-c-man .man +./usr/share/man/man2/select.2 comp-c-man .man +./usr/share/man/man2/semctl.2 comp-c-man .man +./usr/share/man/man2/semget.2 comp-c-man .man +./usr/share/man/man2/semop.2 comp-c-man .man +./usr/share/man/man2/send.2 comp-c-man .man +./usr/share/man/man2/sendmmsg.2 comp-c-man .man +./usr/share/man/man2/sendmsg.2 comp-c-man .man +./usr/share/man/man2/sendto.2 comp-c-man .man +./usr/share/man/man2/setcontext.2 comp-c-man .man +./usr/share/man/man2/setegid.2 comp-c-man .man +./usr/share/man/man2/seteuid.2 comp-c-man .man +./usr/share/man/man2/setgid.2 comp-c-man .man +./usr/share/man/man2/setgroups.2 comp-c-man .man +./usr/share/man/man2/setitimer.2 comp-c-man .man +./usr/share/man/man2/setlogin.2 comp-c-man .man +./usr/share/man/man2/setpgid.2 comp-c-man .man +./usr/share/man/man2/setpgrp.2 comp-c-man .man +./usr/share/man/man2/setpriority.2 comp-c-man .man +./usr/share/man/man2/setregid.2 comp-c-man .man +./usr/share/man/man2/setreuid.2 comp-c-man .man +./usr/share/man/man2/setrlimit.2 comp-c-man .man +./usr/share/man/man2/setsid.2 comp-c-man .man +./usr/share/man/man2/setsockopt.2 comp-c-man .man +./usr/share/man/man2/settimeofday.2 comp-c-man .man +./usr/share/man/man2/setuid.2 comp-c-man .man +./usr/share/man/man2/shmat.2 comp-c-man .man +./usr/share/man/man2/shmctl.2 comp-c-man .man +./usr/share/man/man2/shmdt.2 comp-c-man .man +./usr/share/man/man2/shmget.2 comp-c-man .man +./usr/share/man/man2/shutdown.2 comp-c-man .man +./usr/share/man/man2/sigaction.2 comp-c-man .man +./usr/share/man/man2/sigaltstack.2 comp-c-man .man +./usr/share/man/man2/siginfo.2 comp-c-man .man +./usr/share/man/man2/sigpending.2 comp-c-man .man +./usr/share/man/man2/sigprocmask.2 comp-c-man .man +./usr/share/man/man2/sigqueue.2 comp-c-man .man +./usr/share/man/man2/sigqueueinfo.2 comp-c-man .man +./usr/share/man/man2/sigreturn.2 comp-obsolete obsolete +./usr/share/man/man2/sigstack.2 comp-c-man .man +./usr/share/man/man2/sigsuspend.2 comp-c-man .man +./usr/share/man/man2/sigtimedwait.2 comp-c-man .man +./usr/share/man/man2/sigwait.2 comp-c-man .man +./usr/share/man/man2/sigwaitinfo.2 comp-c-man .man +./usr/share/man/man2/socket.2 comp-c-man .man +./usr/share/man/man2/socketpair.2 comp-c-man .man +./usr/share/man/man2/stat.2 comp-c-man .man +./usr/share/man/man2/statfs.2 comp-obsolete obsolete +./usr/share/man/man2/statvfs.2 comp-c-man .man +./usr/share/man/man2/statvfs1.2 comp-c-man .man +./usr/share/man/man2/swapctl.2 comp-c-man .man +./usr/share/man/man2/symlink.2 comp-c-man .man +./usr/share/man/man2/sync.2 comp-c-man .man +./usr/share/man/man2/sysarch.2 comp-c-man .man +./usr/share/man/man2/syscall.2 comp-c-man .man +./usr/share/man/man2/timer_create.2 comp-c-man .man +./usr/share/man/man2/timer_delete.2 comp-c-man .man +./usr/share/man/man2/timer_getoverrun.2 comp-c-man .man +./usr/share/man/man2/timer_gettime.2 comp-c-man .man +./usr/share/man/man2/timer_settime.2 comp-c-man .man +./usr/share/man/man2/truncate.2 comp-c-man .man +./usr/share/man/man2/ucontext.2 comp-c-man .man +./usr/share/man/man2/umask.2 comp-c-man .man +./usr/share/man/man2/undelete.2 comp-c-man .man +./usr/share/man/man2/unlink.2 comp-c-man .man +./usr/share/man/man2/unmount.2 comp-c-man .man +./usr/share/man/man2/utimensat.2 comp-c-man .man +./usr/share/man/man2/utimes.2 comp-c-man .man +./usr/share/man/man2/utrace.2 comp-c-man .man +./usr/share/man/man2/uuidgen.2 comp-c-man .man +./usr/share/man/man2/vfork.2 comp-c-man .man +./usr/share/man/man2/wait.2 comp-c-man .man +./usr/share/man/man2/wait3.2 comp-c-man .man +./usr/share/man/man2/wait4.2 comp-c-man .man +./usr/share/man/man2/waitpid.2 comp-c-man .man +./usr/share/man/man2/write.2 comp-c-man .man +./usr/share/man/man2/writev.2 comp-c-man .man +./usr/share/man/man2/x86_64_get_mtrr.2 comp-c-man .man +./usr/share/man/man2/x86_64_iopl.2 comp-c-man .man +./usr/share/man/man2/x86_64_set_mtrr.2 comp-c-man .man +./usr/share/man/man3/ASN1_OBJECT_new.3 comp-c-man crypto,.man +./usr/share/man/man3/ASN1_STRING_length.3 comp-c-man crypto,.man +./usr/share/man/man3/ASN1_STRING_new.3 comp-c-man crypto,.man +./usr/share/man/man3/ASN1_STRING_print_ex.3 comp-c-man crypto,.man +./usr/share/man/man3/ASN1_generate_nconf.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_ctrl.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_f_base64.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_f_buffer.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_f_cipher.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_f_md.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_f_null.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_f_ssl.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_find_type.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_new.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_new_bio_pair.3 comp-obsolete obsolete +./usr/share/man/man3/BIO_push.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_read.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_s_accept.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_s_bio.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_s_connect.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_s_fd.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_s_file.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_s_mem.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_s_null.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_s_socket.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_set_callback.3 comp-c-man crypto,.man +./usr/share/man/man3/BIO_should_retry.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_BLINDING_new.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_CTX_new.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_CTX_start.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_add.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_add_word.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_bn2bin.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_cmp.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_copy.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_generate_prime.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_mod_inverse.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_mod_mul_montgomery.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_mod_mul_reciprocal.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_new.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_num_bytes.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_rand.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_set_bit.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_swap.3 comp-c-man crypto,.man +./usr/share/man/man3/BN_zero.3 comp-c-man crypto,.man +./usr/share/man/man3/CIRCLEQ_EMPTY.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_ENTRY.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_FIRST.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_FOREACH.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_FOREACH_REVERSE.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_HEAD.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_HEAD_INITIALIZER.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_INIT.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_INSERT_AFTER.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_INSERT_BEFORE.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_INSERT_HEAD.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_INSERT_TAIL.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_LAST.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_LOOP_NEXT.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_LOOP_PREV.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_NEXT.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_PREV.3 comp-c-man .man +./usr/share/man/man3/CIRCLEQ_REMOVE.3 comp-c-man .man +./usr/share/man/man3/CMSG_DATA.3 comp-c-man .man +./usr/share/man/man3/CMSG_FIRSTHDR.3 comp-c-man .man +./usr/share/man/man3/CMSG_LEN.3 comp-c-man .man +./usr/share/man/man3/CMSG_NXTHDR.3 comp-c-man .man +./usr/share/man/man3/CMSG_SPACE.3 comp-c-man .man +./usr/share/man/man3/CONF_modules_free.3 comp-c-man crypto,.man +./usr/share/man/man3/CONF_modules_load_file.3 comp-c-man crypto,.man +./usr/share/man/man3/CRYPTO_set_ex_data.3 comp-c-man crypto,.man +./usr/share/man/man3/DH_generate_key.3 comp-c-man crypto,.man +./usr/share/man/man3/DH_generate_parameters.3 comp-c-man crypto,.man +./usr/share/man/man3/DH_get_ex_new_index.3 comp-c-man crypto,.man +./usr/share/man/man3/DH_new.3 comp-c-man crypto,.man +./usr/share/man/man3/DH_set_method.3 comp-c-man crypto,.man +./usr/share/man/man3/DH_size.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_SIG_new.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_do_sign.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_dup_DH.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_generate_key.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_generate_parameters.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_get_ex_new_index.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_new.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_set_method.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_sign.3 comp-c-man crypto,.man +./usr/share/man/man3/DSA_size.3 comp-c-man crypto,.man +./usr/share/man/man3/DTTOIF.3 comp-c-man .man +./usr/share/man/man3/ERR_GET_LIB.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_clear_error.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_error_string.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_get_error.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_load_crypto_strings.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_load_strings.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_print_errors.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_put_error.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_remove_state.3 comp-c-man crypto,.man +./usr/share/man/man3/ERR_set_mark.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_BytesToKey.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_DigestInit.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_EncryptInit.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_OpenInit.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_PKEY_new.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_PKEY_set1_RSA.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_SealInit.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_SignInit.3 comp-c-man crypto,.man +./usr/share/man/man3/EVP_VerifyInit.3 comp-c-man crypto,.man +./usr/share/man/man3/GCQ_DEQUEUED_FIRST.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_FIRST_COND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_FIRST_COND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_FIRST_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_LAST.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_LAST_COND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_LAST_COND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_LAST_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_NEXT.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_NEXT_COND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_NEXT_COND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_NEXT_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_PREV.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_PREV_COND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_PREV_COND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_DEQUEUED_PREV_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FIND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FIND_REV.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FIND_REV_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FIND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_DEQUEUED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_DEQUEUED_REV.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_DEQUEUED_REV_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_DEQUEUED_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_NVAR.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_NVAR_REV.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_NVAR_REV_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_NVAR_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_REV.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_REV_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_RO.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_RO_REV.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_RO_REV_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_RO_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_FOREACH_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_FIRST.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_FIRST_COND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_FIRST_COND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_FIRST_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_LAST.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_LAST_COND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_LAST_COND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_LAST_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_NEXT.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_NEXT_COND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_NEXT_COND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_NEXT_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_PREV.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_PREV_COND.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_PREV_COND_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_GOT_PREV_TYPED.3 comp-sys-man .man +./usr/share/man/man3/GCQ_INIT.3 comp-sys-man .man +./usr/share/man/man3/GCQ_INIT_HEAD.3 comp-sys-man .man +./usr/share/man/man3/GCQ_ITEM.3 comp-sys-man .man +./usr/share/man/man3/IFTODT.3 comp-c-man .man +./usr/share/man/man3/LIST_EMPTY.3 comp-c-man .man +./usr/share/man/man3/LIST_ENTRY.3 comp-c-man .man +./usr/share/man/man3/LIST_FIRST.3 comp-c-man .man +./usr/share/man/man3/LIST_FOREACH.3 comp-c-man .man +./usr/share/man/man3/LIST_HEAD.3 comp-c-man .man +./usr/share/man/man3/LIST_HEAD_INITIALIZER.3 comp-c-man .man +./usr/share/man/man3/LIST_INIT.3 comp-c-man .man +./usr/share/man/man3/LIST_INSERT_AFTER.3 comp-c-man .man +./usr/share/man/man3/LIST_INSERT_BEFORE.3 comp-c-man .man +./usr/share/man/man3/LIST_INSERT_HEAD.3 comp-c-man .man +./usr/share/man/man3/LIST_NEXT.3 comp-c-man .man +./usr/share/man/man3/LIST_REMOVE.3 comp-c-man .man +./usr/share/man/man3/MAX.3 comp-c-man .man +./usr/share/man/man3/MD2Data.3 comp-c-man .man +./usr/share/man/man3/MD2End.3 comp-c-man .man +./usr/share/man/man3/MD2File.3 comp-c-man .man +./usr/share/man/man3/MD2FileChunk.3 comp-c-man .man +./usr/share/man/man3/MD2Final.3 comp-c-man .man +./usr/share/man/man3/MD2Init.3 comp-c-man .man +./usr/share/man/man3/MD2Transform.3 comp-c-man .man +./usr/share/man/man3/MD2Update.3 comp-c-man .man +./usr/share/man/man3/MD4Data.3 comp-c-man .man +./usr/share/man/man3/MD4End.3 comp-c-man .man +./usr/share/man/man3/MD4File.3 comp-c-man .man +./usr/share/man/man3/MD4Final.3 comp-c-man .man +./usr/share/man/man3/MD4Init.3 comp-c-man .man +./usr/share/man/man3/MD4Update.3 comp-c-man .man +./usr/share/man/man3/MD5Data.3 comp-c-man .man +./usr/share/man/man3/MD5End.3 comp-c-man .man +./usr/share/man/man3/MD5File.3 comp-c-man .man +./usr/share/man/man3/MD5Final.3 comp-c-man .man +./usr/share/man/man3/MD5Init.3 comp-c-man .man +./usr/share/man/man3/MD5Update.3 comp-c-man .man +./usr/share/man/man3/MD5_Init.3 comp-obsolete obsolete +./usr/share/man/man3/MIN.3 comp-c-man .man +./usr/share/man/man3/OBJ_nid2obj.3 comp-c-man crypto,.man +./usr/share/man/man3/OPENSSL_Applink.3 comp-c-man crypto,.man +./usr/share/man/man3/OPENSSL_VERSION_NUMBER.3 comp-c-man crypto,.man +./usr/share/man/man3/OPENSSL_config.3 comp-c-man crypto,.man +./usr/share/man/man3/OPENSSL_ia32cap.3 comp-c-man crypto,.man +./usr/share/man/man3/OPENSSL_load_builtin_modules.3 comp-c-man crypto,.man +./usr/share/man/man3/OpenSSL_add_all_algorithms.3 comp-c-man crypto,.man +./usr/share/man/man3/PKCS12_create.3 comp-c-man crypto,.man +./usr/share/man/man3/PKCS12_parse.3 comp-c-man crypto,.man +./usr/share/man/man3/PKCS7_decrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/PKCS7_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/PKCS7_sign.3 comp-c-man crypto,.man +./usr/share/man/man3/PKCS7_verify.3 comp-c-man crypto,.man +./usr/share/man/man3/RAND_add.3 comp-c-man crypto,.man +./usr/share/man/man3/RAND_bytes.3 comp-c-man crypto,.man +./usr/share/man/man3/RAND_cleanup.3 comp-c-man crypto,.man +./usr/share/man/man3/RAND_egd.3 comp-c-man crypto,.man +./usr/share/man/man3/RAND_load_file.3 comp-c-man crypto,.man +./usr/share/man/man3/RAND_seed.3 comp-obsolete obsolete +./usr/share/man/man3/RAND_set_rand_method.3 comp-c-man crypto,.man +./usr/share/man/man3/RB_EMPTY.3 comp-c-man .man +./usr/share/man/man3/RB_ENTRY.3 comp-c-man .man +./usr/share/man/man3/RB_FIND.3 comp-c-man .man +./usr/share/man/man3/RB_FOREACH.3 comp-c-man .man +./usr/share/man/man3/RB_GENERATE.3 comp-c-man .man +./usr/share/man/man3/RB_HEAD.3 comp-c-man .man +./usr/share/man/man3/RB_INIT.3 comp-c-man .man +./usr/share/man/man3/RB_INITIALIZER.3 comp-c-man .man +./usr/share/man/man3/RB_INSERT.3 comp-c-man .man +./usr/share/man/man3/RB_LEFT.3 comp-c-man .man +./usr/share/man/man3/RB_MAX.3 comp-c-man .man +./usr/share/man/man3/RB_MIN.3 comp-c-man .man +./usr/share/man/man3/RB_NEXT.3 comp-c-man .man +./usr/share/man/man3/RB_PARENT.3 comp-c-man .man +./usr/share/man/man3/RB_PROTOTYPE.3 comp-c-man .man +./usr/share/man/man3/RB_REMOVE.3 comp-c-man .man +./usr/share/man/man3/RB_RIGHT.3 comp-c-man .man +./usr/share/man/man3/RB_ROOT.3 comp-c-man .man +./usr/share/man/man3/RMD160Data.3 comp-c-man .man +./usr/share/man/man3/RMD160End.3 comp-c-man .man +./usr/share/man/man3/RMD160File.3 comp-c-man .man +./usr/share/man/man3/RMD160Final.3 comp-c-man .man +./usr/share/man/man3/RMD160Init.3 comp-c-man .man +./usr/share/man/man3/RMD160Transform.3 comp-c-man .man +./usr/share/man/man3/RMD160Update.3 comp-c-man .man +./usr/share/man/man3/RSA_blinding_on.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_check_key.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_generate_key.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_get_ex_new_index.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_new.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_padding_add_PKCS1_type_1.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_print.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_private_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_public_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_set_method.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_sign.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_sign_ASN1_OCTET_STRING.3 comp-c-man crypto,.man +./usr/share/man/man3/RSA_size.3 comp-c-man crypto,.man +./usr/share/man/man3/SDP_GET128.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_GET16.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_GET32.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_GET64.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_GET8.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_PUT128.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_PUT16.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_PUT32.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_PUT64.3 comp-obsolete obsolete +./usr/share/man/man3/SDP_PUT8.3 comp-obsolete obsolete +./usr/share/man/man3/SHA1Data.3 comp-c-man .man +./usr/share/man/man3/SHA1End.3 comp-c-man .man +./usr/share/man/man3/SHA1File.3 comp-c-man .man +./usr/share/man/man3/SHA1FileChunk.3 comp-c-man .man +./usr/share/man/man3/SHA1Final.3 comp-c-man .man +./usr/share/man/man3/SHA1Init.3 comp-c-man .man +./usr/share/man/man3/SHA1Transform.3 comp-c-man .man +./usr/share/man/man3/SHA1Update.3 comp-c-man .man +./usr/share/man/man3/SHA224_Data.3 comp-c-man .man +./usr/share/man/man3/SHA224_End.3 comp-c-man .man +./usr/share/man/man3/SHA224_File.3 comp-c-man .man +./usr/share/man/man3/SHA224_FileChunk.3 comp-c-man .man +./usr/share/man/man3/SHA224_Final.3 comp-c-man .man +./usr/share/man/man3/SHA224_Init.3 comp-c-man .man +./usr/share/man/man3/SHA224_Transform.3 comp-c-man .man +./usr/share/man/man3/SHA224_Update.3 comp-c-man .man +./usr/share/man/man3/SHA256_Data.3 comp-c-man .man +./usr/share/man/man3/SHA256_End.3 comp-c-man .man +./usr/share/man/man3/SHA256_File.3 comp-c-man .man +./usr/share/man/man3/SHA256_FileChunk.3 comp-c-man .man +./usr/share/man/man3/SHA256_Final.3 comp-c-man .man +./usr/share/man/man3/SHA256_Init.3 comp-c-man .man +./usr/share/man/man3/SHA256_Transform.3 comp-c-man .man +./usr/share/man/man3/SHA256_Update.3 comp-c-man .man +./usr/share/man/man3/SHA384_Data.3 comp-c-man .man +./usr/share/man/man3/SHA384_End.3 comp-c-man .man +./usr/share/man/man3/SHA384_File.3 comp-c-man .man +./usr/share/man/man3/SHA384_FileChunk.3 comp-c-man .man +./usr/share/man/man3/SHA384_Final.3 comp-c-man .man +./usr/share/man/man3/SHA384_Init.3 comp-c-man .man +./usr/share/man/man3/SHA384_Transform.3 comp-c-man .man +./usr/share/man/man3/SHA384_Update.3 comp-c-man .man +./usr/share/man/man3/SHA512_Data.3 comp-c-man .man +./usr/share/man/man3/SHA512_End.3 comp-c-man .man +./usr/share/man/man3/SHA512_File.3 comp-c-man .man +./usr/share/man/man3/SHA512_FileChunk.3 comp-c-man .man +./usr/share/man/man3/SHA512_Final.3 comp-c-man .man +./usr/share/man/man3/SHA512_Init.3 comp-c-man .man +./usr/share/man/man3/SHA512_Transform.3 comp-c-man .man +./usr/share/man/man3/SHA512_Update.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_EMPTY.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_ENTRY.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_FIRST.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_FOREACH.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_HEAD.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_HEAD_INITIALIZER.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_INIT.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_INSERT_AFTER.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_INSERT_HEAD.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_INSERT_TAIL.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_NEXT.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_REMOVE.3 comp-c-man .man +./usr/share/man/man3/SIMPLEQ_REMOVE_HEAD.3 comp-c-man .man +./usr/share/man/man3/SLIST_EMPTY.3 comp-c-man .man +./usr/share/man/man3/SLIST_ENTRY.3 comp-c-man .man +./usr/share/man/man3/SLIST_FIRST.3 comp-c-man .man +./usr/share/man/man3/SLIST_FOREACH.3 comp-c-man .man +./usr/share/man/man3/SLIST_HEAD.3 comp-c-man .man +./usr/share/man/man3/SLIST_HEAD_INITIALIZER.3 comp-c-man .man +./usr/share/man/man3/SLIST_INIT.3 comp-c-man .man +./usr/share/man/man3/SLIST_INSERT_AFTER.3 comp-c-man .man +./usr/share/man/man3/SLIST_INSERT_HEAD.3 comp-c-man .man +./usr/share/man/man3/SLIST_NEXT.3 comp-c-man .man +./usr/share/man/man3/SLIST_REMOVE.3 comp-c-man .man +./usr/share/man/man3/SLIST_REMOVE_HEAD.3 comp-c-man .man +./usr/share/man/man3/SMIME_read_PKCS7.3 comp-c-man crypto,.man +./usr/share/man/man3/SMIME_write_PKCS7.3 comp-c-man crypto,.man +./usr/share/man/man3/SPLAY_EMPTY.3 comp-c-man .man +./usr/share/man/man3/SPLAY_ENTRY.3 comp-c-man .man +./usr/share/man/man3/SPLAY_FIND.3 comp-c-man .man +./usr/share/man/man3/SPLAY_FOREACH.3 comp-c-man .man +./usr/share/man/man3/SPLAY_GENERATE.3 comp-c-man .man +./usr/share/man/man3/SPLAY_HEAD.3 comp-c-man .man +./usr/share/man/man3/SPLAY_INIT.3 comp-c-man .man +./usr/share/man/man3/SPLAY_INITIALIZER.3 comp-c-man .man +./usr/share/man/man3/SPLAY_INSERT.3 comp-c-man .man +./usr/share/man/man3/SPLAY_LEFT.3 comp-c-man .man +./usr/share/man/man3/SPLAY_MAX.3 comp-c-man .man +./usr/share/man/man3/SPLAY_MIN.3 comp-c-man .man +./usr/share/man/man3/SPLAY_NEXT.3 comp-c-man .man +./usr/share/man/man3/SPLAY_PROTOTYPE.3 comp-c-man .man +./usr/share/man/man3/SPLAY_REMOVE.3 comp-c-man .man +./usr/share/man/man3/SPLAY_RIGHT.3 comp-c-man .man +./usr/share/man/man3/SPLAY_ROOT.3 comp-c-man .man +./usr/share/man/man3/SSL_CIPHER_get_name.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_COMP_add_compression_method.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_add_extra_chain_cert.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_add_session.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_ctrl.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_flush_sessions.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_free.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_get_ex_new_index.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_get_verify_mode.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_load_verify_locations.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_new.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_sess_number.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_sess_set_cache_size.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_sess_set_get_cb.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_sessions.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_cert_store.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_cert_verify_callback.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_cipher_list.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_client_CA_list.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_client_cert_cb.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_default_passwd_cb.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_generate_session_id.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_info_callback.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_max_cert_list.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_mode.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_msg_callback.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_options.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_quiet_shutdown.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_session_cache_mode.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_session_id_context.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_ssl_version.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_timeout.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_tmp_dh_callback.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_tmp_rsa_callback.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_set_verify.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_CTX_use_certificate.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_SESSION_free.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_SESSION_get_ex_new_index.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_SESSION_get_time.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_accept.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_alert_type_string.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_clear.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_connect.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_do_handshake.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_free.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_SSL_CTX.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_ciphers.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_client_CA_list.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_current_cipher.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_default_timeout.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_error.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_ex_data_X509_STORE_CTX_idx.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_ex_new_index.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_fd.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_peer_cert_chain.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_peer_certificate.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_rbio.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_session.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_verify_result.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_get_version.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_library_init.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_load_client_CA_file.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_new.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_pending.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_read.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_rstate_string.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_session_reused.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_set_bio.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_set_connect_state.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_set_fd.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_set_session.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_set_shutdown.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_set_verify_result.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_shutdown.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_state_string.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_want.3 comp-c-man crypto,.man +./usr/share/man/man3/SSL_write.3 comp-c-man crypto,.man +./usr/share/man/man3/STAILQ_EMPTY.3 comp-c-man .man +./usr/share/man/man3/STAILQ_ENTRY.3 comp-c-man .man +./usr/share/man/man3/STAILQ_FIRST.3 comp-c-man .man +./usr/share/man/man3/STAILQ_FOREACH.3 comp-c-man .man +./usr/share/man/man3/STAILQ_HEAD.3 comp-c-man .man +./usr/share/man/man3/STAILQ_HEAD_INITIALIZER.3 comp-c-man .man +./usr/share/man/man3/STAILQ_INIT.3 comp-c-man .man +./usr/share/man/man3/STAILQ_INSERT_AFTER.3 comp-c-man .man +./usr/share/man/man3/STAILQ_INSERT_HEAD.3 comp-c-man .man +./usr/share/man/man3/STAILQ_INSERT_TAIL.3 comp-c-man .man +./usr/share/man/man3/STAILQ_NEXT.3 comp-c-man .man +./usr/share/man/man3/STAILQ_REMOVE.3 comp-c-man .man +./usr/share/man/man3/STAILQ_REMOVE_HEAD.3 comp-c-man .man +./usr/share/man/man3/TAILQ_EMPTY.3 comp-c-man .man +./usr/share/man/man3/TAILQ_ENTRY.3 comp-c-man .man +./usr/share/man/man3/TAILQ_FIRST.3 comp-c-man .man +./usr/share/man/man3/TAILQ_FOREACH.3 comp-c-man .man +./usr/share/man/man3/TAILQ_FOREACH_REVERSE.3 comp-c-man .man +./usr/share/man/man3/TAILQ_HEAD.3 comp-c-man .man +./usr/share/man/man3/TAILQ_HEAD_INITIALIZER.3 comp-c-man .man +./usr/share/man/man3/TAILQ_INIT.3 comp-c-man .man +./usr/share/man/man3/TAILQ_INSERT_AFTER.3 comp-c-man .man +./usr/share/man/man3/TAILQ_INSERT_BEFORE.3 comp-c-man .man +./usr/share/man/man3/TAILQ_INSERT_HEAD.3 comp-c-man .man +./usr/share/man/man3/TAILQ_INSERT_TAIL.3 comp-c-man .man +./usr/share/man/man3/TAILQ_LAST.3 comp-c-man .man +./usr/share/man/man3/TAILQ_NEXT.3 comp-c-man .man +./usr/share/man/man3/TAILQ_PREV.3 comp-c-man .man +./usr/share/man/man3/TAILQ_REMOVE.3 comp-c-man .man +./usr/share/man/man3/TIMESPEC_TO_TIMEVAL.3 comp-c-man .man +./usr/share/man/man3/TIMEVAL_TO_TIMESPEC.3 comp-c-man .man +./usr/share/man/man3/X509_NAME_ENTRY_get_object.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_NAME_add_entry_by_txt.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_NAME_get_index_by_NID.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_NAME_print_ex.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_STORE_CTX_get_error.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_STORE_CTX_get_ex_new_index.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_STORE_CTX_new.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_STORE_CTX_set_verify_cb.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_STORE_set_verify_cb_func.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_VERIFY_PARAM_set_flags.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_new.3 comp-c-man crypto,.man +./usr/share/man/man3/X509_verify_cert.3 comp-c-man crypto,.man +./usr/share/man/man3/_DIAGASSERT.3 comp-c-man .man +./usr/share/man/man3/__BIT.3 comp-c-man .man +./usr/share/man/man3/__BITS.3 comp-c-man .man +./usr/share/man/man3/__CONCAT.3 comp-c-man .man +./usr/share/man/man3/__KERNEL_RCSID.3 comp-c-man .man +./usr/share/man/man3/__RCSID.3 comp-c-man .man +./usr/share/man/man3/__SHIFTIN.3 comp-c-man .man +./usr/share/man/man3/__SHIFTOUT.3 comp-c-man .man +./usr/share/man/man3/__SHIFTOUT_MASK.3 comp-c-man .man +./usr/share/man/man3/__STRING.3 comp-c-man .man +./usr/share/man/man3/__UNCONST.3 comp-c-man .man +./usr/share/man/man3/__UNVOLATILE.3 comp-c-man .man +./usr/share/man/man3/__aligned.3 comp-c-man .man +./usr/share/man/man3/__alignof__.3 comp-c-man .man +./usr/share/man/man3/__arraycount.3 comp-c-man .man +./usr/share/man/man3/__builtin_constant_p.3 comp-c-man .man +./usr/share/man/man3/__builtin_frame_address.3 comp-c-man .man +./usr/share/man/man3/__builtin_object_size.3 comp-c-man .man +./usr/share/man/man3/__builtin_prefetch.3 comp-c-man .man +./usr/share/man/man3/__builtin_return_address.3 comp-c-man .man +./usr/share/man/man3/__builtin_types_compatible_p.3 comp-c-man .man +./usr/share/man/man3/__cacheline_aligned.3 comp-c-man .man +./usr/share/man/man3/__constfunc.3 comp-c-man .man +./usr/share/man/man3/__dead.3 comp-c-man .man +./usr/share/man/man3/__insn_barrier.3 comp-c-man .man +./usr/share/man/man3/__noinline.3 comp-c-man .man +./usr/share/man/man3/__packed.3 comp-c-man .man +./usr/share/man/man3/__predict_false.3 comp-c-man .man +./usr/share/man/man3/__predict_true.3 comp-c-man .man +./usr/share/man/man3/__pure.3 comp-c-man .man +./usr/share/man/man3/__read_mostly.3 comp-c-man .man +./usr/share/man/man3/__section.3 comp-c-man .man +./usr/share/man/man3/__svc_getcallercreds.3 comp-c-man .man +./usr/share/man/man3/__unused.3 comp-c-man .man +./usr/share/man/man3/__used.3 comp-c-man .man +./usr/share/man/man3/_longjmp.3 comp-c-man .man +./usr/share/man/man3/_lwp_makecontext.3 comp-c-man .man +./usr/share/man/man3/_setjmp.3 comp-c-man .man +./usr/share/man/man3/a64l.3 comp-c-man .man +./usr/share/man/man3/abort.3 comp-c-man .man +./usr/share/man/man3/abs.3 comp-c-man .man +./usr/share/man/man3/acos.3 comp-c-man .man +./usr/share/man/man3/acosf.3 comp-c-man .man +./usr/share/man/man3/acosh.3 comp-c-man .man +./usr/share/man/man3/acoshf.3 comp-c-man .man +./usr/share/man/man3/addch.3 comp-c-man .man +./usr/share/man/man3/addchnstr.3 comp-c-man .man +./usr/share/man/man3/addchstr.3 comp-c-man .man +./usr/share/man/man3/addnstr.3 comp-c-man .man +./usr/share/man/man3/addr.3 comp-c-man .man +./usr/share/man/man3/addstr.3 comp-c-man .man +./usr/share/man/man3/affinity.3 comp-c-man .man +./usr/share/man/man3/aio.3 comp-c-man .man +./usr/share/man/man3/aio_cancel.3 comp-c-man .man +./usr/share/man/man3/aio_error.3 comp-c-man .man +./usr/share/man/man3/aio_fsync.3 comp-c-man .man +./usr/share/man/man3/aio_read.3 comp-c-man .man +./usr/share/man/man3/aio_return.3 comp-c-man .man +./usr/share/man/man3/aio_suspend.3 comp-c-man .man +./usr/share/man/man3/aio_write.3 comp-c-man .man +./usr/share/man/man3/alarm.3 comp-c-man .man +./usr/share/man/man3/alloca.3 comp-c-man .man +./usr/share/man/man3/allocaddrinfo.3 comp-c-man .man +./usr/share/man/man3/alphasort.3 comp-c-man .man +./usr/share/man/man3/arc4random.3 comp-c-man .man +./usr/share/man/man3/archive.3 comp-c-man .man +./usr/share/man/man3/archive_clear_error.3 comp-c-man .man +./usr/share/man/man3/archive_compression.3 comp-c-man .man +./usr/share/man/man3/archive_compression_name.3 comp-c-man .man +./usr/share/man/man3/archive_copy_error.3 comp-c-man .man +./usr/share/man/man3/archive_entry.3 comp-c-man .man +./usr/share/man/man3/archive_entry_acl_add_entry.3 comp-c-man .man +./usr/share/man/man3/archive_entry_acl_add_entry_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_acl_clear.3 comp-c-man .man +./usr/share/man/man3/archive_entry_acl_count.3 comp-c-man .man +./usr/share/man/man3/archive_entry_acl_next.3 comp-c-man .man +./usr/share/man/man3/archive_entry_acl_next_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_acl_reset.3 comp-c-man .man +./usr/share/man/man3/archive_entry_acl_text_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_atime.3 comp-c-man .man +./usr/share/man/man3/archive_entry_atime_nsec.3 comp-c-man .man +./usr/share/man/man3/archive_entry_clear.3 comp-c-man .man +./usr/share/man/man3/archive_entry_clone.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_fflags_text.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_fflags_text_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_gname.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_gname_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_hardlink.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_hardlink_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_link.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_link_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_pathname_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_sourcepath.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_stat.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_symlink.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_symlink_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_uname.3 comp-c-man .man +./usr/share/man/man3/archive_entry_copy_uname_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_dev.3 comp-c-man .man +./usr/share/man/man3/archive_entry_devmajor.3 comp-c-man .man +./usr/share/man/man3/archive_entry_devminor.3 comp-c-man .man +./usr/share/man/man3/archive_entry_fflags.3 comp-c-man .man +./usr/share/man/man3/archive_entry_fflags_text.3 comp-c-man .man +./usr/share/man/man3/archive_entry_filetype.3 comp-c-man .man +./usr/share/man/man3/archive_entry_free.3 comp-c-man .man +./usr/share/man/man3/archive_entry_gid.3 comp-c-man .man +./usr/share/man/man3/archive_entry_gname.3 comp-c-man .man +./usr/share/man/man3/archive_entry_gname_w.3 comp-obsolete obsolete +./usr/share/man/man3/archive_entry_hardlink.3 comp-c-man .man +./usr/share/man/man3/archive_entry_ino.3 comp-c-man .man +./usr/share/man/man3/archive_entry_mode.3 comp-c-man .man +./usr/share/man/man3/archive_entry_mtime.3 comp-c-man .man +./usr/share/man/man3/archive_entry_mtime_nsec.3 comp-c-man .man +./usr/share/man/man3/archive_entry_new.3 comp-c-man .man +./usr/share/man/man3/archive_entry_nlink.3 comp-c-man .man +./usr/share/man/man3/archive_entry_pathname.3 comp-c-man .man +./usr/share/man/man3/archive_entry_pathname_w.3 comp-c-man .man +./usr/share/man/man3/archive_entry_rdev.3 comp-c-man .man +./usr/share/man/man3/archive_entry_rdevmajor.3 comp-c-man .man +./usr/share/man/man3/archive_entry_rdevminor.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_atime.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_ctime.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_dev.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_devmajor.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_devminor.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_fflags.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_filetype.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_gid.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_gname.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_hardlink.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_link.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_mode.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_mtime.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_nlink.3 comp-obsolete obsolete +./usr/share/man/man3/archive_entry_set_pathname.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_rdev.3 comp-obsolete obsolete +./usr/share/man/man3/archive_entry_set_rdevmajor.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_rdevminor.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_size.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_symlink.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_uid.3 comp-c-man .man +./usr/share/man/man3/archive_entry_set_uname.3 comp-c-man .man +./usr/share/man/man3/archive_entry_size.3 comp-c-man .man +./usr/share/man/man3/archive_entry_sourcepath.3 comp-c-man .man +./usr/share/man/man3/archive_entry_stat.3 comp-c-man .man +./usr/share/man/man3/archive_entry_symlink.3 comp-c-man .man +./usr/share/man/man3/archive_entry_uid.3 comp-c-man .man +./usr/share/man/man3/archive_entry_uname.3 comp-c-man .man +./usr/share/man/man3/archive_entry_uname_w.3 comp-obsolete obsolete +./usr/share/man/man3/archive_errno.3 comp-c-man .man +./usr/share/man/man3/archive_error_string.3 comp-c-man .man +./usr/share/man/man3/archive_file_count.3 comp-c-man .man +./usr/share/man/man3/archive_format.3 comp-c-man .man +./usr/share/man/man3/archive_format_name.3 comp-c-man .man +./usr/share/man/man3/archive_read.3 comp-c-man .man +./usr/share/man/man3/archive_read_close.3 comp-c-man .man +./usr/share/man/man3/archive_read_data.3 comp-c-man .man +./usr/share/man/man3/archive_read_data_block.3 comp-c-man .man +./usr/share/man/man3/archive_read_data_into_buffer.3 comp-c-man .man +./usr/share/man/man3/archive_read_data_into_fd.3 comp-c-man .man +./usr/share/man/man3/archive_read_data_skip.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_gname.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_new.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_set_entry_from_file.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_set_gname_lookup.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_set_standard_lookup.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_set_symlink_hybrid.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_set_symlink_logical.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_set_symlink_physical.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_set_uname_lookup.3 comp-c-man .man +./usr/share/man/man3/archive_read_disk_uname.3 comp-c-man .man +./usr/share/man/man3/archive_read_extract.3 comp-c-man .man +./usr/share/man/man3/archive_read_extract2.3 comp-c-man .man +./usr/share/man/man3/archive_read_extract_set_progress_callback.3 comp-c-man .man +./usr/share/man/man3/archive_read_extract_set_skip_file.3 comp-obsolete obsolete +./usr/share/man/man3/archive_read_finish.3 comp-c-man .man +./usr/share/man/man3/archive_read_new.3 comp-c-man .man +./usr/share/man/man3/archive_read_next_header.3 comp-c-man .man +./usr/share/man/man3/archive_read_next_header2.3 comp-c-man .man +./usr/share/man/man3/archive_read_open.3 comp-c-man .man +./usr/share/man/man3/archive_read_open2.3 comp-c-man .man +./usr/share/man/man3/archive_read_open_FILE.3 comp-c-man .man +./usr/share/man/man3/archive_read_open_fd.3 comp-c-man .man +./usr/share/man/man3/archive_read_open_file.3 comp-c-man .man +./usr/share/man/man3/archive_read_open_filename.3 comp-c-man .man +./usr/share/man/man3/archive_read_open_memory.3 comp-c-man .man +./usr/share/man/man3/archive_read_set_filter_options.3 comp-c-man .man +./usr/share/man/man3/archive_read_set_format_options.3 comp-c-man .man +./usr/share/man/man3/archive_read_set_options.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_all.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_bzip2.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_compress.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_gzip.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_lzma.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_none.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_program.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_program_signature.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_compression_xz.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_all.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_ar.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_cpio.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_empty.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_iso9660.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_mtree.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_raw.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_tar.3 comp-c-man .man +./usr/share/man/man3/archive_read_support_format_zip.3 comp-c-man .man +./usr/share/man/man3/archive_set_error.3 comp-c-man .man +./usr/share/man/man3/archive_util.3 comp-c-man .man +./usr/share/man/man3/archive_write.3 comp-c-man .man +./usr/share/man/man3/archive_write_close.3 comp-c-man .man +./usr/share/man/man3/archive_write_data.3 comp-c-man .man +./usr/share/man/man3/archive_write_disk.3 comp-c-man .man +./usr/share/man/man3/archive_write_disk_new.3 comp-c-man .man +./usr/share/man/man3/archive_write_disk_set_group_lookup.3 comp-c-man .man +./usr/share/man/man3/archive_write_disk_set_options.3 comp-c-man .man +./usr/share/man/man3/archive_write_disk_set_skip_file.3 comp-c-man .man +./usr/share/man/man3/archive_write_disk_set_standard_lookup.3 comp-c-man .man +./usr/share/man/man3/archive_write_disk_set_user_lookup.3 comp-c-man .man +./usr/share/man/man3/archive_write_finish.3 comp-c-man .man +./usr/share/man/man3/archive_write_finish_entry.3 comp-c-man .man +./usr/share/man/man3/archive_write_get_bytes_in_last_block.3 comp-obsolete obsolete +./usr/share/man/man3/archive_write_get_bytes_per_block.3 comp-c-man .man +./usr/share/man/man3/archive_write_header.3 comp-c-man .man +./usr/share/man/man3/archive_write_new.3 comp-c-man .man +./usr/share/man/man3/archive_write_open.3 comp-c-man .man +./usr/share/man/man3/archive_write_open_FILE.3 comp-c-man .man +./usr/share/man/man3/archive_write_open_fd.3 comp-c-man .man +./usr/share/man/man3/archive_write_open_file.3 comp-obsolete obsolete +./usr/share/man/man3/archive_write_open_filename.3 comp-c-man .man +./usr/share/man/man3/archive_write_open_memory.3 comp-c-man .man +./usr/share/man/man3/archive_write_options.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_bytes_in_last_block.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_bytes_per_block.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_callbacks.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_compression_bzip2.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_compression_compress.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_compression_gzip.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_compression_none.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_compression_program.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_compressor_options.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_format_cpio.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_format_pax.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_format_pax_restricted.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_format_shar.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_format_shar_binary.3 comp-c-man .man +./usr/share/man/man3/archive_write_set_format_ustar.3 comp-c-man .man +./usr/share/man/man3/asctime.3 comp-c-man .man +./usr/share/man/man3/asctime_r.3 comp-c-man .man +./usr/share/man/man3/asin.3 comp-c-man .man +./usr/share/man/man3/asinf.3 comp-c-man .man +./usr/share/man/man3/asinh.3 comp-c-man .man +./usr/share/man/man3/asinhf.3 comp-c-man .man +./usr/share/man/man3/asprintf.3 comp-c-man .man +./usr/share/man/man3/assert.3 comp-c-man .man +./usr/share/man/man3/assume_default_colors.3 comp-c-man .man +./usr/share/man/man3/atan.3 comp-c-man .man +./usr/share/man/man3/atan2.3 comp-c-man .man +./usr/share/man/man3/atan2f.3 comp-c-man .man +./usr/share/man/man3/atanf.3 comp-c-man .man +./usr/share/man/man3/atanh.3 comp-c-man .man +./usr/share/man/man3/atanhf.3 comp-c-man .man +./usr/share/man/man3/atexit.3 comp-c-man .man +./usr/share/man/man3/atf-c++-api.3 comp-atf-man .man,atf +./usr/share/man/man3/atf-c-api.3 comp-atf-man .man,atf +./usr/share/man/man3/atf-sh-api.3 comp-atf-man .man,atf +./usr/share/man/man3/atof.3 comp-c-man .man +./usr/share/man/man3/atoi.3 comp-c-man .man +./usr/share/man/man3/atol.3 comp-c-man .man +./usr/share/man/man3/atoll.3 comp-c-man .man +./usr/share/man/man3/atomic_add.3 comp-c-man .man +./usr/share/man/man3/atomic_add_32.3 comp-c-man .man +./usr/share/man/man3/atomic_add_32_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_add_64.3 comp-c-man .man +./usr/share/man/man3/atomic_add_64_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_add_int.3 comp-c-man .man +./usr/share/man/man3/atomic_add_int_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_add_long.3 comp-c-man .man +./usr/share/man/man3/atomic_add_long_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_add_ptr.3 comp-c-man .man +./usr/share/man/man3/atomic_add_ptr_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_and.3 comp-c-man .man +./usr/share/man/man3/atomic_and_32.3 comp-c-man .man +./usr/share/man/man3/atomic_and_32_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_and_64.3 comp-c-man .man +./usr/share/man/man3/atomic_and_64_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_and_uint.3 comp-c-man .man +./usr/share/man/man3/atomic_and_uint_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_and_ulong.3 comp-c-man .man +./usr/share/man/man3/atomic_and_ulong_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_cas.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_32.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_32_ni.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_64.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_64_ni.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_ptr.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_ptr_ni.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_uint.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_uint_ni.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_ulong.3 comp-c-man .man +./usr/share/man/man3/atomic_cas_ulong_ni.3 comp-c-man .man +./usr/share/man/man3/atomic_dec.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_32.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_32_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_64.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_64_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_ptr.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_ptr_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_uint.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_uint_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_ulong.3 comp-c-man .man +./usr/share/man/man3/atomic_dec_ulong_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_inc.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_32.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_32_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_64.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_64_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_ptr.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_ptr_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_uint.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_uint_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_ulong.3 comp-c-man .man +./usr/share/man/man3/atomic_inc_ulong_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_ops.3 comp-c-man .man +./usr/share/man/man3/atomic_or.3 comp-c-man .man +./usr/share/man/man3/atomic_or_32.3 comp-c-man .man +./usr/share/man/man3/atomic_or_32_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_or_64.3 comp-c-man .man +./usr/share/man/man3/atomic_or_64_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_or_uint.3 comp-c-man .man +./usr/share/man/man3/atomic_or_uint_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_or_ulong.3 comp-c-man .man +./usr/share/man/man3/atomic_or_ulong_nv.3 comp-c-man .man +./usr/share/man/man3/atomic_swap.3 comp-c-man .man +./usr/share/man/man3/atomic_swap_32.3 comp-c-man .man +./usr/share/man/man3/atomic_swap_64.3 comp-c-man .man +./usr/share/man/man3/atomic_swap_ptr.3 comp-c-man .man +./usr/share/man/man3/atomic_swap_uint.3 comp-c-man .man +./usr/share/man/man3/atomic_swap_ulong.3 comp-c-man .man +./usr/share/man/man3/attr_get.3 comp-c-man .man +./usr/share/man/man3/attr_off.3 comp-c-man .man +./usr/share/man/man3/attr_on.3 comp-c-man .man +./usr/share/man/man3/attr_set.3 comp-c-man .man +./usr/share/man/man3/attribute.3 comp-c-man .man +./usr/share/man/man3/attroff.3 comp-c-man .man +./usr/share/man/man3/attron.3 comp-c-man .man +./usr/share/man/man3/attrset.3 comp-c-man .man +./usr/share/man/man3/auth_destroy.3 comp-c-man .man +./usr/share/man/man3/authnone_create.3 comp-c-man .man +./usr/share/man/man3/authsys_create.3 comp-c-man .man +./usr/share/man/man3/authsys_create_default.3 comp-c-man .man +./usr/share/man/man3/authunix_create.3 comp-c-man .man +./usr/share/man/man3/authunix_create_default.3 comp-c-man .man +./usr/share/man/man3/backtrace.3 comp-c-man .man +./usr/share/man/man3/backtrace_symbols.3 comp-c-man .man +./usr/share/man/man3/backtrace_symbols_fd.3 comp-c-man .man +./usr/share/man/man3/backtrace_symbols_fd_fmt.3 comp-c-man .man +./usr/share/man/man3/backtrace_symbols_fmt.3 comp-c-man .man +./usr/share/man/man3/basename.3 comp-c-man .man +./usr/share/man/man3/bcmp.3 comp-c-man .man +./usr/share/man/man3/bcopy.3 comp-c-man .man +./usr/share/man/man3/beep.3 comp-c-man .man +./usr/share/man/man3/ber_alloc_t.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_bvarray_add.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_bvarray_free.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_bvdup.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_bvecadd.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_bvecfree.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_bvfree.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_bvstr.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_bvstrdup.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_dupbv.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_first_element.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_flush.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_free.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_get_bitstring.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_get_boolean.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_get_enum.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_get_int.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_get_next.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_get_null.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_get_stringa.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_get_stringb.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_next_element.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_peek_tag.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_printf.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_put_enum.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_put_int.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_put_null.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_put_ostring.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_put_seq.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_put_set.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_put_string.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_scanf.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_skip_tag.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_start_set.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ber_str2bv.3 comp-ldap-man ldap,.man +./usr/share/man/man3/bind_textdomain_codeset.3 comp-c-man .man +./usr/share/man/man3/bindresvport.3 comp-c-man .man +./usr/share/man/man3/bindresvport_sa.3 comp-c-man .man +./usr/share/man/man3/bindtextdomain.3 comp-c-man .man +./usr/share/man/man3/bit_alloc.3 comp-c-man .man +./usr/share/man/man3/bit_clear.3 comp-c-man .man +./usr/share/man/man3/bit_decl.3 comp-c-man .man +./usr/share/man/man3/bit_ffc.3 comp-c-man .man +./usr/share/man/man3/bit_ffs.3 comp-c-man .man +./usr/share/man/man3/bit_nclear.3 comp-c-man .man +./usr/share/man/man3/bit_nset.3 comp-c-man .man +./usr/share/man/man3/bit_set.3 comp-c-man .man +./usr/share/man/man3/bit_test.3 comp-c-man .man +./usr/share/man/man3/bitops.3 comp-c-man .man +./usr/share/man/man3/bits.3 comp-c-man .man +./usr/share/man/man3/bitstr_size.3 comp-c-man .man +./usr/share/man/man3/bitstring.3 comp-c-man .man +./usr/share/man/man3/bkgd.3 comp-c-man .man +./usr/share/man/man3/bkgdset.3 comp-c-man .man +./usr/share/man/man3/blowfish.3 comp-obsolete obsolete +./usr/share/man/man3/bluetooth.3 comp-c-man .man +./usr/share/man/man3/bm.3 comp-c-man .man +./usr/share/man/man3/bm_comp.3 comp-c-man .man +./usr/share/man/man3/bm_exec.3 comp-c-man .man +./usr/share/man/man3/bm_free.3 comp-c-man .man +./usr/share/man/man3/bn.3 comp-obsolete obsolete +./usr/share/man/man3/bn_internal.3 comp-obsolete obsolete +./usr/share/man/man3/border.3 comp-c-man .man +./usr/share/man/man3/box.3 comp-c-man .man +./usr/share/man/man3/bsearch.3 comp-c-man .man +./usr/share/man/man3/bstring.3 comp-c-man .man +./usr/share/man/man3/bswap.3 comp-c-man .man +./usr/share/man/man3/bswap16.3 comp-c-man .man +./usr/share/man/man3/bswap32.3 comp-c-man .man +./usr/share/man/man3/bswap64.3 comp-c-man .man +./usr/share/man/man3/bt_aton.3 comp-c-man .man +./usr/share/man/man3/bt_closeconfig.3 comp-obsolete obsolete +./usr/share/man/man3/bt_dev.3 comp-c-man .man +./usr/share/man/man3/bt_devaddr.3 comp-c-man .man +./usr/share/man/man3/bt_devenum.3 comp-c-man .man +./usr/share/man/man3/bt_devfilter.3 comp-c-man .man +./usr/share/man/man3/bt_devfilter_evt_clr.3 comp-c-man .man +./usr/share/man/man3/bt_devfilter_evt_set.3 comp-c-man .man +./usr/share/man/man3/bt_devfilter_evt_tst.3 comp-c-man .man +./usr/share/man/man3/bt_devfilter_pkt_clr.3 comp-c-man .man +./usr/share/man/man3/bt_devfilter_pkt_set.3 comp-c-man .man +./usr/share/man/man3/bt_devfilter_pkt_tst.3 comp-c-man .man +./usr/share/man/man3/bt_devinfo.3 comp-c-man .man +./usr/share/man/man3/bt_devinquiry.3 comp-c-man .man +./usr/share/man/man3/bt_devname.3 comp-c-man .man +./usr/share/man/man3/bt_devopen.3 comp-c-man .man +./usr/share/man/man3/bt_devrecv.3 comp-c-man .man +./usr/share/man/man3/bt_devreq.3 comp-c-man .man +./usr/share/man/man3/bt_devsend.3 comp-c-man .man +./usr/share/man/man3/bt_eachconfig.3 comp-obsolete obsolete +./usr/share/man/man3/bt_endhostent.3 comp-c-man .man +./usr/share/man/man3/bt_endprotoent.3 comp-c-man .man +./usr/share/man/man3/bt_freeconfig.3 comp-obsolete obsolete +./usr/share/man/man3/bt_getconfig.3 comp-obsolete obsolete +./usr/share/man/man3/bt_gethostbyaddr.3 comp-c-man .man +./usr/share/man/man3/bt_gethostbyname.3 comp-c-man .man +./usr/share/man/man3/bt_gethostent.3 comp-c-man .man +./usr/share/man/man3/bt_getprotobyname.3 comp-c-man .man +./usr/share/man/man3/bt_getprotobynumber.3 comp-c-man .man +./usr/share/man/man3/bt_getprotoent.3 comp-c-man .man +./usr/share/man/man3/bt_ntoa.3 comp-c-man .man +./usr/share/man/man3/bt_openconfig.3 comp-obsolete obsolete +./usr/share/man/man3/bt_printconfig.3 comp-obsolete obsolete +./usr/share/man/man3/bt_sethostent.3 comp-c-man .man +./usr/share/man/man3/bt_setprotoent.3 comp-c-man .man +./usr/share/man/man3/btowc.3 comp-c-man .man +./usr/share/man/man3/btree.3 comp-c-man .man +./usr/share/man/man3/buffer.3 comp-obsolete obsolete +./usr/share/man/man3/bufferevent_base_set.3 comp-c-man .man +./usr/share/man/man3/bufferevent_disable.3 comp-c-man .man +./usr/share/man/man3/bufferevent_enable.3 comp-c-man .man +./usr/share/man/man3/bufferevent_free.3 comp-c-man .man +./usr/share/man/man3/bufferevent_new.3 comp-c-man .man +./usr/share/man/man3/bufferevent_read.3 comp-c-man .man +./usr/share/man/man3/bufferevent_settimeout.3 comp-c-man .man +./usr/share/man/man3/bufferevent_write.3 comp-c-man .man +./usr/share/man/man3/bufferevent_write_buffer.3 comp-c-man .man +./usr/share/man/man3/byteorder.3 comp-c-man .man +./usr/share/man/man3/bzero.3 comp-c-man .man +./usr/share/man/man3/cabs.3 comp-c-man complex,.man +./usr/share/man/man3/cabsf.3 comp-c-man complex,.man +./usr/share/man/man3/cacos.3 comp-c-man complex,.man +./usr/share/man/man3/cacosf.3 comp-c-man complex,.man +./usr/share/man/man3/cacosh.3 comp-c-man complex,.man +./usr/share/man/man3/cacoshf.3 comp-c-man complex,.man +./usr/share/man/man3/calloc.3 comp-c-man .man +./usr/share/man/man3/callrpc.3 comp-c-man .man +./usr/share/man/man3/can_change_color.3 comp-c-man .man +./usr/share/man/man3/can_change_colors.3 comp-obsolete obsolete +./usr/share/man/man3/carg.3 comp-c-man complex,.man +./usr/share/man/man3/cargf.3 comp-c-man complex,.man +./usr/share/man/man3/casin.3 comp-c-man complex,.man +./usr/share/man/man3/casinf.3 comp-c-man complex,.man +./usr/share/man/man3/casinh.3 comp-c-man complex,.man +./usr/share/man/man3/casinhf.3 comp-c-man complex,.man +./usr/share/man/man3/catan.3 comp-c-man complex,.man +./usr/share/man/man3/catanf.3 comp-c-man complex,.man +./usr/share/man/man3/catanh.3 comp-c-man complex,.man +./usr/share/man/man3/catanhf.3 comp-c-man complex,.man +./usr/share/man/man3/catclose.3 comp-c-man .man +./usr/share/man/man3/catgets.3 comp-c-man .man +./usr/share/man/man3/catopen.3 comp-c-man .man +./usr/share/man/man3/cbreak.3 comp-c-man .man +./usr/share/man/man3/cbrt.3 comp-c-man .man +./usr/share/man/man3/cbrtf.3 comp-c-man .man +./usr/share/man/man3/ccos.3 comp-c-man complex,.man +./usr/share/man/man3/ccosf.3 comp-c-man complex,.man +./usr/share/man/man3/ccosh.3 comp-c-man complex,.man +./usr/share/man/man3/ccoshf.3 comp-c-man complex,.man +./usr/share/man/man3/cdbr.3 comp-c-man .man +./usr/share/man/man3/cdbr_close.3 comp-c-man .man +./usr/share/man/man3/cdbr_entries.3 comp-c-man .man +./usr/share/man/man3/cdbr_find.3 comp-c-man .man +./usr/share/man/man3/cdbr_get.3 comp-c-man .man +./usr/share/man/man3/cdbr_open.3 comp-c-man .man +./usr/share/man/man3/cdbw.3 comp-c-man .man +./usr/share/man/man3/cdbw_close.3 comp-c-man .man +./usr/share/man/man3/cdbw_open.3 comp-c-man .man +./usr/share/man/man3/cdbw_output.3 comp-c-man .man +./usr/share/man/man3/cdbw_put.3 comp-c-man .man +./usr/share/man/man3/cdbw_put_data.3 comp-c-man .man +./usr/share/man/man3/cdbw_put_key.3 comp-c-man .man +./usr/share/man/man3/cdefs.3 comp-c-man .man +./usr/share/man/man3/cdk.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_alphalist.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_binding.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_buttonbox.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_calendar.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_cdk.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_dialog.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_display.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_entry.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_fselect.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_graph.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_histogram.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_itemlist.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_label.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_marquee.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_matrix.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_mentry.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_menu.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_misc.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_radio.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_scale.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_screen.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_scroll.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_selection.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_slider.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_swindow.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_template.3 comp-obsolete obsolete +./usr/share/man/man3/cdk_viewer.3 comp-obsolete obsolete +./usr/share/man/man3/ceil.3 comp-c-man .man +./usr/share/man/man3/ceilf.3 comp-c-man .man +./usr/share/man/man3/cexp.3 comp-c-man complex,.man +./usr/share/man/man3/cexpf.3 comp-c-man complex,.man +./usr/share/man/man3/cfgetispeed.3 comp-c-man .man +./usr/share/man/man3/cfgetospeed.3 comp-c-man .man +./usr/share/man/man3/cfmakeraw.3 comp-c-man .man +./usr/share/man/man3/cfsetispeed.3 comp-c-man .man +./usr/share/man/man3/cfsetospeed.3 comp-c-man .man +./usr/share/man/man3/cfsetspeed.3 comp-c-man .man +./usr/share/man/man3/cgetcap.3 comp-c-man .man +./usr/share/man/man3/cgetclose.3 comp-c-man .man +./usr/share/man/man3/cgetent.3 comp-c-man .man +./usr/share/man/man3/cgetfirst.3 comp-c-man .man +./usr/share/man/man3/cgetmatch.3 comp-c-man .man +./usr/share/man/man3/cgetnext.3 comp-c-man .man +./usr/share/man/man3/cgetnum.3 comp-c-man .man +./usr/share/man/man3/cgetset.3 comp-c-man .man +./usr/share/man/man3/cgetstr.3 comp-c-man .man +./usr/share/man/man3/cgetustr.3 comp-c-man .man +./usr/share/man/man3/chgat.3 comp-c-man .man +./usr/share/man/man3/cimag.3 comp-c-man complex,.man +./usr/share/man/man3/cimagf.3 comp-c-man complex,.man +./usr/share/man/man3/cimagl.3 comp-c-man complex,.man +./usr/share/man/man3/circleq_empty.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_entry.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_first.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_head.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_head_initializer.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_init.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_insert_after.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_insert_before.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_insert_head.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_insert_tail.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_last.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_next.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_prev.3 comp-obsolete obsolete +./usr/share/man/man3/circleq_remove.3 comp-obsolete obsolete +./usr/share/man/man3/clear.3 comp-c-man .man +./usr/share/man/man3/clearerr.3 comp-c-man .man +./usr/share/man/man3/clearok.3 comp-c-man .man +./usr/share/man/man3/clnt_broadcast.3 comp-c-man .man +./usr/share/man/man3/clnt_call.3 comp-c-man .man +./usr/share/man/man3/clnt_control.3 comp-c-man .man +./usr/share/man/man3/clnt_create.3 comp-c-man .man +./usr/share/man/man3/clnt_create_vers.3 comp-c-man .man +./usr/share/man/man3/clnt_destroy.3 comp-c-man .man +./usr/share/man/man3/clnt_dg_create.3 comp-c-man .man +./usr/share/man/man3/clnt_freeres.3 comp-c-man .man +./usr/share/man/man3/clnt_geterr.3 comp-c-man .man +./usr/share/man/man3/clnt_pcreateerror.3 comp-c-man .man +./usr/share/man/man3/clnt_perrno.3 comp-c-man .man +./usr/share/man/man3/clnt_perror.3 comp-c-man .man +./usr/share/man/man3/clnt_raw_create.3 comp-c-man .man +./usr/share/man/man3/clnt_spcreateerror.3 comp-c-man .man +./usr/share/man/man3/clnt_sperrno.3 comp-c-man .man +./usr/share/man/man3/clnt_sperror.3 comp-c-man .man +./usr/share/man/man3/clnt_tli_create.3 comp-c-man .man +./usr/share/man/man3/clnt_tp_create.3 comp-c-man .man +./usr/share/man/man3/clnt_vc_create.3 comp-c-man .man +./usr/share/man/man3/clntraw_create.3 comp-c-man .man +./usr/share/man/man3/clnttcp_create.3 comp-c-man .man +./usr/share/man/man3/clntudp_bufcreate.3 comp-c-man .man +./usr/share/man/man3/clntudp_create.3 comp-c-man .man +./usr/share/man/man3/clock.3 comp-c-man .man +./usr/share/man/man3/clog.3 comp-c-man complex,.man +./usr/share/man/man3/clogf.3 comp-c-man complex,.man +./usr/share/man/man3/closedir.3 comp-c-man .man +./usr/share/man/man3/closefrom.3 comp-c-man .man +./usr/share/man/man3/closelog.3 comp-c-man .man +./usr/share/man/man3/closelog_r.3 comp-c-man .man +./usr/share/man/man3/clrtobot.3 comp-c-man .man +./usr/share/man/man3/clrtoeol.3 comp-c-man .man +./usr/share/man/man3/cmsg.3 comp-c-man .man +./usr/share/man/man3/color_content.3 comp-c-man .man +./usr/share/man/man3/color_set.3 comp-c-man .man +./usr/share/man/man3/com_err.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/com_err_va.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/confstr.3 comp-c-man .man +./usr/share/man/man3/conj.3 comp-c-man complex,.man +./usr/share/man/man3/conjf.3 comp-c-man complex,.man +./usr/share/man/man3/conjl.3 comp-c-man complex,.man +./usr/share/man/man3/copysign.3 comp-c-man .man +./usr/share/man/man3/copysignf.3 comp-c-man .man +./usr/share/man/man3/copysignl.3 comp-c-man .man +./usr/share/man/man3/copywin.3 comp-c-man .man +./usr/share/man/man3/cos.3 comp-c-man .man +./usr/share/man/man3/cosf.3 comp-c-man .man +./usr/share/man/man3/cosh.3 comp-c-man .man +./usr/share/man/man3/coshf.3 comp-c-man .man +./usr/share/man/man3/cpow.3 comp-c-man complex,.man +./usr/share/man/man3/cpowf.3 comp-c-man complex,.man +./usr/share/man/man3/cproj.3 comp-c-man complex,.man +./usr/share/man/man3/cprojf.3 comp-c-man complex,.man +./usr/share/man/man3/cprojl.3 comp-c-man complex,.man +./usr/share/man/man3/cpuset.3 comp-c-man .man +./usr/share/man/man3/cpuset_clr.3 comp-c-man .man +./usr/share/man/man3/cpuset_create.3 comp-c-man .man +./usr/share/man/man3/cpuset_destroy.3 comp-c-man .man +./usr/share/man/man3/cpuset_isset.3 comp-c-man .man +./usr/share/man/man3/cpuset_set.3 comp-c-man .man +./usr/share/man/man3/cpuset_size.3 comp-c-man .man +./usr/share/man/man3/cpuset_zero.3 comp-c-man .man +./usr/share/man/man3/cpxattr.3 comp-c-man .man +./usr/share/man/man3/creal.3 comp-c-man complex,.man +./usr/share/man/man3/crealf.3 comp-c-man complex,.man +./usr/share/man/man3/creall.3 comp-c-man complex,.man +./usr/share/man/man3/creat.3 comp-c-man .man +./usr/share/man/man3/crypt.3 comp-c-man .man +./usr/share/man/man3/crypto.3 comp-c-man crypto,.man +./usr/share/man/man3/csin.3 comp-c-man complex,.man +./usr/share/man/man3/csinf.3 comp-c-man complex,.man +./usr/share/man/man3/csinh.3 comp-c-man complex,.man +./usr/share/man/man3/csinhf.3 comp-c-man complex,.man +./usr/share/man/man3/csqrt.3 comp-c-man complex,.man +./usr/share/man/man3/csqrtf.3 comp-c-man complex,.man +./usr/share/man/man3/ctan.3 comp-c-man complex,.man +./usr/share/man/man3/ctanf.3 comp-c-man complex,.man +./usr/share/man/man3/ctanh.3 comp-c-man complex,.man +./usr/share/man/man3/ctanhf.3 comp-c-man complex,.man +./usr/share/man/man3/ctermid.3 comp-c-man .man +./usr/share/man/man3/ctime.3 comp-c-man .man +./usr/share/man/man3/ctime_r.3 comp-c-man .man +./usr/share/man/man3/ctime_rz.3 comp-c-man .man +./usr/share/man/man3/ctype.3 comp-c-man .man +./usr/share/man/man3/current_field.3 comp-c-man .man +./usr/share/man/man3/current_item.3 comp-c-man .man +./usr/share/man/man3/curs_set.3 comp-c-man .man +./usr/share/man/man3/curses.3 comp-c-man .man +./usr/share/man/man3/curses_addch.3 comp-c-man .man +./usr/share/man/man3/curses_addchstr.3 comp-c-man .man +./usr/share/man/man3/curses_addstr.3 comp-c-man .man +./usr/share/man/man3/curses_attributes.3 comp-c-man .man +./usr/share/man/man3/curses_background.3 comp-c-man .man +./usr/share/man/man3/curses_border.3 comp-c-man .man +./usr/share/man/man3/curses_chgat.3 comp-c-man .man +./usr/share/man/man3/curses_clear.3 comp-c-man .man +./usr/share/man/man3/curses_color.3 comp-c-man .man +./usr/share/man/man3/curses_cursor.3 comp-c-man .man +./usr/share/man/man3/curses_default_colors.3 comp-c-man .man +./usr/share/man/man3/curses_delch.3 comp-c-man .man +./usr/share/man/man3/curses_deleteln.3 comp-c-man .man +./usr/share/man/man3/curses_echochar.3 comp-c-man .man +./usr/share/man/man3/curses_fileio.3 comp-c-man .man +./usr/share/man/man3/curses_inch.3 comp-c-man .man +./usr/share/man/man3/curses_input.3 comp-c-man .man +./usr/share/man/man3/curses_insdelln.3 comp-c-man .man +./usr/share/man/man3/curses_insertch.3 comp-c-man .man +./usr/share/man/man3/curses_insertln.3 comp-c-man .man +./usr/share/man/man3/curses_keyname.3 comp-c-man .man +./usr/share/man/man3/curses_line.3 comp-c-man .man +./usr/share/man/man3/curses_pad.3 comp-c-man .man +./usr/share/man/man3/curses_print.3 comp-c-man .man +./usr/share/man/man3/curses_refresh.3 comp-c-man .man +./usr/share/man/man3/curses_scanw.3 comp-c-man .man +./usr/share/man/man3/curses_screen.3 comp-c-man .man +./usr/share/man/man3/curses_scroll.3 comp-c-man .man +./usr/share/man/man3/curses_standout.3 comp-c-man .man +./usr/share/man/man3/curses_termcap.3 comp-c-man .man +./usr/share/man/man3/curses_touch.3 comp-c-man .man +./usr/share/man/man3/curses_tty.3 comp-c-man .man +./usr/share/man/man3/curses_underscore.3 comp-c-man .man +./usr/share/man/man3/curses_window.3 comp-c-man .man +./usr/share/man/man3/cuserid.3 comp-c-man .man +./usr/share/man/man3/d2i_ASN1_OBJECT.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_DHparams.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_DSAPublicKey.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_PKCS8PrivateKey.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_RSAPublicKey.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_SSL_SESSION.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_X509.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_X509_ALGOR.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_X509_CRL.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_X509_NAME.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_X509_REQ.3 comp-c-man crypto,.man +./usr/share/man/man3/d2i_X509_SIG.3 comp-c-man crypto,.man +./usr/share/man/man3/daemon.3 comp-c-man .man +./usr/share/man/man3/data_ahead.3 comp-c-man .man +./usr/share/man/man3/data_behind.3 comp-c-man .man +./usr/share/man/man3/daylight.3 comp-c-man .man +./usr/share/man/man3/db.3 comp-c-man .man +./usr/share/man/man3/dbm_clearerr.3 comp-c-man .man +./usr/share/man/man3/dbm_close.3 comp-c-man .man +./usr/share/man/man3/dbm_delete.3 comp-c-man .man +./usr/share/man/man3/dbm_dirfno.3 comp-c-man .man +./usr/share/man/man3/dbm_error.3 comp-c-man .man +./usr/share/man/man3/dbm_fetch.3 comp-c-man .man +./usr/share/man/man3/dbm_firstkey.3 comp-c-man .man +./usr/share/man/man3/dbm_nextkey.3 comp-c-man .man +./usr/share/man/man3/dbm_open.3 comp-c-man .man +./usr/share/man/man3/dbm_store.3 comp-c-man .man +./usr/share/man/man3/dbopen.3 comp-c-man .man +./usr/share/man/man3/dcgettext.3 comp-c-man .man +./usr/share/man/man3/dcngettext.3 comp-c-man .man +./usr/share/man/man3/def_prog_mode.3 comp-c-man .man +./usr/share/man/man3/def_shell_mode.3 comp-c-man .man +./usr/share/man/man3/define_key.3 comp-c-man .man +./usr/share/man/man3/dehumanize_number.3 comp-c-man .man +./usr/share/man/man3/del_curterm.3 comp-c-man .man +./usr/share/man/man3/delay_output.3 comp-c-man .man +./usr/share/man/man3/delch.3 comp-c-man .man +./usr/share/man/man3/deleteln.3 comp-c-man .man +./usr/share/man/man3/delscreen.3 comp-c-man .man +./usr/share/man/man3/delwin.3 comp-c-man .man +./usr/share/man/man3/derwin.3 comp-c-man .man +./usr/share/man/man3/des.3 comp-c-man crypto,.man +./usr/share/man/man3/des_cbc_cksum.3 comp-c-man crypto,.man +./usr/share/man/man3/des_cfb64_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_cfb_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_crypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ecb2_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ecb3_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ecb_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ede2_cbc_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ede2_cfb64_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ede2_ofb64_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ede3_cbc_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ede3_cbcm_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ede3_cfb64_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ede3_ofb64_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_enc_read.3 comp-c-man crypto,.man +./usr/share/man/man3/des_enc_write.3 comp-c-man crypto,.man +./usr/share/man/man3/des_fcrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_is_weak_key.3 comp-c-man crypto,.man +./usr/share/man/man3/des_key_sched.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ncbc_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ofb64_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_ofb_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_pcbc_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/des_quad_cksum.3 comp-c-man crypto,.man +./usr/share/man/man3/des_random_key.3 comp-c-man crypto,.man +./usr/share/man/man3/des_read_2passwords.3 comp-c-man crypto,.man +./usr/share/man/man3/des_read_password.3 comp-c-man crypto,.man +./usr/share/man/man3/des_read_pw_string.3 comp-c-man crypto,.man +./usr/share/man/man3/des_set_key.3 comp-c-man crypto,.man +./usr/share/man/man3/des_set_key_checked.3 comp-c-man crypto,.man +./usr/share/man/man3/des_set_key_unchecked.3 comp-c-man crypto,.man +./usr/share/man/man3/des_set_odd_parity.3 comp-c-man crypto,.man +./usr/share/man/man3/des_string_to_2keys.3 comp-c-man crypto,.man +./usr/share/man/man3/des_string_to_key.3 comp-c-man crypto,.man +./usr/share/man/man3/des_xcbc_encrypt.3 comp-c-man crypto,.man +./usr/share/man/man3/devname.3 comp-c-man .man +./usr/share/man/man3/dgettext.3 comp-c-man .man +./usr/share/man/man3/dh.3 comp-obsolete obsolete +./usr/share/man/man3/difftime.3 comp-c-man .man +./usr/share/man/man3/dir.3 comp-c-man .man +./usr/share/man/man3/directory.3 comp-c-man .man +./usr/share/man/man3/dirent.3 comp-c-man .man +./usr/share/man/man3/dirfd.3 comp-c-man .man +./usr/share/man/man3/dirname.3 comp-c-man .man +./usr/share/man/man3/disklabel_dkcksum.3 comp-c-man .man +./usr/share/man/man3/disklabel_scan.3 comp-c-man .man +./usr/share/man/man3/div.3 comp-c-man .man +./usr/share/man/man3/dl_iterate_phdr.3 comp-c-man .man +./usr/share/man/man3/dladdr.3 comp-c-man .man +./usr/share/man/man3/dlclose.3 comp-c-man .man +./usr/share/man/man3/dlctl.3 comp-c-man .man +./usr/share/man/man3/dlerror.3 comp-c-man .man +./usr/share/man/man3/dlfcn.3 comp-c-man .man +./usr/share/man/man3/dlopen.3 comp-c-man .man +./usr/share/man/man3/dlsym.3 comp-c-man .man +./usr/share/man/man3/dlvsym.3 comp-c-man .man +./usr/share/man/man3/dm.3 comp-c-man .man +./usr/share/man/man3/dn_comp.3 comp-c-man .man +./usr/share/man/man3/dn_expand.3 comp-c-man .man +./usr/share/man/man3/dngettext.3 comp-c-man .man +./usr/share/man/man3/doupdate.3 comp-c-man .man +./usr/share/man/man3/dprintf.3 comp-c-man .man +./usr/share/man/man3/drand48.3 comp-c-man .man +./usr/share/man/man3/dsa.3 comp-obsolete obsolete +./usr/share/man/man3/dup_field.3 comp-c-man .man +./usr/share/man/man3/dupwin.3 comp-c-man .man +./usr/share/man/man3/dynamic_field_info.3 comp-c-man .man +./usr/share/man/man3/easprintf.3 comp-c-man .man +./usr/share/man/man3/ecalloc.3 comp-c-man .man +./usr/share/man/man3/echo.3 comp-c-man .man +./usr/share/man/man3/echochar.3 comp-c-man .man +./usr/share/man/man3/edata.3 comp-c-man .man +./usr/share/man/man3/editline.3 comp-c-man .man +./usr/share/man/man3/efopen.3 comp-c-man .man +./usr/share/man/man3/efun.3 comp-c-man .man +./usr/share/man/man3/el_deletestr.3 comp-c-man .man +./usr/share/man/man3/el_end.3 comp-c-man .man +./usr/share/man/man3/el_get.3 comp-c-man .man +./usr/share/man/man3/el_getc.3 comp-c-man .man +./usr/share/man/man3/el_gets.3 comp-c-man .man +./usr/share/man/man3/el_init.3 comp-c-man .man +./usr/share/man/man3/el_insertstr.3 comp-c-man .man +./usr/share/man/man3/el_line.3 comp-c-man .man +./usr/share/man/man3/el_parse.3 comp-c-man .man +./usr/share/man/man3/el_push.3 comp-c-man .man +./usr/share/man/man3/el_reset.3 comp-c-man .man +./usr/share/man/man3/el_resize.3 comp-c-man .man +./usr/share/man/man3/el_set.3 comp-c-man .man +./usr/share/man/man3/el_source.3 comp-c-man .man +./usr/share/man/man3/elf.3 comp-c-man .man +./usr/share/man/man3/elf32_checksum.3 comp-c-man .man +./usr/share/man/man3/elf32_fsize.3 comp-c-man .man +./usr/share/man/man3/elf32_getehdr.3 comp-c-man .man +./usr/share/man/man3/elf32_getphdr.3 comp-c-man .man +./usr/share/man/man3/elf32_getshdr.3 comp-c-man .man +./usr/share/man/man3/elf32_newehdr.3 comp-c-man .man +./usr/share/man/man3/elf32_newphdr.3 comp-c-man .man +./usr/share/man/man3/elf32_xlatetof.3 comp-c-man .man +./usr/share/man/man3/elf32_xlatetom.3 comp-c-man .man +./usr/share/man/man3/elf64_checksum.3 comp-c-man .man +./usr/share/man/man3/elf64_fsize.3 comp-c-man .man +./usr/share/man/man3/elf64_getehdr.3 comp-c-man .man +./usr/share/man/man3/elf64_getphdr.3 comp-c-man .man +./usr/share/man/man3/elf64_getshdr.3 comp-c-man .man +./usr/share/man/man3/elf64_newehdr.3 comp-c-man .man +./usr/share/man/man3/elf64_newphdr.3 comp-c-man .man +./usr/share/man/man3/elf64_xlatetof.3 comp-c-man .man +./usr/share/man/man3/elf64_xlatetom.3 comp-c-man .man +./usr/share/man/man3/elf_begin.3 comp-c-man .man +./usr/share/man/man3/elf_cntl.3 comp-c-man .man +./usr/share/man/man3/elf_end.3 comp-c-man .man +./usr/share/man/man3/elf_errmsg.3 comp-c-man .man +./usr/share/man/man3/elf_errno.3 comp-c-man .man +./usr/share/man/man3/elf_fill.3 comp-c-man .man +./usr/share/man/man3/elf_flagdata.3 comp-c-man .man +./usr/share/man/man3/elf_flagehdr.3 comp-c-man .man +./usr/share/man/man3/elf_flagelf.3 comp-c-man .man +./usr/share/man/man3/elf_flagphdr.3 comp-c-man .man +./usr/share/man/man3/elf_flagscn.3 comp-c-man .man +./usr/share/man/man3/elf_flagshdr.3 comp-c-man .man +./usr/share/man/man3/elf_getarhdr.3 comp-c-man .man +./usr/share/man/man3/elf_getarsym.3 comp-c-man .man +./usr/share/man/man3/elf_getbase.3 comp-c-man .man +./usr/share/man/man3/elf_getdata.3 comp-c-man .man +./usr/share/man/man3/elf_getident.3 comp-c-man .man +./usr/share/man/man3/elf_getphnum.3 comp-c-man .man +./usr/share/man/man3/elf_getscn.3 comp-c-man .man +./usr/share/man/man3/elf_getshnum.3 comp-c-man .man +./usr/share/man/man3/elf_getshstrndx.3 comp-c-man .man +./usr/share/man/man3/elf_hash.3 comp-c-man .man +./usr/share/man/man3/elf_kind.3 comp-c-man .man +./usr/share/man/man3/elf_memory.3 comp-c-man .man +./usr/share/man/man3/elf_ndxscn.3 comp-c-man .man +./usr/share/man/man3/elf_newdata.3 comp-c-man .man +./usr/share/man/man3/elf_newscn.3 comp-c-man .man +./usr/share/man/man3/elf_next.3 comp-c-man .man +./usr/share/man/man3/elf_nextscn.3 comp-c-man .man +./usr/share/man/man3/elf_rand.3 comp-c-man .man +./usr/share/man/man3/elf_rawdata.3 comp-c-man .man +./usr/share/man/man3/elf_rawfile.3 comp-c-man .man +./usr/share/man/man3/elf_setshstrndx.3 comp-c-man .man +./usr/share/man/man3/elf_strptr.3 comp-c-man .man +./usr/share/man/man3/elf_update.3 comp-c-man .man +./usr/share/man/man3/elf_version.3 comp-c-man .man +./usr/share/man/man3/emalloc.3 comp-c-man .man +./usr/share/man/man3/encrypt.3 comp-c-man .man +./usr/share/man/man3/end.3 comp-c-man .man +./usr/share/man/man3/endfsent.3 comp-c-man .man +./usr/share/man/man3/endgrent.3 comp-c-man .man +./usr/share/man/man3/endhostent.3 comp-c-man .man +./usr/share/man/man3/endnetconfig.3 comp-c-man .man +./usr/share/man/man3/endnetent.3 comp-c-man .man +./usr/share/man/man3/endnetgrent.3 comp-c-man .man +./usr/share/man/man3/endnetpath.3 comp-c-man .man +./usr/share/man/man3/endprotoent.3 comp-c-man .man +./usr/share/man/man3/endpwent.3 comp-c-man .man +./usr/share/man/man3/endrpcent.3 comp-c-man .man +./usr/share/man/man3/endservent.3 comp-c-man .man +./usr/share/man/man3/endttyent.3 comp-c-man .man +./usr/share/man/man3/endusershell.3 comp-c-man .man +./usr/share/man/man3/endutxent.3 comp-c-man .man +./usr/share/man/man3/endwin.3 comp-c-man .man +./usr/share/man/man3/erand48.3 comp-c-man .man +./usr/share/man/man3/erase.3 comp-c-man .man +./usr/share/man/man3/erasechar.3 comp-c-man .man +./usr/share/man/man3/erealloc.3 comp-c-man .man +./usr/share/man/man3/erf.3 comp-c-man .man +./usr/share/man/man3/erfc.3 comp-c-man .man +./usr/share/man/man3/erfcf.3 comp-c-man .man +./usr/share/man/man3/erff.3 comp-c-man .man +./usr/share/man/man3/err.3 comp-c-man .man +./usr/share/man/man3/error_message.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/error_table_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/errx.3 comp-c-man .man +./usr/share/man/man3/esetfunc.3 comp-c-man .man +./usr/share/man/man3/estrdup.3 comp-c-man .man +./usr/share/man/man3/estrlcat.3 comp-c-man .man +./usr/share/man/man3/estrlcpy.3 comp-c-man .man +./usr/share/man/man3/estrndup.3 comp-c-man .man +./usr/share/man/man3/etext.3 comp-c-man .man +./usr/share/man/man3/ether_aton.3 comp-c-man .man +./usr/share/man/man3/ether_hostton.3 comp-c-man .man +./usr/share/man/man3/ether_line.3 comp-c-man .man +./usr/share/man/man3/ether_ntoa.3 comp-c-man .man +./usr/share/man/man3/ether_ntohost.3 comp-c-man .man +./usr/share/man/man3/ethers.3 comp-c-man .man +./usr/share/man/man3/evasprintf.3 comp-c-man .man +./usr/share/man/man3/evbuffer_add.3 comp-c-man .man +./usr/share/man/man3/evbuffer_add_buffer.3 comp-c-man .man +./usr/share/man/man3/evbuffer_add_printf.3 comp-c-man .man +./usr/share/man/man3/evbuffer_add_vprintf.3 comp-c-man .man +./usr/share/man/man3/evbuffer_drain.3 comp-c-man .man +./usr/share/man/man3/evbuffer_find.3 comp-c-man .man +./usr/share/man/man3/evbuffer_free.3 comp-c-man .man +./usr/share/man/man3/evbuffer_new.3 comp-c-man .man +./usr/share/man/man3/evbuffer_read.3 comp-c-man .man +./usr/share/man/man3/evbuffer_readline.3 comp-c-man .man +./usr/share/man/man3/evbuffer_write.3 comp-c-man .man +./usr/share/man/man3/evdns.3 comp-c-man .man +./usr/share/man/man3/evdns_clear_nameservers_and_suspend.3 comp-c-man .man +./usr/share/man/man3/evdns_count_nameservers.3 comp-c-man .man +./usr/share/man/man3/evdns_err_to_string.3 comp-c-man .man +./usr/share/man/man3/evdns_init.3 comp-c-man .man +./usr/share/man/man3/evdns_nameserver_add.3 comp-c-man .man +./usr/share/man/man3/evdns_nameserver_ip_add.3 comp-c-man .man +./usr/share/man/man3/evdns_resolv_conf_parse.3 comp-c-man .man +./usr/share/man/man3/evdns_resolve_ipv4.3 comp-c-man .man +./usr/share/man/man3/evdns_resolve_reverse.3 comp-c-man .man +./usr/share/man/man3/evdns_resume.3 comp-c-man .man +./usr/share/man/man3/evdns_search_add.3 comp-c-man .man +./usr/share/man/man3/evdns_search_clear.3 comp-c-man .man +./usr/share/man/man3/evdns_search_ndots_set.3 comp-c-man .man +./usr/share/man/man3/evdns_set_log_fn.3 comp-c-man .man +./usr/share/man/man3/evdns_shutdown.3 comp-c-man .man +./usr/share/man/man3/event.3 comp-c-man .man +./usr/share/man/man3/event_add.3 comp-c-man .man +./usr/share/man/man3/event_base_dispatch.3 comp-c-man .man +./usr/share/man/man3/event_base_free.3 comp-c-man .man +./usr/share/man/man3/event_base_loop.3 comp-c-man .man +./usr/share/man/man3/event_base_loopbreak.3 comp-c-man .man +./usr/share/man/man3/event_base_loopexit.3 comp-c-man .man +./usr/share/man/man3/event_base_once.3 comp-c-man .man +./usr/share/man/man3/event_base_set.3 comp-c-man .man +./usr/share/man/man3/event_del.3 comp-c-man .man +./usr/share/man/man3/event_dispatch.3 comp-c-man .man +./usr/share/man/man3/event_init.3 comp-c-man .man +./usr/share/man/man3/event_initialized.3 comp-c-man .man +./usr/share/man/man3/event_loop.3 comp-c-man .man +./usr/share/man/man3/event_loopbreak.3 comp-c-man .man +./usr/share/man/man3/event_loopexit.3 comp-c-man .man +./usr/share/man/man3/event_once.3 comp-c-man .man +./usr/share/man/man3/event_pending.3 comp-c-man .man +./usr/share/man/man3/event_set.3 comp-c-man .man +./usr/share/man/man3/evhttp_bind_socket.3 comp-c-man .man +./usr/share/man/man3/evhttp_free.3 comp-c-man .man +./usr/share/man/man3/evhttp_new.3 comp-c-man .man +./usr/share/man/man3/evtimer_add.3 comp-c-man .man +./usr/share/man/man3/evtimer_del.3 comp-c-man .man +./usr/share/man/man3/evtimer_initialized.3 comp-c-man .man +./usr/share/man/man3/evtimer_pending.3 comp-c-man .man +./usr/share/man/man3/evtimer_set.3 comp-c-man .man +./usr/share/man/man3/exec.3 comp-c-man .man +./usr/share/man/man3/execl.3 comp-c-man .man +./usr/share/man/man3/execle.3 comp-c-man .man +./usr/share/man/man3/execlp.3 comp-c-man .man +./usr/share/man/man3/exect.3 comp-c-man .man +./usr/share/man/man3/execv.3 comp-c-man .man +./usr/share/man/man3/execvp.3 comp-c-man .man +./usr/share/man/man3/exit.3 comp-c-man .man +./usr/share/man/man3/exp.3 comp-c-man .man +./usr/share/man/man3/exp2.3 comp-c-man .man +./usr/share/man/man3/exp2f.3 comp-c-man .man +./usr/share/man/man3/expf.3 comp-c-man .man +./usr/share/man/man3/expm1.3 comp-c-man .man +./usr/share/man/man3/expm1f.3 comp-c-man .man +./usr/share/man/man3/extattr.3 comp-obsolete obsolete +./usr/share/man/man3/extattr_copy_fd.3 comp-c-man .man +./usr/share/man/man3/extattr_copy_file.3 comp-c-man .man +./usr/share/man/man3/extattr_copy_link.3 comp-c-man .man +./usr/share/man/man3/extattr_namespace_to_string.3 comp-c-man .man +./usr/share/man/man3/extattr_string_to_namespace.3 comp-c-man .man +./usr/share/man/man3/fabs.3 comp-c-man .man +./usr/share/man/man3/fabsf.3 comp-c-man .man +./usr/share/man/man3/fast_divide32.3 comp-c-man .man +./usr/share/man/man3/fast_divide32_prepare.3 comp-c-man .man +./usr/share/man/man3/fast_remainder32.3 comp-c-man .man +./usr/share/man/man3/fclose.3 comp-c-man .man +./usr/share/man/man3/fcpxattr.3 comp-c-man .man +./usr/share/man/man3/fdim.3 comp-c-man .man +./usr/share/man/man3/fdimf.3 comp-c-man .man +./usr/share/man/man3/fdiml.3 comp-c-man .man +./usr/share/man/man3/fdopen.3 comp-c-man .man +./usr/share/man/man3/fdopendir.3 comp-c-man .man +./usr/share/man/man3/feclearexcept.3 comp-c-man .man +./usr/share/man/man3/fedisableexcept.3 comp-c-man .man +./usr/share/man/man3/feenableexcept.3 comp-c-man .man +./usr/share/man/man3/fegetenv.3 comp-c-man .man +./usr/share/man/man3/fegetexcept.3 comp-c-man .man +./usr/share/man/man3/fegetexceptflag.3 comp-c-man .man +./usr/share/man/man3/fegetround.3 comp-c-man .man +./usr/share/man/man3/feholdexcept.3 comp-c-man .man +./usr/share/man/man3/fenv.3 comp-c-man .man +./usr/share/man/man3/feof.3 comp-c-man .man +./usr/share/man/man3/feraiseexcept.3 comp-c-man .man +./usr/share/man/man3/ferror.3 comp-c-man .man +./usr/share/man/man3/feseteexcpetflag.3 comp-obsolete obsolete +./usr/share/man/man3/fesetenv.3 comp-c-man .man +./usr/share/man/man3/fesetexceptflag.3 comp-c-man .man +./usr/share/man/man3/fesetround.3 comp-c-man .man +./usr/share/man/man3/fetch.3 comp-c-man .man +./usr/share/man/man3/fetestexcept.3 comp-c-man .man +./usr/share/man/man3/feupdateenv.3 comp-c-man .man +./usr/share/man/man3/fflush.3 comp-c-man .man +./usr/share/man/man3/ffs.3 comp-c-man .man +./usr/share/man/man3/ffs32.3 comp-c-man .man +./usr/share/man/man3/ffs64.3 comp-c-man .man +./usr/share/man/man3/fgetc.3 comp-c-man .man +./usr/share/man/man3/fgetln.3 comp-c-man .man +./usr/share/man/man3/fgetpos.3 comp-c-man .man +./usr/share/man/man3/fgets.3 comp-c-man .man +./usr/share/man/man3/fgetstr.3 comp-obsolete obsolete +./usr/share/man/man3/fgetwc.3 comp-c-man .man +./usr/share/man/man3/fgetwln.3 comp-c-man .man +./usr/share/man/man3/fgetws.3 comp-c-man .man +./usr/share/man/man3/field_arg.3 comp-c-man .man +./usr/share/man/man3/field_back.3 comp-c-man .man +./usr/share/man/man3/field_buffer.3 comp-c-man .man +./usr/share/man/man3/field_count.3 comp-c-man .man +./usr/share/man/man3/field_fore.3 comp-c-man .man +./usr/share/man/man3/field_index.3 comp-c-man .man +./usr/share/man/man3/field_info.3 comp-c-man .man +./usr/share/man/man3/field_init.3 comp-c-man .man +./usr/share/man/man3/field_just.3 comp-c-man .man +./usr/share/man/man3/field_opts.3 comp-c-man .man +./usr/share/man/man3/field_opts_off.3 comp-c-man .man +./usr/share/man/man3/field_opts_on.3 comp-c-man .man +./usr/share/man/man3/field_pad.3 comp-c-man .man +./usr/share/man/man3/field_status.3 comp-c-man .man +./usr/share/man/man3/field_term.3 comp-c-man .man +./usr/share/man/man3/field_type.3 comp-c-man .man +./usr/share/man/man3/field_userptr.3 comp-c-man .man +./usr/share/man/man3/fileno.3 comp-c-man .man +./usr/share/man/man3/finite.3 comp-c-man .man +./usr/share/man/man3/finitef.3 comp-c-man .man +./usr/share/man/man3/flags_to_string.3 comp-c-man .man +./usr/share/man/man3/flash.3 comp-c-man .man +./usr/share/man/man3/flockfile.3 comp-c-man .man +./usr/share/man/man3/floor.3 comp-c-man .man +./usr/share/man/man3/floorf.3 comp-c-man .man +./usr/share/man/man3/fls32.3 comp-c-man .man +./usr/share/man/man3/fls64.3 comp-c-man .man +./usr/share/man/man3/flushinp.3 comp-c-man .man +./usr/share/man/man3/flushok.3 comp-c-man .man +./usr/share/man/man3/fmax.3 comp-c-man .man +./usr/share/man/man3/fmaxf.3 comp-c-man .man +./usr/share/man/man3/fmaxl.3 comp-c-man .man +./usr/share/man/man3/fmemopen.3 comp-c-man .man +./usr/share/man/man3/fmin.3 comp-c-man .man +./usr/share/man/man3/fminf.3 comp-c-man .man +./usr/share/man/man3/fminl.3 comp-c-man .man +./usr/share/man/man3/fmod.3 comp-c-man .man +./usr/share/man/man3/fmodf.3 comp-c-man .man +./usr/share/man/man3/fmtcheck.3 comp-c-man .man +./usr/share/man/man3/fmtmsg.3 comp-c-man .man +./usr/share/man/man3/fnmatch.3 comp-c-man .man +./usr/share/man/man3/fopen.3 comp-c-man .man +./usr/share/man/man3/forkpty.3 comp-c-man .man +./usr/share/man/man3/form.3 comp-c-man .man +./usr/share/man/man3/form_cursor.3 comp-c-man .man +./usr/share/man/man3/form_data.3 comp-c-man .man +./usr/share/man/man3/form_driver.3 comp-c-man .man +./usr/share/man/man3/form_field.3 comp-c-man .man +./usr/share/man/man3/form_field_attributes.3 comp-c-man .man +./usr/share/man/man3/form_field_buffer.3 comp-c-man .man +./usr/share/man/man3/form_field_info.3 comp-c-man .man +./usr/share/man/man3/form_field_just.3 comp-c-man .man +./usr/share/man/man3/form_field_new.3 comp-c-man .man +./usr/share/man/man3/form_field_opts.3 comp-c-man .man +./usr/share/man/man3/form_field_userptr.3 comp-c-man .man +./usr/share/man/man3/form_field_validation.3 comp-c-man .man +./usr/share/man/man3/form_fields.3 comp-c-man .man +./usr/share/man/man3/form_fieldtype.3 comp-c-man .man +./usr/share/man/man3/form_hook.3 comp-c-man .man +./usr/share/man/man3/form_init.3 comp-c-man .man +./usr/share/man/man3/form_max_page.3 comp-c-man .man +./usr/share/man/man3/form_new.3 comp-c-man .man +./usr/share/man/man3/form_new_page.3 comp-c-man .man +./usr/share/man/man3/form_opts.3 comp-c-man .man +./usr/share/man/man3/form_opts_off.3 comp-c-man .man +./usr/share/man/man3/form_opts_on.3 comp-c-man .man +./usr/share/man/man3/form_page.3 comp-c-man .man +./usr/share/man/man3/form_post.3 comp-c-man .man +./usr/share/man/man3/form_sub.3 comp-c-man .man +./usr/share/man/man3/form_term.3 comp-c-man .man +./usr/share/man/man3/form_userptr.3 comp-c-man .man +./usr/share/man/man3/form_win.3 comp-c-man .man +./usr/share/man/man3/forms.3 comp-c-man .man +./usr/share/man/man3/fp_nquery.3 comp-c-man .man +./usr/share/man/man3/fp_resstat.3 comp-c-man .man +./usr/share/man/man3/fparseln.3 comp-c-man .man +./usr/share/man/man3/fpclassify.3 comp-c-man .man +./usr/share/man/man3/fpgetmask.3 comp-c-man .man +./usr/share/man/man3/fpgetprec.3 comp-c-man .man +./usr/share/man/man3/fpgetround.3 comp-c-man .man +./usr/share/man/man3/fpgetsticky.3 comp-c-man .man +./usr/share/man/man3/fprintf.3 comp-c-man .man +./usr/share/man/man3/fpsetmask.3 comp-c-man .man +./usr/share/man/man3/fpsetprec.3 comp-c-man .man +./usr/share/man/man3/fpsetround.3 comp-c-man .man +./usr/share/man/man3/fpsetsticky.3 comp-c-man .man +./usr/share/man/man3/fpurge.3 comp-c-man .man +./usr/share/man/man3/fputc.3 comp-c-man .man +./usr/share/man/man3/fputs.3 comp-c-man .man +./usr/share/man/man3/fputwc.3 comp-c-man .man +./usr/share/man/man3/fputws.3 comp-c-man .man +./usr/share/man/man3/fread.3 comp-c-man .man +./usr/share/man/man3/free.3 comp-c-man .man +./usr/share/man/man3/free_field.3 comp-c-man .man +./usr/share/man/man3/free_fieldtype.3 comp-c-man .man +./usr/share/man/man3/free_form.3 comp-c-man .man +./usr/share/man/man3/free_item.3 comp-c-man .man +./usr/share/man/man3/free_menu.3 comp-c-man .man +./usr/share/man/man3/freeaddrinfo.3 comp-c-man .man +./usr/share/man/man3/freeifaddrs.3 comp-c-man .man +./usr/share/man/man3/freopen.3 comp-c-man .man +./usr/share/man/man3/frexp.3 comp-c-man .man +./usr/share/man/man3/fropen.3 comp-c-man .man +./usr/share/man/man3/fropen2.3 comp-c-man .man +./usr/share/man/man3/fscanf.3 comp-c-man .man +./usr/share/man/man3/fseek.3 comp-c-man .man +./usr/share/man/man3/fseeko.3 comp-c-man .man +./usr/share/man/man3/fsetpos.3 comp-c-man .man +./usr/share/man/man3/ftell.3 comp-c-man .man +./usr/share/man/man3/ftello.3 comp-c-man .man +./usr/share/man/man3/ftime.3 comp-c-man .man +./usr/share/man/man3/ftok.3 comp-c-man .man +./usr/share/man/man3/ftrylockfile.3 comp-c-man .man +./usr/share/man/man3/fts.3 comp-c-man .man +./usr/share/man/man3/fts_children.3 comp-c-man .man +./usr/share/man/man3/fts_close.3 comp-c-man .man +./usr/share/man/man3/fts_open.3 comp-c-man .man +./usr/share/man/man3/fts_read.3 comp-c-man .man +./usr/share/man/man3/fts_set.3 comp-c-man .man +./usr/share/man/man3/ftw.3 comp-c-man .man +./usr/share/man/man3/fullname.3 comp-c-man .man +./usr/share/man/man3/funlockfile.3 comp-c-man .man +./usr/share/man/man3/funopen.3 comp-c-man .man +./usr/share/man/man3/funopen2.3 comp-c-man .man +./usr/share/man/man3/fwide.3 comp-c-man .man +./usr/share/man/man3/fwopen.3 comp-c-man .man +./usr/share/man/man3/fwopen2.3 comp-c-man .man +./usr/share/man/man3/fwprintf.3 comp-c-man .man +./usr/share/man/man3/fwrite.3 comp-c-man .man +./usr/share/man/man3/fwscanf.3 comp-c-man .man +./usr/share/man/man3/gai_strerror.3 comp-c-man .man +./usr/share/man/man3/gamma.3 comp-c-man .man +./usr/share/man/man3/gamma_r.3 comp-c-man .man +./usr/share/man/man3/gammaf.3 comp-c-man .man +./usr/share/man/man3/gammaf_r.3 comp-c-man .man +./usr/share/man/man3/gcq.3 comp-c-man .man +./usr/share/man/man3/gcq_clear.3 comp-c-man .man +./usr/share/man/man3/gcq_empty.3 comp-c-man .man +./usr/share/man/man3/gcq_head.3 comp-c-man .man +./usr/share/man/man3/gcq_hq.3 comp-c-man .man +./usr/share/man/man3/gcq_init.3 comp-c-man .man +./usr/share/man/man3/gcq_init_head.3 comp-c-man .man +./usr/share/man/man3/gcq_insert_after.3 comp-c-man .man +./usr/share/man/man3/gcq_insert_before.3 comp-c-man .man +./usr/share/man/man3/gcq_insert_head.3 comp-c-man .man +./usr/share/man/man3/gcq_insert_tail.3 comp-c-man .man +./usr/share/man/man3/gcq_linked.3 comp-c-man .man +./usr/share/man/man3/gcq_merge.3 comp-c-man .man +./usr/share/man/man3/gcq_merge_head.3 comp-c-man .man +./usr/share/man/man3/gcq_merge_tail.3 comp-c-man .man +./usr/share/man/man3/gcq_onlist.3 comp-c-man .man +./usr/share/man/man3/gcq_q.3 comp-c-man .man +./usr/share/man/man3/gcq_remove.3 comp-c-man .man +./usr/share/man/man3/gcq_remove_all.3 comp-c-man .man +./usr/share/man/man3/gcq_tie.3 comp-c-man .man +./usr/share/man/man3/gcq_tie_after.3 comp-c-man .man +./usr/share/man/man3/gcq_tie_before.3 comp-c-man .man +./usr/share/man/man3/gelf.3 comp-c-man .man +./usr/share/man/man3/gelf_checksum.3 comp-c-man .man +./usr/share/man/man3/gelf_fsize.3 comp-c-man .man +./usr/share/man/man3/gelf_getcap.3 comp-c-man .man +./usr/share/man/man3/gelf_getclass.3 comp-c-man .man +./usr/share/man/man3/gelf_getdyn.3 comp-c-man .man +./usr/share/man/man3/gelf_getehdr.3 comp-c-man .man +./usr/share/man/man3/gelf_getmove.3 comp-c-man .man +./usr/share/man/man3/gelf_getphdr.3 comp-c-man .man +./usr/share/man/man3/gelf_getrel.3 comp-c-man .man +./usr/share/man/man3/gelf_getrela.3 comp-c-man .man +./usr/share/man/man3/gelf_getshdr.3 comp-c-man .man +./usr/share/man/man3/gelf_getsym.3 comp-c-man .man +./usr/share/man/man3/gelf_getsyminfo.3 comp-c-man .man +./usr/share/man/man3/gelf_getsymshndx.3 comp-c-man .man +./usr/share/man/man3/gelf_newehdr.3 comp-c-man .man +./usr/share/man/man3/gelf_newphdr.3 comp-c-man .man +./usr/share/man/man3/gelf_update_cap.3 comp-c-man .man +./usr/share/man/man3/gelf_update_dyn.3 comp-c-man .man +./usr/share/man/man3/gelf_update_ehdr.3 comp-c-man .man +./usr/share/man/man3/gelf_update_move.3 comp-c-man .man +./usr/share/man/man3/gelf_update_phdr.3 comp-c-man .man +./usr/share/man/man3/gelf_update_rel.3 comp-c-man .man +./usr/share/man/man3/gelf_update_rela.3 comp-c-man .man +./usr/share/man/man3/gelf_update_shdr.3 comp-c-man .man +./usr/share/man/man3/gelf_update_sym.3 comp-c-man .man +./usr/share/man/man3/gelf_update_syminfo.3 comp-c-man .man +./usr/share/man/man3/gelf_update_symshndx.3 comp-c-man .man +./usr/share/man/man3/gelf_xlatetof.3 comp-c-man .man +./usr/share/man/man3/gelf_xlatetom.3 comp-c-man .man +./usr/share/man/man3/get_myaddress.3 comp-c-man .man +./usr/share/man/man3/getaddrinfo.3 comp-c-man .man +./usr/share/man/man3/getattrs.3 comp-c-man .man +./usr/share/man/man3/getbegx.3 comp-c-man .man +./usr/share/man/man3/getbegy.3 comp-c-man .man +./usr/share/man/man3/getbkgd.3 comp-c-man .man +./usr/share/man/man3/getbootfile.3 comp-c-man .man +./usr/share/man/man3/getbsize.3 comp-c-man .man +./usr/share/man/man3/getc.3 comp-c-man .man +./usr/share/man/man3/getc_unlocked.3 comp-c-man .man +./usr/share/man/man3/getcap.3 comp-obsolete obsolete +./usr/share/man/man3/getch.3 comp-c-man .man +./usr/share/man/man3/getchar.3 comp-c-man .man +./usr/share/man/man3/getchar_unlocked.3 comp-c-man .man +./usr/share/man/man3/getcurx.3 comp-c-man .man +./usr/share/man/man3/getcury.3 comp-c-man .man +./usr/share/man/man3/getcwd.3 comp-c-man .man +./usr/share/man/man3/getdate.3 comp-c-man .man +./usr/share/man/man3/getdate_err.3 comp-c-man .man +./usr/share/man/man3/getdelim.3 comp-c-man .man +./usr/share/man/man3/getdevmajor.3 comp-c-man .man +./usr/share/man/man3/getdirentries.3 comp-c-man .man +./usr/share/man/man3/getdiskbyname.3 comp-c-man .man +./usr/share/man/man3/getdiskcookedname.3 comp-c-man .man +./usr/share/man/man3/getdiskrawname.3 comp-c-man .man +./usr/share/man/man3/getdomainname.3 comp-c-man .man +./usr/share/man/man3/getdtablesize.3 comp-c-man .man +./usr/share/man/man3/getenv.3 comp-c-man .man +./usr/share/man/man3/getenv_r.3 comp-c-man .man +./usr/share/man/man3/getfsent.3 comp-c-man .man +./usr/share/man/man3/getfsfile.3 comp-c-man .man +./usr/share/man/man3/getfsspec.3 comp-c-man .man +./usr/share/man/man3/getfsspecname.3 comp-c-man .man +./usr/share/man/man3/getfstype.3 comp-obsolete obsolete +./usr/share/man/man3/getfstypename.3 comp-c-man .man +./usr/share/man/man3/getgrent.3 comp-c-man .man +./usr/share/man/man3/getgrent_r.3 comp-c-man .man +./usr/share/man/man3/getgrgid.3 comp-c-man .man +./usr/share/man/man3/getgrgid_r.3 comp-c-man .man +./usr/share/man/man3/getgrnam.3 comp-c-man .man +./usr/share/man/man3/getgrnam_r.3 comp-c-man .man +./usr/share/man/man3/getgrouplist.3 comp-c-man .man +./usr/share/man/man3/getgroupmembership.3 comp-c-man .man +./usr/share/man/man3/gethostbyaddr.3 comp-c-man .man +./usr/share/man/man3/gethostbyname.3 comp-c-man .man +./usr/share/man/man3/gethostbyname2.3 comp-c-man .man +./usr/share/man/man3/gethostent.3 comp-c-man .man +./usr/share/man/man3/gethostid.3 comp-c-man .man +./usr/share/man/man3/gethostname.3 comp-c-man .man +./usr/share/man/man3/getifaddrs.3 comp-c-man .man +./usr/share/man/man3/getlabeloffset.3 comp-c-man .man +./usr/share/man/man3/getlabelsector.3 comp-c-man .man +./usr/share/man/man3/getlabelusesmbr.3 comp-c-man .man +./usr/share/man/man3/getlastlogx.3 comp-c-man .man +./usr/share/man/man3/getline.3 comp-c-man .man +./usr/share/man/man3/getloadavg.3 comp-c-man .man +./usr/share/man/man3/getmaxpartitions.3 comp-c-man .man +./usr/share/man/man3/getmaxx.3 comp-c-man .man +./usr/share/man/man3/getmaxy.3 comp-c-man .man +./usr/share/man/man3/getmaxyx.3 comp-c-man .man +./usr/share/man/man3/getmntinfo.3 comp-c-man .man +./usr/share/man/man3/getmntopts.3 comp-c-man .man +./usr/share/man/man3/getmode.3 comp-c-man .man +./usr/share/man/man3/getnameinfo.3 comp-c-man .man +./usr/share/man/man3/getnetbyaddr.3 comp-c-man .man +./usr/share/man/man3/getnetbyname.3 comp-c-man .man +./usr/share/man/man3/getnetconfig.3 comp-c-man .man +./usr/share/man/man3/getnetconfigent.3 comp-c-man .man +./usr/share/man/man3/getnetent.3 comp-c-man .man +./usr/share/man/man3/getnetgrent.3 comp-c-man .man +./usr/share/man/man3/getnetpath.3 comp-c-man .man +./usr/share/man/man3/getnstr.3 comp-c-man .man +./usr/share/man/man3/getopt.3 comp-c-man .man +./usr/share/man/man3/getopt_long.3 comp-c-man .man +./usr/share/man/man3/getpagesize.3 comp-c-man .man +./usr/share/man/man3/getparx.3 comp-c-man .man +./usr/share/man/man3/getpary.3 comp-c-man .man +./usr/share/man/man3/getparyx.3 comp-c-man .man +./usr/share/man/man3/getpass.3 comp-c-man .man +./usr/share/man/man3/getpass_r.3 comp-c-man .man +./usr/share/man/man3/getpassfd.3 comp-c-man .man +./usr/share/man/man3/getpeereid.3 comp-c-man .man +./usr/share/man/man3/getprogname.3 comp-c-man .man +./usr/share/man/man3/getprotobyname.3 comp-c-man .man +./usr/share/man/man3/getprotobynumber.3 comp-c-man .man +./usr/share/man/man3/getprotoent.3 comp-c-man .man +./usr/share/man/man3/getpw.3 comp-obsolete obsolete +./usr/share/man/man3/getpwent.3 comp-c-man .man +./usr/share/man/man3/getpwent_r.3 comp-c-man .man +./usr/share/man/man3/getpwnam.3 comp-c-man .man +./usr/share/man/man3/getpwnam_r.3 comp-c-man .man +./usr/share/man/man3/getpwuid.3 comp-c-man .man +./usr/share/man/man3/getpwuid_r.3 comp-c-man .man +./usr/share/man/man3/getrawpartition.3 comp-c-man .man +./usr/share/man/man3/getrpcbyname.3 comp-c-man .man +./usr/share/man/man3/getrpcbynumber.3 comp-c-man .man +./usr/share/man/man3/getrpcent.3 comp-c-man .man +./usr/share/man/man3/getrpcport.3 comp-c-man .man +./usr/share/man/man3/gets.3 comp-c-man .man +./usr/share/man/man3/getservbyname.3 comp-c-man .man +./usr/share/man/man3/getservbyport.3 comp-c-man .man +./usr/share/man/man3/getservent.3 comp-c-man .man +./usr/share/man/man3/getskeyprompt.3 comp-c-man skey,.man +./usr/share/man/man3/getstr.3 comp-c-man .man +./usr/share/man/man3/getsubopt.3 comp-c-man .man +./usr/share/man/man3/gettext.3 comp-c-man .man +./usr/share/man/man3/gettmode.3 comp-c-man .man +./usr/share/man/man3/getttyent.3 comp-c-man .man +./usr/share/man/man3/getttynam.3 comp-c-man .man +./usr/share/man/man3/getusershell.3 comp-c-man .man +./usr/share/man/man3/getutmp.3 comp-c-man .man +./usr/share/man/man3/getutmpx.3 comp-c-man .man +./usr/share/man/man3/getutxent.3 comp-c-man .man +./usr/share/man/man3/getutxid.3 comp-c-man .man +./usr/share/man/man3/getutxline.3 comp-c-man .man +./usr/share/man/man3/getw.3 comp-c-man .man +./usr/share/man/man3/getwc.3 comp-c-man .man +./usr/share/man/man3/getwchar.3 comp-c-man .man +./usr/share/man/man3/getwd.3 comp-c-man .man +./usr/share/man/man3/getwin.3 comp-c-man .man +./usr/share/man/man3/getyx.3 comp-c-man .man +./usr/share/man/man3/gid_from_group.3 comp-c-man .man +./usr/share/man/man3/glob.3 comp-c-man .man +./usr/share/man/man3/glob_pattern_p.3 comp-c-man .man +./usr/share/man/man3/globfree.3 comp-c-man .man +./usr/share/man/man3/gmtime.3 comp-c-man .man +./usr/share/man/man3/gmtime_r.3 comp-c-man .man +./usr/share/man/man3/grantpt.3 comp-c-man .man +./usr/share/man/man3/group_from_gid.3 comp-c-man .man +./usr/share/man/man3/gss_accept_sec_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_acquire_cred.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_add_cred.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_add_oid_set_member.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_canonicalize_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_compare_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_context_time.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_create_empty_oid_set.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_delete_sec_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_display_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_display_status.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_duplicate_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_export_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_export_sec_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_get_mic.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_import_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_import_sec_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_indicate_mechs.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_init_sec_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_inquire_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_inquire_cred.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_inquire_cred_by_mech.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_inquire_mechs_for_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_inquire_names_for_mech.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_krb5_ccache_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_krb5_compat_des3_mic.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_krb5_copy_ccache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_krb5_get_tkt_flags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_krb5_import_ccache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_krb5_import_cred.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_process_context_token.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_release_buffer.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_release_cred.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_release_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_release_oid_set.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_seal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_sign.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_test_oid_set_member.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_unseal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_unwrap.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_verify.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_verify_mic.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_wrap.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gss_wrap_size_limit.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gssapi.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gsskrb5_extract_authz_data_from_sec_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gsskrb5_register_acceptor_identity.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/gtty.3 comp-c-man .man +./usr/share/man/man3/halfdelay.3 comp-c-man .man +./usr/share/man/man3/has_colors.3 comp-c-man .man +./usr/share/man/man3/has_ic.3 comp-c-man .man +./usr/share/man/man3/has_il.3 comp-c-man .man +./usr/share/man/man3/hash.3 comp-c-man .man +./usr/share/man/man3/hcreate.3 comp-c-man .man +./usr/share/man/man3/hcreate_r.3 comp-c-man .man +./usr/share/man/man3/hdestroy.3 comp-c-man .man +./usr/share/man/man3/hdestroy_r.3 comp-c-man .man +./usr/share/man/man3/heapsort.3 comp-c-man .man +./usr/share/man/man3/herror.3 comp-c-man .man +./usr/share/man/man3/hesiod.3 comp-c-man hesiod,.man +./usr/share/man/man3/hesiod_end.3 comp-c-man hesiod,.man +./usr/share/man/man3/hesiod_free_list.3 comp-c-man hesiod,.man +./usr/share/man/man3/hesiod_init.3 comp-c-man hesiod,.man +./usr/share/man/man3/hesiod_resolve.3 comp-c-man hesiod,.man +./usr/share/man/man3/hesiod_to_bind.3 comp-c-man hesiod,.man +./usr/share/man/man3/hid_dispose_report_desc.3 comp-c-man .man +./usr/share/man/man3/hid_end_parse.3 comp-c-man .man +./usr/share/man/man3/hid_get_data.3 comp-c-man .man +./usr/share/man/man3/hid_get_item.3 comp-c-man .man +./usr/share/man/man3/hid_get_report_desc.3 comp-c-man .man +./usr/share/man/man3/hid_init.3 comp-c-man .man +./usr/share/man/man3/hid_locate.3 comp-c-man .man +./usr/share/man/man3/hid_report_size.3 comp-c-man .man +./usr/share/man/man3/hid_set_data.3 comp-c-man .man +./usr/share/man/man3/hid_start_parse.3 comp-c-man .man +./usr/share/man/man3/hid_usage_in_page.3 comp-c-man .man +./usr/share/man/man3/hid_usage_page.3 comp-c-man .man +./usr/share/man/man3/history.3 comp-c-man .man +./usr/share/man/man3/history_end.3 comp-c-man .man +./usr/share/man/man3/history_init.3 comp-c-man .man +./usr/share/man/man3/hline.3 comp-c-man .man +./usr/share/man/man3/hmac.3 comp-obsolete obsolete +./usr/share/man/man3/hostalias.3 comp-c-man .man +./usr/share/man/man3/hosts_access.3 comp-c-man .man +./usr/share/man/man3/hosts_ctl.3 comp-c-man .man +./usr/share/man/man3/hsearch.3 comp-c-man .man +./usr/share/man/man3/hsearch_r.3 comp-c-man .man +./usr/share/man/man3/hstrerror.3 comp-c-man .man +./usr/share/man/man3/htonl.3 comp-c-man .man +./usr/share/man/man3/htons.3 comp-c-man .man +./usr/share/man/man3/humanize_number.3 comp-c-man .man +./usr/share/man/man3/hypot.3 comp-c-man .man +./usr/share/man/man3/hypotf.3 comp-c-man .man +./usr/share/man/man3/iconv.3 comp-c-man .man +./usr/share/man/man3/iconv_close.3 comp-c-man .man +./usr/share/man/man3/iconv_open.3 comp-c-man .man +./usr/share/man/man3/idcok.3 comp-c-man .man +./usr/share/man/man3/idlok.3 comp-c-man .man +./usr/share/man/man3/ieee.3 comp-obsolete obsolete +./usr/share/man/man3/ieee_test.3 comp-c-man .man +./usr/share/man/man3/if_freenameindex.3 comp-c-man .man +./usr/share/man/man3/if_indextoname.3 comp-c-man .man +./usr/share/man/man3/if_nameindex.3 comp-c-man .man +./usr/share/man/man3/if_nametoindex.3 comp-c-man .man +./usr/share/man/man3/ilog2.3 comp-c-man .man +./usr/share/man/man3/ilogb.3 comp-c-man .man +./usr/share/man/man3/ilogbf.3 comp-c-man .man +./usr/share/man/man3/ilogbl.3 comp-c-man .man +./usr/share/man/man3/imaxabs.3 comp-c-man .man +./usr/share/man/man3/imaxdiv.3 comp-c-man .man +./usr/share/man/man3/inch.3 comp-c-man .man +./usr/share/man/man3/inchnstr.3 comp-c-man .man +./usr/share/man/man3/inchstr.3 comp-c-man .man +./usr/share/man/man3/index.3 comp-c-man .man +./usr/share/man/man3/inet.3 comp-c-man .man +./usr/share/man/man3/inet6_opt_append.3 comp-c-man .man +./usr/share/man/man3/inet6_opt_find.3 comp-c-man .man +./usr/share/man/man3/inet6_opt_finish.3 comp-c-man .man +./usr/share/man/man3/inet6_opt_get_val.3 comp-c-man .man +./usr/share/man/man3/inet6_opt_init.3 comp-c-man .man +./usr/share/man/man3/inet6_opt_next.3 comp-c-man .man +./usr/share/man/man3/inet6_opt_set_val.3 comp-c-man .man +./usr/share/man/man3/inet6_option_alloc.3 comp-c-man .man +./usr/share/man/man3/inet6_option_append.3 comp-c-man .man +./usr/share/man/man3/inet6_option_find.3 comp-c-man .man +./usr/share/man/man3/inet6_option_init.3 comp-c-man .man +./usr/share/man/man3/inet6_option_next.3 comp-c-man .man +./usr/share/man/man3/inet6_option_space.3 comp-c-man .man +./usr/share/man/man3/inet6_rth_add.3 comp-c-man .man +./usr/share/man/man3/inet6_rth_getaddr.3 comp-c-man .man +./usr/share/man/man3/inet6_rth_init.3 comp-c-man .man +./usr/share/man/man3/inet6_rth_reverse.3 comp-c-man .man +./usr/share/man/man3/inet6_rth_segments.3 comp-c-man .man +./usr/share/man/man3/inet6_rth_space.3 comp-c-man .man +./usr/share/man/man3/inet6_rthdr_add.3 comp-c-man .man +./usr/share/man/man3/inet6_rthdr_getaddr.3 comp-c-man .man +./usr/share/man/man3/inet6_rthdr_getflags.3 comp-c-man .man +./usr/share/man/man3/inet6_rthdr_init.3 comp-c-man .man +./usr/share/man/man3/inet6_rthdr_lasthop.3 comp-c-man .man +./usr/share/man/man3/inet6_rthdr_reverse.3 comp-c-man .man +./usr/share/man/man3/inet6_rthdr_segments.3 comp-c-man .man +./usr/share/man/man3/inet6_rthdr_space.3 comp-c-man .man +./usr/share/man/man3/inet_addr.3 comp-c-man .man +./usr/share/man/man3/inet_aton.3 comp-c-man .man +./usr/share/man/man3/inet_lnaof.3 comp-c-man .man +./usr/share/man/man3/inet_makeaddr.3 comp-c-man .man +./usr/share/man/man3/inet_net.3 comp-c-man .man +./usr/share/man/man3/inet_net_ntop.3 comp-c-man .man +./usr/share/man/man3/inet_net_pton.3 comp-c-man .man +./usr/share/man/man3/inet_netof.3 comp-c-man .man +./usr/share/man/man3/inet_network.3 comp-c-man .man +./usr/share/man/man3/inet_ntoa.3 comp-c-man .man +./usr/share/man/man3/inet_ntop.3 comp-c-man .man +./usr/share/man/man3/inet_pton.3 comp-c-man .man +./usr/share/man/man3/init_color.3 comp-c-man .man +./usr/share/man/man3/init_error_table.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/init_pair.3 comp-c-man .man +./usr/share/man/man3/initgroups.3 comp-c-man .man +./usr/share/man/man3/initscr.3 comp-c-man .man +./usr/share/man/man3/initstate.3 comp-c-man .man +./usr/share/man/man3/innetgr.3 comp-c-man .man +./usr/share/man/man3/innstr.3 comp-c-man .man +./usr/share/man/man3/insch.3 comp-c-man .man +./usr/share/man/man3/insdelln.3 comp-c-man .man +./usr/share/man/man3/insertln.3 comp-c-man .man +./usr/share/man/man3/insque.3 comp-c-man .man +./usr/share/man/man3/instr.3 comp-c-man .man +./usr/share/man/man3/intrflush.3 comp-c-man .man +./usr/share/man/man3/intro.3 comp-c-man .man +./usr/share/man/man3/inttypes.3 comp-c-man .man +./usr/share/man/man3/ipsec_dump_policy.3 comp-c-man .man +./usr/share/man/man3/ipsec_get_policylen.3 comp-c-man .man +./usr/share/man/man3/ipsec_set_policy.3 comp-c-man .man +./usr/share/man/man3/ipsec_strerror.3 comp-c-man .man +./usr/share/man/man3/iruserok.3 comp-c-man .man +./usr/share/man/man3/iruserok_sa.3 comp-c-man .man +./usr/share/man/man3/is_linetouched.3 comp-c-man .man +./usr/share/man/man3/is_wintouched.3 comp-c-man .man +./usr/share/man/man3/isalnum.3 comp-c-man .man +./usr/share/man/man3/isalpha.3 comp-c-man .man +./usr/share/man/man3/isascii.3 comp-c-man .man +./usr/share/man/man3/isatty.3 comp-c-man .man +./usr/share/man/man3/isblank.3 comp-c-man .man +./usr/share/man/man3/iscntrl.3 comp-c-man .man +./usr/share/man/man3/isdigit.3 comp-c-man .man +./usr/share/man/man3/isendwin.3 comp-c-man .man +./usr/share/man/man3/isfinite.3 comp-c-man .man +./usr/share/man/man3/isgraph.3 comp-c-man .man +./usr/share/man/man3/isgreater.3 comp-c-man .man +./usr/share/man/man3/isinf.3 comp-c-man .man +./usr/share/man/man3/isinff.3 comp-c-man .man +./usr/share/man/man3/islower.3 comp-c-man .man +./usr/share/man/man3/isnan.3 comp-c-man .man +./usr/share/man/man3/isnanf.3 comp-c-man .man +./usr/share/man/man3/isnormal.3 comp-c-man .man +./usr/share/man/man3/isns.3 comp-isns-man .man +./usr/share/man/man3/iso646.3 comp-c-man .man +./usr/share/man/man3/iso_addr.3 comp-c-man .man +./usr/share/man/man3/isprint.3 comp-c-man .man +./usr/share/man/man3/ispunct.3 comp-c-man .man +./usr/share/man/man3/isspace.3 comp-c-man .man +./usr/share/man/man3/isupper.3 comp-c-man .man +./usr/share/man/man3/iswalnum.3 comp-c-man .man +./usr/share/man/man3/iswalpha.3 comp-c-man .man +./usr/share/man/man3/iswblank.3 comp-c-man .man +./usr/share/man/man3/iswcntrl.3 comp-c-man .man +./usr/share/man/man3/iswctype.3 comp-c-man .man +./usr/share/man/man3/iswdigit.3 comp-c-man .man +./usr/share/man/man3/iswgraph.3 comp-c-man .man +./usr/share/man/man3/iswlower.3 comp-c-man .man +./usr/share/man/man3/iswprint.3 comp-c-man .man +./usr/share/man/man3/iswpunct.3 comp-c-man .man +./usr/share/man/man3/iswspace.3 comp-c-man .man +./usr/share/man/man3/iswupper.3 comp-c-man .man +./usr/share/man/man3/iswxdigit.3 comp-c-man .man +./usr/share/man/man3/isxdigit.3 comp-c-man .man +./usr/share/man/man3/item_count.3 comp-c-man .man +./usr/share/man/man3/item_description.3 comp-c-man .man +./usr/share/man/man3/item_index.3 comp-c-man .man +./usr/share/man/man3/item_init.3 comp-c-man .man +./usr/share/man/man3/item_name.3 comp-c-man .man +./usr/share/man/man3/item_opts.3 comp-c-man .man +./usr/share/man/man3/item_opts_off.3 comp-c-man .man +./usr/share/man/man3/item_opts_on.3 comp-c-man .man +./usr/share/man/man3/item_selected.3 comp-c-man .man +./usr/share/man/man3/item_term.3 comp-c-man .man +./usr/share/man/man3/item_userptr.3 comp-c-man .man +./usr/share/man/man3/item_value.3 comp-c-man .man +./usr/share/man/man3/item_visible.3 comp-c-man .man +./usr/share/man/man3/itimerspec.3 comp-c-man .man +./usr/share/man/man3/itimerval.3 comp-c-man .man +./usr/share/man/man3/j0.3 comp-c-man .man +./usr/share/man/man3/j0f.3 comp-c-man .man +./usr/share/man/man3/j1.3 comp-c-man .man +./usr/share/man/man3/j1f.3 comp-c-man .man +./usr/share/man/man3/jemalloc.3 comp-c-man .man +./usr/share/man/man3/jn.3 comp-c-man .man +./usr/share/man/man3/jnf.3 comp-c-man .man +./usr/share/man/man3/jrand48.3 comp-c-man .man +./usr/share/man/man3/kadm5_pwcheck.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/kafs.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/kerberos.3 comp-obsolete obsolete +./usr/share/man/man3/keyname.3 comp-c-man .man +./usr/share/man/man3/keypad.3 comp-c-man .man +./usr/share/man/man3/killchar.3 comp-c-man .man +./usr/share/man/man3/killpg.3 comp-c-man .man +./usr/share/man/man3/krb5.3 comp-obsolete obsolete +./usr/share/man/man3/krb524_convert_creds_kdc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb524_convert_creds_kdc_ccache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_425_conv_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_425_conv_principal_ext.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_524_conv_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_abort.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_abortx.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_acl_match_file.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_acl_match_string.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_add_et_list.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_add_extra_addresses.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_add_ignore_addresses.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_addlog_dest.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_addlog_func.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_addr2sockaddr.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_address.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_address_compare.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_address_order.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_address_search.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_addresses.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_aname_to_localname.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_anyaddr.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_appdefault.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_appdefault_boolean.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_appdefault_string.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_appdefault_time.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_append_addresses.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_auth_con_addflags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_free.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_genaddrs.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_generatelocalsubkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_getaddrs.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_getauthenticator.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_getflags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_getkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_getlocalsubkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_getrcache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_getremotesubkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_getuserkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_init.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_initivector.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_removeflags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setaddrs.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setaddrs_from_fd.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setflags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setivector.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setlocalsubkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setrcache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setremotesubkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_con_setuserkey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_getauthenticator.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_auth_getcksumtype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_getkeytype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_getlocalseqnumber.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_getremoteseqnumber.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_setcksumtype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_setkeytype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_setlocalseqnumber.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_auth_setremoteseqnumber.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_build_ap_req.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_build_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_build_principal_ext.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_build_principal_va.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_build_principal_va_ext.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_block_size.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_checksum_length.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_decrypt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_encrypt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_encrypt_length.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_enctype_compare.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_get_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_is_coll_proof_cksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_is_keyed_cksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_keylength.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_make_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_make_random_key.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_set_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_valid_cksumtype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_valid_enctype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_c_verify_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_cc_clear_mcred.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_close.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_copy_cache.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_cursor.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_default_name.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_destroy.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_end_seq_get.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_gen_new.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_get_full_name.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_get_name.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_get_ops.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_get_prefix_ops.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_get_principal.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_get_type.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_get_version.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_initialize.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_new_unique.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_next_cred.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_next_cred_match.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_ops.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_register.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_remove_cred.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_resolve.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_retrieve_cred.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_set_default_name.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_set_flags.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_start_seq_get.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_cc_store_cred.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ccache.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_change_password.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_check_transited.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_check_transited_realms.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_checksum_disable.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_checksum_is_collision_proof.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_checksum_is_keyed.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_checksumsize.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_cksumtype_valid.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_clear_error_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_closelog.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_compare_creds.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_file_free.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_free_strings.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_bool.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_bool_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_int.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_int_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_list.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_next.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_string_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_strings.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_time.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_get_time_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_parse_file.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_parse_file_multi.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_bool.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_bool_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_int.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_int_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_list.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_next.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_string_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_strings.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_time.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_config_vget_time_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_copy_address.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_copy_addresses.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_copy_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_copy_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_copy_creds_contents.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_copy_data.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_copy_host_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_copy_keyblock.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_copy_keyblock_contents.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_copy_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_copy_ticket.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_create_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_crypto_destroy.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_crypto_get_checksum_type.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_crypto_getblocksize.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_crypto_getconfoundersize.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_crypto_getenctype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_crypto_getpadsize.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_crypto_init.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_crypto_overhead.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_data.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_data_alloc.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_data_cmp.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_data_copy.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_data_free.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_data_realloc.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_data_zero.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_decrypt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_decrypt_EncryptedData.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_decrypt_ivec.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_decrypt_ticket.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_alloc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_free.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_get_a1_hash.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_get_client_binding.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_get_identifier.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_get_opaque.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_get_responseData.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_get_rsp.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_get_server_nonce.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_get_tickets.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_init_request.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_request.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_authentication_user.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_authid.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_client_nonce.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_digest.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_hostname.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_identifier.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_method.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_nonceCount.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_opaque.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_qop.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_server_cb.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_server_nonce.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_type.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_uri.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_digest_set_username.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_domain_x500_decode.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_domain_x500_encode.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_eai_to_heim_errno.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_encrypt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_encrypt_EncryptedData.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_encrypt_ivec.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_enctype_disable.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_enctype_keysize.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_enctype_to_string.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_enctype_valid.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_err.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_error_from_rd_error.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_errx.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_expand_hostname.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_expand_hostname_realms.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_fcc_ops.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_find_padata.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_format_time.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_address.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_free_addresses.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_free_authenticator.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_checksum_contents.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_config_files.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_cred_contents.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_data.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_free_data_contents.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_free_error.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_error_contents.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_error_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_free_host_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_kdc_rep.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_keyblock.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_free_keyblock_contents.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_free_krbhst.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_salt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_free_ticket.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_fwd_tgt_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_generate_random_block.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_generate_random_keyblock.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_generate_subkey.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_generate_subkey_extended.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_get_all_client_addrs.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_all_server_addrs.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_cred_from_kdc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_cred_from_kdc_opt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_credentials.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_credentials_with_flags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_creds_opt_add_options.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_creds_opt_alloc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_creds_opt_free.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_creds_opt_set_enctype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_creds_opt_set_impersonate.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_creds_opt_set_options.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_creds_opt_set_ticket.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_default_config_files.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_default_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_default_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_default_realms.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_dns_canonize_hostname.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_err_text.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_get_error_message.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_get_error_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_get_extra_addresses.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_fcache_version.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_forwarded_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_host_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_ignore_addresses.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_in_cred.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_in_tkt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_in_tkt_with_keytab.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_in_tkt_with_password.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_in_tkt_with_skey.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_keytab.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_alloc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_free.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_init.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_address_list.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_addressless.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_anonymous.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_canonicalize.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_default_flags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_etype_list.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_forwardable.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_pa_password.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_paq_request.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_preauth_list.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_proxiable.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_renew_life.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_salt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_tkt_life.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_opt_set_win2k.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_init_creds_password.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_kdc_cred.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_kdc_sec_offset.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_krb524hst.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_krb_admin_hst.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_krb_changepw_hst.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_krbhst.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_max_time_skew.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_pw_salt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_renewed_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_server_rcache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_use_admin_kdc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_get_warn_dest.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_get_wrapped_length.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_getportbyname.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_h_addr2addr.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_h_addr2sockaddr.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_h_errno_to_heim_errno.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_have_error_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_hmac.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_init_context.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_init_ets.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_initlog.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_is_thread_safe.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_keyblock.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_keyblock_get_enctype.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_keyblock_init.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_keyblock_zero.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_keytab.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_keytab_entry.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_krbhst_format_string.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_krbhst_free.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_krbhst_get_addrinfo.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_krbhst_init.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_krbhst_init_flags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_krbhst_next.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_krbhst_next_as_string.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_krbhst_reset.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_kt_add_entry.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_close.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_compare.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_copy_entry_contents.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_cursor.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_default.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_default_modify_name.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_default_name.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_end_seq_get.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_free_entry.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_get_entry.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_get_name.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_get_type.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_next_entry.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_ops.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_read_service_key.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_register.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_remove_entry.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_resolve.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kt_start_seq_get.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_kuserok.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_log.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_log_msg.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_make_addrport.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_make_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_max_sockaddr_size.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_mcc_ops.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_mk_priv.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_mk_rep.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_mk_rep_exact.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_mk_rep_extended.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_mk_req.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_mk_req_exact.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_mk_req_extended.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_mk_safe.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_openlog.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_padata_add.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_parse.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_parse_address.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_parse_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_parse_name_flags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_parse_nametype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_passwd_result_to_string.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_password_key_proc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_prepend_config_files.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_prepend_config_files_default.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_princ_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_princ_set_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_principal_compare.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_principal_compare_any_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_principal_get_comp_string.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_principal_get_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_principal_get_type.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_principal_match.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_principal_set_type.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_print_address.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_prompt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_prompter_posix.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_random_to_key.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_rc_close.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_default.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_default_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_default_type.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_destroy.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_expunge.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_get_lifespan.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_get_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_get_type.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_initialize.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_recover.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_resolve.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_resolve_full.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_resolve_type.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rc_store.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rcache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rd_error.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rd_priv.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rd_rep.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rd_req.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rd_req_with_keyblock.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_rd_safe.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_realm_compare.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_ret_address.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_addrs.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_authdata.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_creds.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_data.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_int16.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_int32.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_int8.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_keyblock.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_principal.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_stringnl.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_stringz.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_times.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_uint16.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_uint32.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ret_uint8.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_set_config_files.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_default_realm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_dns_canonize_hostname.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_error_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_set_extra_addresses.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_fcache_version.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_ignore_addresses.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_max_time_skew.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_password.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_password_using_ccache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_real_time.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_use_admin_kdc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_set_warn_dest.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_sname_to_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_sock_to_principal.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_sockaddr2address.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_sockaddr2port.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_sockaddr_uninteresting.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_clear_flags.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_emem.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_free.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_from_data.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_from_fd.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_from_mem.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_get_byteorder.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_is_flags.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_read.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_seek.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_set_byteorder.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_set_eof_code.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_set_flags.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_to_data.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_storage_write.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_address.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_addrs.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_authdata.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_creds.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_data.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_int16.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_int32.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_int8.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_keyblock.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_principal.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_stringnl.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_stringz.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_times.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_uint16.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_uint32.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_store_uint8.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_string_to_deltat.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_string_to_enctype.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_string_to_key.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_string_to_key_data.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_string_to_key_data_salt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_string_to_key_data_salt_opaque.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_string_to_key_salt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_string_to_key_salt_opaque.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_ticket.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ticket_get_authorization_data_type.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ticket_get_client.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ticket_get_endtime.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_ticket_get_server.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_timeofday.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_unparse_name.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_unparse_name_fixed.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_unparse_name_fixed_flags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_unparse_name_fixed_short.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_unparse_name_flags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_unparse_name_short.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_us_timeofday.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_vabort.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_vabortx.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_verify_ap_req.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_checksum.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_init_creds.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_init_creds_opt_init.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_init_creds_opt_set_ap_req_nofail.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_opt_alloc.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_opt_free.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_opt_init.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_opt_set_ccache.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_opt_set_flags.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_opt_set_keytab.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_opt_set_secure.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_opt_set_service.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_user.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_user_lrealm.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verify_user_opt.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_verr.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_verrx.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_vlog.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_vlog_msg.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/krb5_vset_error_string.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_vwarn.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_vwarnx.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_warn.3 comp-obsolete obsolete +./usr/share/man/man3/krb5_warnx.3 comp-obsolete obsolete +./usr/share/man/man3/krb_ck_repl.3 comp-obsolete obsolete +./usr/share/man/man3/krb_get_cred.3 comp-obsolete obsolete +./usr/share/man/man3/krb_get_krbhst.3 comp-obsolete obsolete +./usr/share/man/man3/krb_get_lrealm.3 comp-obsolete obsolete +./usr/share/man/man3/krb_get_phost.3 comp-obsolete obsolete +./usr/share/man/man3/krb_kntoln.3 comp-obsolete obsolete +./usr/share/man/man3/krb_mk_err.3 comp-obsolete obsolete +./usr/share/man/man3/krb_mk_priv.3 comp-obsolete obsolete +./usr/share/man/man3/krb_mk_req.3 comp-obsolete obsolete +./usr/share/man/man3/krb_mk_safe.3 comp-obsolete obsolete +./usr/share/man/man3/krb_rd_err.3 comp-obsolete obsolete +./usr/share/man/man3/krb_rd_priv.3 comp-obsolete obsolete +./usr/share/man/man3/krb_rd_req.3 comp-obsolete obsolete +./usr/share/man/man3/krb_rd_safe.3 comp-obsolete obsolete +./usr/share/man/man3/krb_realmofhost.3 comp-obsolete obsolete +./usr/share/man/man3/krb_sendauth.3 comp-obsolete obsolete +./usr/share/man/man3/krb_set_key.3 comp-obsolete obsolete +./usr/share/man/man3/krb_set_tkt_string.3 comp-obsolete obsolete +./usr/share/man/man3/kvm.3 comp-c-man .man +./usr/share/man/man3/kvm_close.3 comp-c-man .man +./usr/share/man/man3/kvm_dump.3 comp-c-man .man +./usr/share/man/man3/kvm_dump_inval.3 comp-c-man .man +./usr/share/man/man3/kvm_dump_mkheader.3 comp-c-man .man +./usr/share/man/man3/kvm_dump_wrtheader.3 comp-c-man .man +./usr/share/man/man3/kvm_getargv.3 comp-c-man .man +./usr/share/man/man3/kvm_getargv2.3 comp-c-man .man +./usr/share/man/man3/kvm_getenvv.3 comp-c-man .man +./usr/share/man/man3/kvm_getenvv2.3 comp-c-man .man +./usr/share/man/man3/kvm_geterr.3 comp-c-man .man +./usr/share/man/man3/kvm_getfiles.3 comp-c-man .man +./usr/share/man/man3/kvm_getkernelname.3 comp-c-man .man +./usr/share/man/man3/kvm_getloadavg.3 comp-c-man .man +./usr/share/man/man3/kvm_getlwps.3 comp-c-man .man +./usr/share/man/man3/kvm_getproc2.3 comp-c-man .man +./usr/share/man/man3/kvm_getprocs.3 comp-c-man .man +./usr/share/man/man3/kvm_nlist.3 comp-c-man .man +./usr/share/man/man3/kvm_open.3 comp-c-man .man +./usr/share/man/man3/kvm_openfiles.3 comp-c-man .man +./usr/share/man/man3/kvm_read.3 comp-c-man .man +./usr/share/man/man3/kvm_write.3 comp-c-man .man +./usr/share/man/man3/l64a.3 comp-c-man .man +./usr/share/man/man3/l64a_r.3 comp-c-man .man +./usr/share/man/man3/labs.3 comp-c-man .man +./usr/share/man/man3/lber-decode.3 comp-ldap-man ldap,.man +./usr/share/man/man3/lber-encode.3 comp-ldap-man ldap,.man +./usr/share/man/man3/lber-memory.3 comp-ldap-man ldap,.man +./usr/share/man/man3/lber-sockbuf.3 comp-ldap-man ldap,.man +./usr/share/man/man3/lber-types.3 comp-ldap-man ldap,.man +./usr/share/man/man3/lcong48.3 comp-c-man .man +./usr/share/man/man3/lcpxattr.3 comp-c-man .man +./usr/share/man/man3/ld_errno.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_abandon.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_abandon_ext.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_add.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_add_ext.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_add_ext_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_add_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_attributetype2name.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_attributetype2str.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_attributetype_free.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_bind.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_bind_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_compare.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_compare_ext.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_compare_ext_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_compare_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_count_entries.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_count_messages.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_count_references.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_count_values.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_count_values_len.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_dcedn2dn.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_delete.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_delete_ext.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_delete_ext_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_delete_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_dn2ad_canonical.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_dn2dcedn.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_dn2str.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_dn2ufn.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_err2string.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_errlist.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_error.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_explode_dn.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_explode_rdn.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_first_attribute.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_first_entry.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_first_message.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_first_reference.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_free_urldesc.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_get_dn.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_get_values.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_get_values_len.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_init.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_is_ldap_url.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_kerberos_bind1.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_kerberos_bind1_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_kerberos_bind2.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_kerberos_bind2_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_kerberos_bind_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_matchingrule2name.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_matchingrule2str.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_matchingrule_free.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_modify.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_modify_ext.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_modify_ext_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_modify_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_modrdn.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_modrdn2.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_modrdn2_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_modrdn_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_mods_free.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_msgfree.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_msgid.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_msgtype.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_next_attribute.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_next_entry.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_next_message.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_next_reference.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_objectclass2name.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_objectclass2str.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_objectclass_free.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_open.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_parse_extended_result.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_parse_reference.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_parse_result.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_parse_sasl_bind_result.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_perror.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_result.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_result2error.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_sasl_bind.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_sasl_bind_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_schema.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_scherr2str.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_search.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_search_ext.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_search_ext_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_search_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_search_st.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_simple_bind.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_simple_bind_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_sort.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_sort_entries.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_sort_strcasecmp.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_sort_values.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_str2attributetype.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_str2dn.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_str2matchingrule.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_str2objectclass.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_str2syntax.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_syntax2name.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_syntax2str.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_syntax_free.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_unbind.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_unbind_ext.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_unbind_ext_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_unbind_s.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_url.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_url_parse.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_value_free.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldap_value_free_len.3 comp-ldap-man ldap,.man +./usr/share/man/man3/ldexp.3 comp-c-man .man +./usr/share/man/man3/ldiv.3 comp-c-man .man +./usr/share/man/man3/leaveok.3 comp-c-man .man +./usr/share/man/man3/lfind.3 comp-c-man .man +./usr/share/man/man3/lgamma.3 comp-c-man .man +./usr/share/man/man3/lgamma_r.3 comp-c-man .man +./usr/share/man/man3/lgammaf.3 comp-c-man .man +./usr/share/man/man3/lgammaf_r.3 comp-c-man .man +./usr/share/man/man3/lh_stats.3 comp-c-man crypto,.man +./usr/share/man/man3/lhash.3 comp-obsolete obsolete +./usr/share/man/man3/libarchive.3 comp-c-man .man +./usr/share/man/man3/libarchive_internals.3 comp-c-man .man +./usr/share/man/man3/libiscsi.3 comp-c-man iscsi,.man +./usr/share/man/man3/libmagic.3 comp-c-man .man +./usr/share/man/man3/libmj.3 comp-c-man crypto,.man +./usr/share/man/man3/libnetpgp.3 comp-c-man crypto,.man +./usr/share/man/man3/libperfuse.3 comp-perfuse-man .man +./usr/share/man/man3/libquota.3 comp-c-man .man +./usr/share/man/man3/libradius.3 comp-c-man .man +./usr/share/man/man3/libsaslc.3 comp-c-man crypto,.man +./usr/share/man/man3/libusb.3 comp-obsolete obsolete +./usr/share/man/man3/libusbhid.3 comp-c-man .man +./usr/share/man/man3/libutil.3 comp-c-man .man +./usr/share/man/man3/limits.3 comp-c-man .man +./usr/share/man/man3/link_addr.3 comp-c-man .man +./usr/share/man/man3/link_field.3 comp-c-man .man +./usr/share/man/man3/link_fieldtype.3 comp-c-man .man +./usr/share/man/man3/link_ntoa.3 comp-c-man .man +./usr/share/man/man3/linkaddr.3 comp-c-man .man +./usr/share/man/man3/linkntoa.3 comp-c-man .man +./usr/share/man/man3/lio_listio.3 comp-c-man .man +./usr/share/man/man3/list_empty.3 comp-obsolete obsolete +./usr/share/man/man3/list_entry.3 comp-obsolete obsolete +./usr/share/man/man3/list_first.3 comp-obsolete obsolete +./usr/share/man/man3/list_head.3 comp-obsolete obsolete +./usr/share/man/man3/list_head_initializer.3 comp-obsolete obsolete +./usr/share/man/man3/list_init.3 comp-obsolete obsolete +./usr/share/man/man3/list_insert_after.3 comp-obsolete obsolete +./usr/share/man/man3/list_insert_before.3 comp-obsolete obsolete +./usr/share/man/man3/list_insert_head.3 comp-obsolete obsolete +./usr/share/man/man3/list_next.3 comp-obsolete obsolete +./usr/share/man/man3/list_remove.3 comp-obsolete obsolete +./usr/share/man/man3/llabs.3 comp-c-man .man +./usr/share/man/man3/lldiv.3 comp-c-man .man +./usr/share/man/man3/llrint.3 comp-c-man .man +./usr/share/man/man3/llrintf.3 comp-c-man .man +./usr/share/man/man3/localeconv.3 comp-c-man .man +./usr/share/man/man3/localtime.3 comp-c-man .man +./usr/share/man/man3/localtime_r.3 comp-c-man .man +./usr/share/man/man3/localtime_rz.3 comp-c-man .man +./usr/share/man/man3/lockf.3 comp-c-man .man +./usr/share/man/man3/log.3 comp-c-man .man +./usr/share/man/man3/log10.3 comp-c-man .man +./usr/share/man/man3/log10f.3 comp-c-man .man +./usr/share/man/man3/log1p.3 comp-c-man .man +./usr/share/man/man3/log1pf.3 comp-c-man .man +./usr/share/man/man3/log2.3 comp-c-man .man +./usr/share/man/man3/log2f.3 comp-c-man .man +./usr/share/man/man3/logb.3 comp-c-man .man +./usr/share/man/man3/logbf.3 comp-c-man .man +./usr/share/man/man3/logbl.3 comp-c-man .man +./usr/share/man/man3/logf.3 comp-c-man .man +./usr/share/man/man3/login.3 comp-c-man .man +./usr/share/man/man3/login_cap.3 comp-c-man .man +./usr/share/man/man3/login_close.3 comp-c-man .man +./usr/share/man/man3/login_getcapbool.3 comp-c-man .man +./usr/share/man/man3/login_getcapnum.3 comp-c-man .man +./usr/share/man/man3/login_getcapsize.3 comp-c-man .man +./usr/share/man/man3/login_getcapstr.3 comp-c-man .man +./usr/share/man/man3/login_getcaptime.3 comp-c-man .man +./usr/share/man/man3/login_getclass.3 comp-c-man .man +./usr/share/man/man3/login_tty.3 comp-c-man .man +./usr/share/man/man3/loginx.3 comp-c-man .man +./usr/share/man/man3/logout.3 comp-c-man .man +./usr/share/man/man3/logoutx.3 comp-c-man .man +./usr/share/man/man3/logwtmp.3 comp-c-man .man +./usr/share/man/man3/logwtmpx.3 comp-c-man .man +./usr/share/man/man3/longjmp.3 comp-c-man .man +./usr/share/man/man3/longjmperror.3 comp-c-man .man +./usr/share/man/man3/longname.3 comp-c-man .man +./usr/share/man/man3/lrand48.3 comp-c-man .man +./usr/share/man/man3/lrint.3 comp-c-man .man +./usr/share/man/man3/lrintf.3 comp-c-man .man +./usr/share/man/man3/lsearch.3 comp-c-man .man +./usr/share/man/man3/magic_buffer.3 comp-c-man .man +./usr/share/man/man3/magic_check.3 comp-c-man .man +./usr/share/man/man3/magic_close.3 comp-c-man .man +./usr/share/man/man3/magic_compile.3 comp-c-man .man +./usr/share/man/man3/magic_error.3 comp-c-man .man +./usr/share/man/man3/magic_file.3 comp-c-man .man +./usr/share/man/man3/magic_load.3 comp-c-man .man +./usr/share/man/man3/magic_open.3 comp-c-man .man +./usr/share/man/man3/magic_setflags.3 comp-c-man .man +./usr/share/man/man3/major.3 comp-c-man .man +./usr/share/man/man3/makecontext.3 comp-c-man .man +./usr/share/man/man3/makedev.3 comp-c-man .man +./usr/share/man/man3/malloc.3 comp-c-man .man +./usr/share/man/man3/man.3 comp-obsolete obsolete +./usr/share/man/man3/mandoc.3 comp-mdocml-man .man +./usr/share/man/man3/math.3 comp-c-man .man +./usr/share/man/man3/mblen.3 comp-c-man .man +./usr/share/man/man3/mbrlen.3 comp-c-man .man +./usr/share/man/man3/mbrtowc.3 comp-c-man .man +./usr/share/man/man3/mbsinit.3 comp-c-man .man +./usr/share/man/man3/mbsrtowcs.3 comp-c-man .man +./usr/share/man/man3/mbstowcs.3 comp-c-man .man +./usr/share/man/man3/mbtowc.3 comp-c-man .man +./usr/share/man/man3/md2.3 comp-c-man .man +./usr/share/man/man3/md4.3 comp-c-man .man +./usr/share/man/man3/md5.3 comp-c-man .man +./usr/share/man/man3/mdc2.3 comp-obsolete obsolete +./usr/share/man/man3/mdoc.3 comp-obsolete obsolete +./usr/share/man/man3/membar_consumer.3 comp-c-man .man +./usr/share/man/man3/membar_enter.3 comp-c-man .man +./usr/share/man/man3/membar_exit.3 comp-c-man .man +./usr/share/man/man3/membar_ops.3 comp-c-man .man +./usr/share/man/man3/membar_producer.3 comp-c-man .man +./usr/share/man/man3/membar_sync.3 comp-c-man .man +./usr/share/man/man3/memccpy.3 comp-c-man .man +./usr/share/man/man3/memchr.3 comp-c-man .man +./usr/share/man/man3/memcmp.3 comp-c-man .man +./usr/share/man/man3/memcpy.3 comp-c-man .man +./usr/share/man/man3/memmem.3 comp-c-man .man +./usr/share/man/man3/memmove.3 comp-c-man .man +./usr/share/man/man3/memory.3 comp-c-man .man +./usr/share/man/man3/memrchr.3 comp-c-man .man +./usr/share/man/man3/memset.3 comp-c-man .man +./usr/share/man/man3/menu_attributes.3 comp-c-man .man +./usr/share/man/man3/menu_back.3 comp-c-man .man +./usr/share/man/man3/menu_cursor.3 comp-c-man .man +./usr/share/man/man3/menu_driver.3 comp-c-man .man +./usr/share/man/man3/menu_fore.3 comp-c-man .man +./usr/share/man/man3/menu_format.3 comp-c-man .man +./usr/share/man/man3/menu_grey.3 comp-c-man .man +./usr/share/man/man3/menu_hook.3 comp-c-man .man +./usr/share/man/man3/menu_init.3 comp-c-man .man +./usr/share/man/man3/menu_item_current.3 comp-c-man .man +./usr/share/man/man3/menu_item_name.3 comp-c-man .man +./usr/share/man/man3/menu_item_new.3 comp-c-man .man +./usr/share/man/man3/menu_item_opts.3 comp-c-man .man +./usr/share/man/man3/menu_item_userptr.3 comp-c-man .man +./usr/share/man/man3/menu_item_value.3 comp-c-man .man +./usr/share/man/man3/menu_item_visible.3 comp-c-man .man +./usr/share/man/man3/menu_items.3 comp-c-man .man +./usr/share/man/man3/menu_mark.3 comp-c-man .man +./usr/share/man/man3/menu_new.3 comp-c-man .man +./usr/share/man/man3/menu_opts.3 comp-c-man .man +./usr/share/man/man3/menu_opts_on.3 comp-c-man .man +./usr/share/man/man3/menu_opts_off.3 comp-c-man .man +./usr/share/man/man3/menu_pad.3 comp-c-man .man +./usr/share/man/man3/menu_pattern.3 comp-c-man .man +./usr/share/man/man3/menu_post.3 comp-c-man .man +./usr/share/man/man3/menu_sub.3 comp-c-man .man +./usr/share/man/man3/menu_term.3 comp-c-man .man +./usr/share/man/man3/menu_unmark.3 comp-c-man .man +./usr/share/man/man3/menu_userptr.3 comp-c-man .man +./usr/share/man/man3/menu_win.3 comp-c-man .man +./usr/share/man/man3/menus.3 comp-c-man .man +./usr/share/man/man3/mergesort.3 comp-c-man .man +./usr/share/man/man3/meta.3 comp-c-man .man +./usr/share/man/man3/mi_vector_hash.3 comp-c-man .man +./usr/share/man/man3/minor.3 comp-c-man .man +./usr/share/man/man3/mkdtemp.3 comp-c-man .man +./usr/share/man/man3/mkstemp.3 comp-c-man .man +./usr/share/man/man3/mktemp.3 comp-c-man .man +./usr/share/man/man3/mktime.3 comp-c-man .man +./usr/share/man/man3/mktime_z.3 comp-c-man .man +./usr/share/man/man3/modf.3 comp-c-man .man +./usr/share/man/man3/moncontrol.3 comp-c-man .man +./usr/share/man/man3/monstartup.3 comp-c-man .man +./usr/share/man/man3/move.3 comp-c-man .man +./usr/share/man/man3/move_field.3 comp-c-man .man +./usr/share/man/man3/mpool.3 comp-c-man .man +./usr/share/man/man3/mpool_close.3 comp-c-man .man +./usr/share/man/man3/mpool_filter.3 comp-c-man .man +./usr/share/man/man3/mpool_get.3 comp-c-man .man +./usr/share/man/man3/mpool_new.3 comp-c-man .man +./usr/share/man/man3/mpool_open.3 comp-c-man .man +./usr/share/man/man3/mpool_put.3 comp-c-man .man +./usr/share/man/man3/mpool_sync.3 comp-c-man .man +./usr/share/man/man3/mq.3 comp-c-man .man +./usr/share/man/man3/mq_close.3 comp-c-man .man +./usr/share/man/man3/mq_getattr.3 comp-c-man .man +./usr/share/man/man3/mq_notify.3 comp-c-man .man +./usr/share/man/man3/mq_open.3 comp-c-man .man +./usr/share/man/man3/mq_receive.3 comp-c-man .man +./usr/share/man/man3/mq_send.3 comp-c-man .man +./usr/share/man/man3/mq_setattr.3 comp-c-man .man +./usr/share/man/man3/mq_timedreceive.3 comp-c-man .man +./usr/share/man/man3/mq_timedsend.3 comp-c-man .man +./usr/share/man/man3/mq_unlink.3 comp-c-man .man +./usr/share/man/man3/mqueue.3 comp-c-man .man +./usr/share/man/man3/mrand48.3 comp-c-man .man +./usr/share/man/man3/mvaddch.3 comp-c-man .man +./usr/share/man/man3/mvaddchnstr.3 comp-c-man .man +./usr/share/man/man3/mvaddchstr.3 comp-c-man .man +./usr/share/man/man3/mvaddnstr.3 comp-c-man .man +./usr/share/man/man3/mvaddstr.3 comp-c-man .man +./usr/share/man/man3/mvchgat.3 comp-c-man .man +./usr/share/man/man3/mvcur.3 comp-c-man .man +./usr/share/man/man3/mvderwin.3 comp-c-man .man +./usr/share/man/man3/mvgetch.3 comp-c-man .man +./usr/share/man/man3/mvgetnstr.3 comp-c-man .man +./usr/share/man/man3/mvgetstr.3 comp-c-man .man +./usr/share/man/man3/mvhline.3 comp-c-man .man +./usr/share/man/man3/mvinchnstr.3 comp-c-man .man +./usr/share/man/man3/mvinchstr.3 comp-c-man .man +./usr/share/man/man3/mvinnstr.3 comp-c-man .man +./usr/share/man/man3/mvinstr.3 comp-c-man .man +./usr/share/man/man3/mvprintw.3 comp-c-man .man +./usr/share/man/man3/mvvline.3 comp-c-man .man +./usr/share/man/man3/mvwaddch.3 comp-c-man .man +./usr/share/man/man3/mvwaddchnstr.3 comp-c-man .man +./usr/share/man/man3/mvwaddchstr.3 comp-c-man .man +./usr/share/man/man3/mvwaddnstr.3 comp-c-man .man +./usr/share/man/man3/mvwaddstr.3 comp-c-man .man +./usr/share/man/man3/mvwchgat.3 comp-c-man .man +./usr/share/man/man3/mvwgetch.3 comp-c-man .man +./usr/share/man/man3/mvwgetnstr.3 comp-c-man .man +./usr/share/man/man3/mvwgetstr.3 comp-c-man .man +./usr/share/man/man3/mvwhline.3 comp-c-man .man +./usr/share/man/man3/mvwin.3 comp-c-man .man +./usr/share/man/man3/mvwinchnstr.3 comp-c-man .man +./usr/share/man/man3/mvwinchstr.3 comp-c-man .man +./usr/share/man/man3/mvwinnstr.3 comp-c-man .man +./usr/share/man/man3/mvwinstr.3 comp-c-man .man +./usr/share/man/man3/mvwprintw.3 comp-c-man .man +./usr/share/man/man3/mvwvline.3 comp-c-man .man +./usr/share/man/man3/nan.3 comp-c-man .man +./usr/share/man/man3/nanf.3 comp-c-man .man +./usr/share/man/man3/nanl.3 comp-c-man .man +./usr/share/man/man3/napms.3 comp-c-man .man +./usr/share/man/man3/nc_perror.3 comp-c-man .man +./usr/share/man/man3/nc_sperror.3 comp-c-man .man +./usr/share/man/man3/ndbm.3 comp-c-man .man +./usr/share/man/man3/network.3 comp-c-man .man +./usr/share/man/man3/new_field.3 comp-c-man .man +./usr/share/man/man3/new_fieldtype.3 comp-c-man .man +./usr/share/man/man3/new_form.3 comp-c-man .man +./usr/share/man/man3/new_item.3 comp-c-man .man +./usr/share/man/man3/new_menu.3 comp-c-man .man +./usr/share/man/man3/new_page.3 comp-c-man .man +./usr/share/man/man3/newpad.3 comp-c-man .man +./usr/share/man/man3/newterm.3 comp-c-man .man +./usr/share/man/man3/newwin.3 comp-c-man .man +./usr/share/man/man3/nextafter.3 comp-c-man .man +./usr/share/man/man3/nextafterf.3 comp-c-man .man +./usr/share/man/man3/nextafterl.3 comp-c-man .man +./usr/share/man/man3/nexttoward.3 comp-c-man .man +./usr/share/man/man3/nftw.3 comp-c-man .man +./usr/share/man/man3/ngettext.3 comp-c-man .man +./usr/share/man/man3/nice.3 comp-c-man .man +./usr/share/man/man3/nl.3 comp-c-man .man +./usr/share/man/man3/nl_langinfo.3 comp-c-man .man +./usr/share/man/man3/nlist.3 comp-c-man .man +./usr/share/man/man3/nocbreak.3 comp-c-man .man +./usr/share/man/man3/nodelay.3 comp-c-man .man +./usr/share/man/man3/noecho.3 comp-c-man .man +./usr/share/man/man3/nonl.3 comp-c-man .man +./usr/share/man/man3/noqiflush.3 comp-c-man .man +./usr/share/man/man3/noraw.3 comp-c-man .man +./usr/share/man/man3/notimeout.3 comp-c-man .man +./usr/share/man/man3/npf.3 comp-npf-man .man,npf +./usr/share/man/man3/nrand48.3 comp-c-man .man +./usr/share/man/man3/ns.3 comp-obsolete obsolete +./usr/share/man/man3/ns_addr.3 comp-obsolete obsolete +./usr/share/man/man3/ns_ntoa.3 comp-obsolete obsolete +./usr/share/man/man3/nsdispatch.3 comp-c-man .man +./usr/share/man/man3/ntoa.3 comp-c-man .man +./usr/share/man/man3/ntohl.3 comp-c-man .man +./usr/share/man/man3/ntohs.3 comp-c-man .man +./usr/share/man/man3/nvis.3 comp-c-man .man +./usr/share/man/man3/offsetof.3 comp-c-man .man +./usr/share/man/man3/offtime.3 comp-c-man .man +./usr/share/man/man3/offtime_r.3 comp-c-man .man +./usr/share/man/man3/opendir.3 comp-c-man .man +./usr/share/man/man3/opendisk.3 comp-c-man .man +./usr/share/man/man3/openlog.3 comp-c-man .man +./usr/share/man/man3/openlog_r.3 comp-c-man .man +./usr/share/man/man3/openpam.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_borrow_cred.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_free_data.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_free_envlist.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_get_option.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_log.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_nullconv.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_readline.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_restore_cred.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_set_option.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_subst.3 comp-c-man .man,pam +./usr/share/man/man3/openpam_ttyconv.3 comp-c-man .man,pam +./usr/share/man/man3/openpgpsdk.3 comp-obsolete obsolete +./usr/share/man/man3/openpty.3 comp-c-man .man +./usr/share/man/man3/openssl_bio.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_blowfish.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_bn.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_bn_internal.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_buffer.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_des.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_dh.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_dsa.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_ecdsa.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_engine.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_err.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_evp.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_hmac.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_lhash.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_md5.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_mdc2.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_pem.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_rand.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_rc4.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_ripemd.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_rsa.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_sha.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_threads.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_ui.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_ui_compat.3 comp-c-man crypto,.man +./usr/share/man/man3/openssl_x509.3 comp-c-man crypto,.man +./usr/share/man/man3/orcmd.3 comp-c-man .man +./usr/share/man/man3/orcmd_af.3 comp-c-man .man +./usr/share/man/man3/ossaudio.3 comp-c-man .man +./usr/share/man/man3/overlay.3 comp-c-man .man +./usr/share/man/man3/overwrite.3 comp-c-man .man +./usr/share/man/man3/p2k.3 comp-puffs-man .man,rump +./usr/share/man/man3/p_query.3 comp-c-man .man +./usr/share/man/man3/pair_content.3 comp-c-man .man +./usr/share/man/man3/pam.3 comp-c-man .man,pam +./usr/share/man/man3/pam_acct_mgmt.3 comp-c-man .man,pam +./usr/share/man/man3/pam_authenticate.3 comp-c-man .man,pam +./usr/share/man/man3/pam_chauthtok.3 comp-c-man .man,pam +./usr/share/man/man3/pam_close_session.3 comp-c-man .man,pam +./usr/share/man/man3/pam_conv.3 comp-c-man .man,pam +./usr/share/man/man3/pam_end.3 comp-c-man .man,pam +./usr/share/man/man3/pam_error.3 comp-c-man .man,pam +./usr/share/man/man3/pam_get_authtok.3 comp-c-man .man,pam +./usr/share/man/man3/pam_get_data.3 comp-c-man .man,pam +./usr/share/man/man3/pam_get_item.3 comp-c-man .man,pam +./usr/share/man/man3/pam_get_user.3 comp-c-man .man,pam +./usr/share/man/man3/pam_getenv.3 comp-c-man .man,pam +./usr/share/man/man3/pam_getenvlist.3 comp-c-man .man,pam +./usr/share/man/man3/pam_info.3 comp-c-man .man,pam +./usr/share/man/man3/pam_open_session.3 comp-c-man .man,pam +./usr/share/man/man3/pam_prompt.3 comp-c-man .man,pam +./usr/share/man/man3/pam_putenv.3 comp-c-man .man,pam +./usr/share/man/man3/pam_set_data.3 comp-c-man .man,pam +./usr/share/man/man3/pam_set_item.3 comp-c-man .man,pam +./usr/share/man/man3/pam_setcred.3 comp-c-man .man,pam +./usr/share/man/man3/pam_setenv.3 comp-c-man .man,pam +./usr/share/man/man3/pam_sm_acct_mgmt.3 comp-c-man .man,pam +./usr/share/man/man3/pam_sm_authenticate.3 comp-c-man .man,pam +./usr/share/man/man3/pam_sm_chauthtok.3 comp-c-man .man,pam +./usr/share/man/man3/pam_sm_close_session.3 comp-c-man .man,pam +./usr/share/man/man3/pam_sm_open_session.3 comp-c-man .man,pam +./usr/share/man/man3/pam_sm_setcred.3 comp-c-man .man,pam +./usr/share/man/man3/pam_start.3 comp-c-man .man,pam +./usr/share/man/man3/pam_strerror.3 comp-c-man .man,pam +./usr/share/man/man3/pam_verror.3 comp-c-man .man,pam +./usr/share/man/man3/pam_vinfo.3 comp-c-man .man,pam +./usr/share/man/man3/pam_vprompt.3 comp-c-man .man,pam +./usr/share/man/man3/param.3 comp-c-man .man +./usr/share/man/man3/parsedate.3 comp-c-man .man +./usr/share/man/man3/paths.3 comp-c-man .man +./usr/share/man/man3/pause.3 comp-c-man .man +./usr/share/man/man3/pcap.3 comp-c-man .man +./usr/share/man/man3/pcap_activate.3 comp-c-man .man +./usr/share/man/man3/pcap_breakloop.3 comp-c-man .man +./usr/share/man/man3/pcap_can_set_rfmon.3 comp-c-man .man +./usr/share/man/man3/pcap_close.3 comp-c-man .man +./usr/share/man/man3/pcap_compile.3 comp-c-man .man +./usr/share/man/man3/pcap_create.3 comp-c-man .man +./usr/share/man/man3/pcap_datalink.3 comp-c-man .man +./usr/share/man/man3/pcap_datalink_name_to_val.3 comp-c-man .man +./usr/share/man/man3/pcap_datalink_val_to_name.3 comp-c-man .man +./usr/share/man/man3/pcap_dump.3 comp-c-man .man +./usr/share/man/man3/pcap_dump_close.3 comp-c-man .man +./usr/share/man/man3/pcap_dump_file.3 comp-c-man .man +./usr/share/man/man3/pcap_dump_flush.3 comp-c-man .man +./usr/share/man/man3/pcap_dump_ftell.3 comp-c-man .man +./usr/share/man/man3/pcap_dump_open.3 comp-c-man .man +./usr/share/man/man3/pcap_file.3 comp-c-man .man +./usr/share/man/man3/pcap_fileno.3 comp-c-man .man +./usr/share/man/man3/pcap_findalldevs.3 comp-c-man .man +./usr/share/man/man3/pcap_free_datalinks.3 comp-c-man .man +./usr/share/man/man3/pcap_freealldevs.3 comp-c-man .man +./usr/share/man/man3/pcap_freecode.3 comp-c-man .man +./usr/share/man/man3/pcap_get_selectable_fd.3 comp-c-man .man +./usr/share/man/man3/pcap_geterr.3 comp-c-man .man +./usr/share/man/man3/pcap_inject.3 comp-c-man .man +./usr/share/man/man3/pcap_is_swapped.3 comp-c-man .man +./usr/share/man/man3/pcap_lib_version.3 comp-c-man .man +./usr/share/man/man3/pcap_list_datalinks.3 comp-c-man .man +./usr/share/man/man3/pcap_lookupdev.3 comp-c-man .man +./usr/share/man/man3/pcap_lookupnet.3 comp-c-man .man +./usr/share/man/man3/pcap_loop.3 comp-c-man .man +./usr/share/man/man3/pcap_major_version.3 comp-c-man .man +./usr/share/man/man3/pcap_next_ex.3 comp-c-man .man +./usr/share/man/man3/pcap_offline_filter.3 comp-c-man .man +./usr/share/man/man3/pcap_open_dead.3 comp-c-man .man +./usr/share/man/man3/pcap_open_live.3 comp-c-man .man +./usr/share/man/man3/pcap_open_offline.3 comp-c-man .man +./usr/share/man/man3/pcap_set_buffer_size.3 comp-c-man .man +./usr/share/man/man3/pcap_set_datalink.3 comp-c-man .man +./usr/share/man/man3/pcap_set_promisc.3 comp-c-man .man +./usr/share/man/man3/pcap_set_rfmon.3 comp-c-man .man +./usr/share/man/man3/pcap_set_snaplen.3 comp-c-man .man +./usr/share/man/man3/pcap_set_timeout.3 comp-c-man .man +./usr/share/man/man3/pcap_setdirection.3 comp-c-man .man +./usr/share/man/man3/pcap_setfilter.3 comp-c-man .man +./usr/share/man/man3/pcap_setnonblock.3 comp-c-man .man +./usr/share/man/man3/pcap_snapshot.3 comp-c-man .man +./usr/share/man/man3/pcap_stats.3 comp-c-man .man +./usr/share/man/man3/pcap_statustostr.3 comp-c-man .man +./usr/share/man/man3/pcap_strerror.3 comp-c-man .man +./usr/share/man/man3/pci.3 comp-c-man .man +./usr/share/man/man3/pci_conf_print.3 comp-c-man .man +./usr/share/man/man3/pci_devinfo.3 comp-c-man .man +./usr/share/man/man3/pci_findvendor.3 comp-c-man .man +./usr/share/man/man3/pcibus_conf_read.3 comp-c-man .man +./usr/share/man/man3/pcibus_conf_write.3 comp-c-man .man +./usr/share/man/man3/pcidev_conf_read.3 comp-c-man .man +./usr/share/man/man3/pcidev_conf_write.3 comp-c-man .man +./usr/share/man/man3/pclose.3 comp-c-man .man +./usr/share/man/man3/pechochar.3 comp-c-man .man +./usr/share/man/man3/perror.3 comp-c-man .man +./usr/share/man/man3/pidfile.3 comp-c-man .man +./usr/share/man/man3/pidlock.3 comp-c-man .man +./usr/share/man/man3/pmap_getmaps.3 comp-c-man .man +./usr/share/man/man3/pmap_getport.3 comp-c-man .man +./usr/share/man/man3/pmap_rmtcall.3 comp-c-man .man +./usr/share/man/man3/pmap_set.3 comp-c-man .man +./usr/share/man/man3/pmap_unset.3 comp-c-man .man +./usr/share/man/man3/pmc.3 comp-c-man .man +./usr/share/man/man3/pnoutrefresh.3 comp-c-man .man +./usr/share/man/man3/popcount.3 comp-c-man .man +./usr/share/man/man3/popcount32.3 comp-c-man .man +./usr/share/man/man3/popcount64.3 comp-c-man .man +./usr/share/man/man3/popcountl.3 comp-c-man .man +./usr/share/man/man3/popcountll.3 comp-c-man .man +./usr/share/man/man3/popen.3 comp-c-man .man +./usr/share/man/man3/pos_form_cursor.3 comp-c-man .man +./usr/share/man/man3/pos_menu_cursor.3 comp-c-man .man +./usr/share/man/man3/posix2time.3 comp-c-man .man +./usr/share/man/man3/posix2time_z.3 comp-c-man .man +./usr/share/man/man3/posix_memalign.3 comp-c-man .man +./usr/share/man/man3/posix_openpt.3 comp-c-man .man +./usr/share/man/man3/posix_spawn.3 comp-c-man .man +./usr/share/man/man3/posix_spawn_file_actions_addclose.3 comp-c-man .man +./usr/share/man/man3/posix_spawn_file_actions_adddup2.3 comp-c-man .man +./usr/share/man/man3/posix_spawn_file_actions_addopen.3 comp-c-man .man +./usr/share/man/man3/posix_spawn_file_actions_destroy.3 comp-c-man .man +./usr/share/man/man3/posix_spawn_file_actions_init.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_destroy.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_getflags.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_getpgroup.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_getschedparam.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_getschedpolicy.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_getsigdefault.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_getsigmask.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_init.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_setflags.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_setpgroup.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_setschedparam.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_setschedpolicy.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_setsigdefault.3 comp-c-man .man +./usr/share/man/man3/posix_spawnattr_setsigmask.3 comp-c-man .man +./usr/share/man/man3/posix_spawnp.3 comp-c-man .man +./usr/share/man/man3/post_form.3 comp-c-man .man +./usr/share/man/man3/post_menu.3 comp-c-man .man +./usr/share/man/man3/pow.3 comp-c-man .man +./usr/share/man/man3/powf.3 comp-c-man .man +./usr/share/man/man3/ppath.3 comp-c-man .man +./usr/share/man/man3/ppath_bool.3 comp-c-man .man +./usr/share/man/man3/ppath_component_at.3 comp-c-man .man +./usr/share/man/man3/ppath_component_idx.3 comp-c-man .man +./usr/share/man/man3/ppath_component_key.3 comp-c-man .man +./usr/share/man/man3/ppath_component_release.3 comp-c-man .man +./usr/share/man/man3/ppath_component_retain.3 comp-c-man .man +./usr/share/man/man3/ppath_copy.3 comp-c-man .man +./usr/share/man/man3/ppath_copydel_bool.3 comp-c-man .man +./usr/share/man/man3/ppath_copydel_int64.3 comp-c-man .man +./usr/share/man/man3/ppath_copydel_object.3 comp-c-man .man +./usr/share/man/man3/ppath_copydel_uint64.3 comp-c-man .man +./usr/share/man/man3/ppath_copyset_bool.3 comp-c-man .man +./usr/share/man/man3/ppath_copyset_int64.3 comp-c-man .man +./usr/share/man/man3/ppath_copyset_object.3 comp-c-man .man +./usr/share/man/man3/ppath_copyset_uint64.3 comp-c-man .man +./usr/share/man/man3/ppath_create.3 comp-c-man .man +./usr/share/man/man3/ppath_delete_bool.3 comp-c-man .man +./usr/share/man/man3/ppath_delete_int64.3 comp-c-man .man +./usr/share/man/man3/ppath_delete_object.3 comp-c-man .man +./usr/share/man/man3/ppath_delete_uint64.3 comp-c-man .man +./usr/share/man/man3/ppath_get_bool.3 comp-c-man .man +./usr/share/man/man3/ppath_get_int64.3 comp-c-man .man +./usr/share/man/man3/ppath_get_object.3 comp-c-man .man +./usr/share/man/man3/ppath_get_uint64.3 comp-c-man .man +./usr/share/man/man3/ppath_idx.3 comp-c-man .man +./usr/share/man/man3/ppath_key.3 comp-c-man .man +./usr/share/man/man3/ppath_length.3 comp-c-man .man +./usr/share/man/man3/ppath_lookup.3 comp-c-man .man +./usr/share/man/man3/ppath_number.3 comp-c-man .man +./usr/share/man/man3/ppath_object.3 comp-c-man .man +./usr/share/man/man3/ppath_pop.3 comp-c-man .man +./usr/share/man/man3/ppath_push.3 comp-c-man .man +./usr/share/man/man3/ppath_push_idx.3 comp-c-man .man +./usr/share/man/man3/ppath_push_key.3 comp-c-man .man +./usr/share/man/man3/ppath_release.3 comp-c-man .man +./usr/share/man/man3/ppath_replace_idx.3 comp-c-man .man +./usr/share/man/man3/ppath_replace_key.3 comp-c-man .man +./usr/share/man/man3/ppath_retain.3 comp-c-man .man +./usr/share/man/man3/ppath_set_bool.3 comp-c-man .man +./usr/share/man/man3/ppath_set_int64.3 comp-c-man .man +./usr/share/man/man3/ppath_set_object.3 comp-c-man .man +./usr/share/man/man3/ppath_set_uint64.3 comp-c-man .man +./usr/share/man/man3/ppath_subpath.3 comp-c-man .man +./usr/share/man/man3/prefresh.3 comp-c-man .man +./usr/share/man/man3/printf.3 comp-c-man .man +./usr/share/man/man3/printw.3 comp-c-man .man +./usr/share/man/man3/proc_compare.3 comp-c-man .man +./usr/share/man/man3/prop_array.3 comp-c-man .man +./usr/share/man/man3/prop_array_add.3 comp-c-man .man +./usr/share/man/man3/prop_array_capacity.3 comp-c-man .man +./usr/share/man/man3/prop_array_copy.3 comp-c-man .man +./usr/share/man/man3/prop_array_copy_mutable.3 comp-c-man .man +./usr/share/man/man3/prop_array_count.3 comp-c-man .man +./usr/share/man/man3/prop_array_create.3 comp-c-man .man +./usr/share/man/man3/prop_array_create_with_capacity.3 comp-c-man .man +./usr/share/man/man3/prop_array_ensure_capacity.3 comp-c-man .man +./usr/share/man/man3/prop_array_equals.3 comp-c-man .man +./usr/share/man/man3/prop_array_externalize.3 comp-c-man .man +./usr/share/man/man3/prop_array_externalize_to_file.3 comp-c-man .man +./usr/share/man/man3/prop_array_externalize_to_pref.3 comp-c-man .man +./usr/share/man/man3/prop_array_get.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_bool.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_cstring.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_cstring_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_int16.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_int32.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_int64.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_int8.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_uint16.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_uint32.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_uint64.3 comp-c-man .man +./usr/share/man/man3/prop_array_get_uint8.3 comp-c-man .man +./usr/share/man/man3/prop_array_internalize.3 comp-c-man .man +./usr/share/man/man3/prop_array_internalize_from_file.3 comp-c-man .man +./usr/share/man/man3/prop_array_internalize_from_pref.3 comp-c-man .man +./usr/share/man/man3/prop_array_iterator.3 comp-c-man .man +./usr/share/man/man3/prop_array_make_immutable.3 comp-c-man .man +./usr/share/man/man3/prop_array_mutable.3 comp-c-man .man +./usr/share/man/man3/prop_array_recv_ioctl.3 comp-c-man .man +./usr/share/man/man3/prop_array_recv_syscall.3 comp-c-man .man +./usr/share/man/man3/prop_array_remove.3 comp-c-man .man +./usr/share/man/man3/prop_array_send_ioctl.3 comp-c-man .man +./usr/share/man/man3/prop_array_send_syscall.3 comp-c-man .man +./usr/share/man/man3/prop_array_set.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_bool.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_cstring.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_cstring_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_int16.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_int32.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_int64.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_int8.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_uint16.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_uint32.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_uint64.3 comp-c-man .man +./usr/share/man/man3/prop_array_set_uint8.3 comp-c-man .man +./usr/share/man/man3/prop_array_util.3 comp-c-man .man +./usr/share/man/man3/prop_bool.3 comp-c-man .man +./usr/share/man/man3/prop_bool_copy.3 comp-c-man .man +./usr/share/man/man3/prop_bool_create.3 comp-c-man .man +./usr/share/man/man3/prop_bool_true.3 comp-c-man .man +./usr/share/man/man3/prop_data.3 comp-c-man .man +./usr/share/man/man3/prop_data_copy.3 comp-c-man .man +./usr/share/man/man3/prop_data_create_data.3 comp-c-man .man +./usr/share/man/man3/prop_data_create_data_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_data_data.3 comp-c-man .man +./usr/share/man/man3/prop_data_data_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_data_equals.3 comp-c-man .man +./usr/share/man/man3/prop_data_equals_data.3 comp-c-man .man +./usr/share/man/man3/prop_data_size.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_all_keys.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_capacity.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_copy.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_copy_mutable.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_count.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_create.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_create_with_capacity.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_ensure_capacity.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_equals.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_externalize.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_externalize_to_file.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_externalize_to_pref.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_bool.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_cstring.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_cstring_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_int16.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_int32.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_int64.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_int8.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_keysym.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_uint16.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_uint32.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_uint64.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_get_uint8.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_ingest.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_internalize.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_internalize_from_file.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_internalize_from_pref.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_iterator.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_keysym_cstring_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_keysym_equals.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_make_immutable.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_mutable.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_recv_ioctl.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_recv_syscall.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_remove.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_remove_keysym.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_send_ioctl.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_send_syscall.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_sendrecv_ioctl.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_bool.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_cstring.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_cstring_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_int16.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_int32.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_int64.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_int8.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_keysym.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_uint16.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_uint32.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_uint64.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_set_uint8.3 comp-c-man .man +./usr/share/man/man3/prop_dictionary_util.3 comp-c-man .man +./usr/share/man/man3/prop_ingest.3 comp-c-man .man +./usr/share/man/man3/prop_ingest_context_alloc.3 comp-c-man .man +./usr/share/man/man3/prop_ingest_context_error.3 comp-c-man .man +./usr/share/man/man3/prop_ingest_context_free.3 comp-c-man .man +./usr/share/man/man3/prop_ingest_context_key.3 comp-c-man .man +./usr/share/man/man3/prop_ingest_context_private.3 comp-c-man .man +./usr/share/man/man3/prop_ingest_context_type.3 comp-c-man .man +./usr/share/man/man3/prop_number.3 comp-c-man .man +./usr/share/man/man3/prop_number_copy.3 comp-c-man .man +./usr/share/man/man3/prop_number_create_integer.3 comp-c-man .man +./usr/share/man/man3/prop_number_create_unsigned_integer.3 comp-c-man .man +./usr/share/man/man3/prop_number_equals.3 comp-c-man .man +./usr/share/man/man3/prop_number_equals_integer.3 comp-c-man .man +./usr/share/man/man3/prop_number_equals_unsigned_integer.3 comp-c-man .man +./usr/share/man/man3/prop_number_integer_value.3 comp-c-man .man +./usr/share/man/man3/prop_number_size.3 comp-c-man .man +./usr/share/man/man3/prop_number_unsigned.3 comp-c-man .man +./usr/share/man/man3/prop_number_unsigned_integer_value.3 comp-c-man .man +./usr/share/man/man3/prop_object.3 comp-c-man .man +./usr/share/man/man3/prop_object_equals.3 comp-c-man .man +./usr/share/man/man3/prop_object_iterator_next.3 comp-c-man .man +./usr/share/man/man3/prop_object_iterator_release.3 comp-c-man .man +./usr/share/man/man3/prop_object_iterator_reset.3 comp-c-man .man +./usr/share/man/man3/prop_object_release.3 comp-c-man .man +./usr/share/man/man3/prop_object_retain.3 comp-c-man .man +./usr/share/man/man3/prop_object_type.3 comp-c-man .man +./usr/share/man/man3/prop_send_ioctl.3 comp-c-man .man +./usr/share/man/man3/prop_send_syscall.3 comp-c-man .man +./usr/share/man/man3/prop_string.3 comp-c-man .man +./usr/share/man/man3/prop_string_append.3 comp-c-man .man +./usr/share/man/man3/prop_string_append_cstring.3 comp-c-man .man +./usr/share/man/man3/prop_string_copy.3 comp-c-man .man +./usr/share/man/man3/prop_string_copy_mutable.3 comp-c-man .man +./usr/share/man/man3/prop_string_create.3 comp-c-man .man +./usr/share/man/man3/prop_string_create_cstring.3 comp-c-man .man +./usr/share/man/man3/prop_string_create_cstring_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_string_cstring.3 comp-c-man .man +./usr/share/man/man3/prop_string_cstring_nocopy.3 comp-c-man .man +./usr/share/man/man3/prop_string_equals.3 comp-c-man .man +./usr/share/man/man3/prop_string_equals_cstring.3 comp-c-man .man +./usr/share/man/man3/prop_string_mutable.3 comp-c-man .man +./usr/share/man/man3/prop_string_size.3 comp-c-man .man +./usr/share/man/man3/proplib.3 comp-c-man .man +./usr/share/man/man3/pset.3 comp-c-man .man +./usr/share/man/man3/pset_assign.3 comp-c-man .man +./usr/share/man/man3/pset_bind.3 comp-c-man .man +./usr/share/man/man3/pset_create.3 comp-c-man .man +./usr/share/man/man3/pset_destroy.3 comp-c-man .man +./usr/share/man/man3/psiginfo.3 comp-c-man .man +./usr/share/man/man3/psignal.3 comp-c-man .man +./usr/share/man/man3/pthread.3 comp-c-man .man +./usr/share/man/man3/pthread_atfork.3 comp-c-man .man +./usr/share/man/man3/pthread_attr.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_get_np.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getdetachstate.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getguardsize.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getinheritsched.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getname_np.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getschedparam.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getschedpolicy.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getscope.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getstack.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getstackaddr.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_getstacksize.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_init.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setcreatesuspend_np.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setdetachstate.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setguardsize.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setinheritsched.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setname_np.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setschedparam.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setschedpolicy.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setscope.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setstack.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setstackaddr.3 comp-c-man .man +./usr/share/man/man3/pthread_attr_setstacksize.3 comp-c-man .man +./usr/share/man/man3/pthread_barierattr_destroy.3 comp-obsolete obsolete +./usr/share/man/man3/pthread_barierattr_init.3 comp-obsolete obsolete +./usr/share/man/man3/pthread_barrier.3 comp-c-man .man +./usr/share/man/man3/pthread_barrier_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_barrier_init.3 comp-c-man .man +./usr/share/man/man3/pthread_barrier_wait.3 comp-c-man .man +./usr/share/man/man3/pthread_barrierattr.3 comp-c-man .man +./usr/share/man/man3/pthread_barrierattr_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_barrierattr_init.3 comp-c-man .man +./usr/share/man/man3/pthread_cancel.3 comp-c-man .man +./usr/share/man/man3/pthread_cleanup_pop.3 comp-c-man .man +./usr/share/man/man3/pthread_cleanup_push.3 comp-c-man .man +./usr/share/man/man3/pthread_cond.3 comp-c-man .man +./usr/share/man/man3/pthread_cond_broadcast.3 comp-c-man .man +./usr/share/man/man3/pthread_cond_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_cond_init.3 comp-c-man .man +./usr/share/man/man3/pthread_cond_signal.3 comp-c-man .man +./usr/share/man/man3/pthread_cond_timedwait.3 comp-c-man .man +./usr/share/man/man3/pthread_cond_wait.3 comp-c-man .man +./usr/share/man/man3/pthread_condattr.3 comp-c-man .man +./usr/share/man/man3/pthread_condattr_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_condattr_init.3 comp-c-man .man +./usr/share/man/man3/pthread_create.3 comp-c-man .man +./usr/share/man/man3/pthread_curcpu_np.3 comp-c-man .man +./usr/share/man/man3/pthread_detach.3 comp-c-man .man +./usr/share/man/man3/pthread_equal.3 comp-c-man .man +./usr/share/man/man3/pthread_exit.3 comp-c-man .man +./usr/share/man/man3/pthread_getaffinity_np.3 comp-c-man .man +./usr/share/man/man3/pthread_getattr_np.3 comp-c-man .man +./usr/share/man/man3/pthread_getname_np.3 comp-c-man .man +./usr/share/man/man3/pthread_getschedparam.3 comp-c-man .man +./usr/share/man/man3/pthread_getspecific.3 comp-c-man .man +./usr/share/man/man3/pthread_join.3 comp-c-man .man +./usr/share/man/man3/pthread_key_create.3 comp-c-man .man +./usr/share/man/man3/pthread_key_delete.3 comp-c-man .man +./usr/share/man/man3/pthread_kill.3 comp-c-man .man +./usr/share/man/man3/pthread_mutex.3 comp-c-man .man +./usr/share/man/man3/pthread_mutex_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_mutex_init.3 comp-c-man .man +./usr/share/man/man3/pthread_mutex_lock.3 comp-c-man .man +./usr/share/man/man3/pthread_mutex_trylock.3 comp-c-man .man +./usr/share/man/man3/pthread_mutex_unlock.3 comp-c-man .man +./usr/share/man/man3/pthread_mutexattr.3 comp-c-man .man +./usr/share/man/man3/pthread_mutexattr_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_mutexattr_gettype.3 comp-c-man .man +./usr/share/man/man3/pthread_mutexattr_init.3 comp-c-man .man +./usr/share/man/man3/pthread_mutexattr_settype.3 comp-c-man .man +./usr/share/man/man3/pthread_once.3 comp-c-man .man +./usr/share/man/man3/pthread_resume_np.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_init.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_rdlock.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_timedrdlock.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_timedwrlock.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_tryrdlock.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_trywrlock.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_unlock.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlock_wrlock.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlockattr.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlockattr_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_rwlockattr_init.3 comp-c-man .man +./usr/share/man/man3/pthread_schedparam.3 comp-c-man .man +./usr/share/man/man3/pthread_self.3 comp-c-man .man +./usr/share/man/man3/pthread_setaffinity_np.3 comp-c-man .man +./usr/share/man/man3/pthread_setcancelstate.3 comp-c-man .man +./usr/share/man/man3/pthread_setcanceltype.3 comp-c-man .man +./usr/share/man/man3/pthread_setname_np.3 comp-c-man .man +./usr/share/man/man3/pthread_setschedparam.3 comp-c-man .man +./usr/share/man/man3/pthread_setspecific.3 comp-c-man .man +./usr/share/man/man3/pthread_sigmask.3 comp-c-man .man +./usr/share/man/man3/pthread_spin.3 comp-c-man .man +./usr/share/man/man3/pthread_spin_destroy.3 comp-c-man .man +./usr/share/man/man3/pthread_spin_init.3 comp-c-man .man +./usr/share/man/man3/pthread_spin_lock.3 comp-c-man .man +./usr/share/man/man3/pthread_spin_trylock.3 comp-c-man .man +./usr/share/man/man3/pthread_spin_unlock.3 comp-c-man .man +./usr/share/man/man3/pthread_suspend_np.3 comp-c-man .man +./usr/share/man/man3/pthread_testcancel.3 comp-c-man .man +./usr/share/man/man3/ptsname.3 comp-c-man .man +./usr/share/man/man3/puffs.3 comp-puffs-man .man +./usr/share/man/man3/puffs_cc.3 comp-puffs-man .man +./usr/share/man/man3/puffs_cred.3 comp-puffs-man .man +./usr/share/man/man3/puffs_flush.3 comp-puffs-man .man +./usr/share/man/man3/puffs_framebuf.3 comp-puffs-man .man +./usr/share/man/man3/puffs_node.3 comp-puffs-man .man +./usr/share/man/man3/puffs_ops.3 comp-puffs-man .man +./usr/share/man/man3/puffs_path.3 comp-puffs-man .man +./usr/share/man/man3/puffs_req.3 comp-obsolete obsolete +./usr/share/man/man3/puffs_suspend.3 comp-obsolete obsolete +./usr/share/man/man3/putc.3 comp-c-man .man +./usr/share/man/man3/putc_unlocked.3 comp-c-man .man +./usr/share/man/man3/putchar.3 comp-c-man .man +./usr/share/man/man3/putchar_unlocked.3 comp-c-man .man +./usr/share/man/man3/putenv.3 comp-c-man .man +./usr/share/man/man3/putp.3 comp-c-man .man +./usr/share/man/man3/puts.3 comp-c-man .man +./usr/share/man/man3/pututxline.3 comp-c-man .man +./usr/share/man/man3/putw.3 comp-c-man .man +./usr/share/man/man3/putwc.3 comp-c-man .man +./usr/share/man/man3/putwchar.3 comp-c-man .man +./usr/share/man/man3/putwin.3 comp-c-man .man +./usr/share/man/man3/pw_abort.3 comp-c-man .man +./usr/share/man/man3/pw_copy.3 comp-c-man .man +./usr/share/man/man3/pw_copyx.3 comp-c-man .man +./usr/share/man/man3/pw_edit.3 comp-c-man .man +./usr/share/man/man3/pw_error.3 comp-c-man .man +./usr/share/man/man3/pw_getconf.3 comp-c-man .man +./usr/share/man/man3/pw_getprefix.3 comp-c-man .man +./usr/share/man/man3/pw_getpwconf.3 comp-c-man .man +./usr/share/man/man3/pw_init.3 comp-c-man .man +./usr/share/man/man3/pw_lock.3 comp-c-man .man +./usr/share/man/man3/pw_mkdb.3 comp-c-man .man +./usr/share/man/man3/pw_policy.3 comp-obsolete obsolete +./usr/share/man/man3/pw_prompt.3 comp-c-man .man +./usr/share/man/man3/pw_scan.3 comp-c-man .man +./usr/share/man/man3/pw_setprefix.3 comp-c-man .man +./usr/share/man/man3/pwcache.3 comp-c-man .man +./usr/share/man/man3/pwcache_groupdb.3 comp-c-man .man +./usr/share/man/man3/pwcache_userdb.3 comp-c-man .man +./usr/share/man/man3/qabs.3 comp-c-man .man +./usr/share/man/man3/qdiv.3 comp-c-man .man +./usr/share/man/man3/qiflush.3 comp-c-man .man +./usr/share/man/man3/qsort.3 comp-c-man .man +./usr/share/man/man3/queue.3 comp-c-man .man +./usr/share/man/man3/quota_close.3 comp-c-man .man +./usr/share/man/man3/quota_delete.3 comp-c-man .man +./usr/share/man/man3/quota_get.3 comp-c-man .man +./usr/share/man/man3/quota_getimplname.3 comp-c-man .man +./usr/share/man/man3/quota_getmountdevice.3 comp-c-man .man +./usr/share/man/man3/quota_getmountpoint.3 comp-c-man .man +./usr/share/man/man3/quota_getnumidtypes.3 comp-c-man .man +./usr/share/man/man3/quota_getnumobjtypes.3 comp-c-man .man +./usr/share/man/man3/quota_getrestrictions.3 comp-c-man .man +./usr/share/man/man3/quota_idtype_getname.3 comp-c-man .man +./usr/share/man/man3/quota_objtype_getname.3 comp-c-man .man +./usr/share/man/man3/quota_objtype_isbytes.3 comp-c-man .man +./usr/share/man/man3/quota_open.3 comp-c-man .man +./usr/share/man/man3/quota_opencursor.3 comp-c-man .man +./usr/share/man/man3/quota_put.3 comp-c-man .man +./usr/share/man/man3/quota_quotaoff.3 comp-c-man .man +./usr/share/man/man3/quota_quotaon.3 comp-c-man .man +./usr/share/man/man3/quotacursor_atend.3 comp-c-man .man +./usr/share/man/man3/quotacursor_close.3 comp-c-man .man +./usr/share/man/man3/quotacursor_get.3 comp-c-man .man +./usr/share/man/man3/quotacursor_getn.3 comp-c-man .man +./usr/share/man/man3/quotacursor_rewind.3 comp-c-man .man +./usr/share/man/man3/quotacursor_skipidtype.3 comp-c-man .man +./usr/share/man/man3/quotaval_clear.3 comp-c-man .man +./usr/share/man/man3/radixsort.3 comp-c-man .man +./usr/share/man/man3/raise.3 comp-c-man .man +./usr/share/man/man3/raise_default_signal.3 comp-c-man .man +./usr/share/man/man3/rand.3 comp-c-man .man +./usr/share/man/man3/rand48.3 comp-c-man .man +./usr/share/man/man3/rand_r.3 comp-c-man .man +./usr/share/man/man3/random.3 comp-c-man .man +./usr/share/man/man3/randomid.3 comp-c-man .man +./usr/share/man/man3/randomid_delete.3 comp-c-man .man +./usr/share/man/man3/randomid_new.3 comp-c-man .man +./usr/share/man/man3/raw.3 comp-c-man .man +./usr/share/man/man3/rb.3 comp-obsolete obsolete +./usr/share/man/man3/rb_tree_find_node.3 comp-c-man .man +./usr/share/man/man3/rb_tree_find_node_geq.3 comp-c-man .man +./usr/share/man/man3/rb_tree_find_node_leq.3 comp-c-man .man +./usr/share/man/man3/rb_tree_init.3 comp-c-man .man +./usr/share/man/man3/rb_tree_insert_node.3 comp-c-man .man +./usr/share/man/man3/rb_tree_iterate.3 comp-c-man .man +./usr/share/man/man3/rbtree.3 comp-c-man .man +./usr/share/man/man3/rc4.3 comp-obsolete obsolete +./usr/share/man/man3/rcmd.3 comp-c-man .man +./usr/share/man/man3/rcmd_af.3 comp-c-man .man +./usr/share/man/man3/re_comp.3 comp-c-man .man +./usr/share/man/man3/re_exec.3 comp-c-man .man +./usr/share/man/man3/readdir.3 comp-c-man .man +./usr/share/man/man3/readdir_r.3 comp-c-man .man +./usr/share/man/man3/realloc.3 comp-c-man .man +./usr/share/man/man3/realpath.3 comp-c-man .man +./usr/share/man/man3/recno.3 comp-c-man .man +./usr/share/man/man3/refresh.3 comp-c-man .man +./usr/share/man/man3/refuse.3 comp-refuse-man .man +./usr/share/man/man3/regcomp.3 comp-c-man .man +./usr/share/man/man3/regerror.3 comp-c-man .man +./usr/share/man/man3/regex.3 comp-c-man .man +./usr/share/man/man3/regexec.3 comp-c-man .man +./usr/share/man/man3/regexp.3 comp-c-man .man +./usr/share/man/man3/regfree.3 comp-c-man .man +./usr/share/man/man3/registerrpc.3 comp-c-man .man +./usr/share/man/man3/regsterrpc.3 comp-obsolete obsolete +./usr/share/man/man3/remainder.3 comp-c-man .man +./usr/share/man/man3/remainderf.3 comp-c-man .man +./usr/share/man/man3/remove.3 comp-c-man .man +./usr/share/man/man3/remque.3 comp-c-man .man +./usr/share/man/man3/remquo.3 comp-c-man .man +./usr/share/man/man3/remquof.3 comp-c-man .man +./usr/share/man/man3/request_init.3 comp-c-man .man +./usr/share/man/man3/request_set.3 comp-c-man .man +./usr/share/man/man3/res_close.3 comp-c-man .man +./usr/share/man/man3/res_findzonecut.3 comp-c-man .man +./usr/share/man/man3/res_getservers.3 comp-c-man .man +./usr/share/man/man3/res_hostalias.3 comp-c-man .man +./usr/share/man/man3/res_init.3 comp-c-man .man +./usr/share/man/man3/res_isourserver.3 comp-c-man .man +./usr/share/man/man3/res_mkquery.3 comp-c-man .man +./usr/share/man/man3/res_nclose.3 comp-c-man .man +./usr/share/man/man3/res_ndestroy.3 comp-c-man .man +./usr/share/man/man3/res_ninit.3 comp-c-man .man +./usr/share/man/man3/res_nmkquery.3 comp-c-man .man +./usr/share/man/man3/res_nmkupdate.3 comp-c-man .man +./usr/share/man/man3/res_nquery.3 comp-c-man .man +./usr/share/man/man3/res_nquerydomain.3 comp-c-man .man +./usr/share/man/man3/res_nsearch.3 comp-c-man .man +./usr/share/man/man3/res_nsend.3 comp-c-man .man +./usr/share/man/man3/res_nsendsigned.3 comp-c-man .man +./usr/share/man/man3/res_nupdate.3 comp-c-man .man +./usr/share/man/man3/res_ourserver_p.3 comp-c-man .man +./usr/share/man/man3/res_pquery.3 comp-c-man .man +./usr/share/man/man3/res_query.3 comp-c-man .man +./usr/share/man/man3/res_querydomain.3 comp-c-man .man +./usr/share/man/man3/res_search.3 comp-c-man .man +./usr/share/man/man3/res_send.3 comp-c-man .man +./usr/share/man/man3/res_setservers.3 comp-c-man .man +./usr/share/man/man3/res_update.3 comp-c-man .man +./usr/share/man/man3/reset_com_err_hook.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/reset_prog_mode.3 comp-c-man .man +./usr/share/man/man3/reset_shell_mode.3 comp-c-man .man +./usr/share/man/man3/resetty.3 comp-c-man .man +./usr/share/man/man3/resizeterm.3 comp-c-man .man +./usr/share/man/man3/resolver.3 comp-c-man .man +./usr/share/man/man3/rewind.3 comp-c-man .man +./usr/share/man/man3/rewinddir.3 comp-c-man .man +./usr/share/man/man3/rexec.3 comp-c-man .man +./usr/share/man/man3/rindex.3 comp-c-man .man +./usr/share/man/man3/rint.3 comp-c-man .man +./usr/share/man/man3/rintf.3 comp-c-man .man +./usr/share/man/man3/ripemd.3 comp-obsolete obsolete +./usr/share/man/man3/rmd160.3 comp-c-man .man +./usr/share/man/man3/rmtops.3 comp-c-man .man +./usr/share/man/man3/round.3 comp-c-man .man +./usr/share/man/man3/roundf.3 comp-c-man .man +./usr/share/man/man3/rpc.3 comp-c-man .man +./usr/share/man/man3/rpc_broadcast.3 comp-c-man .man +./usr/share/man/man3/rpc_broadcast_exp.3 comp-c-man .man +./usr/share/man/man3/rpc_call.3 comp-c-man .man +./usr/share/man/man3/rpc_clnt_auth.3 comp-c-man .man +./usr/share/man/man3/rpc_clnt_calls.3 comp-c-man .man +./usr/share/man/man3/rpc_clnt_create.3 comp-c-man .man +./usr/share/man/man3/rpc_createerr.3 comp-c-man .man +./usr/share/man/man3/rpc_reg.3 comp-c-man .man +./usr/share/man/man3/rpc_soc.3 comp-c-man .man +./usr/share/man/man3/rpc_svc_calls.3 comp-c-man .man +./usr/share/man/man3/rpc_svc_create.3 comp-c-man .man +./usr/share/man/man3/rpc_svc_err.3 comp-c-man .man +./usr/share/man/man3/rpc_svc_reg.3 comp-c-man .man +./usr/share/man/man3/rpc_xdr.3 comp-c-man .man +./usr/share/man/man3/rpcb_getaddr.3 comp-c-man .man +./usr/share/man/man3/rpcb_getmaps.3 comp-c-man .man +./usr/share/man/man3/rpcb_gettime.3 comp-c-man .man +./usr/share/man/man3/rpcb_rmtcall.3 comp-c-man .man +./usr/share/man/man3/rpcb_set.3 comp-c-man .man +./usr/share/man/man3/rpcb_unset.3 comp-c-man .man +./usr/share/man/man3/rpcbind.3 comp-c-man .man +./usr/share/man/man3/rresvport.3 comp-c-man .man +./usr/share/man/man3/rresvport_af.3 comp-c-man .man +./usr/share/man/man3/rsa.3 comp-obsolete obsolete +./usr/share/man/man3/rump.3 comp-c-man .man,rump +./usr/share/man/man3/rump_etfs.3 comp-c-man .man,rump +./usr/share/man/man3/rump_lwproc.3 comp-c-man .man,rump +./usr/share/man/man3/rumpclient.3 comp-c-man .man,rump +./usr/share/man/man3/rumphijack.3 comp-c-man .man,rump +./usr/share/man/man3/rumpuser.3 comp-c-man .man,rump +./usr/share/man/man3/ruserok.3 comp-c-man .man +./usr/share/man/man3/saslc.d.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_alloc.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_end.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_init.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_cont.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_decode.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_encode.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_end.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_getmech.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_getprop.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_init.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_setprop.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_sess_strerror.3 comp-c-man crypto,.man +./usr/share/man/man3/saslc_strerror.3 comp-c-man crypto,.man +./usr/share/man/man3/savetty.3 comp-c-man .man +./usr/share/man/man3/scalb.3 comp-c-man .man +./usr/share/man/man3/scalbf.3 comp-c-man .man +./usr/share/man/man3/scalbn.3 comp-c-man .man +./usr/share/man/man3/scalbnf.3 comp-c-man .man +./usr/share/man/man3/scalbnl.3 comp-c-man .man +./usr/share/man/man3/scale_form.3 comp-c-man .man +./usr/share/man/man3/scale_menu.3 comp-c-man .man +./usr/share/man/man3/scandir.3 comp-c-man .man +./usr/share/man/man3/scanf.3 comp-c-man .man +./usr/share/man/man3/scanw.3 comp-c-man .man +./usr/share/man/man3/sched.3 comp-c-man .man +./usr/share/man/man3/sched_get_priority_max.3 comp-c-man .man +./usr/share/man/man3/sched_get_priority_min.3 comp-c-man .man +./usr/share/man/man3/sched_getparam.3 comp-c-man .man +./usr/share/man/man3/sched_getscheduler.3 comp-c-man .man +./usr/share/man/man3/sched_rr_get_interval.3 comp-c-man .man +./usr/share/man/man3/sched_setparam.3 comp-c-man .man +./usr/share/man/man3/sched_setscheduler.3 comp-c-man .man +./usr/share/man/man3/sched_yield.3 comp-c-man .man +./usr/share/man/man3/scrl.3 comp-c-man .man +./usr/share/man/man3/scroll.3 comp-c-man .man +./usr/share/man/man3/scrollok.3 comp-c-man .man +./usr/share/man/man3/sdp.3 comp-c-man .man +./usr/share/man/man3/sdp_attr2desc.3 comp-obsolete obsolete +./usr/share/man/man3/sdp_change_service.3 comp-obsolete obsolete +./usr/share/man/man3/sdp_close.3 comp-c-man .man +./usr/share/man/man3/sdp_data.3 comp-c-man .man +./usr/share/man/man3/sdp_data_print.3 comp-c-man .man +./usr/share/man/man3/sdp_data_size.3 comp-c-man .man +./usr/share/man/man3/sdp_data_type.3 comp-c-man .man +./usr/share/man/man3/sdp_data_valid.3 comp-c-man .man +./usr/share/man/man3/sdp_error.3 comp-obsolete obsolete +./usr/share/man/man3/sdp_get_alt.3 comp-c-man .man +./usr/share/man/man3/sdp_get_attr.3 comp-c-man .man +./usr/share/man/man3/sdp_get_bool.3 comp-c-man .man +./usr/share/man/man3/sdp_get_data.3 comp-c-man .man +./usr/share/man/man3/sdp_get_int.3 comp-c-man .man +./usr/share/man/man3/sdp_get_seq.3 comp-c-man .man +./usr/share/man/man3/sdp_get_str.3 comp-c-man .man +./usr/share/man/man3/sdp_get_uint.3 comp-c-man .man +./usr/share/man/man3/sdp_get_url.3 comp-c-man .man +./usr/share/man/man3/sdp_get_uuid.3 comp-c-man .man +./usr/share/man/man3/sdp_match_uuid16.3 comp-c-man .man +./usr/share/man/man3/sdp_open.3 comp-c-man .man +./usr/share/man/man3/sdp_open_local.3 comp-c-man .man +./usr/share/man/man3/sdp_put_alt.3 comp-c-man .man +./usr/share/man/man3/sdp_put_attr.3 comp-c-man .man +./usr/share/man/man3/sdp_put_bool.3 comp-c-man .man +./usr/share/man/man3/sdp_put_data.3 comp-c-man .man +./usr/share/man/man3/sdp_put_int.3 comp-c-man .man +./usr/share/man/man3/sdp_put_int16.3 comp-c-man .man +./usr/share/man/man3/sdp_put_int32.3 comp-c-man .man +./usr/share/man/man3/sdp_put_int64.3 comp-c-man .man +./usr/share/man/man3/sdp_put_int8.3 comp-c-man .man +./usr/share/man/man3/sdp_put_seq.3 comp-c-man .man +./usr/share/man/man3/sdp_put_str.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uint.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uint16.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uint32.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uint64.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uint8.3 comp-c-man .man +./usr/share/man/man3/sdp_put_url.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uuid.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uuid128.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uuid16.3 comp-c-man .man +./usr/share/man/man3/sdp_put_uuid32.3 comp-c-man .man +./usr/share/man/man3/sdp_record_insert.3 comp-c-man .man +./usr/share/man/man3/sdp_record_remove.3 comp-c-man .man +./usr/share/man/man3/sdp_record_update.3 comp-c-man .man +./usr/share/man/man3/sdp_register_service.3 comp-obsolete obsolete +./usr/share/man/man3/sdp_search.3 comp-obsolete obsolete +./usr/share/man/man3/sdp_service_attribute.3 comp-c-man .man +./usr/share/man/man3/sdp_service_search.3 comp-c-man .man +./usr/share/man/man3/sdp_service_search_attribute.3 comp-c-man .man +./usr/share/man/man3/sdp_set_alt.3 comp-c-man .man +./usr/share/man/man3/sdp_set_bool.3 comp-c-man .man +./usr/share/man/man3/sdp_set_int.3 comp-c-man .man +./usr/share/man/man3/sdp_set_seq.3 comp-c-man .man +./usr/share/man/man3/sdp_set_uint.3 comp-c-man .man +./usr/share/man/man3/sdp_unregister_service.3 comp-obsolete obsolete +./usr/share/man/man3/sdp_uuid2desc.3 comp-obsolete obsolete +./usr/share/man/man3/secure_path.3 comp-c-man .man +./usr/share/man/man3/securepath.3 comp-obsolete obsolete +./usr/share/man/man3/seed48.3 comp-c-man .man +./usr/share/man/man3/seekdir.3 comp-c-man .man +./usr/share/man/man3/sem_close.3 comp-c-man .man +./usr/share/man/man3/sem_destroy.3 comp-c-man .man +./usr/share/man/man3/sem_getvalue.3 comp-c-man .man +./usr/share/man/man3/sem_init.3 comp-c-man .man +./usr/share/man/man3/sem_open.3 comp-c-man .man +./usr/share/man/man3/sem_post.3 comp-c-man .man +./usr/share/man/man3/sem_timedwait.3 comp-c-man .man +./usr/share/man/man3/sem_trywait.3 comp-c-man .man +./usr/share/man/man3/sem_unlink.3 comp-c-man .man +./usr/share/man/man3/sem_wait.3 comp-c-man .man +./usr/share/man/man3/set_com_err_hook.3 comp-krb5-man kerberos,.man +./usr/share/man/man3/set_current_field.3 comp-c-man .man +./usr/share/man/man3/set_current_item.3 comp-c-man .man +./usr/share/man/man3/set_curterm.3 comp-c-man .man +./usr/share/man/man3/set_field_back.3 comp-c-man .man +./usr/share/man/man3/set_field_buffer.3 comp-c-man .man +./usr/share/man/man3/set_field_fore.3 comp-c-man .man +./usr/share/man/man3/set_field_init.3 comp-c-man .man +./usr/share/man/man3/set_field_just.3 comp-c-man .man +./usr/share/man/man3/set_field_opts.3 comp-c-man .man +./usr/share/man/man3/set_field_pad.3 comp-c-man .man +./usr/share/man/man3/set_field_printf.3 comp-c-man .man +./usr/share/man/man3/set_field_status.3 comp-c-man .man +./usr/share/man/man3/set_field_term.3 comp-c-man .man +./usr/share/man/man3/set_field_type.3 comp-c-man .man +./usr/share/man/man3/set_field_userptr.3 comp-c-man .man +./usr/share/man/man3/set_fieldtype_arg.3 comp-c-man .man +./usr/share/man/man3/set_fieldtype_choice.3 comp-c-man .man +./usr/share/man/man3/set_form_fields.3 comp-c-man .man +./usr/share/man/man3/set_form_init.3 comp-c-man .man +./usr/share/man/man3/set_form_opts.3 comp-c-man .man +./usr/share/man/man3/set_form_page.3 comp-c-man .man +./usr/share/man/man3/set_form_sub.3 comp-c-man .man +./usr/share/man/man3/set_form_term.3 comp-c-man .man +./usr/share/man/man3/set_form_userptr.3 comp-c-man .man +./usr/share/man/man3/set_form_win.3 comp-c-man .man +./usr/share/man/man3/set_item_init.3 comp-c-man .man +./usr/share/man/man3/set_item_term.3 comp-c-man .man +./usr/share/man/man3/set_item_userptr.3 comp-c-man .man +./usr/share/man/man3/set_item_value.3 comp-c-man .man +./usr/share/man/man3/set_max_field.3 comp-c-man .man +./usr/share/man/man3/set_menu_back.3 comp-c-man .man +./usr/share/man/man3/set_menu_fore.3 comp-c-man .man +./usr/share/man/man3/set_menu_format.3 comp-c-man .man +./usr/share/man/man3/set_menu_grey.3 comp-c-man .man +./usr/share/man/man3/set_menu_init.3 comp-c-man .man +./usr/share/man/man3/set_menu_items.3 comp-c-man .man +./usr/share/man/man3/set_menu_mark.3 comp-c-man .man +./usr/share/man/man3/set_menu_opts.3 comp-c-man .man +./usr/share/man/man3/set_menu_pad.3 comp-c-man .man +./usr/share/man/man3/set_menu_sub.3 comp-c-man .man +./usr/share/man/man3/set_menu_term.3 comp-c-man .man +./usr/share/man/man3/set_menu_unmark.3 comp-c-man .man +./usr/share/man/man3/set_menu_userptr.3 comp-c-man .man +./usr/share/man/man3/set_menu_win.3 comp-c-man .man +./usr/share/man/man3/set_new_page.3 comp-c-man .man +./usr/share/man/man3/set_term.3 comp-c-man .man +./usr/share/man/man3/set_top_row.3 comp-c-man .man +./usr/share/man/man3/setbuf.3 comp-c-man .man +./usr/share/man/man3/setbuffer.3 comp-c-man .man +./usr/share/man/man3/setclasscontext.3 comp-c-man .man +./usr/share/man/man3/setdisktab.3 comp-c-man .man +./usr/share/man/man3/setdomainname.3 comp-c-man .man +./usr/share/man/man3/setenv.3 comp-c-man .man +./usr/share/man/man3/setfsent.3 comp-c-man .man +./usr/share/man/man3/setgrent.3 comp-c-man .man +./usr/share/man/man3/setgroupent.3 comp-c-man .man +./usr/share/man/man3/sethostent.3 comp-c-man .man +./usr/share/man/man3/sethostid.3 comp-c-man .man +./usr/share/man/man3/sethostname.3 comp-c-man .man +./usr/share/man/man3/setjmp.3 comp-c-man .man +./usr/share/man/man3/setkey.3 comp-c-man .man +./usr/share/man/man3/setlinebuf.3 comp-c-man .man +./usr/share/man/man3/setlocale.3 comp-c-man .man +./usr/share/man/man3/setlogmask.3 comp-c-man .man +./usr/share/man/man3/setlogmask_r.3 comp-c-man .man +./usr/share/man/man3/setmode.3 comp-c-man .man +./usr/share/man/man3/setnetconfig.3 comp-c-man .man +./usr/share/man/man3/setnetent.3 comp-c-man .man +./usr/share/man/man3/setnetgrent.3 comp-c-man .man +./usr/share/man/man3/setnetpath.3 comp-c-man .man +./usr/share/man/man3/setpassent.3 comp-c-man .man +./usr/share/man/man3/setproctitle.3 comp-c-man .man +./usr/share/man/man3/setprogname.3 comp-c-man .man +./usr/share/man/man3/setprotoent.3 comp-c-man .man +./usr/share/man/man3/setpwent.3 comp-c-man .man +./usr/share/man/man3/setrgid.3 comp-c-man .man +./usr/share/man/man3/setrpcent.3 comp-c-man .man +./usr/share/man/man3/setruid.3 comp-c-man .man +./usr/share/man/man3/setscrreg.3 comp-c-man .man +./usr/share/man/man3/setservent.3 comp-c-man .man +./usr/share/man/man3/setstate.3 comp-c-man .man +./usr/share/man/man3/setterm.3 comp-c-man .man +./usr/share/man/man3/setttyent.3 comp-c-man .man +./usr/share/man/man3/setttyentpath.3 comp-c-man .man +./usr/share/man/man3/setupterm.3 comp-c-man .man +./usr/share/man/man3/setusercontext.3 comp-c-man .man +./usr/share/man/man3/setusershell.3 comp-c-man .man +./usr/share/man/man3/setutxent.3 comp-c-man .man +./usr/share/man/man3/setvbuf.3 comp-c-man .man +./usr/share/man/man3/sha.3 comp-obsolete obsolete +./usr/share/man/man3/sha1.3 comp-c-man .man +./usr/share/man/man3/sha2.3 comp-c-man .man +./usr/share/man/man3/shquote.3 comp-c-man .man +./usr/share/man/man3/shquotev.3 comp-c-man .man +./usr/share/man/man3/sigaddset.3 comp-c-man .man +./usr/share/man/man3/sigblock.3 comp-c-man .man +./usr/share/man/man3/sigdelset.3 comp-c-man .man +./usr/share/man/man3/sigemptyset.3 comp-c-man .man +./usr/share/man/man3/sigevent.3 comp-c-man .man +./usr/share/man/man3/sigfillset.3 comp-c-man .man +./usr/share/man/man3/sighold.3 comp-c-man .man +./usr/share/man/man3/sigignore.3 comp-c-man .man +./usr/share/man/man3/siginterrupt.3 comp-c-man .man +./usr/share/man/man3/sigismember.3 comp-c-man .man +./usr/share/man/man3/siglongjmp.3 comp-c-man .man +./usr/share/man/man3/signal.3 comp-c-man .man +./usr/share/man/man3/signal_add.3 comp-c-man .man +./usr/share/man/man3/signal_del.3 comp-c-man .man +./usr/share/man/man3/signal_initialized.3 comp-c-man .man +./usr/share/man/man3/signal_pending.3 comp-c-man .man +./usr/share/man/man3/signal_set.3 comp-c-man .man +./usr/share/man/man3/signbit.3 comp-c-man .man +./usr/share/man/man3/significand.3 comp-c-man .man +./usr/share/man/man3/significandf.3 comp-c-man .man +./usr/share/man/man3/sigpause.3 comp-c-man .man +./usr/share/man/man3/sigrelse.3 comp-c-man .man +./usr/share/man/man3/sigset.3 comp-c-man .man +./usr/share/man/man3/sigsetjmp.3 comp-c-man .man +./usr/share/man/man3/sigsetmask.3 comp-c-man .man +./usr/share/man/man3/sigsetops.3 comp-c-man .man +./usr/share/man/man3/sigvec.3 comp-c-man .man +./usr/share/man/man3/simpleq_empty.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_entry.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_first.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_head.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_head_initializer.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_init.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_insert_after.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_insert_head.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_insert_tail.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_next.3 comp-obsolete obsolete +./usr/share/man/man3/simpleq_remove_head.3 comp-obsolete obsolete +./usr/share/man/man3/sin.3 comp-c-man .man +./usr/share/man/man3/sinf.3 comp-c-man .man +./usr/share/man/man3/sinh.3 comp-c-man .man +./usr/share/man/man3/sinhf.3 comp-c-man .man +./usr/share/man/man3/skey.3 comp-c-man skey,.man +./usr/share/man/man3/skey_authenticate.3 comp-c-man skey,.man +./usr/share/man/man3/skey_get_algorithm.3 comp-c-man skey,.man +./usr/share/man/man3/skey_haskey.3 comp-c-man skey,.man +./usr/share/man/man3/skey_keyinfo.3 comp-c-man skey,.man +./usr/share/man/man3/skey_passcheck.3 comp-c-man skey,.man +./usr/share/man/man3/skey_set_algorithm.3 comp-c-man skey,.man +./usr/share/man/man3/skeychallenge.3 comp-c-man skey,.man +./usr/share/man/man3/skeygetnext.3 comp-c-man skey,.man +./usr/share/man/man3/skeylookup.3 comp-c-man skey,.man +./usr/share/man/man3/skeyverify.3 comp-c-man skey,.man +./usr/share/man/man3/skeyzero.3 comp-c-man skey,.man +./usr/share/man/man3/sl_add.3 comp-c-man .man +./usr/share/man/man3/sl_find.3 comp-c-man .man +./usr/share/man/man3/sl_free.3 comp-c-man .man +./usr/share/man/man3/sl_init.3 comp-c-man .man +./usr/share/man/man3/sleep.3 comp-c-man .man +./usr/share/man/man3/snprintb.3 comp-c-man .man +./usr/share/man/man3/snprintb_m.3 comp-c-man .man +./usr/share/man/man3/snprintf.3 comp-c-man .man +./usr/share/man/man3/snvis.3 comp-c-man .man +./usr/share/man/man3/sockaddr_snprintf.3 comp-c-man .man +./usr/share/man/man3/sockatmark.3 comp-c-man .man +./usr/share/man/man3/sprintf.3 comp-c-man .man +./usr/share/man/man3/sqrt.3 comp-c-man .man +./usr/share/man/man3/sqrtf.3 comp-c-man .man +./usr/share/man/man3/sradixsort.3 comp-c-man .man +./usr/share/man/man3/srand.3 comp-c-man .man +./usr/share/man/man3/srand48.3 comp-c-man .man +./usr/share/man/man3/srandom.3 comp-c-man .man +./usr/share/man/man3/sscanf.3 comp-c-man .man +./usr/share/man/man3/ssl.3 comp-c-man crypto,.man +./usr/share/man/man3/ssp.3 comp-c-man .man +./usr/share/man/man3/standend.3 comp-c-man .man +./usr/share/man/man3/standout.3 comp-c-man .man +./usr/share/man/man3/start_color.3 comp-c-man .man +./usr/share/man/man3/stat_flags.3 comp-c-man .man +./usr/share/man/man3/stdarg.3 comp-c-man .man +./usr/share/man/man3/stdbool.3 comp-c-man .man +./usr/share/man/man3/stddef.3 comp-c-man .man +./usr/share/man/man3/stdint.3 comp-c-man .man +./usr/share/man/man3/stdio.3 comp-c-man .man +./usr/share/man/man3/stdlib.3 comp-c-man .man +./usr/share/man/man3/stpcpy.3 comp-c-man .man +./usr/share/man/man3/stpncpy.3 comp-c-man .man +./usr/share/man/man3/strcasecmp.3 comp-c-man .man +./usr/share/man/man3/strcasestr.3 comp-c-man .man +./usr/share/man/man3/strcat.3 comp-c-man .man +./usr/share/man/man3/strchr.3 comp-c-man .man +./usr/share/man/man3/strcmp.3 comp-c-man .man +./usr/share/man/man3/strcoll.3 comp-c-man .man +./usr/share/man/man3/strcpy.3 comp-c-man .man +./usr/share/man/man3/strcspn.3 comp-c-man .man +./usr/share/man/man3/strdup.3 comp-c-man .man +./usr/share/man/man3/strerror.3 comp-c-man .man +./usr/share/man/man3/strerror_r.3 comp-c-man .man +./usr/share/man/man3/stresep.3 comp-c-man .man +./usr/share/man/man3/strfmon.3 comp-c-man .man +./usr/share/man/man3/strftime.3 comp-c-man .man +./usr/share/man/man3/strftime_z.3 comp-c-man .man +./usr/share/man/man3/string.3 comp-c-man .man +./usr/share/man/man3/string_to_flags.3 comp-c-man .man +./usr/share/man/man3/stringlist.3 comp-c-man .man +./usr/share/man/man3/strings.3 comp-c-man .man +./usr/share/man/man3/strlcat.3 comp-c-man .man +./usr/share/man/man3/strlcpy.3 comp-c-man .man +./usr/share/man/man3/strlen.3 comp-c-man .man +./usr/share/man/man3/strmode.3 comp-c-man .man +./usr/share/man/man3/strncasecmp.3 comp-c-man .man +./usr/share/man/man3/strncat.3 comp-c-man .man +./usr/share/man/man3/strncmp.3 comp-c-man .man +./usr/share/man/man3/strncpy.3 comp-c-man .man +./usr/share/man/man3/strndup.3 comp-c-man .man +./usr/share/man/man3/strnlen.3 comp-c-man .man +./usr/share/man/man3/strnunvis.3 comp-c-man .man +./usr/share/man/man3/strnunvisx.3 comp-c-man .man +./usr/share/man/man3/strnvis.3 comp-c-man .man +./usr/share/man/man3/strnvisx.3 comp-c-man .man +./usr/share/man/man3/strpbrk.3 comp-c-man .man +./usr/share/man/man3/strpct.3 comp-c-man .man +./usr/share/man/man3/strptime.3 comp-c-man .man +./usr/share/man/man3/strrchr.3 comp-c-man .man +./usr/share/man/man3/strsep.3 comp-c-man .man +./usr/share/man/man3/strsignal.3 comp-c-man .man +./usr/share/man/man3/strsnvis.3 comp-c-man .man +./usr/share/man/man3/strsnvisx.3 comp-c-man .man +./usr/share/man/man3/strspct.3 comp-c-man .man +./usr/share/man/man3/strspn.3 comp-c-man .man +./usr/share/man/man3/strstr.3 comp-c-man .man +./usr/share/man/man3/strsuftoll.3 comp-c-man .man +./usr/share/man/man3/strsuftollx.3 comp-c-man .man +./usr/share/man/man3/strsvis.3 comp-c-man .man +./usr/share/man/man3/strsvisx.3 comp-c-man .man +./usr/share/man/man3/strtod.3 comp-c-man .man +./usr/share/man/man3/strtof.3 comp-c-man .man +./usr/share/man/man3/strtoimax.3 comp-c-man .man +./usr/share/man/man3/strtok.3 comp-c-man .man +./usr/share/man/man3/strtok_r.3 comp-c-man .man +./usr/share/man/man3/strtol.3 comp-c-man .man +./usr/share/man/man3/strtold.3 comp-c-man .man +./usr/share/man/man3/strtoll.3 comp-c-man .man +./usr/share/man/man3/strtoq.3 comp-c-man .man +./usr/share/man/man3/strtoul.3 comp-c-man .man +./usr/share/man/man3/strtoull.3 comp-c-man .man +./usr/share/man/man3/strtoumax.3 comp-c-man .man +./usr/share/man/man3/strtouq.3 comp-c-man .man +./usr/share/man/man3/strunvis.3 comp-c-man .man +./usr/share/man/man3/strunvisx.3 comp-c-man .man +./usr/share/man/man3/strvis.3 comp-c-man .man +./usr/share/man/man3/strvisx.3 comp-c-man .man +./usr/share/man/man3/strxfrm.3 comp-c-man .man +./usr/share/man/man3/stty.3 comp-c-man .man +./usr/share/man/man3/subpad.3 comp-c-man .man +./usr/share/man/man3/subwin.3 comp-c-man .man +./usr/share/man/man3/svc_auth_reg.3 comp-c-man .man +./usr/share/man/man3/svc_control.3 comp-c-man .man +./usr/share/man/man3/svc_create.3 comp-c-man .man +./usr/share/man/man3/svc_destroy.3 comp-c-man .man +./usr/share/man/man3/svc_dg_create.3 comp-c-man .man +./usr/share/man/man3/svc_dg_enablecache.3 comp-c-man .man +./usr/share/man/man3/svc_exit.3 comp-c-man .man +./usr/share/man/man3/svc_fd_create.3 comp-c-man .man +./usr/share/man/man3/svc_fds.3 comp-c-man .man +./usr/share/man/man3/svc_fdset.3 comp-c-man .man +./usr/share/man/man3/svc_freeargs.3 comp-c-man .man +./usr/share/man/man3/svc_getargs.3 comp-c-man .man +./usr/share/man/man3/svc_getcaller.3 comp-c-man .man +./usr/share/man/man3/svc_getreg.3 comp-obsolete obsolete +./usr/share/man/man3/svc_getregset.3 comp-obsolete obsolete +./usr/share/man/man3/svc_getreq_common.3 comp-c-man .man +./usr/share/man/man3/svc_getreq_poll.3 comp-c-man .man +./usr/share/man/man3/svc_getreqset.3 comp-c-man .man +./usr/share/man/man3/svc_getrpccaller.3 comp-c-man .man +./usr/share/man/man3/svc_pollset.3 comp-c-man .man +./usr/share/man/man3/svc_raw_create.3 comp-c-man .man +./usr/share/man/man3/svc_reg.3 comp-c-man .man +./usr/share/man/man3/svc_register.3 comp-c-man .man +./usr/share/man/man3/svc_run.3 comp-c-man .man +./usr/share/man/man3/svc_sendreply.3 comp-c-man .man +./usr/share/man/man3/svc_tli_create.3 comp-c-man .man +./usr/share/man/man3/svc_tp_create.3 comp-c-man .man +./usr/share/man/man3/svc_unreg.3 comp-c-man .man +./usr/share/man/man3/svc_unregister.3 comp-c-man .man +./usr/share/man/man3/svc_vc_create.3 comp-c-man .man +./usr/share/man/man3/svcerr_auth.3 comp-c-man .man +./usr/share/man/man3/svcerr_decode.3 comp-c-man .man +./usr/share/man/man3/svcerr_noproc.3 comp-c-man .man +./usr/share/man/man3/svcerr_noprog.3 comp-c-man .man +./usr/share/man/man3/svcerr_progvers.3 comp-c-man .man +./usr/share/man/man3/svcerr_systemerr.3 comp-c-man .man +./usr/share/man/man3/svcerr_weakauth.3 comp-c-man .man +./usr/share/man/man3/svcfd_create.3 comp-c-man .man +./usr/share/man/man3/svcraw_create.3 comp-c-man .man +./usr/share/man/man3/svctcp_create.3 comp-c-man .man +./usr/share/man/man3/svcudp_bufcreate.3 comp-c-man .man +./usr/share/man/man3/svcudp_create.3 comp-c-man .man +./usr/share/man/man3/svis.3 comp-c-man .man +./usr/share/man/man3/swab.3 comp-c-man .man +./usr/share/man/man3/swapcontext.3 comp-c-man .man +./usr/share/man/man3/swapon.3 comp-c-man .man +./usr/share/man/man3/swprintf.3 comp-c-man .man +./usr/share/man/man3/swscanf.3 comp-c-man .man +./usr/share/man/man3/sys_errlist.3 comp-c-man .man +./usr/share/man/man3/sys_nerr.3 comp-c-man .man +./usr/share/man/man3/sys_siglist.3 comp-c-man .man +./usr/share/man/man3/sys_signame.3 comp-c-man .man +./usr/share/man/man3/sysconf.3 comp-c-man .man +./usr/share/man/man3/sysctl.3 comp-c-man .man +./usr/share/man/man3/sysctlbyname.3 comp-c-man .man +./usr/share/man/man3/sysctlgetmibinfo.3 comp-c-man .man +./usr/share/man/man3/sysctlnametomib.3 comp-c-man .man +./usr/share/man/man3/sysexits.3 comp-c-man .man +./usr/share/man/man3/syslog.3 comp-c-man .man +./usr/share/man/man3/syslog_r.3 comp-c-man .man +./usr/share/man/man3/syslog_ss.3 comp-obsolete obsolete +./usr/share/man/man3/syslogp.3 comp-c-man .man +./usr/share/man/man3/syslogp_r.3 comp-c-man .man +./usr/share/man/man3/system.3 comp-c-man .man +./usr/share/man/man3/t_freent.3 comp-obsolete obsolete +./usr/share/man/man3/t_getent.3 comp-obsolete obsolete +./usr/share/man/man3/t_getflag.3 comp-obsolete obsolete +./usr/share/man/man3/t_getnum.3 comp-obsolete obsolete +./usr/share/man/man3/t_getstr.3 comp-obsolete obsolete +./usr/share/man/man3/t_goto.3 comp-obsolete obsolete +./usr/share/man/man3/t_parm.3 comp-obsolete obsolete +./usr/share/man/man3/t_puts.3 comp-obsolete obsolete +./usr/share/man/man3/t_putws.3 comp-obsolete obsolete +./usr/share/man/man3/t_vparm.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_empty.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_entry.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_first.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_head.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_head_initializer.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_init.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_insert_after.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_insert_before.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_insert_head.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_insert_tail.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_next.3 comp-obsolete obsolete +./usr/share/man/man3/tailq_remove.3 comp-obsolete obsolete +./usr/share/man/man3/tan.3 comp-c-man .man +./usr/share/man/man3/tanf.3 comp-c-man .man +./usr/share/man/man3/tanh.3 comp-c-man .man +./usr/share/man/man3/tanhf.3 comp-c-man .man +./usr/share/man/man3/tcdrain.3 comp-c-man .man +./usr/share/man/man3/tcflow.3 comp-c-man .man +./usr/share/man/man3/tcflush.3 comp-c-man .man +./usr/share/man/man3/tcgetattr.3 comp-c-man .man +./usr/share/man/man3/tcgetpgrp.3 comp-c-man .man +./usr/share/man/man3/tcgetsid.3 comp-c-man .man +./usr/share/man/man3/tcsendbreak.3 comp-c-man .man +./usr/share/man/man3/tcsetattr.3 comp-c-man .man +./usr/share/man/man3/tcsetpgrp.3 comp-c-man .man +./usr/share/man/man3/tdelete.3 comp-c-man .man +./usr/share/man/man3/telldir.3 comp-c-man .man +./usr/share/man/man3/tempnam.3 comp-c-man .man +./usr/share/man/man3/termcap.3 comp-c-man .man +./usr/share/man/man3/terminfo.3 comp-c-man .man +./usr/share/man/man3/termname.3 comp-c-man .man +./usr/share/man/man3/textdomain.3 comp-c-man .man +./usr/share/man/man3/tfind.3 comp-c-man .man +./usr/share/man/man3/tgamma.3 comp-c-man .man +./usr/share/man/man3/tgammaf.3 comp-c-man .man +./usr/share/man/man3/tgetent.3 comp-c-man .man +./usr/share/man/man3/tgetflag.3 comp-c-man .man +./usr/share/man/man3/tgetnum.3 comp-c-man .man +./usr/share/man/man3/tgetstr.3 comp-c-man .man +./usr/share/man/man3/tgmath.3 comp-c-man .man +./usr/share/man/man3/tgoto.3 comp-c-man .man +./usr/share/man/man3/threads.3 comp-obsolete obsolete +./usr/share/man/man3/ti_getflag.3 comp-c-man .man +./usr/share/man/man3/ti_getnum.3 comp-c-man .man +./usr/share/man/man3/ti_getstr.3 comp-c-man .man +./usr/share/man/man3/ti_putp.3 comp-c-man .man +./usr/share/man/man3/ti_puts.3 comp-c-man .man +./usr/share/man/man3/ti_setupterm.3 comp-c-man .man +./usr/share/man/man3/ti_tiparm.3 comp-c-man .man +./usr/share/man/man3/tigetflag.3 comp-c-man .man +./usr/share/man/man3/tigetnum.3 comp-c-man .man +./usr/share/man/man3/tigetstr.3 comp-c-man .man +./usr/share/man/man3/time.3 comp-c-man .man +./usr/share/man/man3/time2posix.3 comp-c-man .man +./usr/share/man/man3/time2posix_z.3 comp-c-man .man +./usr/share/man/man3/timegm.3 comp-c-man .man +./usr/share/man/man3/timelocal.3 comp-c-man .man +./usr/share/man/man3/timeoff.3 comp-c-man .man +./usr/share/man/man3/timeout.3 comp-c-man .man +./usr/share/man/man3/timeradd.3 comp-c-man .man +./usr/share/man/man3/timerclear.3 comp-c-man .man +./usr/share/man/man3/timercmp.3 comp-c-man .man +./usr/share/man/man3/timerisset.3 comp-c-man .man +./usr/share/man/man3/timersub.3 comp-c-man .man +./usr/share/man/man3/times.3 comp-c-man .man +./usr/share/man/man3/timespec.3 comp-c-man .man +./usr/share/man/man3/timespecadd.3 comp-c-man .man +./usr/share/man/man3/timespecclear.3 comp-c-man .man +./usr/share/man/man3/timespeccmp.3 comp-c-man .man +./usr/share/man/man3/timespecisset.3 comp-c-man .man +./usr/share/man/man3/timespecsub.3 comp-c-man .man +./usr/share/man/man3/timeval.3 comp-c-man .man +./usr/share/man/man3/timezone.3 comp-c-man .man +./usr/share/man/man3/tiparm.3 comp-c-man .man +./usr/share/man/man3/tm.3 comp-c-man .man +./usr/share/man/man3/tmpfile.3 comp-c-man .man +./usr/share/man/man3/tmpnam.3 comp-c-man .man +./usr/share/man/man3/toascii.3 comp-c-man .man +./usr/share/man/man3/tok_end.3 comp-c-man .man +./usr/share/man/man3/tok_init.3 comp-c-man .man +./usr/share/man/man3/tok_line.3 comp-c-man .man +./usr/share/man/man3/tok_reset.3 comp-c-man .man +./usr/share/man/man3/tok_str.3 comp-c-man .man +./usr/share/man/man3/tolower.3 comp-c-man .man +./usr/share/man/man3/top_row.3 comp-c-man .man +./usr/share/man/man3/touchline.3 comp-c-man .man +./usr/share/man/man3/touchoverlap.3 comp-c-man .man +./usr/share/man/man3/touchwin.3 comp-c-man .man +./usr/share/man/man3/toupper.3 comp-c-man .man +./usr/share/man/man3/towctrans.3 comp-c-man .man +./usr/share/man/man3/towlower.3 comp-c-man .man +./usr/share/man/man3/towupper.3 comp-c-man .man +./usr/share/man/man3/tparm.3 comp-c-man .man +./usr/share/man/man3/tputs.3 comp-c-man .man +./usr/share/man/man3/tree.3 comp-c-man .man +./usr/share/man/man3/trunc.3 comp-c-man .man +./usr/share/man/man3/truncf.3 comp-c-man .man +./usr/share/man/man3/tsearch.3 comp-c-man .man +./usr/share/man/man3/ttyaction.3 comp-c-man .man +./usr/share/man/man3/ttylock.3 comp-c-man .man +./usr/share/man/man3/ttymsg.3 comp-c-man .man +./usr/share/man/man3/ttyname.3 comp-c-man .man +./usr/share/man/man3/ttyname_r.3 comp-c-man .man +./usr/share/man/man3/ttyslot.3 comp-c-man .man +./usr/share/man/man3/ttyunlock.3 comp-c-man .man +./usr/share/man/man3/twalk.3 comp-c-man .man +./usr/share/man/man3/typeof.3 comp-c-man .man +./usr/share/man/man3/types.3 comp-c-man .man +./usr/share/man/man3/tzalloc.3 comp-c-man .man +./usr/share/man/man3/tzfree.3 comp-c-man .man +./usr/share/man/man3/tzgetname.3 comp-c-man .man +./usr/share/man/man3/tzset.3 comp-c-man .man +./usr/share/man/man3/tzsetwall.3 comp-c-man .man +./usr/share/man/man3/ualarm.3 comp-c-man .man +./usr/share/man/man3/uid_from_user.3 comp-c-man .man +./usr/share/man/man3/ukfs.3 comp-c-man .man,rump +./usr/share/man/man3/ulimit.3 comp-c-man .man +./usr/share/man/man3/uname.3 comp-c-man .man +./usr/share/man/man3/unctrl.3 comp-c-man .man +./usr/share/man/man3/underend.3 comp-c-man .man +./usr/share/man/man3/underscore.3 comp-c-man .man +./usr/share/man/man3/ungetc.3 comp-c-man .man +./usr/share/man/man3/ungetch.3 comp-c-man .man +./usr/share/man/man3/ungetwc.3 comp-c-man .man +./usr/share/man/man3/unistd.3 comp-c-man .man +./usr/share/man/man3/unlockpt.3 comp-c-man .man +./usr/share/man/man3/unpost_form.3 comp-c-man .man +./usr/share/man/man3/unpost_menu.3 comp-c-man .man +./usr/share/man/man3/unsetenv.3 comp-c-man .man +./usr/share/man/man3/untouchwin.3 comp-c-man .man +./usr/share/man/man3/unvis.3 comp-c-man .man +./usr/share/man/man3/updlastlogx.3 comp-c-man .man +./usr/share/man/man3/updwtmpx.3 comp-c-man .man +./usr/share/man/man3/usb.3 comp-obsolete obsolete +./usr/share/man/man3/usbhid.3 comp-c-man .man +./usr/share/man/man3/use_default_colors.3 comp-c-man .man +./usr/share/man/man3/user_from_uid.3 comp-c-man .man +./usr/share/man/man3/usleep.3 comp-c-man .man +./usr/share/man/man3/util.3 comp-c-man .man +./usr/share/man/man3/utime.3 comp-c-man .man +./usr/share/man/man3/utmpxname.3 comp-c-man .man +./usr/share/man/man3/uuid.3 comp-c-man .man +./usr/share/man/man3/uuid_compare.3 comp-c-man .man +./usr/share/man/man3/uuid_create.3 comp-c-man .man +./usr/share/man/man3/uuid_create_nil.3 comp-c-man .man +./usr/share/man/man3/uuid_dec_be.3 comp-c-man .man +./usr/share/man/man3/uuid_dec_le.3 comp-c-man .man +./usr/share/man/man3/uuid_enc_be.3 comp-c-man .man +./usr/share/man/man3/uuid_enc_le.3 comp-c-man .man +./usr/share/man/man3/uuid_equal.3 comp-c-man .man +./usr/share/man/man3/uuid_from_string.3 comp-c-man .man +./usr/share/man/man3/uuid_hash.3 comp-c-man .man +./usr/share/man/man3/uuid_is_nil.3 comp-c-man .man +./usr/share/man/man3/uuid_to_string.3 comp-c-man .man +./usr/share/man/man3/va_arg.3 comp-c-man .man +./usr/share/man/man3/va_copy.3 comp-c-man .man +./usr/share/man/man3/va_end.3 comp-c-man .man +./usr/share/man/man3/va_start.3 comp-c-man .man +./usr/share/man/man3/valloc.3 comp-c-man .man +./usr/share/man/man3/varargs.3 comp-obsolete obsolete +./usr/share/man/man3/vasprintf.3 comp-c-man .man +./usr/share/man/man3/vdprintf.3 comp-c-man .man +./usr/share/man/man3/verr.3 comp-c-man .man +./usr/share/man/man3/verrx.3 comp-c-man .man +./usr/share/man/man3/vfprintf.3 comp-c-man .man +./usr/share/man/man3/vfscanf.3 comp-c-man .man +./usr/share/man/man3/vfwprintf.3 comp-c-man .man +./usr/share/man/man3/vfwscanf.3 comp-c-man .man +./usr/share/man/man3/vis.3 comp-c-man .man +./usr/share/man/man3/vlimit.3 comp-obsolete obsolete +./usr/share/man/man3/vline.3 comp-c-man .man +./usr/share/man/man3/vprintf.3 comp-c-man .man +./usr/share/man/man3/vscanf.3 comp-c-man .man +./usr/share/man/man3/vsnprintf.3 comp-c-man .man +./usr/share/man/man3/vsnprintf_ss.3 comp-c-man .man +./usr/share/man/man3/vsprintf.3 comp-c-man .man +./usr/share/man/man3/vsscanf.3 comp-c-man .man +./usr/share/man/man3/vswprintf.3 comp-c-man .man +./usr/share/man/man3/vswscanf.3 comp-c-man .man +./usr/share/man/man3/vsyslog.3 comp-c-man .man +./usr/share/man/man3/vsyslog_r.3 comp-c-man .man +./usr/share/man/man3/vsyslog_ss.3 comp-obsolete obsolete +./usr/share/man/man3/vsyslogp.3 comp-c-man .man +./usr/share/man/man3/vsyslogp_r.3 comp-c-man .man +./usr/share/man/man3/vtimes.3 comp-obsolete obsolete +./usr/share/man/man3/vwarn.3 comp-c-man .man +./usr/share/man/man3/vwarnx.3 comp-c-man .man +./usr/share/man/man3/vwprintf.3 comp-c-man .man +./usr/share/man/man3/vwscanf.3 comp-c-man .man +./usr/share/man/man3/waddch.3 comp-c-man .man +./usr/share/man/man3/waddchnstr.3 comp-c-man .man +./usr/share/man/man3/waddchstr.3 comp-c-man .man +./usr/share/man/man3/waddnstr.3 comp-c-man .man +./usr/share/man/man3/waddstr.3 comp-c-man .man +./usr/share/man/man3/warn.3 comp-c-man .man +./usr/share/man/man3/warnx.3 comp-c-man .man +./usr/share/man/man3/wattr_get.3 comp-c-man .man +./usr/share/man/man3/wattr_off.3 comp-c-man .man +./usr/share/man/man3/wattr_on.3 comp-c-man .man +./usr/share/man/man3/wattr_set.3 comp-c-man .man +./usr/share/man/man3/wattroff.3 comp-c-man .man +./usr/share/man/man3/wattron.3 comp-c-man .man +./usr/share/man/man3/wattrset.3 comp-c-man .man +./usr/share/man/man3/wbkgd.3 comp-c-man .man +./usr/share/man/man3/wbkgdset.3 comp-c-man .man +./usr/share/man/man3/wborder.3 comp-c-man .man +./usr/share/man/man3/wchgat.3 comp-c-man .man +./usr/share/man/man3/wclear.3 comp-c-man .man +./usr/share/man/man3/wclrtobot.3 comp-c-man .man +./usr/share/man/man3/wclrtoeol.3 comp-c-man .man +./usr/share/man/man3/wcolor_set.3 comp-c-man .man +./usr/share/man/man3/wcrtomb.3 comp-c-man .man +./usr/share/man/man3/wcscasecmp.3 comp-c-man .man +./usr/share/man/man3/wcscat.3 comp-c-man .man +./usr/share/man/man3/wcschr.3 comp-c-man .man +./usr/share/man/man3/wcscmp.3 comp-c-man .man +./usr/share/man/man3/wcscoll.3 comp-c-man .man +./usr/share/man/man3/wcscpy.3 comp-c-man .man +./usr/share/man/man3/wcscspn.3 comp-c-man .man +./usr/share/man/man3/wcsdup.3 comp-c-man .man +./usr/share/man/man3/wcsftime.3 comp-c-man .man +./usr/share/man/man3/wcslcat.3 comp-c-man .man +./usr/share/man/man3/wcslcpy.3 comp-c-man .man +./usr/share/man/man3/wcslen.3 comp-c-man .man +./usr/share/man/man3/wcsncasecmp.3 comp-c-man .man +./usr/share/man/man3/wcsncat.3 comp-c-man .man +./usr/share/man/man3/wcsncmp.3 comp-c-man .man +./usr/share/man/man3/wcsncpy.3 comp-c-man .man +./usr/share/man/man3/wcspbrk.3 comp-c-man .man +./usr/share/man/man3/wcsrchr.3 comp-c-man .man +./usr/share/man/man3/wcsrtombs.3 comp-c-man .man +./usr/share/man/man3/wcsspn.3 comp-c-man .man +./usr/share/man/man3/wcsstr.3 comp-c-man .man +./usr/share/man/man3/wcstod.3 comp-c-man .man +./usr/share/man/man3/wcstof.3 comp-c-man .man +./usr/share/man/man3/wcstoimax.3 comp-c-man .man +./usr/share/man/man3/wcstok.3 comp-c-man .man +./usr/share/man/man3/wcstol.3 comp-c-man .man +./usr/share/man/man3/wcstold.3 comp-c-man .man +./usr/share/man/man3/wcstoll.3 comp-c-man .man +./usr/share/man/man3/wcstombs.3 comp-c-man .man +./usr/share/man/man3/wcstoul.3 comp-c-man .man +./usr/share/man/man3/wcstoull.3 comp-c-man .man +./usr/share/man/man3/wcstoumax.3 comp-c-man .man +./usr/share/man/man3/wcswcs.3 comp-c-man .man +./usr/share/man/man3/wcswidth.3 comp-c-man .man +./usr/share/man/man3/wcsxfrm.3 comp-c-man .man +./usr/share/man/man3/wctob.3 comp-c-man .man +./usr/share/man/man3/wctomb.3 comp-c-man .man +./usr/share/man/man3/wctrans.3 comp-c-man .man +./usr/share/man/man3/wctype.3 comp-c-man .man +./usr/share/man/man3/wcwidth.3 comp-c-man .man +./usr/share/man/man3/wdelch.3 comp-c-man .man +./usr/share/man/man3/wdeleteln.3 comp-c-man .man +./usr/share/man/man3/wechochar.3 comp-c-man .man +./usr/share/man/man3/werase.3 comp-c-man .man +./usr/share/man/man3/wgetch.3 comp-c-man .man +./usr/share/man/man3/wgetnstr.3 comp-c-man .man +./usr/share/man/man3/wgetstr.3 comp-c-man .man +./usr/share/man/man3/whline.3 comp-c-man .man +./usr/share/man/man3/winch.3 comp-c-man .man +./usr/share/man/man3/winchnstr.3 comp-c-man .man +./usr/share/man/man3/winchstr.3 comp-c-man .man +./usr/share/man/man3/winnstr.3 comp-c-man .man +./usr/share/man/man3/winsch.3 comp-c-man .man +./usr/share/man/man3/winsdelln.3 comp-c-man .man +./usr/share/man/man3/winsertln.3 comp-c-man .man +./usr/share/man/man3/winstr.3 comp-c-man .man +./usr/share/man/man3/wmemchr.3 comp-c-man .man +./usr/share/man/man3/wmemcmp.3 comp-c-man .man +./usr/share/man/man3/wmemcpy.3 comp-c-man .man +./usr/share/man/man3/wmemmove.3 comp-c-man .man +./usr/share/man/man3/wmemset.3 comp-c-man .man +./usr/share/man/man3/wmove.3 comp-c-man .man +./usr/share/man/man3/wnoutrefresh.3 comp-c-man .man +./usr/share/man/man3/wordexp.3 comp-c-man .man +./usr/share/man/man3/wprintf.3 comp-c-man .man +./usr/share/man/man3/wprintw.3 comp-c-man .man +./usr/share/man/man3/wrefresh.3 comp-c-man .man +./usr/share/man/man3/wresize.3 comp-c-man .man +./usr/share/man/man3/wscanf.3 comp-c-man .man +./usr/share/man/man3/wscanw.3 comp-c-man .man +./usr/share/man/man3/wscrl.3 comp-c-man .man +./usr/share/man/man3/wsetscrreg.3 comp-c-man .man +./usr/share/man/man3/wstandend.3 comp-c-man .man +./usr/share/man/man3/wstandout.3 comp-c-man .man +./usr/share/man/man3/wtimeout.3 comp-c-man .man +./usr/share/man/man3/wtouchln.3 comp-c-man .man +./usr/share/man/man3/wunderend.3 comp-c-man .man +./usr/share/man/man3/wunderscore.3 comp-c-man .man +./usr/share/man/man3/wvline.3 comp-c-man .man +./usr/share/man/man3/xdr.3 comp-c-man .man +./usr/share/man/man3/xdr_accepted_reply.3 comp-c-man .man +./usr/share/man/man3/xdr_array.3 comp-c-man .man +./usr/share/man/man3/xdr_authsys_parms.3 comp-c-man .man +./usr/share/man/man3/xdr_bool.3 comp-c-man .man +./usr/share/man/man3/xdr_bytes.3 comp-c-man .man +./usr/share/man/man3/xdr_callhdr.3 comp-c-man .man +./usr/share/man/man3/xdr_callmsg.3 comp-c-man .man +./usr/share/man/man3/xdr_char.3 comp-c-man .man +./usr/share/man/man3/xdr_destroy.3 comp-c-man .man +./usr/share/man/man3/xdr_double.3 comp-c-man .man +./usr/share/man/man3/xdr_enum.3 comp-c-man .man +./usr/share/man/man3/xdr_float.3 comp-c-man .man +./usr/share/man/man3/xdr_free.3 comp-c-man .man +./usr/share/man/man3/xdr_getpos.3 comp-c-man .man +./usr/share/man/man3/xdr_inline.3 comp-c-man .man +./usr/share/man/man3/xdr_int.3 comp-c-man .man +./usr/share/man/man3/xdr_long.3 comp-c-man .man +./usr/share/man/man3/xdr_opaque.3 comp-c-man .man +./usr/share/man/man3/xdr_opaque_auth.3 comp-c-man .man +./usr/share/man/man3/xdr_pmap.3 comp-c-man .man +./usr/share/man/man3/xdr_pmaplist.3 comp-c-man .man +./usr/share/man/man3/xdr_pointer.3 comp-c-man .man +./usr/share/man/man3/xdr_reference.3 comp-c-man .man +./usr/share/man/man3/xdr_rejected_reply.3 comp-c-man .man +./usr/share/man/man3/xdr_replymsg.3 comp-c-man .man +./usr/share/man/man3/xdr_setpos.3 comp-c-man .man +./usr/share/man/man3/xdr_short.3 comp-c-man .man +./usr/share/man/man3/xdr_sizeof.3 comp-c-man .man +./usr/share/man/man3/xdr_string.3 comp-c-man .man +./usr/share/man/man3/xdr_u_char.3 comp-c-man .man +./usr/share/man/man3/xdr_u_long.3 comp-c-man .man +./usr/share/man/man3/xdr_u_short.3 comp-c-man .man +./usr/share/man/man3/xdr_union.3 comp-c-man .man +./usr/share/man/man3/xdr_vector.3 comp-c-man .man +./usr/share/man/man3/xdr_void.3 comp-c-man .man +./usr/share/man/man3/xdr_wrapstring.3 comp-c-man .man +./usr/share/man/man3/xdrmem_create.3 comp-c-man .man +./usr/share/man/man3/xdrrec_create.3 comp-c-man .man +./usr/share/man/man3/xdrrec_endofrecord.3 comp-c-man .man +./usr/share/man/man3/xdrrec_eof.3 comp-c-man .man +./usr/share/man/man3/xdrrec_skiprecord.3 comp-c-man .man +./usr/share/man/man3/xdrstdio_create.3 comp-c-man .man +./usr/share/man/man3/xprt_register.3 comp-c-man .man +./usr/share/man/man3/xprt_unregister.3 comp-c-man .man +./usr/share/man/man3/y0.3 comp-c-man .man +./usr/share/man/man3/y0f.3 comp-c-man .man +./usr/share/man/man3/y1.3 comp-c-man .man +./usr/share/man/man3/y1f.3 comp-c-man .man +./usr/share/man/man3/yn.3 comp-c-man .man +./usr/share/man/man3/ynf.3 comp-c-man .man +./usr/share/man/man3/yp_all.3 comp-c-man yp,.man +./usr/share/man/man3/yp_bind.3 comp-c-man yp,.man +./usr/share/man/man3/yp_first.3 comp-c-man yp,.man +./usr/share/man/man3/yp_get_default_domain.3 comp-c-man yp,.man +./usr/share/man/man3/yp_master.3 comp-c-man yp,.man +./usr/share/man/man3/yp_match.3 comp-c-man yp,.man +./usr/share/man/man3/yp_next.3 comp-c-man yp,.man +./usr/share/man/man3/yp_order.3 comp-c-man yp,.man +./usr/share/man/man3/yp_setbindtries.3 comp-c-man yp,.man +./usr/share/man/man3/yp_unbind.3 comp-c-man yp,.man +./usr/share/man/man3/ypclnt.3 comp-c-man yp,.man +./usr/share/man/man3/yperr_string.3 comp-c-man yp,.man +./usr/share/man/man3/ypprot_err.3 comp-c-man yp,.man +./usr/share/man/man3/zlib.3 comp-c-man .man +./usr/share/man/man5/config.5 comp-util-man .man +./usr/share/man/man5/config.samples.5 comp-util-man .man +./usr/share/man/man5/cpio.5 comp-util-man .man +./usr/share/man/man5/cvs.5 comp-cvs-man cvs,.man +./usr/share/man/man5/ldap.conf.5 comp-ldap-man ldap,.man +./usr/share/man/man5/ldif.5 comp-ldap-man ldap,.man +./usr/share/man/man5/libarchive-formats.5 comp-util-man .man +./usr/share/man/man5/mech.5 comp-krb5-man kerberos,.man +./usr/share/man/man5/mk.conf.5 comp-util-man .man +./usr/share/man/man5/mtree.5 comp-util-man .man +./usr/share/man/man5/ranlib.5 comp-util-man .man +./usr/share/man/man5/statvfs.5 comp-util-man .man +./usr/share/man/man5/tar.5 comp-util-man .man +./usr/share/man/man7/operator.7 comp-c-man .man +./usr/share/man/man8/config.8 comp-obsolete obsolete +./usr/share/man/man8/cvsbug.8 comp-cvs-man cvs,.man +./usr/share/man/man8/genassym.8 comp-obsolete obsolete +./usr/share/man/man8/kgmon.8 comp-sysutil-man .man +./usr/share/man/man9/BOOT_FLAG.9 comp-sys-man .man +./usr/share/man/man9/CALLOUT_INITIALIZER.9 comp-obsolete obsolete +./usr/share/man/man9/CALLOUT_INITIALIZER_SETFUNC.9 comp-obsolete obsolete +./usr/share/man/man9/CARDBUS_PRODUCT.9 comp-sys-man .man +./usr/share/man/man9/CARDBUS_VENDOR.9 comp-sys-man .man +./usr/share/man/man9/CLR.9 comp-sys-man .man +./usr/share/man/man9/CTASSERT.9 comp-sys-man .man +./usr/share/man/man9/Cardbus_conf_read.9 comp-sys-man .man +./usr/share/man/man9/Cardbus_conf_write.9 comp-sys-man .man +./usr/share/man/man9/Cardbus_free_tag.9 comp-sys-man .man +./usr/share/man/man9/Cardbus_function_disable.9 comp-sys-man .man +./usr/share/man/man9/Cardbus_function_enable.9 comp-sys-man .man +./usr/share/man/man9/Cardbus_make_tag.9 comp-sys-man .man +./usr/share/man/man9/Cardbus_mapreg_map.9 comp-sys-man .man +./usr/share/man/man9/Cardbus_mapreg_unmap.9 comp-sys-man .man +./usr/share/man/man9/DELAY.9 comp-sys-man .man +./usr/share/man/man9/ETHER_FIRST_MULTI.9 comp-sys-man .man +./usr/share/man/man9/ETHER_IS_MULTICAST.9 comp-sys-man .man +./usr/share/man/man9/ETHER_NEXT_MULTI.9 comp-sys-man .man +./usr/share/man/man9/FILE_IS_USABLE.9 comp-sys-man .man +./usr/share/man/man9/FILE_SET_MATURE.9 comp-sys-man .man +./usr/share/man/man9/FILE_UNUSE.9 comp-sys-man .man +./usr/share/man/man9/FILE_USE.9 comp-sys-man .man +./usr/share/man/man9/FREE.9 comp-sys-man .man +./usr/share/man/man9/HOLDRELE.9 comp-obsolete obsolete +./usr/share/man/man9/ISSET.9 comp-sys-man .man +./usr/share/man/man9/KASSERT.9 comp-sys-man .man +./usr/share/man/man9/KASSERTMSG.9 comp-sys-man .man +./usr/share/man/man9/KDASSERT.9 comp-sys-man .man +./usr/share/man/man9/KDASSERTMSG.9 comp-sys-man .man +./usr/share/man/man9/KNOTE.9 comp-sys-man .man +./usr/share/man/man9/LWP_CACHE_CREDS.9 comp-sys-man .man +./usr/share/man/man9/MALLOC.9 comp-sys-man .man +./usr/share/man/man9/MALLOC_DECLARE.9 comp-sys-man .man +./usr/share/man/man9/MALLOC_DEFINE.9 comp-sys-man .man +./usr/share/man/man9/MALLOC_DEFINE_LIMIT.9 comp-sys-man .man +./usr/share/man/man9/MCHTYPE.9 comp-sys-man .man +./usr/share/man/man9/MCLGET.9 comp-sys-man .man +./usr/share/man/man9/MEXTADD.9 comp-sys-man .man +./usr/share/man/man9/MEXTMALLOC.9 comp-sys-man .man +./usr/share/man/man9/MEXTREMOVE.9 comp-obsolete obsolete +./usr/share/man/man9/MFREE.9 comp-sys-man .man +./usr/share/man/man9/MGET.9 comp-sys-man .man +./usr/share/man/man9/MGETHDR.9 comp-sys-man .man +./usr/share/man/man9/MH_ALIGN.9 comp-sys-man .man +./usr/share/man/man9/M_ALIGN.9 comp-sys-man .man +./usr/share/man/man9/M_COPY_PKTHDR.9 comp-sys-man .man +./usr/share/man/man9/M_LEADINGSPACE.9 comp-sys-man .man +./usr/share/man/man9/M_MOVE_PKTHDR.9 comp-sys-man .man +./usr/share/man/man9/M_PREPEND.9 comp-sys-man .man +./usr/share/man/man9/M_TRAILINGSPACE.9 comp-sys-man .man +./usr/share/man/man9/NDINIT.9 comp-sys-man .man +./usr/share/man/man9/PCI_PRODUCT.9 comp-sys-man .man +./usr/share/man/man9/PCI_REVISION.9 comp-sys-man .man +./usr/share/man/man9/PCI_VENDOR.9 comp-sys-man .man +./usr/share/man/man9/PMC_ENABLED.9 comp-sys-man .man +./usr/share/man/man9/RUN_ONCE.9 comp-sys-man .man +./usr/share/man/man9/SCHED_LOCK.9 comp-obsolete obsolete +./usr/share/man/man9/SCHED_UNLOCK.9 comp-obsolete obsolete +./usr/share/man/man9/SET.9 comp-sys-man .man +./usr/share/man/man9/STACK.9 comp-sys-man .man +./usr/share/man/man9/STACK_ALIGN.9 comp-sys-man .man +./usr/share/man/man9/STACK_ALLOC.9 comp-sys-man .man +./usr/share/man/man9/STACK_GROW.9 comp-sys-man .man +./usr/share/man/man9/STACK_MAX.9 comp-sys-man .man +./usr/share/man/man9/STACK_SHRINK.9 comp-sys-man .man +./usr/share/man/man9/TC_DENSE_TO_SPARSE.9 comp-sys-man .man +./usr/share/man/man9/TC_PHYS_TO_UNCACHED.9 comp-sys-man .man +./usr/share/man/man9/VATTR_NULL.9 comp-obsolete obsolete +./usr/share/man/man9/VFS_CHECKEXP.9 comp-sys-man .man +./usr/share/man/man9/VFS_FHTOVP.9 comp-sys-man .man +./usr/share/man/man9/VFS_MOUNT.9 comp-sys-man .man +./usr/share/man/man9/VFS_QUOTACTL.9 comp-sys-man .man +./usr/share/man/man9/VFS_ROOT.9 comp-sys-man .man +./usr/share/man/man9/VFS_SNAPSHOT.9 comp-sys-man .man +./usr/share/man/man9/VFS_START.9 comp-sys-man .man +./usr/share/man/man9/VFS_STATFS.9 comp-obsolete obsolete +./usr/share/man/man9/VFS_STATVFS.9 comp-sys-man .man +./usr/share/man/man9/VFS_SUSPENDCTL.9 comp-sys-man .man +./usr/share/man/man9/VFS_SYNC.9 comp-sys-man .man +./usr/share/man/man9/VFS_UNMOUNT.9 comp-sys-man .man +./usr/share/man/man9/VFS_VGET.9 comp-sys-man .man +./usr/share/man/man9/VFS_VPTOFH.9 comp-sys-man .man +./usr/share/man/man9/VHOLD.9 comp-obsolete obsolete +./usr/share/man/man9/VOP_ABORTOP.9 comp-sys-man .man +./usr/share/man/man9/VOP_ACCESS.9 comp-sys-man .man +./usr/share/man/man9/VOP_ADVLOCK.9 comp-sys-man .man +./usr/share/man/man9/VOP_BALLOC.9 comp-obsolete obsolete +./usr/share/man/man9/VOP_BLKATOFF.9 comp-obsolete obsolete +./usr/share/man/man9/VOP_BMAP.9 comp-sys-man .man +./usr/share/man/man9/VOP_BWRITE.9 comp-sys-man .man +./usr/share/man/man9/VOP_CLOSE.9 comp-sys-man .man +./usr/share/man/man9/VOP_CREATE.9 comp-sys-man .man +./usr/share/man/man9/VOP_FCNTL.9 comp-sys-man .man +./usr/share/man/man9/VOP_FSYNC.9 comp-sys-man .man +./usr/share/man/man9/VOP_GETATTR.9 comp-sys-man .man +./usr/share/man/man9/VOP_GETEXTATTR.9 comp-sys-man .man +./usr/share/man/man9/VOP_GETPAGES.9 comp-sys-man .man +./usr/share/man/man9/VOP_INACTIVE.9 comp-sys-man .man +./usr/share/man/man9/VOP_IOCTL.9 comp-sys-man .man +./usr/share/man/man9/VOP_ISLOCKED.9 comp-sys-man .man +./usr/share/man/man9/VOP_LEASE.9 comp-sys-man .man +./usr/share/man/man9/VOP_LINK.9 comp-sys-man .man +./usr/share/man/man9/VOP_LISTEXTATTR.9 comp-sys-man .man +./usr/share/man/man9/VOP_LOCK.9 comp-sys-man .man +./usr/share/man/man9/VOP_LOOKUP.9 comp-sys-man .man +./usr/share/man/man9/VOP_MKDIR.9 comp-sys-man .man +./usr/share/man/man9/VOP_MKNOD.9 comp-sys-man .man +./usr/share/man/man9/VOP_MMAP.9 comp-sys-man .man +./usr/share/man/man9/VOP_OPEN.9 comp-sys-man .man +./usr/share/man/man9/VOP_PATHCONF.9 comp-sys-man .man +./usr/share/man/man9/VOP_POLL.9 comp-sys-man .man +./usr/share/man/man9/VOP_PRINT.9 comp-sys-man .man +./usr/share/man/man9/VOP_PUTPAGES.9 comp-sys-man .man +./usr/share/man/man9/VOP_READ.9 comp-sys-man .man +./usr/share/man/man9/VOP_READDIR.9 comp-sys-man .man +./usr/share/man/man9/VOP_READLINK.9 comp-sys-man .man +./usr/share/man/man9/VOP_REALLOCBLKS.9 comp-obsolete obsolete +./usr/share/man/man9/VOP_RECLAIM.9 comp-sys-man .man +./usr/share/man/man9/VOP_REMOVE.9 comp-sys-man .man +./usr/share/man/man9/VOP_RENAME.9 comp-sys-man .man +./usr/share/man/man9/VOP_REVOKE.9 comp-sys-man .man +./usr/share/man/man9/VOP_RMDIR.9 comp-sys-man .man +./usr/share/man/man9/VOP_SEEK.9 comp-sys-man .man +./usr/share/man/man9/VOP_SETATTR.9 comp-sys-man .man +./usr/share/man/man9/VOP_SETEXTATTR.9 comp-sys-man .man +./usr/share/man/man9/VOP_STRATEGY.9 comp-sys-man .man +./usr/share/man/man9/VOP_SYMLINK.9 comp-sys-man .man +./usr/share/man/man9/VOP_TRUNCATE.9 comp-obsolete obsolete +./usr/share/man/man9/VOP_UNLOCK.9 comp-sys-man .man +./usr/share/man/man9/VOP_UPDATE.9 comp-obsolete obsolete +./usr/share/man/man9/VOP_VALLOC.9 comp-obsolete obsolete +./usr/share/man/man9/VOP_VFREE.9 comp-obsolete obsolete +./usr/share/man/man9/VOP_WHITEOUT.9 comp-sys-man .man +./usr/share/man/man9/VOP_WRITE.9 comp-sys-man .man +./usr/share/man/man9/VREF.9 comp-obsolete obsolete +./usr/share/man/man9/atop.9 comp-sys-man .man +./usr/share/man/man9/accept_filt_add.9 comp-sys-man .man +./usr/share/man/man9/accept_filt_del.9 comp-sys-man .man +./usr/share/man/man9/accept_filt_generic_mod_event.9 comp-sys-man .man +./usr/share/man/man9/accept_filt_get.9 comp-sys-man .man +./usr/share/man/man9/accept_filter.9 comp-sys-man .man +./usr/share/man/man9/access.9 comp-obsolete obsolete +./usr/share/man/man9/accf_data.9 comp-sys-man .man +./usr/share/man/man9/accf_http.9 comp-sys-man .man +./usr/share/man/man9/allocbuf.9 comp-sys-man .man +./usr/share/man/man9/altq.9 comp-sys-man .man +./usr/share/man/man9/aprint_debug.9 comp-sys-man .man +./usr/share/man/man9/aprint_debug_dev.9 comp-sys-man .man +./usr/share/man/man9/aprint_debug_ifnet.9 comp-sys-man .man +./usr/share/man/man9/aprint_error.9 comp-sys-man .man +./usr/share/man/man9/aprint_error_dev.9 comp-sys-man .man +./usr/share/man/man9/aprint_error_ifnet.9 comp-sys-man .man +./usr/share/man/man9/aprint_get_error_count.9 comp-sys-man .man +./usr/share/man/man9/aprint_naive.9 comp-sys-man .man +./usr/share/man/man9/aprint_naive_dev.9 comp-sys-man .man +./usr/share/man/man9/aprint_naive_ifnet.9 comp-sys-man .man +./usr/share/man/man9/aprint_normal.9 comp-sys-man .man +./usr/share/man/man9/aprint_normal_dev.9 comp-sys-man .man +./usr/share/man/man9/aprint_normal_ifnet.9 comp-sys-man .man +./usr/share/man/man9/aprint_verbose.9 comp-sys-man .man +./usr/share/man/man9/aprint_verbose_dev.9 comp-sys-man .man +./usr/share/man/man9/aprint_verbose_ifnet.9 comp-sys-man .man +./usr/share/man/man9/arc4randbytes.9 comp-sys-man .man +./usr/share/man/man9/arc4random.9 comp-sys-man .man +./usr/share/man/man9/arp.9 comp-sys-man .man +./usr/share/man/man9/arp_ifinit.9 comp-sys-man .man +./usr/share/man/man9/arpintr.9 comp-sys-man .man +./usr/share/man/man9/arpresolve.9 comp-sys-man .man +./usr/share/man/man9/audio.9 comp-sys-man .man +./usr/share/man/man9/autoconf.9 comp-sys-man .man +./usr/share/man/man9/bawrite.9 comp-sys-man .man +./usr/share/man/man9/bcdtobin.9 comp-sys-man .man +./usr/share/man/man9/bcmp.9 comp-sys-man .man +./usr/share/man/man9/bcopy.9 comp-sys-man .man +./usr/share/man/man9/bdevvp.9 comp-sys-man .man +./usr/share/man/man9/bdwrite.9 comp-sys-man .man +./usr/share/man/man9/be16dec.9 comp-sys-man .man +./usr/share/man/man9/be16enc.9 comp-sys-man .man +./usr/share/man/man9/be16toh.9 comp-sys-man .man +./usr/share/man/man9/be32dec.9 comp-sys-man .man +./usr/share/man/man9/be32enc.9 comp-sys-man .man +./usr/share/man/man9/be32toh.9 comp-sys-man .man +./usr/share/man/man9/be64dec.9 comp-sys-man .man +./usr/share/man/man9/be64enc.9 comp-sys-man .man +./usr/share/man/man9/be64toh.9 comp-sys-man .man +./usr/share/man/man9/bintime.9 comp-sys-man .man +./usr/share/man/man9/bintime2timespec.9 comp-sys-man .man +./usr/share/man/man9/bintime2timeval.9 comp-sys-man .man +./usr/share/man/man9/bintime_add.9 comp-sys-man .man +./usr/share/man/man9/bintime_addx.9 comp-sys-man .man +./usr/share/man/man9/bintime_sub.9 comp-sys-man .man +./usr/share/man/man9/bintobcd.9 comp-sys-man .man +./usr/share/man/man9/binuptime.9 comp-sys-man .man +./usr/share/man/man9/biodone.9 comp-sys-man .man +./usr/share/man/man9/biowait.9 comp-sys-man .man +./usr/share/man/man9/bitmask_snprintf.9 comp-obsolete obsolete +./usr/share/man/man9/bluetooth.9 comp-sys-man .man +./usr/share/man/man9/boothowto.9 comp-sys-man .man +./usr/share/man/man9/boottime.9 comp-sys-man .man +./usr/share/man/man9/bounds_check_with_label.9 comp-sys-man .man +./usr/share/man/man9/bpf.9 comp-sys-man .man +./usr/share/man/man9/bread.9 comp-sys-man .man +./usr/share/man/man9/breada.9 comp-sys-man .man +./usr/share/man/man9/breadn.9 comp-sys-man .man +./usr/share/man/man9/brelse.9 comp-sys-man .man +./usr/share/man/man9/bswap16.9 comp-sys-man .man +./usr/share/man/man9/bswap32.9 comp-sys-man .man +./usr/share/man/man9/bswap64.9 comp-sys-man .man +./usr/share/man/man9/btoc.9 comp-sys-man .man +./usr/share/man/man9/btodb.9 comp-sys-man .man +./usr/share/man/man9/buffercache.9 comp-sys-man .man +./usr/share/man/man9/bufq.9 comp-sys-man .man +./usr/share/man/man9/bus_dma.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamap_create.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamap_destroy.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamap_load.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamap_load_mbuf.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamap_load_raw.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamap_load_uio.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamap_sync.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamap_unload.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamem_alloc.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamem_free.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamem_map.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamem_mmap.9 comp-sys-man .man +./usr/share/man/man9/bus_dmamem_unmap.9 comp-sys-man .man +./usr/share/man/man9/bus_dmatag_destroy.9 comp-sys-man .man +./usr/share/man/man9/bus_dmatag_subregion.9 comp-sys-man .man +./usr/share/man/man9/bus_space.9 comp-sys-man .man +./usr/share/man/man9/bus_space_alloc.9 comp-sys-man .man +./usr/share/man/man9/bus_space_barrier.9 comp-sys-man .man +./usr/share/man/man9/bus_space_copy_region_1.9 comp-sys-man .man +./usr/share/man/man9/bus_space_copy_region_2.9 comp-sys-man .man +./usr/share/man/man9/bus_space_copy_region_4.9 comp-sys-man .man +./usr/share/man/man9/bus_space_copy_region_8.9 comp-sys-man .man +./usr/share/man/man9/bus_space_free.9 comp-sys-man .man +./usr/share/man/man9/bus_space_is_equal.9 comp-sys-man .man +./usr/share/man/man9/bus_space_map.9 comp-sys-man .man +./usr/share/man/man9/bus_space_mmap.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_1.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_2.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_4.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_8.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_multi_1.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_multi_2.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_multi_4.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_multi_8.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_region_1.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_region_2.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_region_4.9 comp-sys-man .man +./usr/share/man/man9/bus_space_read_region_8.9 comp-sys-man .man +./usr/share/man/man9/bus_space_set_region_1.9 comp-sys-man .man +./usr/share/man/man9/bus_space_set_region_2.9 comp-sys-man .man +./usr/share/man/man9/bus_space_set_region_4.9 comp-sys-man .man +./usr/share/man/man9/bus_space_set_region_8.9 comp-sys-man .man +./usr/share/man/man9/bus_space_subregion.9 comp-sys-man .man +./usr/share/man/man9/bus_space_unmap.9 comp-sys-man .man +./usr/share/man/man9/bus_space_vaddr.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_1.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_2.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_4.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_8.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_multi_1.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_multi_2.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_multi_4.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_multi_8.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_region_1.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_region_2.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_region_4.9 comp-sys-man .man +./usr/share/man/man9/bus_space_write_region_8.9 comp-sys-man .man +./usr/share/man/man9/bwrite.9 comp-sys-man .man +./usr/share/man/man9/byteorder.9 comp-sys-man .man +./usr/share/man/man9/bzero.9 comp-sys-man .man +./usr/share/man/man9/cache_enter.9 comp-sys-man .man +./usr/share/man/man9/cache_lookup.9 comp-sys-man .man +./usr/share/man/man9/cache_purge.9 comp-sys-man .man +./usr/share/man/man9/cache_purgevfs.9 comp-sys-man .man +./usr/share/man/man9/cache_revlookup.9 comp-sys-man .man +./usr/share/man/man9/callback.9 comp-sys-man .man +./usr/share/man/man9/callback_head_destroy.9 comp-sys-man .man +./usr/share/man/man9/callback_head_init.9 comp-sys-man .man +./usr/share/man/man9/callback_register.9 comp-sys-man .man +./usr/share/man/man9/callback_run_roundrobin.9 comp-sys-man .man +./usr/share/man/man9/callback_unregister.9 comp-sys-man .man +./usr/share/man/man9/callout.9 comp-sys-man .man +./usr/share/man/man9/callout_ack.9 comp-sys-man .man +./usr/share/man/man9/callout_active.9 comp-obsolete obsolete +./usr/share/man/man9/callout_deactivate.9 comp-obsolete obsolete +./usr/share/man/man9/callout_destroy.9 comp-sys-man .man +./usr/share/man/man9/callout_expired.9 comp-sys-man .man +./usr/share/man/man9/callout_halt.9 comp-sys-man .man +./usr/share/man/man9/callout_init.9 comp-sys-man .man +./usr/share/man/man9/callout_invoking.9 comp-sys-man .man +./usr/share/man/man9/callout_pending.9 comp-sys-man .man +./usr/share/man/man9/callout_reset.9 comp-sys-man .man +./usr/share/man/man9/callout_schedule.9 comp-sys-man .man +./usr/share/man/man9/callout_setfunc.9 comp-sys-man .man +./usr/share/man/man9/callout_stop.9 comp-sys-man .man +./usr/share/man/man9/cardbus.9 comp-sys-man .man +./usr/share/man/man9/cardbus_attach_card.9 comp-sys-man .man +./usr/share/man/man9/cardbus_conf_read.9 comp-sys-man .man +./usr/share/man/man9/cardbus_conf_write.9 comp-sys-man .man +./usr/share/man/man9/cardbus_detach_card.9 comp-sys-man .man +./usr/share/man/man9/cardbus_free_tag.9 comp-sys-man .man +./usr/share/man/man9/cardbus_function_disable.9 comp-sys-man .man +./usr/share/man/man9/cardbus_function_enable.9 comp-sys-man .man +./usr/share/man/man9/cardbus_get_capability.9 comp-sys-man .man +./usr/share/man/man9/cardbus_intr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/cardbus_intr_establish.9 comp-sys-man .man +./usr/share/man/man9/cardbus_make_tag.9 comp-sys-man .man +./usr/share/man/man9/cardbus_mapreg_map.9 comp-sys-man .man +./usr/share/man/man9/cardbus_mapreg_unmap.9 comp-sys-man .man +./usr/share/man/man9/cdevvp.9 comp-sys-man .man +./usr/share/man/man9/checkalias.9 comp-obsolete obsolete +./usr/share/man/man9/child_return.9 comp-sys-man .man +./usr/share/man/man9/chooselwp.9 comp-obsolete obsolete +./usr/share/man/man9/chooseproc.9 comp-obsolete obsolete +./usr/share/man/man9/clock_secs_to_ymdhms.9 comp-sys-man .man +./usr/share/man/man9/clock_ymdhms_to_secs.9 comp-sys-man .man +./usr/share/man/man9/closef.9 comp-sys-man .man +./usr/share/man/man9/clrbit.9 comp-sys-man .man +./usr/share/man/man9/cltom.9 comp-sys-man .man +./usr/share/man/man9/cn_check_magic.9 comp-sys-man .man +./usr/share/man/man9/cn_destroy_magic.9 comp-sys-man .man +./usr/share/man/man9/cn_get_magic.9 comp-sys-man .man +./usr/share/man/man9/cn_init_magic.9 comp-sys-man .man +./usr/share/man/man9/cn_isconsole.9 comp-sys-man .man +./usr/share/man/man9/cn_set_magic.9 comp-sys-man .man +./usr/share/man/man9/cn_trap.9 comp-sys-man .man +./usr/share/man/man9/cnbell.9 comp-sys-man .man +./usr/share/man/man9/cngetc.9 comp-sys-man .man +./usr/share/man/man9/cngetsn.9 comp-sys-man .man +./usr/share/man/man9/cnmagic.9 comp-sys-man .man +./usr/share/man/man9/cnpollc.9 comp-sys-man .man +./usr/share/man/man9/cnputc.9 comp-sys-man .man +./usr/share/man/man9/condvar.9 comp-sys-man .man +./usr/share/man/man9/config.9 comp-sys-man .man +./usr/share/man/man9/config_activate.9 comp-obsolete obsolete +./usr/share/man/man9/config_attach.9 comp-sys-man .man +./usr/share/man/man9/config_attach_loc.9 comp-sys-man .man +./usr/share/man/man9/config_attach_pseudo.9 comp-sys-man .man +./usr/share/man/man9/config_deactivate.9 comp-sys-man .man +./usr/share/man/man9/config_defer.9 comp-sys-man .man +./usr/share/man/man9/config_detach.9 comp-sys-man .man +./usr/share/man/man9/config_detach_children.9 comp-sys-man .man +./usr/share/man/man9/config_finalize_register.9 comp-sys-man .man +./usr/share/man/man9/config_found.9 comp-sys-man .man +./usr/share/man/man9/config_found_ia.9 comp-sys-man .man +./usr/share/man/man9/config_found_sm.9 comp-obsolete obsolete +./usr/share/man/man9/config_found_sm_loc.9 comp-sys-man .man +./usr/share/man/man9/config_interrupts.9 comp-sys-man .man +./usr/share/man/man9/config_match.9 comp-sys-man .man +./usr/share/man/man9/config_mountroot.9 comp-sys-man .man +./usr/share/man/man9/config_pending_decr.9 comp-sys-man .man +./usr/share/man/man9/config_pending_incr.9 comp-sys-man .man +./usr/share/man/man9/config_search.9 comp-obsolete obsolete +./usr/share/man/man9/config_search_ia.9 comp-sys-man .man +./usr/share/man/man9/config_search_loc.9 comp-sys-man .man +./usr/share/man/man9/cons.9 comp-sys-man .man +./usr/share/man/man9/copy.9 comp-sys-man .man +./usr/share/man/man9/copyin.9 comp-sys-man .man +./usr/share/man/man9/copyin_proc.9 comp-sys-man .man +./usr/share/man/man9/copyinstr.9 comp-sys-man .man +./usr/share/man/man9/copyout.9 comp-sys-man .man +./usr/share/man/man9/copyout_proc.9 comp-sys-man .man +./usr/share/man/man9/copyoutstr.9 comp-sys-man .man +./usr/share/man/man9/copystr.9 comp-sys-man .man +./usr/share/man/man9/coredump_write.9 comp-sys-man .man +./usr/share/man/man9/cprng.9 comp-sys-man .man +./usr/share/man/man9/cprng_fast.9 comp-sys-man .man +./usr/share/man/man9/cprng_fast32.9 comp-sys-man .man +./usr/share/man/man9/cprng_fast64.9 comp-sys-man .man +./usr/share/man/man9/cprng_strong.9 comp-sys-man .man +./usr/share/man/man9/cprng_strong32.9 comp-sys-man .man +./usr/share/man/man9/cprng_strong64.9 comp-sys-man .man +./usr/share/man/man9/cprng_strong_create.9 comp-sys-man .man +./usr/share/man/man9/cprng_strong_destroy.9 comp-sys-man .man +./usr/share/man/man9/cprng_strong_getflags.9 comp-sys-man .man +./usr/share/man/man9/cprng_strong_setflags.9 comp-sys-man .man +./usr/share/man/man9/cpu_configure.9 comp-sys-man .man +./usr/share/man/man9/cpu_coredump.9 comp-sys-man .man +./usr/share/man/man9/cpu_dump.9 comp-sys-man .man +./usr/share/man/man9/cpu_dumpconf.9 comp-sys-man .man +./usr/share/man/man9/cpu_dumpsize.9 comp-sys-man .man +./usr/share/man/man9/cpu_exit.9 comp-obsolete obsolete +./usr/share/man/man9/cpu_fork.9 comp-obsolete obsolete +./usr/share/man/man9/cpu_idle.9 comp-sys-man .man +./usr/share/man/man9/cpu_initclocks.9 comp-sys-man .man +./usr/share/man/man9/cpu_lwp_fork.9 comp-sys-man .man +./usr/share/man/man9/cpu_need_resched.9 comp-sys-man .man +./usr/share/man/man9/cpu_number.9 comp-sys-man .man +./usr/share/man/man9/cpu_reboot.9 comp-sys-man .man +./usr/share/man/man9/cpu_rootconf.9 comp-sys-man .man +./usr/share/man/man9/cpu_startup.9 comp-sys-man .man +./usr/share/man/man9/cpu_swapin.9 comp-obsolete obsolete +./usr/share/man/man9/cpu_swapout.9 comp-obsolete obsolete +./usr/share/man/man9/cpu_switch.9 comp-obsolete obsolete +./usr/share/man/man9/cpu_switchto.9 comp-sys-man .man +./usr/share/man/man9/cpu_sysctl.9 comp-obsolete obsolete +./usr/share/man/man9/cpu_wait.9 comp-obsolete obsolete +./usr/share/man/man9/cpufreq.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_deregister.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_get.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_get_backend.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_get_state.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_get_state_index.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_register.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_resume.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_set.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_set_all.9 comp-sys-man .man +./usr/share/man/man9/cpufreq_suspend.9 comp-sys-man .man +./usr/share/man/man9/crcopy.9 comp-obsolete obsolete +./usr/share/man/man9/crcvt.9 comp-obsolete obsolete +./usr/share/man/man9/crdup.9 comp-obsolete obsolete +./usr/share/man/man9/cred.9 comp-obsolete obsolete +./usr/share/man/man9/crfree.9 comp-obsolete obsolete +./usr/share/man/man9/crget.9 comp-obsolete obsolete +./usr/share/man/man9/crhold.9 comp-obsolete obsolete +./usr/share/man/man9/crypto_dispatch.9 comp-sys-man .man +./usr/share/man/man9/crypto_done.9 comp-sys-man .man +./usr/share/man/man9/crypto_freereq.9 comp-sys-man .man +./usr/share/man/man9/crypto_freesession.9 comp-sys-man .man +./usr/share/man/man9/crypto_get_driverid.9 comp-sys-man .man +./usr/share/man/man9/crypto_getreq.9 comp-sys-man .man +./usr/share/man/man9/crypto_kdispatch.9 comp-sys-man .man +./usr/share/man/man9/crypto_kdone.9 comp-sys-man .man +./usr/share/man/man9/crypto_kregister.9 comp-sys-man .man +./usr/share/man/man9/crypto_newsession.9 comp-sys-man .man +./usr/share/man/man9/crypto_register.9 comp-sys-man .man +./usr/share/man/man9/crypto_unregister.9 comp-sys-man .man +./usr/share/man/man9/csf.9 comp-sys-man .man +./usr/share/man/man9/ctob.9 comp-sys-man .man +./usr/share/man/man9/ctod.9 comp-sys-man .man +./usr/share/man/man9/ctxsw.9 comp-obsolete obsolete +./usr/share/man/man9/curcpu.9 comp-sys-man .man +./usr/share/man/man9/curlwp.9 comp-sys-man .man +./usr/share/man/man9/curproc.9 comp-sys-man .man +./usr/share/man/man9/cv.9 comp-sys-man .man +./usr/share/man/man9/cv_broadcast.9 comp-sys-man .man +./usr/share/man/man9/cv_destroy.9 comp-sys-man .man +./usr/share/man/man9/cv_has_waiters.9 comp-sys-man .man +./usr/share/man/man9/cv_init.9 comp-sys-man .man +./usr/share/man/man9/cv_signal.9 comp-sys-man .man +./usr/share/man/man9/cv_timedwait.9 comp-sys-man .man +./usr/share/man/man9/cv_timedwait_sig.9 comp-sys-man .man +./usr/share/man/man9/cv_wait.9 comp-sys-man .man +./usr/share/man/man9/cv_wait_sig.9 comp-sys-man .man +./usr/share/man/man9/cv_wakeup.9 comp-obsolete obsolete +./usr/share/man/man9/dbtob.9 comp-sys-man .man +./usr/share/man/man9/ddc.9 comp-sys-man .man +./usr/share/man/man9/delay.9 comp-sys-man .man +./usr/share/man/man9/device_printf.9 comp-sys-man .man +./usr/share/man/man9/deviter.9 comp-sys-man .man +./usr/share/man/man9/deviter_first.9 comp-sys-man .man +./usr/share/man/man9/deviter_init.9 comp-sys-man .man +./usr/share/man/man9/deviter_next.9 comp-sys-man .man +./usr/share/man/man9/deviter_release.9 comp-sys-man .man +./usr/share/man/man9/disk.9 comp-sys-man .man +./usr/share/man/man9/disk_attach.9 comp-sys-man .man +./usr/share/man/man9/disk_begindetach.9 comp-sys-man .man +./usr/share/man/man9/disk_busy.9 comp-sys-man .man +./usr/share/man/man9/disk_destroy.9 comp-sys-man .man +./usr/share/man/man9/disk_detach.9 comp-sys-man .man +./usr/share/man/man9/disk_detatch.9 comp-obsolete obsolete +./usr/share/man/man9/disk_find.9 comp-sys-man .man +./usr/share/man/man9/disk_init.9 comp-sys-man .man +./usr/share/man/man9/disk_resetstat.9 comp-obsolete obsolete +./usr/share/man/man9/disk_unbusy.9 comp-sys-man .man +./usr/share/man/man9/disklabel.9 comp-sys-man .man +./usr/share/man/man9/dmover.9 comp-sys-man .man +./usr/share/man/man9/dmover_backend_register.9 comp-sys-man .man +./usr/share/man/man9/dmover_backend_unregister.9 comp-sys-man .man +./usr/share/man/man9/dmover_done.9 comp-sys-man .man +./usr/share/man/man9/dmover_process.9 comp-sys-man .man +./usr/share/man/man9/dmover_request_alloc.9 comp-sys-man .man +./usr/share/man/man9/dmover_request_free.9 comp-sys-man .man +./usr/share/man/man9/dmover_session_create.9 comp-sys-man .man +./usr/share/man/man9/dmover_session_destroy.9 comp-sys-man .man +./usr/share/man/man9/do_setresgid.9 comp-sys-man .man +./usr/share/man/man9/do_setresuid.9 comp-sys-man .man +./usr/share/man/man9/dofileread.9 comp-sys-man .man +./usr/share/man/man9/dofilereadv.9 comp-sys-man .man +./usr/share/man/man9/dofilewrite.9 comp-sys-man .man +./usr/share/man/man9/dofilewritev.9 comp-sys-man .man +./usr/share/man/man9/dopowerhooks.9 comp-sys-man .man +./usr/share/man/man9/doshutdownhooks.9 comp-sys-man .man +./usr/share/man/man9/driver.9 comp-sys-man .man +./usr/share/man/man9/dtoc.9 comp-sys-man .man +./usr/share/man/man9/dumpsys.9 comp-sys-man .man +./usr/share/man/man9/dupfdopen.9 comp-sys-man .man +./usr/share/man/man9/edid.9 comp-sys-man .man +./usr/share/man/man9/enodev.9 comp-sys-man .man +./usr/share/man/man9/enoioctl.9 comp-sys-man .man +./usr/share/man/man9/enosys.9 comp-sys-man .man +./usr/share/man/man9/enxio.9 comp-sys-man .man +./usr/share/man/man9/eopnotsupp.9 comp-sys-man .man +./usr/share/man/man9/errno.9 comp-sys-man .man +./usr/share/man/man9/ether_addmulti.9 comp-sys-man .man +./usr/share/man/man9/ether_delmulti.9 comp-sys-man .man +./usr/share/man/man9/ether_ifattach.9 comp-sys-man .man +./usr/share/man/man9/ethersubr.9 comp-sys-man .man +./usr/share/man/man9/evcnt.9 comp-sys-man .man +./usr/share/man/man9/evcnt_attach_dynamic.9 comp-sys-man .man +./usr/share/man/man9/evcnt_attach_static.9 comp-sys-man .man +./usr/share/man/man9/evcnt_detach.9 comp-sys-man .man +./usr/share/man/man9/execsigs.9 comp-sys-man .man +./usr/share/man/man9/extattr.9 comp-sys-man .man +./usr/share/man/man9/extent.9 comp-sys-man .man +./usr/share/man/man9/extent_alloc.9 comp-sys-man .man +./usr/share/man/man9/extent_alloc_region.9 comp-sys-man .man +./usr/share/man/man9/extent_alloc_subregion.9 comp-sys-man .man +./usr/share/man/man9/extent_create.9 comp-sys-man .man +./usr/share/man/man9/extent_destroy.9 comp-sys-man .man +./usr/share/man/man9/extent_free.9 comp-sys-man .man +./usr/share/man/man9/extent_print.9 comp-sys-man .man +./usr/share/man/man9/falloc.9 comp-sys-man .man +./usr/share/man/man9/fd_getfile.9 comp-sys-man .man +./usr/share/man/man9/fdalloc.9 comp-sys-man .man +./usr/share/man/man9/fdavail.9 comp-obsolete obsolete +./usr/share/man/man9/fdcheckstd.9 comp-sys-man .man +./usr/share/man/man9/fdclear.9 comp-sys-man .man +./usr/share/man/man9/fdclone.9 comp-sys-man .man +./usr/share/man/man9/fdcloseexec.9 comp-sys-man .man +./usr/share/man/man9/fdcopy.9 comp-sys-man .man +./usr/share/man/man9/fddi_addmulti.9 comp-sys-man .man +./usr/share/man/man9/fddi_delmulti.9 comp-sys-man .man +./usr/share/man/man9/fddi_ifattach.9 comp-sys-man .man +./usr/share/man/man9/fdexpand.9 comp-sys-man .man +./usr/share/man/man9/fdfree.9 comp-sys-man .man +./usr/share/man/man9/fdinit.9 comp-sys-man .man +./usr/share/man/man9/fdrelease.9 comp-sys-man .man +./usr/share/man/man9/fdremove.9 comp-sys-man .man +./usr/share/man/man9/fdshare.9 comp-sys-man .man +./usr/share/man/man9/fdunshare.9 comp-sys-man .man +./usr/share/man/man9/fetch.9 comp-sys-man .man +./usr/share/man/man9/ffree.9 comp-sys-man .man +./usr/share/man/man9/fgetown.9 comp-sys-man .man +./usr/share/man/man9/file.9 comp-sys-man .man +./usr/share/man/man9/fileassoc.9 comp-sys-man .man +./usr/share/man/man9/filedesc.9 comp-sys-man .man +./usr/share/man/man9/firmload.9 comp-sys-man .man +./usr/share/man/man9/firmware_close.9 comp-sys-man .man +./usr/share/man/man9/firmware_free.9 comp-sys-man .man +./usr/share/man/man9/firmware_get_size.9 comp-sys-man .man +./usr/share/man/man9/firmware_malloc.9 comp-sys-man .man +./usr/share/man/man9/firmware_open.9 comp-sys-man .man +./usr/share/man/man9/firmware_read.9 comp-sys-man .man +./usr/share/man/man9/flash.9 comp-sys-man .man +./usr/share/man/man9/fork1.9 comp-sys-man .man +./usr/share/man/man9/format_bytes.9 comp-sys-man .man +./usr/share/man/man9/fownsignal.9 comp-sys-man .man +./usr/share/man/man9/free.9 comp-sys-man .man +./usr/share/man/man9/fscow_disestablish.9 comp-sys-man .man +./usr/share/man/man9/fscow_establish.9 comp-sys-man .man +./usr/share/man/man9/fscow_run.9 comp-sys-man .man +./usr/share/man/man9/fsetown.9 comp-sys-man .man +./usr/share/man/man9/fstrans.9 comp-sys-man .man +./usr/share/man/man9/fstrans_done.9 comp-sys-man .man +./usr/share/man/man9/fstrans_getstate.9 comp-sys-man .man +./usr/share/man/man9/fstrans_is_owner.9 comp-sys-man .man +./usr/share/man/man9/fstrans_setstate.9 comp-sys-man .man +./usr/share/man/man9/fstrans_start.9 comp-sys-man .man +./usr/share/man/man9/fstrans_start_nowait.9 comp-sys-man .man +./usr/share/man/man9/fubyte.9 comp-sys-man .man +./usr/share/man/man9/fuibyte.9 comp-sys-man .man +./usr/share/man/man9/fuiword.9 comp-sys-man .man +./usr/share/man/man9/fuswintr.9 comp-sys-man .man +./usr/share/man/man9/fusword.9 comp-sys-man .man +./usr/share/man/man9/fuword.9 comp-sys-man .man +./usr/share/man/man9/genfs.9 comp-sys-man .man +./usr/share/man/man9/getbintime.9 comp-sys-man .man +./usr/share/man/man9/getbinuptime.9 comp-sys-man .man +./usr/share/man/man9/getblk.9 comp-sys-man .man +./usr/share/man/man9/geteblk.9 comp-sys-man .man +./usr/share/man/man9/getiobuf.9 comp-sys-man .man +./usr/share/man/man9/getiobuf_nowait.9 comp-obsolete obsolete +./usr/share/man/man9/getmicrotime.9 comp-sys-man .man +./usr/share/man/man9/getmicrouptime.9 comp-sys-man .man +./usr/share/man/man9/getnanotime.9 comp-sys-man .man +./usr/share/man/man9/getnanouptime.9 comp-sys-man .man +./usr/share/man/man9/getnewvnode.9 comp-sys-man .man +./usr/share/man/man9/gsignal.9 comp-obsolete obsolete +./usr/share/man/man9/hardclock.9 comp-sys-man .man +./usr/share/man/man9/hash.9 comp-sys-man .man +./usr/share/man/man9/hash32_buf.9 comp-sys-man .man +./usr/share/man/man9/hash32_str.9 comp-sys-man .man +./usr/share/man/man9/hash32_strn.9 comp-sys-man .man +./usr/share/man/man9/hashdone.9 comp-sys-man .man +./usr/share/man/man9/hashinit.9 comp-sys-man .man +./usr/share/man/man9/holdrele.9 comp-sys-man .man +./usr/share/man/man9/howmany.9 comp-sys-man .man +./usr/share/man/man9/htobe16.9 comp-sys-man .man +./usr/share/man/man9/htobe32.9 comp-sys-man .man +./usr/share/man/man9/htobe64.9 comp-sys-man .man +./usr/share/man/man9/htole16.9 comp-sys-man .man +./usr/share/man/man9/htole32.9 comp-sys-man .man +./usr/share/man/man9/htole64.9 comp-sys-man .man +./usr/share/man/man9/humanize_number.9 comp-sys-man .man +./usr/share/man/man9/hz.9 comp-sys-man .man +./usr/share/man/man9/hztoms.9 comp-sys-man .man +./usr/share/man/man9/i386/bios32_service.9 comp-sys-man .man +./usr/share/man/man9/i386/bioscall.9 comp-sys-man .man +./usr/share/man/man9/i386/nmi.9 comp-obsolete obsolete +./usr/share/man/man9/i386/nmi_disestablish.9 comp-obsolete obsolete +./usr/share/man/man9/i386/nmi_establish.9 comp-obsolete obsolete +./usr/share/man/man9/i386/return_address.9 comp-sys-man .man +./usr/share/man/man9/i386/spllower.9 comp-sys-man .man +./usr/share/man/man9/i386/splraise.9 comp-sys-man .man +./usr/share/man/man9/ieee80211.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_chan2ieee.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_chan2mode.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_crypto.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_ieee2mhz.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_ifattach.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_ifdetach.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_input.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_ioctl.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_media2rate.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_media_change.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_media_init.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_media_status.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_mhz2ieee.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_node.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_output.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_proto.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_radiotap.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_rate2media.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_rssadapt_choose.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_rssadapt_input.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_rssadapt_lower_rate.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_rssadapt_raise_rate.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_rssadapt_updatestats.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_setmode.9 comp-sys-man .man +./usr/share/man/man9/ieee80211_watchdog.9 comp-sys-man .man +./usr/share/man/man9/iic.9 comp-sys-man .man +./usr/share/man/man9/iic_acquire_bus.9 comp-sys-man .man +./usr/share/man/man9/iic_exec.9 comp-sys-man .man +./usr/share/man/man9/iic_release_bus.9 comp-sys-man .man +./usr/share/man/man9/iic_smbus_read_byte.9 comp-sys-man .man +./usr/share/man/man9/iic_smbus_receive_byte.9 comp-sys-man .man +./usr/share/man/man9/iic_smbus_write_byte.9 comp-sys-man .man +./usr/share/man/man9/imax.9 comp-sys-man .man +./usr/share/man/man9/imin.9 comp-sys-man .man +./usr/share/man/man9/in4_cksum.9 comp-sys-man .man +./usr/share/man/man9/in6_cksum.9 comp-sys-man .man +./usr/share/man/man9/in_cksum.9 comp-sys-man .man +./usr/share/man/man9/in_getifa.9 comp-sys-man .man +./usr/share/man/man9/incore.9 comp-sys-man .man +./usr/share/man/man9/inittodr.9 comp-sys-man .man +./usr/share/man/man9/intro.9 comp-sys-man .man +./usr/share/man/man9/ioasic.9 comp-sys-man .man +./usr/share/man/man9/ioasic_attach_devs.9 comp-sys-man .man +./usr/share/man/man9/ioasic_intr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/ioasic_intr_establish.9 comp-sys-man .man +./usr/share/man/man9/ioasic_intr_evcnt.9 comp-sys-man .man +./usr/share/man/man9/ioasic_submatch.9 comp-sys-man .man +./usr/share/man/man9/ioctl.9 comp-sys-man .man +./usr/share/man/man9/ioctl_copyin.9 comp-sys-man .man +./usr/share/man/man9/ioctl_copyout.9 comp-sys-man .man +./usr/share/man/man9/ipkdb.9 comp-sys-man .man +./usr/share/man/man9/ipkdb_connect.9 comp-sys-man .man +./usr/share/man/man9/ipkdb_init.9 comp-sys-man .man +./usr/share/man/man9/ipkdb_poll.9 comp-sys-man .man +./usr/share/man/man9/ipkdb_trap.9 comp-sys-man .man +./usr/share/man/man9/ipkdbcmds.9 comp-sys-man .man +./usr/share/man/man9/ipkdbfbyte.9 comp-sys-man .man +./usr/share/man/man9/ipkdbif_init.9 comp-sys-man .man +./usr/share/man/man9/ipkdbinit.9 comp-sys-man .man +./usr/share/man/man9/ipkdbsbyte.9 comp-sys-man .man +./usr/share/man/man9/isa.9 comp-sys-man .man +./usr/share/man/man9/isa_dmaabort.9 comp-sys-man .man +./usr/share/man/man9/isa_dmacascade.9 comp-sys-man .man +./usr/share/man/man9/isa_dmacount.9 comp-sys-man .man +./usr/share/man/man9/isa_dmadone.9 comp-sys-man .man +./usr/share/man/man9/isa_dmamap_create.9 comp-sys-man .man +./usr/share/man/man9/isa_dmamap_destroy.9 comp-sys-man .man +./usr/share/man/man9/isa_dmamaxsize.9 comp-sys-man .man +./usr/share/man/man9/isa_dmamem_alloc.9 comp-sys-man .man +./usr/share/man/man9/isa_dmamem_free.9 comp-sys-man .man +./usr/share/man/man9/isa_dmamem_map.9 comp-sys-man .man +./usr/share/man/man9/isa_dmamem_unmap.9 comp-sys-man .man +./usr/share/man/man9/isa_dmastart.9 comp-sys-man .man +./usr/share/man/man9/isa_drq_isfree.9 comp-sys-man .man +./usr/share/man/man9/isa_free.9 comp-sys-man .man +./usr/share/man/man9/isa_intr_alloc.9 comp-sys-man .man +./usr/share/man/man9/isa_intr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/isa_intr_establish.9 comp-sys-man .man +./usr/share/man/man9/isa_intr_evcnt.9 comp-sys-man .man +./usr/share/man/man9/isa_malloc.9 comp-sys-man .man +./usr/share/man/man9/isa_mappage.9 comp-sys-man .man +./usr/share/man/man9/isapnp.9 comp-sys-man .man +./usr/share/man/man9/isapnp_config.9 comp-sys-man .man +./usr/share/man/man9/isapnp_devmatch.9 comp-sys-man .man +./usr/share/man/man9/isapnp_unconfig.9 comp-sys-man .man +./usr/share/man/man9/isclr.9 comp-sys-man .man +./usr/share/man/man9/isset.9 comp-sys-man .man +./usr/share/man/man9/issignal.9 comp-sys-man .man +./usr/share/man/man9/itimerfix.9 comp-sys-man .man +./usr/share/man/man9/kauth.9 comp-sys-man .man +./usr/share/man/man9/kcont.9 comp-obsolete obsolete +./usr/share/man/man9/kcopy.9 comp-sys-man .man +./usr/share/man/man9/kcpuset.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_atomic_clear.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_atomic_set.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_clear.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_copy.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_copyin.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_copyout.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_create.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_destroy.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_fill.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_isset.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_iszero.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_match.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_merge.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_set.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_unuse.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_use.9 comp-sys-man .man +./usr/share/man/man9/kcpuset_zero.9 comp-sys-man .man +./usr/share/man/man9/kernacc.9 comp-obsolete obsolete +./usr/share/man/man9/kfilter_register.9 comp-sys-man .man +./usr/share/man/man9/kfilter_unregister.9 comp-sys-man .man +./usr/share/man/man9/killproc.9 comp-sys-man .man +./usr/share/man/man9/kmem.9 comp-sys-man .man +./usr/share/man/man9/kmem_alloc.9 comp-sys-man .man +./usr/share/man/man9/kmem_asprintf.9 comp-sys-man .man +./usr/share/man/man9/kmem_free.9 comp-sys-man .man +./usr/share/man/man9/kmem_zalloc.9 comp-sys-man .man +./usr/share/man/man9/knote.9 comp-sys-man .man +./usr/share/man/man9/kpause.9 comp-sys-man .man +./usr/share/man/man9/kpgsignal.9 comp-sys-man .man +./usr/share/man/man9/kpreempt.9 comp-sys-man .man +./usr/share/man/man9/kpreempt_disable.9 comp-sys-man .man +./usr/share/man/man9/kpreempt_disabled.9 comp-sys-man .man +./usr/share/man/man9/kpreempt_enable.9 comp-sys-man .man +./usr/share/man/man9/kprintf.9 comp-sys-man .man +./usr/share/man/man9/kpsignal.9 comp-sys-man .man +./usr/share/man/man9/kthread.9 comp-sys-man .man +./usr/share/man/man9/kthread_create.9 comp-sys-man .man +./usr/share/man/man9/kthread_create1.9 comp-obsolete obsolete +./usr/share/man/man9/kthread_destroy.9 comp-sys-man .man +./usr/share/man/man9/kthread_exit.9 comp-sys-man .man +./usr/share/man/man9/kthread_join.9 comp-sys-man .man +./usr/share/man/man9/le16dec.9 comp-sys-man .man +./usr/share/man/man9/le16enc.9 comp-sys-man .man +./usr/share/man/man9/le16toh.9 comp-sys-man .man +./usr/share/man/man9/le32dec.9 comp-sys-man .man +./usr/share/man/man9/le32enc.9 comp-sys-man .man +./usr/share/man/man9/le32toh.9 comp-sys-man .man +./usr/share/man/man9/le64dec.9 comp-sys-man .man +./usr/share/man/man9/le64enc.9 comp-sys-man .man +./usr/share/man/man9/le64toh.9 comp-sys-man .man +./usr/share/man/man9/linedisc.9 comp-sys-man .man +./usr/share/man/man9/lock.9 comp-sys-man .man +./usr/share/man/man9/lockinit.9 comp-sys-man .man +./usr/share/man/man9/lockmgr.9 comp-sys-man .man +./usr/share/man/man9/lockmgr_printinfo.9 comp-sys-man .man +./usr/share/man/man9/lockstatus.9 comp-sys-man .man +./usr/share/man/man9/log.9 comp-sys-man .man +./usr/share/man/man9/longjmp.9 comp-sys-man .man +./usr/share/man/man9/lookup.9 comp-sys-man .man +./usr/share/man/man9/ltsleep.9 comp-sys-man .man +./usr/share/man/man9/m_adj.9 comp-sys-man .man +./usr/share/man/man9/m_cat.9 comp-sys-man .man +./usr/share/man/man9/m_copyback.9 comp-sys-man .man +./usr/share/man/man9/m_copyback_cow.9 comp-sys-man .man +./usr/share/man/man9/m_copydata.9 comp-sys-man .man +./usr/share/man/man9/m_copym.9 comp-sys-man .man +./usr/share/man/man9/m_copypacket.9 comp-sys-man .man +./usr/share/man/man9/m_devget.9 comp-sys-man .man +./usr/share/man/man9/m_dup.9 comp-sys-man .man +./usr/share/man/man9/m_free.9 comp-sys-man .man +./usr/share/man/man9/m_freem.9 comp-sys-man .man +./usr/share/man/man9/m_get.9 comp-sys-man .man +./usr/share/man/man9/m_getclr.9 comp-sys-man .man +./usr/share/man/man9/m_gethdr.9 comp-sys-man .man +./usr/share/man/man9/m_makewritable.9 comp-sys-man .man +./usr/share/man/man9/m_prepend.9 comp-sys-man .man +./usr/share/man/man9/m_pulldown.9 comp-sys-man .man +./usr/share/man/man9/m_pullup.9 comp-sys-man .man +./usr/share/man/man9/m_split.9 comp-sys-man .man +./usr/share/man/man9/m_tag.9 comp-sys-man .man +./usr/share/man/man9/m_tag_copy.9 comp-sys-man .man +./usr/share/man/man9/m_tag_copy_chain.9 comp-sys-man .man +./usr/share/man/man9/m_tag_delete.9 comp-sys-man .man +./usr/share/man/man9/m_tag_delete_chain.9 comp-sys-man .man +./usr/share/man/man9/m_tag_delete_nonpersistent.9 comp-sys-man .man +./usr/share/man/man9/m_tag_find.9 comp-sys-man .man +./usr/share/man/man9/m_tag_first.9 comp-sys-man .man +./usr/share/man/man9/m_tag_free.9 comp-sys-man .man +./usr/share/man/man9/m_tag_get.9 comp-sys-man .man +./usr/share/man/man9/m_tag_init.9 comp-sys-man .man +./usr/share/man/man9/m_tag_next.9 comp-sys-man .man +./usr/share/man/man9/m_tag_prepend.9 comp-sys-man .man +./usr/share/man/man9/m_tag_unlink.9 comp-sys-man .man +./usr/share/man/man9/makeiplcookie.9 comp-sys-man .man +./usr/share/man/man9/malloc.9 comp-sys-man .man +./usr/share/man/man9/malloc_roundup.9 comp-sys-man .man +./usr/share/man/man9/malloc_type_attach.9 comp-sys-man .man +./usr/share/man/man9/malloc_type_detach.9 comp-sys-man .man +./usr/share/man/man9/malloc_type_setlimit.9 comp-sys-man .man +./usr/share/man/man9/mb.9 comp-sys-man .man +./usr/share/man/man9/mb_memory.9 comp-sys-man .man +./usr/share/man/man9/mb_read.9 comp-sys-man .man +./usr/share/man/man9/mb_write.9 comp-sys-man .man +./usr/share/man/man9/mbuf.9 comp-sys-man .man +./usr/share/man/man9/mca.9 comp-sys-man .man +./usr/share/man/man9/mca_conf_read.9 comp-sys-man .man +./usr/share/man/man9/mca_conf_write.9 comp-sys-man .man +./usr/share/man/man9/mca_intr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/mca_intr_establish.9 comp-sys-man .man +./usr/share/man/man9/mca_intr_evcnt.9 comp-sys-man .man +./usr/share/man/man9/memcmp.9 comp-sys-man .man +./usr/share/man/man9/memcpy.9 comp-sys-man .man +./usr/share/man/man9/memmove.9 comp-sys-man .man +./usr/share/man/man9/memoryallocators.9 comp-sys-man .man +./usr/share/man/man9/memset.9 comp-sys-man .man +./usr/share/man/man9/mi_switch.9 comp-sys-man .man +./usr/share/man/man9/microtime.9 comp-sys-man .man +./usr/share/man/man9/microuptime.9 comp-sys-man .man +./usr/share/man/man9/module.9 comp-sys-man .man +./usr/share/man/man9/module_autoload.9 comp-sys-man .man +./usr/share/man/man9/module_builtin_require_force.9 comp-sys-man .man +./usr/share/man/man9/module_find_section.9 comp-sys-man .man +./usr/share/man/man9/module_hold.9 comp-sys-man .man +./usr/share/man/man9/module_init.9 comp-sys-man .man +./usr/share/man/man9/module_init_class.9 comp-sys-man .man +./usr/share/man/man9/module_load.9 comp-sys-man .man +./usr/share/man/man9/module_load_vfs_init.9 comp-sys-man .man +./usr/share/man/man9/module_rele.9 comp-sys-man .man +./usr/share/man/man9/module_start_unload_thread.9 comp-sys-man .man +./usr/share/man/man9/module_unload.9 comp-sys-man .man +./usr/share/man/man9/mono_time.9 comp-obsolete obsolete +./usr/share/man/man9/mstohz.9 comp-sys-man .man +./usr/share/man/man9/mtocl.9 comp-sys-man .man +./usr/share/man/man9/mtod.9 comp-sys-man .man +./usr/share/man/man9/mutex.9 comp-sys-man .man +./usr/share/man/man9/mutex_destroy.9 comp-sys-man .man +./usr/share/man/man9/mutex_enter.9 comp-sys-man .man +./usr/share/man/man9/mutex_exit.9 comp-sys-man .man +./usr/share/man/man9/mutex_init.9 comp-sys-man .man +./usr/share/man/man9/mutex_owned.9 comp-sys-man .man +./usr/share/man/man9/mutex_spin_enter.9 comp-sys-man .man +./usr/share/man/man9/mutex_spin_exit.9 comp-sys-man .man +./usr/share/man/man9/mutex_tryenter.9 comp-sys-man .man +./usr/share/man/man9/namecache.9 comp-sys-man .man +./usr/share/man/man9/namecache_print.9 comp-sys-man .man +./usr/share/man/man9/namei.9 comp-sys-man .man +./usr/share/man/man9/nanotime.9 comp-sys-man .man +./usr/share/man/man9/nanouptime.9 comp-sys-man .man +./usr/share/man/man9/need_resched.9 comp-obsolete obsolete +./usr/share/man/man9/nextrunqueue.9 comp-obsolete obsolete +./usr/share/man/man9/npf_ncode.9 comp-sys-man .man +./usr/share/man/man9/nullop.9 comp-sys-man .man +./usr/share/man/man9/old_sysctl.9 comp-sys-man .man +./usr/share/man/man9/opencrypto.9 comp-sys-man .man +./usr/share/man/man9/optstr.9 comp-sys-man .man +./usr/share/man/man9/optstr_get.9 comp-sys-man .man +./usr/share/man/man9/p_find.9 comp-obsolete obsolete +./usr/share/man/man9/panic.9 comp-sys-man .man +./usr/share/man/man9/pathbuf.9 comp-sys-man .man +./usr/share/man/man9/pci.9 comp-sys-man .man +./usr/share/man/man9/pci_conf_hook.9 comp-sys-man .man +./usr/share/man/man9/pci_conf_interrupt.9 comp-sys-man .man +./usr/share/man/man9/pci_conf_print.9 comp-sys-man .man +./usr/share/man/man9/pci_conf_read.9 comp-sys-man .man +./usr/share/man/man9/pci_conf_write.9 comp-sys-man .man +./usr/share/man/man9/pci_configure_bus.9 comp-sys-man .man +./usr/share/man/man9/pci_decompose_tag.9 comp-sys-man .man +./usr/share/man/man9/pci_devinfo.9 comp-sys-man .man +./usr/share/man/man9/pci_find_device.9 comp-sys-man .man +./usr/share/man/man9/pci_findvendor.9 comp-sys-man .man +./usr/share/man/man9/pci_get_capability.9 comp-sys-man .man +./usr/share/man/man9/pci_get_powerstate.9 comp-sys-man .man +./usr/share/man/man9/pci_intr.9 comp-sys-man .man +./usr/share/man/man9/pci_intr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/pci_intr_establish.9 comp-sys-man .man +./usr/share/man/man9/pci_intr_evcnt.9 comp-sys-man .man +./usr/share/man/man9/pci_intr_map.9 comp-sys-man .man +./usr/share/man/man9/pci_intr_string.9 comp-sys-man .man +./usr/share/man/man9/pci_make_tag.9 comp-sys-man .man +./usr/share/man/man9/pci_mapreg_info.9 comp-sys-man .man +./usr/share/man/man9/pci_mapreg_map.9 comp-sys-man .man +./usr/share/man/man9/pci_mapreg_type.9 comp-sys-man .man +./usr/share/man/man9/pci_set_powerstate.9 comp-sys-man .man +./usr/share/man/man9/pci_vpd_read.9 comp-sys-man .man +./usr/share/man/man9/pci_vpd_write.9 comp-sys-man .man +./usr/share/man/man9/pckbport.9 comp-sys-man .man +./usr/share/man/man9/pckbport_attach.9 comp-sys-man .man +./usr/share/man/man9/pckbport_attach_slot.9 comp-sys-man .man +./usr/share/man/man9/pckbport_cnattach.9 comp-sys-man .man +./usr/share/man/man9/pckbport_enqueue_cmd.9 comp-sys-man .man +./usr/share/man/man9/pckbport_flush.9 comp-sys-man .man +./usr/share/man/man9/pckbport_poll_cmd.9 comp-sys-man .man +./usr/share/man/man9/pckbport_poll_data.9 comp-sys-man .man +./usr/share/man/man9/pckbport_set_inputhandler.9 comp-sys-man .man +./usr/share/man/man9/pckbport_set_poll.9 comp-sys-man .man +./usr/share/man/man9/pckbport_slot_enable.9 comp-sys-man .man +./usr/share/man/man9/pckbport_xt_translation.9 comp-sys-man .man +./usr/share/man/man9/pckbportintr.9 comp-sys-man .man +./usr/share/man/man9/pcmcia.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_cis_read_1.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_cis_read_2.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_cis_read_3.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_cis_read_4.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_cis_read_n.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_function_disable.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_function_enable.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_function_init.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_intr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_intr_establish.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_io_alloc.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_io_free.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_io_map.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_io_unmap.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_mem_alloc.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_mem_free.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_mem_map.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_mem_unmap.9 comp-sys-man .man +./usr/share/man/man9/pcmcia_scan_cis.9 comp-sys-man .man +./usr/share/man/man9/pcq.9 comp-sys-man .man +./usr/share/man/man9/pcq_create.9 comp-sys-man .man +./usr/share/man/man9/pcq_destroy.9 comp-sys-man .man +./usr/share/man/man9/pcq_get.9 comp-sys-man .man +./usr/share/man/man9/pcq_maxitems.9 comp-sys-man .man +./usr/share/man/man9/pcq_peek.9 comp-sys-man .man +./usr/share/man/man9/pcq_put.9 comp-sys-man .man +./usr/share/man/man9/percpu.9 comp-sys-man .man +./usr/share/man/man9/percpu_alloc.9 comp-sys-man .man +./usr/share/man/man9/percpu_foreach.9 comp-sys-man .man +./usr/share/man/man9/percpu_free.9 comp-sys-man .man +./usr/share/man/man9/percpu_getref.9 comp-sys-man .man +./usr/share/man/man9/percpu_init.9 comp-obsolete obsolete +./usr/share/man/man9/percpu_init_cpu.9 comp-obsolete obsolete +./usr/share/man/man9/percpu_putref.9 comp-sys-man .man +./usr/share/man/man9/pfil.9 comp-sys-man .man +./usr/share/man/man9/pfil_add_hook.9 comp-sys-man .man +./usr/share/man/man9/pfil_get_head.9 comp-obsolete obsolete +./usr/share/man/man9/pfil_head_get.9 comp-sys-man .man +./usr/share/man/man9/pfil_head_register.9 comp-sys-man .man +./usr/share/man/man9/pfil_head_unregister.9 comp-sys-man .man +./usr/share/man/man9/pfil_hook_get.9 comp-sys-man .man +./usr/share/man/man9/pfil_remove_hook.9 comp-sys-man .man +./usr/share/man/man9/pfil_run_hooks.9 comp-sys-man .man +./usr/share/man/man9/pfind.9 comp-obsolete obsolete +./usr/share/man/man9/pg_find.9 comp-obsolete obsolete +./usr/share/man/man9/pgfind.9 comp-obsolete obsolete +./usr/share/man/man9/pgrp_find.9 comp-sys-man .man +./usr/share/man/man9/pgsignal.9 comp-sys-man .man +./usr/share/man/man9/physio.9 comp-sys-man .man +./usr/share/man/man9/pmap.9 comp-sys-man .man +./usr/share/man/man9/pmatch.9 comp-sys-man .man +./usr/share/man/man9/pmc.9 comp-sys-man .man +./usr/share/man/man9/pmc_accumulate.9 comp-sys-man .man +./usr/share/man/man9/pmc_alloc_kernel_counter.9 comp-sys-man .man +./usr/share/man/man9/pmc_configure_counter.9 comp-sys-man .man +./usr/share/man/man9/pmc_counter_isconfigured.9 comp-sys-man .man +./usr/share/man/man9/pmc_counter_isrunning.9 comp-sys-man .man +./usr/share/man/man9/pmc_disable_counter.9 comp-sys-man .man +./usr/share/man/man9/pmc_enable_counter.9 comp-sys-man .man +./usr/share/man/man9/pmc_free_kernel_counter.9 comp-sys-man .man +./usr/share/man/man9/pmc_get_counter_type.9 comp-sys-man .man +./usr/share/man/man9/pmc_get_counter_value.9 comp-sys-man .man +./usr/share/man/man9/pmc_get_num_counters.9 comp-sys-man .man +./usr/share/man/man9/pmc_restore_context.9 comp-sys-man .man +./usr/share/man/man9/pmc_save_context.9 comp-sys-man .man +./usr/share/man/man9/pmc_start_profiling.9 comp-sys-man .man +./usr/share/man/man9/pmc_stop_profiling.9 comp-sys-man .man +./usr/share/man/man9/pmf.9 comp-sys-man .man +./usr/share/man/man9/pmf_class_display_register.9 comp-sys-man .man +./usr/share/man/man9/pmf_class_input_register.9 comp-sys-man .man +./usr/share/man/man9/pmf_class_network_register.9 comp-sys-man .man +./usr/share/man/man9/pmf_device_deregister.9 comp-sys-man .man +./usr/share/man/man9/pmf_device_recursive_resume.9 comp-sys-man .man +./usr/share/man/man9/pmf_device_recursive_suspend.9 comp-sys-man .man +./usr/share/man/man9/pmf_device_register.9 comp-sys-man .man +./usr/share/man/man9/pmf_device_register1.9 comp-sys-man .man +./usr/share/man/man9/pmf_device_resume.9 comp-sys-man .man +./usr/share/man/man9/pmf_device_resume_subtree.9 comp-obsolete obsolete +./usr/share/man/man9/pmf_device_subtree_resume.9 comp-sys-man .man +./usr/share/man/man9/pmf_device_suspend.9 comp-sys-man .man +./usr/share/man/man9/pmf_event_deregister.9 comp-sys-man .man +./usr/share/man/man9/pmf_event_inject.9 comp-sys-man .man +./usr/share/man/man9/pmf_event_register.9 comp-sys-man .man +./usr/share/man/man9/pmf_get_platform.9 comp-sys-man .man +./usr/share/man/man9/pmf_set_platform.9 comp-sys-man .man +./usr/share/man/man9/pmf_system_resume.9 comp-sys-man .man +./usr/share/man/man9/pmf_system_shutdown.9 comp-sys-man .man +./usr/share/man/man9/pmf_system_suspend.9 comp-sys-man .man +./usr/share/man/man9/pool.9 comp-sys-man .man +./usr/share/man/man9/pool_cache.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_destroy.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_destruct_object.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_get.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_get_paddr.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_init.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_invalidate.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_invalidate_local.9 comp-obsolete obsolete +./usr/share/man/man9/pool_cache_put.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_put_paddr.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_sethardlimit.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_sethiwat.9 comp-sys-man .man +./usr/share/man/man9/pool_cache_setlowat.9 comp-sys-man .man +./usr/share/man/man9/pool_create.9 comp-sys-man .man +./usr/share/man/man9/pool_destroy.9 comp-sys-man .man +./usr/share/man/man9/pool_get.9 comp-sys-man .man +./usr/share/man/man9/pool_init.9 comp-sys-man .man +./usr/share/man/man9/pool_prime.9 comp-sys-man .man +./usr/share/man/man9/pool_put.9 comp-sys-man .man +./usr/share/man/man9/pool_sethardlimit.9 comp-sys-man .man +./usr/share/man/man9/pool_sethiwat.9 comp-sys-man .man +./usr/share/man/man9/pool_setlowat.9 comp-sys-man .man +./usr/share/man/man9/postsig.9 comp-sys-man .man +./usr/share/man/man9/powerhook_disestablish.9 comp-sys-man .man +./usr/share/man/man9/powerhook_establish.9 comp-sys-man .man +./usr/share/man/man9/powerof2.9 comp-sys-man .man +./usr/share/man/man9/ppsratecheck.9 comp-sys-man .man +./usr/share/man/man9/preempt.9 comp-sys-man .man +./usr/share/man/man9/printf.9 comp-sys-man .man +./usr/share/man/man9/printf_nolog.9 comp-sys-man .man +./usr/share/man/man9/proc_find.9 comp-sys-man .man +./usr/share/man/man9/proc_trampoline.9 comp-sys-man .man +./usr/share/man/man9/profhz.9 comp-sys-man .man +./usr/share/man/man9/prop_array_copyin_ioctl.9 comp-sys-man .man +./usr/share/man/man9/prop_array_copyout_ioctl.9 comp-sys-man .man +./usr/share/man/man9/prop_copy.9 comp-obsolete obsolete +./usr/share/man/man9/prop_copyin_ioctl.9 comp-sys-man .man +./usr/share/man/man9/prop_delete.9 comp-obsolete obsolete +./usr/share/man/man9/prop_dictionary_copyin_ioctl.9 comp-sys-man .man +./usr/share/man/man9/prop_dictionary_copyout_ioctl.9 comp-sys-man .man +./usr/share/man/man9/prop_get.9 comp-obsolete obsolete +./usr/share/man/man9/prop_list.9 comp-obsolete obsolete +./usr/share/man/man9/prop_objs.9 comp-obsolete obsolete +./usr/share/man/man9/prop_set.9 comp-obsolete obsolete +./usr/share/man/man9/propdb_create.9 comp-obsolete obsolete +./usr/share/man/man9/propdb_destroy.9 comp-obsolete obsolete +./usr/share/man/man9/properties.9 comp-obsolete obsolete +./usr/share/man/man9/pserialize.9 comp-sys-man .man +./usr/share/man/man9/pserialize_create.9 comp-sys-man .man +./usr/share/man/man9/pserialize_destroy.9 comp-sys-man .man +./usr/share/man/man9/pserialize_perform.9 comp-sys-man .man +./usr/share/man/man9/pserialize_read_enter.9 comp-sys-man .man +./usr/share/man/man9/pserialize_read_exit.9 comp-sys-man .man +./usr/share/man/man9/psignal.9 comp-sys-man .man +./usr/share/man/man9/ptoa.9 comp-sys-man .man +./usr/share/man/man9/putiobuf.9 comp-sys-man .man +./usr/share/man/man9/putter.9 comp-sys-man .man +./usr/share/man/man9/radio.9 comp-sys-man .man +./usr/share/man/man9/ras.9 comp-sys-man .man +./usr/share/man/man9/ras_fork.9 comp-sys-man .man +./usr/share/man/man9/ras_lookup.9 comp-sys-man .man +./usr/share/man/man9/ras_purgeall.9 comp-sys-man .man +./usr/share/man/man9/rasops.9 comp-sys-man .man +./usr/share/man/man9/rasops_init.9 comp-sys-man .man +./usr/share/man/man9/rasops_reconfig.9 comp-sys-man .man +./usr/share/man/man9/ratecheck.9 comp-sys-man .man +./usr/share/man/man9/readdisklabel.9 comp-sys-man .man +./usr/share/man/man9/realloc.9 comp-sys-man .man +./usr/share/man/man9/relookup.9 comp-sys-man .man +./usr/share/man/man9/remrunqueue.9 comp-obsolete obsolete +./usr/share/man/man9/resettodr.9 comp-sys-man .man +./usr/share/man/man9/rnd.9 comp-sys-man .man +./usr/share/man/man9/rnd_add_data.9 comp-sys-man .man +./usr/share/man/man9/rnd_add_uint32.9 comp-sys-man .man +./usr/share/man/man9/rnd_attach_source.9 comp-sys-man .man +./usr/share/man/man9/rnd_detach_source.9 comp-sys-man .man +./usr/share/man/man9/rnd_extract_data.9 comp-sys-man .man +./usr/share/man/man9/rootconf.9 comp-sys-man .man +./usr/share/man/man9/round_page.9 comp-sys-man .man +./usr/share/man/man9/rounddown.9 comp-sys-man .man +./usr/share/man/man9/roundup.9 comp-sys-man .man +./usr/share/man/man9/roundup2.9 comp-sys-man .man +./usr/share/man/man9/rssadapt.9 comp-sys-man .man +./usr/share/man/man9/rt_timer.9 comp-sys-man .man +./usr/share/man/man9/rt_timer_add.9 comp-sys-man .man +./usr/share/man/man9/rt_timer_queue_change.9 comp-sys-man .man +./usr/share/man/man9/rt_timer_queue_create.9 comp-sys-man .man +./usr/share/man/man9/rt_timer_queue_destroy.9 comp-sys-man .man +./usr/share/man/man9/rt_timer_remove_all.9 comp-sys-man .man +./usr/share/man/man9/runtime.9 comp-obsolete obsolete +./usr/share/man/man9/rw.9 comp-sys-man .man +./usr/share/man/man9/rw_destroy.9 comp-sys-man .man +./usr/share/man/man9/rw_downgrade.9 comp-sys-man .man +./usr/share/man/man9/rw_enter.9 comp-sys-man .man +./usr/share/man/man9/rw_exit.9 comp-sys-man .man +./usr/share/man/man9/rw_init.9 comp-sys-man .man +./usr/share/man/man9/rw_lock_held.9 comp-sys-man .man +./usr/share/man/man9/rw_read_held.9 comp-sys-man .man +./usr/share/man/man9/rw_tryenter.9 comp-sys-man .man +./usr/share/man/man9/rw_tryupgrade.9 comp-sys-man .man +./usr/share/man/man9/rw_write_held.9 comp-sys-man .man +./usr/share/man/man9/rwlock.9 comp-sys-man .man +./usr/share/man/man9/scanc.9 comp-sys-man .man +./usr/share/man/man9/sched_4bsd.9 comp-sys-man .man +./usr/share/man/man9/sched_lock_idle.9 comp-obsolete obsolete +./usr/share/man/man9/sched_m2.9 comp-sys-man .man +./usr/share/man/man9/sched_psignal.9 comp-obsolete obsolete +./usr/share/man/man9/sched_unlock_idle.9 comp-obsolete obsolete +./usr/share/man/man9/scheduler.9 comp-obsolete obsolete +./usr/share/man/man9/scsipi.9 comp-sys-man .man +./usr/share/man/man9/secmodel.9 comp-sys-man .man +./usr/share/man/man9/secmodel_bsd44.9 comp-sys-man .man +./usr/share/man/man9/secmodel_deregister.9 comp-sys-man .man +./usr/share/man/man9/secmodel_eval.9 comp-sys-man .man +./usr/share/man/man9/secmodel_extensions.9 comp-sys-man .man +./usr/share/man/man9/secmodel_overlay.9 comp-sys-man .man +./usr/share/man/man9/secmodel_register.9 comp-sys-man .man +./usr/share/man/man9/secmodel_securelevel.9 comp-sys-man .man +./usr/share/man/man9/secmodel_suser.9 comp-sys-man .man +./usr/share/man/man9/seldestroy.9 comp-sys-man .man +./usr/share/man/man9/select.9 comp-sys-man .man +./usr/share/man/man9/selinit.9 comp-sys-man .man +./usr/share/man/man9/selnotify.9 comp-sys-man .man +./usr/share/man/man9/selrecord.9 comp-sys-man .man +./usr/share/man/man9/selwakeup.9 comp-obsolete obsolete +./usr/share/man/man9/sendsig.9 comp-sys-man .man +./usr/share/man/man9/setbit.9 comp-sys-man .man +./usr/share/man/man9/setdisklabel.9 comp-sys-man .man +./usr/share/man/man9/setjmp.9 comp-sys-man .man +./usr/share/man/man9/setroot.9 comp-sys-man .man +./usr/share/man/man9/setrunqueue.9 comp-obsolete obsolete +./usr/share/man/man9/shutdownhook_disestablish.9 comp-sys-man .man +./usr/share/man/man9/shutdownhook_establish.9 comp-sys-man .man +./usr/share/man/man9/sigaction1.9 comp-sys-man .man +./usr/share/man/man9/sigactsfree.9 comp-sys-man .man +./usr/share/man/man9/sigactsinit.9 comp-sys-man .man +./usr/share/man/man9/sigactsunshare.9 comp-sys-man .man +./usr/share/man/man9/sigaltstack1.9 comp-sys-man .man +./usr/share/man/man9/sigcode.9 comp-sys-man .man +./usr/share/man/man9/sigexit.9 comp-sys-man .man +./usr/share/man/man9/siginit.9 comp-sys-man .man +./usr/share/man/man9/sigmasked.9 comp-obsolete obsolete +./usr/share/man/man9/signal.9 comp-sys-man .man +./usr/share/man/man9/sigpending1.9 comp-sys-man .man +./usr/share/man/man9/sigprocmask1.9 comp-sys-man .man +./usr/share/man/man9/sigsuspend1.9 comp-sys-man .man +./usr/share/man/man9/sigtramp.9 comp-sys-man .man +./usr/share/man/man9/simple_lock.9 comp-sys-man .man +./usr/share/man/man9/simple_lock_dump.9 comp-sys-man .man +./usr/share/man/man9/simple_lock_freecheck.9 comp-sys-man .man +./usr/share/man/man9/simple_lock_init.9 comp-sys-man .man +./usr/share/man/man9/simple_lock_try.9 comp-sys-man .man +./usr/share/man/man9/simple_lock_unlock.9 comp-obsolete obsolete +./usr/share/man/man9/simple_unlock.9 comp-sys-man .man +./usr/share/man/man9/skpc.9 comp-sys-man .man +./usr/share/man/man9/sleep.9 comp-obsolete obsolete +./usr/share/man/man9/snprintf.9 comp-sys-man .man +./usr/share/man/man9/sockopt.9 comp-sys-man .man +./usr/share/man/man9/sockopt_destroy.9 comp-sys-man .man +./usr/share/man/man9/sockopt_get.9 comp-sys-man .man +./usr/share/man/man9/sockopt_getint.9 comp-sys-man .man +./usr/share/man/man9/sockopt_init.9 comp-sys-man .man +./usr/share/man/man9/sockopt_set.9 comp-sys-man .man +./usr/share/man/man9/sockopt_setint.9 comp-sys-man .man +./usr/share/man/man9/softint.9 comp-sys-man .man +./usr/share/man/man9/softint_disestablish.9 comp-sys-man .man +./usr/share/man/man9/softint_establish.9 comp-sys-man .man +./usr/share/man/man9/softint_schedule.9 comp-sys-man .man +./usr/share/man/man9/softintr.9 comp-sys-man .man +./usr/share/man/man9/softintr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/softintr_establish.9 comp-sys-man .man +./usr/share/man/man9/softintr_schedule.9 comp-sys-man .man +./usr/share/man/man9/spinlockinit.9 comp-sys-man .man +./usr/share/man/man9/spinlockmgr.9 comp-sys-man .man +./usr/share/man/man9/spl.9 comp-sys-man .man +./usr/share/man/man9/spl0.9 comp-sys-man .man +./usr/share/man/man9/splbio.9 comp-sys-man .man +./usr/share/man/man9/splclock.9 comp-sys-man .man +./usr/share/man/man9/splhigh.9 comp-sys-man .man +./usr/share/man/man9/splimp.9 comp-sys-man .man +./usr/share/man/man9/spllower.9 comp-obsolete obsolete +./usr/share/man/man9/spllowersoftclock.9 comp-sys-man .man +./usr/share/man/man9/splnet.9 comp-sys-man .man +./usr/share/man/man9/splraise.9 comp-obsolete obsolete +./usr/share/man/man9/splraiseipl.9 comp-sys-man .man +./usr/share/man/man9/splsched.9 comp-sys-man .man +./usr/share/man/man9/splserial.9 comp-sys-man .man +./usr/share/man/man9/splsoftbio.9 comp-sys-man .man +./usr/share/man/man9/splsoftclock.9 comp-sys-man .man +./usr/share/man/man9/splsoftnet.9 comp-sys-man .man +./usr/share/man/man9/splsoftserial.9 comp-sys-man .man +./usr/share/man/man9/splstatclock.9 comp-sys-man .man +./usr/share/man/man9/spltty.9 comp-sys-man .man +./usr/share/man/man9/splvm.9 comp-sys-man .man +./usr/share/man/man9/splx.9 comp-sys-man .man +./usr/share/man/man9/sprintf.9 comp-sys-man .man +./usr/share/man/man9/stathz.9 comp-sys-man .man +./usr/share/man/man9/store.9 comp-sys-man .man +./usr/share/man/man9/subyte.9 comp-sys-man .man +./usr/share/man/man9/suibyte.9 comp-sys-man .man +./usr/share/man/man9/suiword.9 comp-sys-man .man +./usr/share/man/man9/sun3/isr_add.9 comp-sys-man .man +./usr/share/man/man9/sun3/isr_add_autovect.9 comp-sys-man .man +./usr/share/man/man9/sun3/isr_add_custom.9 comp-sys-man .man +./usr/share/man/man9/sun3/isr_add_vectored.9 comp-sys-man .man +./usr/share/man/man9/suser.9 comp-obsolete obsolete +./usr/share/man/man9/suspendsched.9 comp-sys-man .man +./usr/share/man/man9/suswintr.9 comp-sys-man .man +./usr/share/man/man9/susword.9 comp-sys-man .man +./usr/share/man/man9/suword.9 comp-sys-man .man +./usr/share/man/man9/sysctl.9 comp-sys-man .man +./usr/share/man/man9/sysctl_create.9 comp-sys-man .man +./usr/share/man/man9/sysctl_createv.9 comp-sys-man .man +./usr/share/man/man9/sysctl_destroy.9 comp-sys-man .man +./usr/share/man/man9/sysctl_destroyv.9 comp-sys-man .man +./usr/share/man/man9/sysctl_dispatch.9 comp-sys-man .man +./usr/share/man/man9/sysctl_free.9 comp-sys-man .man +./usr/share/man/man9/sysctl_init.9 comp-sys-man .man +./usr/share/man/man9/sysctl_locate.9 comp-sys-man .man +./usr/share/man/man9/sysctl_lock.9 comp-sys-man .man +./usr/share/man/man9/sysctl_lookup.9 comp-sys-man .man +./usr/share/man/man9/sysctl_needfunc.9 comp-sys-man .man +./usr/share/man/man9/sysctl_notavail.9 comp-sys-man .man +./usr/share/man/man9/sysctl_null.9 comp-sys-man .man +./usr/share/man/man9/sysctl_query.9 comp-sys-man .man +./usr/share/man/man9/sysctl_teardown.9 comp-sys-man .man +./usr/share/man/man9/sysctl_unlock.9 comp-sys-man .man +./usr/share/man/man9/sysmon_envsys.9 comp-sys-man .man +./usr/share/man/man9/sysmon_envsys_create.9 comp-sys-man .man +./usr/share/man/man9/sysmon_envsys_destroy.9 comp-sys-man .man +./usr/share/man/man9/sysmon_envsys_register.9 comp-sys-man .man +./usr/share/man/man9/sysmon_envsys_sensor_attach.9 comp-sys-man .man +./usr/share/man/man9/sysmon_envsys_sensor_detach.9 comp-sys-man .man +./usr/share/man/man9/sysmon_envsys_unregister.9 comp-sys-man .man +./usr/share/man/man9/sysmon_pswitch.9 comp-sys-man .man +./usr/share/man/man9/sysmon_pswitch_event.9 comp-sys-man .man +./usr/share/man/man9/sysmon_pswitch_register.9 comp-sys-man .man +./usr/share/man/man9/sysmon_pswitch_unregister.9 comp-sys-man .man +./usr/share/man/man9/sysmon_task_queue_fini.9 comp-sys-man .man +./usr/share/man/man9/sysmon_task_queue_init.9 comp-sys-man .man +./usr/share/man/man9/sysmon_task_queue_preinit.9 comp-sys-man .man +./usr/share/man/man9/sysmon_task_queue_sched.9 comp-sys-man .man +./usr/share/man/man9/sysmon_taskq.9 comp-sys-man .man +./usr/share/man/man9/tc.9 comp-sys-man .man +./usr/share/man/man9/tc_badaddr.9 comp-sys-man .man +./usr/share/man/man9/tc_init.9 comp-sys-man .man +./usr/share/man/man9/tc_intr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/tc_intr_establish.9 comp-sys-man .man +./usr/share/man/man9/tc_intr_evcnt.9 comp-sys-man .man +./usr/share/man/man9/tc_mb.9 comp-sys-man .man +./usr/share/man/man9/tc_syncbus.9 comp-sys-man .man +./usr/share/man/man9/tc_wmb.9 comp-sys-man .man +./usr/share/man/man9/tcp_congctl.9 comp-sys-man .man +./usr/share/man/man9/tick.9 comp-sys-man .man +./usr/share/man/man9/tickadj.9 comp-sys-man .man +./usr/share/man/man9/time.9 comp-obsolete obsolete +./usr/share/man/man9/time_second.9 comp-sys-man .man +./usr/share/man/man9/time_uptime.9 comp-sys-man .man +./usr/share/man/man9/timecounter.9 comp-sys-man .man +./usr/share/man/man9/timeout.9 comp-sys-man .man +./usr/share/man/man9/timespec2bintime.9 comp-sys-man .man +./usr/share/man/man9/timeval2bintime.9 comp-sys-man .man +./usr/share/man/man9/tmpfs.9 comp-obsolete obsolete +./usr/share/man/man9/todr.9 comp-sys-man .man +./usr/share/man/man9/todr_getcal.9 comp-obsolete obsolete +./usr/share/man/man9/todr_gettime.9 comp-sys-man .man +./usr/share/man/man9/todr_setcal.9 comp-obsolete obsolete +./usr/share/man/man9/todr_settime.9 comp-sys-man .man +./usr/share/man/man9/tprintf.9 comp-sys-man .man +./usr/share/man/man9/tprintf_close.9 comp-sys-man .man +./usr/share/man/man9/tprintf_open.9 comp-sys-man .man +./usr/share/man/man9/transferlockers.9 comp-sys-man .man +./usr/share/man/man9/trapsignal.9 comp-sys-man .man +./usr/share/man/man9/trunc_page.9 comp-sys-man .man +./usr/share/man/man9/tsleep.9 comp-sys-man .man +./usr/share/man/man9/ttyldisc_add.9 comp-sys-man .man +./usr/share/man/man9/ttyldisc_lookup.9 comp-sys-man .man +./usr/share/man/man9/ttyldisc_remove.9 comp-sys-man .man +./usr/share/man/man9/ttyprintf.9 comp-sys-man .man +./usr/share/man/man9/tvtohz.9 comp-sys-man .man +./usr/share/man/man9/uao_create.9 comp-sys-man .man +./usr/share/man/man9/uao_detach.9 comp-sys-man .man +./usr/share/man/man9/uao_reference.9 comp-sys-man .man +./usr/share/man/man9/ubc.9 comp-sys-man .man +./usr/share/man/man9/ubc_alloc.9 comp-sys-man .man +./usr/share/man/man9/ubc_release.9 comp-sys-man .man +./usr/share/man/man9/ubc_uiomove.9 comp-sys-man .man +./usr/share/man/man9/ucas.9 comp-sys-man .man +./usr/share/man/man9/ucom.9 comp-sys-man .man +./usr/share/man/man9/uiomove.9 comp-sys-man .man +./usr/share/man/man9/ungetnewvnode.9 comp-sys-man .man +./usr/share/man/man9/untimeout.9 comp-sys-man .man +./usr/share/man/man9/uprintf.9 comp-sys-man .man +./usr/share/man/man9/usbd_status.9 comp-sys-man .man +./usr/share/man/man9/usbdi.9 comp-sys-man .man +./usr/share/man/man9/useracc.9 comp-obsolete obsolete +./usr/share/man/man9/userret.9 comp-sys-man .man +./usr/share/man/man9/uvm.9 comp-sys-man .man +./usr/share/man/man9/uvm_chgkprot.9 comp-sys-man .man +./usr/share/man/man9/uvm_coredump.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_deallocate.9 comp-sys-man .man +./usr/share/man/man9/uvm_fault.9 comp-sys-man .man +./usr/share/man/man9/uvm_fork.9 comp-sys-man .man +./usr/share/man/man9/uvm_grow.9 comp-sys-man .man +./usr/share/man/man9/uvm_init.9 comp-sys-man .man +./usr/share/man/man9/uvm_init_limits.9 comp-sys-man .man +./usr/share/man/man9/uvm_io.9 comp-sys-man .man +./usr/share/man/man9/uvm_kernacc.9 comp-sys-man .man +./usr/share/man/man9/uvm_km.9 comp-sys-man .man +./usr/share/man/man9/uvm_km_alloc.9 comp-sys-man .man +./usr/share/man/man9/uvm_km_alloc1.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_km_free.9 comp-sys-man .man +./usr/share/man/man9/uvm_km_free_wakeup.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_km_kmemalloc.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_km_suballoc.9 comp-sys-man .man +./usr/share/man/man9/uvm_km_valloc.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_km_valloc_wait.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_km_zalloc.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_loan.9 comp-sys-man .man +./usr/share/man/man9/uvm_map.9 comp-sys-man .man +./usr/share/man/man9/uvm_map_checkprot.9 comp-sys-man .man +./usr/share/man/man9/uvm_map_pageable.9 comp-sys-man .man +./usr/share/man/man9/uvm_map_protect.9 comp-sys-man .man +./usr/share/man/man9/uvm_meter.9 comp-sys-man .man +./usr/share/man/man9/uvm_page_physload.9 comp-sys-man .man +./usr/share/man/man9/uvm_pagealloc.9 comp-sys-man .man +./usr/share/man/man9/uvm_pagefree.9 comp-sys-man .man +./usr/share/man/man9/uvm_pageout.9 comp-sys-man .man +./usr/share/man/man9/uvm_pagerealloc.9 comp-sys-man .man +./usr/share/man/man9/uvm_pglistalloc.9 comp-sys-man .man +./usr/share/man/man9/uvm_pglistfree.9 comp-sys-man .man +./usr/share/man/man9/uvm_scheduler.9 comp-sys-man .man +./usr/share/man/man9/uvm_setpagesize.9 comp-sys-man .man +./usr/share/man/man9/uvm_swap_init.9 comp-sys-man .man +./usr/share/man/man9/uvm_swapin.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_sysctl.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_unloan.9 comp-sys-man .man +./usr/share/man/man9/uvm_unmap.9 comp-sys-man .man +./usr/share/man/man9/uvm_useracc.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_vnp_setsize.9 comp-sys-man .man +./usr/share/man/man9/uvm_vnp_sync.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_vnp_terminate.9 comp-obsolete obsolete +./usr/share/man/man9/uvm_vslock.9 comp-sys-man .man +./usr/share/man/man9/uvm_vsunlock.9 comp-sys-man .man +./usr/share/man/man9/uvmspace_alloc.9 comp-sys-man .man +./usr/share/man/man9/uvmspace_exec.9 comp-sys-man .man +./usr/share/man/man9/uvmspace_fork.9 comp-sys-man .man +./usr/share/man/man9/uvmspace_free.9 comp-sys-man .man +./usr/share/man/man9/uvmspace_share.9 comp-sys-man .man +./usr/share/man/man9/uvmspace_unshare.9 comp-sys-man .man +./usr/share/man/man9/uvn_attach.9 comp-obsolete obsolete +./usr/share/man/man9/uvn_findpages.9 comp-sys-man .man +./usr/share/man/man9/vaccess.9 comp-sys-man .man +./usr/share/man/man9/vattr.9 comp-sys-man .man +./usr/share/man/man9/vattr_null.9 comp-sys-man .man +./usr/share/man/man9/vcons.9 comp-sys-man .man +./usr/share/man/man9/vcount.9 comp-obsolete obsolete +./usr/share/man/man9/vdevgone.9 comp-sys-man .man +./usr/share/man/man9/veriexec.9 comp-sys-man .man +./usr/share/man/man9/vfinddev.9 comp-sys-man .man +./usr/share/man/man9/vflush.9 comp-sys-man .man +./usr/share/man/man9/vflushbuf.9 comp-sys-man .man +./usr/share/man/man9/vfs.9 comp-sys-man .man +./usr/share/man/man9/vfs_attach.9 comp-sys-man .man +./usr/share/man/man9/vfs_busy.9 comp-sys-man .man +./usr/share/man/man9/vfs_detach.9 comp-sys-man .man +./usr/share/man/man9/vfs_export.9 comp-sys-man .man +./usr/share/man/man9/vfs_export_lookup.9 comp-sys-man .man +./usr/share/man/man9/vfs_getnewfsid.9 comp-sys-man .man +./usr/share/man/man9/vfs_getopsbyname.9 comp-sys-man .man +./usr/share/man/man9/vfs_getvfs.9 comp-sys-man .man +./usr/share/man/man9/vfs_hooks.9 comp-sys-man .man +./usr/share/man/man9/vfs_hooks_unmount.9 comp-sys-man .man +./usr/share/man/man9/vfs_mountalloc.9 comp-sys-man .man +./usr/share/man/man9/vfs_mountedon.9 comp-sys-man .man +./usr/share/man/man9/vfs_mountroot.9 comp-sys-man .man +./usr/share/man/man9/vfs_reinit.9 comp-sys-man .man +./usr/share/man/man9/vfs_resume.9 comp-sys-man .man +./usr/share/man/man9/vfs_rootmountalloc.9 comp-sys-man .man +./usr/share/man/man9/vfs_setpublicfs.9 comp-sys-man .man +./usr/share/man/man9/vfs_showexport.9 comp-sys-man .man +./usr/share/man/man9/vfs_shutdown.9 comp-sys-man .man +./usr/share/man/man9/vfs_suspend.9 comp-sys-man .man +./usr/share/man/man9/vfs_sysctl.9 comp-obsolete obsolete +./usr/share/man/man9/vfs_unbusy.9 comp-sys-man .man +./usr/share/man/man9/vfs_unmountall.9 comp-sys-man .man +./usr/share/man/man9/vfs_write_resume.9 comp-obsolete obsolete +./usr/share/man/man9/vfs_write_suspend.9 comp-obsolete obsolete +./usr/share/man/man9/vfsops.9 comp-sys-man .man +./usr/share/man/man9/vfssubr.9 comp-sys-man .man +./usr/share/man/man9/vget.9 comp-sys-man .man +./usr/share/man/man9/vgone.9 comp-sys-man .man +./usr/share/man/man9/vgonel.9 comp-sys-man .man +./usr/share/man/man9/vhold.9 comp-sys-man .man +./usr/share/man/man9/video.9 comp-sys-man .man +./usr/share/man/man9/vinvalbuf.9 comp-sys-man .man +./usr/share/man/man9/vme.9 comp-sys-man .man +./usr/share/man/man9/vme_dmamap_create.9 comp-sys-man .man +./usr/share/man/man9/vme_dmamap_destroy.9 comp-sys-man .man +./usr/share/man/man9/vme_dmamem_alloc.9 comp-sys-man .man +./usr/share/man/man9/vme_dmamem_free.9 comp-sys-man .man +./usr/share/man/man9/vme_intr_disestablish.9 comp-sys-man .man +./usr/share/man/man9/vme_intr_establish.9 comp-sys-man .man +./usr/share/man/man9/vme_intr_evcnt.9 comp-sys-man .man +./usr/share/man/man9/vme_intr_map.9 comp-sys-man .man +./usr/share/man/man9/vme_probe.9 comp-sys-man .man +./usr/share/man/man9/vme_space_alloc.9 comp-sys-man .man +./usr/share/man/man9/vme_space_free.9 comp-sys-man .man +./usr/share/man/man9/vme_space_get.9 comp-sys-man .man +./usr/share/man/man9/vme_space_map.9 comp-sys-man .man +./usr/share/man/man9/vme_space_unmap.9 comp-sys-man .man +./usr/share/man/man9/vmem.9 comp-sys-man .man +./usr/share/man/man9/vmem_alloc.9 comp-sys-man .man +./usr/share/man/man9/vmem_create.9 comp-sys-man .man +./usr/share/man/man9/vmem_destroy.9 comp-sys-man .man +./usr/share/man/man9/vmem_free.9 comp-sys-man .man +./usr/share/man/man9/vmem_xalloc.9 comp-sys-man .man +./usr/share/man/man9/vmem_xfree.9 comp-sys-man .man +./usr/share/man/man9/vn_bwrite.9 comp-sys-man .man +./usr/share/man/man9/vn_close.9 comp-sys-man .man +./usr/share/man/man9/vn_closefile.9 comp-sys-man .man +./usr/share/man/man9/vn_cow_disestablish.9 comp-obsolete obsolete +./usr/share/man/man9/vn_cow_establish.9 comp-obsolete obsolete +./usr/share/man/man9/vn_default_error.9 comp-sys-man .man +./usr/share/man/man9/vn_fcntl.9 comp-sys-man .man +./usr/share/man/man9/vn_finished_write.9 comp-obsolete obsolete +./usr/share/man/man9/vn_ioctl.9 comp-sys-man .man +./usr/share/man/man9/vn_isunder.9 comp-sys-man .man +./usr/share/man/man9/vn_lock.9 comp-sys-man .man +./usr/share/man/man9/vn_markexec.9 comp-sys-man .man +./usr/share/man/man9/vn_marktext.9 comp-sys-man .man +./usr/share/man/man9/vn_open.9 comp-sys-man .man +./usr/share/man/man9/vn_poll.9 comp-sys-man .man +./usr/share/man/man9/vn_rdwr.9 comp-sys-man .man +./usr/share/man/man9/vn_read.9 comp-sys-man .man +./usr/share/man/man9/vn_restorerecurse.9 comp-sys-man obsolete +./usr/share/man/man9/vn_setrecurse.9 comp-sys-man obsolete +./usr/share/man/man9/vn_start_write.9 comp-obsolete obsolete +./usr/share/man/man9/vn_stat.9 comp-sys-man .man +./usr/share/man/man9/vn_statfile.9 comp-sys-man .man +./usr/share/man/man9/vn_write.9 comp-sys-man .man +./usr/share/man/man9/vn_writechk.9 comp-sys-man .man +./usr/share/man/man9/vnfileops.9 comp-sys-man .man +./usr/share/man/man9/vnode.9 comp-sys-man .man +./usr/share/man/man9/vnodeops.9 comp-sys-man .man +./usr/share/man/man9/vnsubr.9 comp-sys-man .man +./usr/share/man/man9/voidop.9 comp-sys-man .man +./usr/share/man/man9/vpanic.9 comp-sys-man .man +./usr/share/man/man9/vprint.9 comp-sys-man .man +./usr/share/man/man9/vprintf.9 comp-sys-man .man +./usr/share/man/man9/vput.9 comp-sys-man .man +./usr/share/man/man9/vrecycle.9 comp-sys-man .man +./usr/share/man/man9/vref.9 comp-sys-man .man +./usr/share/man/man9/vrele.9 comp-sys-man .man +./usr/share/man/man9/vrele_async.9 comp-sys-man .man +./usr/share/man/man9/vslock.9 comp-obsolete obsolete +./usr/share/man/man9/vsnprintf.9 comp-sys-man .man +./usr/share/man/man9/vsprintf.9 comp-sys-man .man +./usr/share/man/man9/vsunlock.9 comp-obsolete obsolete +./usr/share/man/man9/vtruncbuf.9 comp-sys-man .man +./usr/share/man/man9/vwakeup.9 comp-sys-man .man +./usr/share/man/man9/wakeup.9 comp-sys-man .man +./usr/share/man/man9/wdc.9 comp-sys-man .man +./usr/share/man/man9/workqueue.9 comp-sys-man .man +./usr/share/man/man9/workqueue_create.9 comp-sys-man .man +./usr/share/man/man9/workqueue_destroy.9 comp-sys-man .man +./usr/share/man/man9/workqueue_enqueue.9 comp-sys-man .man +./usr/share/man/man9/writedisklabel.9 comp-sys-man .man +./usr/share/man/man9/wscons.9 comp-sys-man .man +./usr/share/man/man9/wsdisplay.9 comp-sys-man .man +./usr/share/man/man9/wsdisplay_cnattach.9 comp-sys-man .man +./usr/share/man/man9/wsdisplay_switchtoconsole.9 comp-sys-man .man +./usr/share/man/man9/wsdisplaydevprint.9 comp-sys-man .man +./usr/share/man/man9/wsemuldisplaydevprint.9 comp-sys-man .man +./usr/share/man/man9/wsfont.9 comp-sys-man .man +./usr/share/man/man9/wsfont_add.9 comp-sys-man .man +./usr/share/man/man9/wsfont_enum.9 comp-sys-man .man +./usr/share/man/man9/wsfont_find.9 comp-sys-man .man +./usr/share/man/man9/wsfont_getflg.9 comp-sys-man .man +./usr/share/man/man9/wsfont_init.9 comp-sys-man .man +./usr/share/man/man9/wsfont_lock.9 comp-sys-man .man +./usr/share/man/man9/wsfont_map_unichar.9 comp-sys-man .man +./usr/share/man/man9/wsfont_matches.9 comp-sys-man .man +./usr/share/man/man9/wsfont_remove.9 comp-sys-man .man +./usr/share/man/man9/wsfont_unlock.9 comp-sys-man .man +./usr/share/man/man9/wskbd.9 comp-sys-man .man +./usr/share/man/man9/wskbd_cnattach.9 comp-sys-man .man +./usr/share/man/man9/wskbd_cndetach.9 comp-sys-man .man +./usr/share/man/man9/wskbd_input.9 comp-sys-man .man +./usr/share/man/man9/wskbd_rawinput.9 comp-sys-man .man +./usr/share/man/man9/wskbddevprint.9 comp-sys-man .man +./usr/share/man/man9/wsmouse.9 comp-sys-man .man +./usr/share/man/man9/wsmouse_input.9 comp-sys-man .man +./usr/share/man/man9/wsmousedevprint.9 comp-sys-man .man +./usr/share/man/man9/x86/msr.9 comp-sys-man .man +./usr/share/man/man9/x86/nmi.9 comp-sys-man .man +./usr/share/man/man9/x86/nmi_disestablish.9 comp-sys-man .man +./usr/share/man/man9/x86/nmi_establish.9 comp-sys-man .man +./usr/share/man/man9/x86/rdmsr.9 comp-sys-man .man +./usr/share/man/man9/x86/rdmsr_safe.9 comp-sys-man .man +./usr/share/man/man9/x86/rdtsc.9 comp-sys-man .man +./usr/share/man/man9/x86/tsc.9 comp-sys-man .man +./usr/share/man/man9/x86/tsc_sync_ap.9 comp-sys-man .man +./usr/share/man/man9/x86/tsc_sync_bp.9 comp-sys-man .man +./usr/share/man/man9/x86/tsc_sync_drift.9 comp-sys-man .man +./usr/share/man/man9/x86/tsc_tc_init.9 comp-sys-man .man +./usr/share/man/man9/x86/wrmsr.9 comp-sys-man .man +./usr/share/man/man9/x86/x86_msr_xcall.9 comp-sys-man .man +./usr/share/man/man9/xc_broadcast.9 comp-sys-man .man +./usr/share/man/man9/xc_unicast.9 comp-sys-man .man +./usr/share/man/man9/xc_wait.9 comp-sys-man .man +./usr/share/man/man9/xcall.9 comp-sys-man .man +./usr/share/man/man9/yield.9 comp-sys-man .man +./usr/share/misc/gprof.callg comp-obsolete obsolete +./usr/share/misc/gprof.flat comp-obsolete obsolete +./usr/share/misc/indent.pro comp-util-share share +./usr/share/misc/menu_sys.def comp-c-share share +./usr/share/misc/msg_sys.def comp-c-share share +./usr/share/misc/operator comp-c-share share +./usr/share/misc/style comp-c-share share +./var/db/libc.tags comp-c-root diff --git a/distrib/sets/lists/comp/shl.mi b/distrib/sets/lists/comp/shl.mi new file mode 100644 index 000000000..d852c34f0 --- /dev/null +++ b/distrib/sets/lists/comp/shl.mi @@ -0,0 +1,450 @@ +# $NetBSD: shl.mi,v 1.236 2012/09/18 15:14:42 skrll Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./usr/lib/crtbeginS.o comp-c-lib +./usr/lib/crtbeginT.o comp-c-lib +./usr/lib/crtendS.o comp-c-lib +./usr/lib/libarchive_pic.a comp-c-piclib +./usr/lib/libasn1_pic.a comp-c-piclib kerberos +./usr/lib/libatf-c++_pic.a comp-atf-piclib atf +./usr/lib/libatf-c_pic.a comp-atf-piclib atf +./usr/lib/libatf_pic.a comp-obsolete obsolete +./usr/lib/libavl_pic.a comp-zfs-piclib zfs +./usr/lib/libbind9_pic.a comp-bind-piclib +./usr/lib/libbluetooth_pic.a comp-c-piclib +./usr/lib/libbsdmalloc_pic.a comp-c-piclib +./usr/lib/libbz2_pic.a comp-c-piclib +./usr/lib/libc_pic.a comp-c-piclib +./usr/lib/libcdk_pic.a comp-obsolete obsolete +./usr/lib/libcom_err_pic.a comp-c-piclib kerberos +./usr/lib/libcompat_pic.a comp-c-piclib +./usr/lib/libcrypt_pic.a comp-c-piclib +./usr/lib/libcrypto_pic.a comp-c-piclib crypto +./usr/lib/libctf_pic.a comp-c-piclib dtrace +./usr/lib/libcurses_pic.a comp-c-piclib +./usr/lib/libdes_pic.a comp-c-piclib crypto +./usr/lib/libdevmapper_pic.a comp-lvm-piclib lvm +./usr/lib/libdm_pic.a comp-c-piclib +./usr/lib/libdns_pic.a comp-bind-piclib +./usr/lib/libdns_sd_pic.a comp-mdns-piclib mdns +./usr/lib/libdtrace_pic.a comp-c-piclib dtrace +./usr/lib/libdwarf_pic.a comp-c-piclib +./usr/lib/libedit_pic.a comp-c-piclib +./usr/lib/libelf_pic.a comp-c-piclib +./usr/lib/libevent_pic.a comp-c-piclib +./usr/lib/libexecinfo_pic.a comp-c-piclib +./usr/lib/libexpat_pic.a comp-c-piclib +./usr/lib/libfetch_pic.a comp-c-piclib +./usr/lib/libform_pic.a comp-c-piclib +./usr/lib/libg2c_pic.a comp-fortran-lib gcc=3 +./usr/lib/libg2c_pic.a comp-obsolete gcc=4,obsolete +./usr/lib/libgcc_eh.a comp-c-lib gcccmds +./usr/lib/libgcc_eh_p.a comp-c-proflib obsolete +./usr/lib/libgcc_eh_pic.a comp-c-piclib obsolete +./usr/lib/libgcc_pic.a comp-c-lib gcc=4 +./usr/lib/libgcc_pic.a comp-c-lib obsolete,gcc=45 +./usr/lib/libgmp.so comp-c-shlib obsolete +./usr/lib/libgmp.so.10 comp-c-shlib obsolete +./usr/lib/libgmp.so.10.2 comp-c-shlib obsolete +./usr/lib/libgmp_pic.a comp-c-piclib obsolete +./usr/lib/libgnumalloc_pic.a comp-c-piclib +./usr/lib/libgomp_pic.a comp-c-piclib gcc=45 +./usr/lib/libgssapi_pic.a comp-c-piclib kerberos +./usr/lib/libhdb_pic.a comp-c-piclib kerberos +./usr/lib/libheimbase_pic.a comp-c-piclib kerberos +./usr/lib/libheimntlm_pic.a comp-c-piclib kerberos +./usr/lib/libhx509_pic.a comp-c-piclib kerberos +./usr/lib/libintl_pic.a comp-c-piclib +./usr/lib/libipsec_pic.a comp-c-piclib +./usr/lib/libisc_pic.a comp-bind-piclib +./usr/lib/libisccc_pic.a comp-bind-piclib +./usr/lib/libisccfg_pic.a comp-bind-piclib +./usr/lib/libiscsi_pic.a comp-c-piclib iscsi +./usr/lib/libisns_pic.a comp-isns-piclib +./usr/lib/libkadm5clnt_pic.a comp-c-piclib kerberos +./usr/lib/libkadm5srv_pic.a comp-c-piclib kerberos +./usr/lib/libkadm_pic.a comp-obsolete obsolete +./usr/lib/libkafs_pic.a comp-c-piclib kerberos +./usr/lib/libkdb_pic.a comp-obsolete obsolete +./usr/lib/libkdc_pic.a comp-c-piclib kerberos +./usr/lib/libkrb5_pic.a comp-c-piclib kerberos +./usr/lib/libkrb_pic.a comp-obsolete obsolete +./usr/lib/libkstream_pic.a comp-obsolete obsolete +./usr/lib/libkvm_pic.a comp-c-piclib +./usr/lib/liblber_pic.a comp-ldap-piclib ldap +./usr/lib/libldap_pic.a comp-ldap-piclib ldap +./usr/lib/libldap_r_pic.a comp-ldap-piclib ldap +./usr/lib/liblua_pic.a comp-c-piclib +./usr/lib/liblwres_pic.a comp-bind-piclib +./usr/lib/liblzf_pic.a comp-c-piclib +./usr/lib/liblzma_pic.a comp-c-piclib +./usr/lib/libm_pic.a comp-c-piclib +./usr/lib/libmagic_pic.a comp-c-piclib +./usr/lib/libmenu_pic.a comp-c-piclib +./usr/lib/libmj_pic.a comp-c-piclib +./usr/lib/libmpc.so comp-c-shlib obsolete +./usr/lib/libmpc.so.2 comp-c-shlib obsolete +./usr/lib/libmpc.so.2.0 comp-c-shlib obsolete +./usr/lib/libmpc_pic.a comp-c-piclib obsolete +./usr/lib/libmpfr.so comp-c-shlib obsolete +./usr/lib/libmpfr.so.4 comp-c-shlib obsolete +./usr/lib/libmpfr.so.4.1 comp-c-shlib obsolete +./usr/lib/libmpfr_pic.a comp-c-piclib obsolete +./usr/lib/libmudflap_pic.a comp-c-piclib gcc=45 +./usr/lib/libmudflap.so comp-c-shlib gcc=45 +./usr/lib/libmudflap.so.0 comp-c-shlib gcc=45 +./usr/lib/libmudflap.so.0.0 comp-c-shlib gcc=45 +./usr/lib/libmudflapth_pic.a comp-c-piclib gcc=45 +./usr/lib/libmudflapth.so comp-c-shlib gcc=45 +./usr/lib/libmudflapth.so.0 comp-c-shlib gcc=45 +./usr/lib/libmudflapth.so.0.0 comp-c-shlib gcc=45 +./usr/lib/libnetpgp_pic.a comp-c-piclib crypto +./usr/lib/libnpf_pic.a comp-npf-piclib npf +./usr/lib/libnvpair_pic.a comp-zfs-piclib zfs +./usr/lib/libobjc_pic.a comp-objc-piclib gcccmds +./usr/lib/libopcodes.so.5 comp-c-shlib binutils +./usr/lib/libopcodes.so.5.0 comp-c-shlib binutils +./usr/lib/libopenpgpsdk_pic.a comp-obsolete obsolete +./usr/lib/libossaudio_pic.a comp-c-piclib +./usr/lib/libp2k_pic.a comp-puffs-piclib rump +./usr/lib/libpam_pic.a comp-c-piclib pam +./usr/lib/libpcap_pic.a comp-c-piclib +./usr/lib/libpcc_pic.a comp-obsolete obsolete +./usr/lib/libpci_pic.a comp-c-piclib +./usr/lib/libperfuse_pic.a comp-perfuse-piclib +./usr/lib/libposix_pic.a comp-c-piclib +./usr/lib/libppath_pic.a comp-c-piclib +./usr/lib/libprop_pic.a comp-c-piclib +./usr/lib/libpthread_dbg_pic.a comp-c-piclib +./usr/lib/libpthread_pic.a comp-c-piclib +./usr/lib/libpuffs_pic.a comp-puffs-piclib +./usr/lib/libquota_pic.a comp-c-piclib +./usr/lib/libradius_pic.a comp-c-piclib +./usr/lib/librefuse_pic.a comp-refuse-piclib +./usr/lib/libresolv_pic.a comp-c-piclib +./usr/lib/libroken_pic.a comp-c-piclib kerberos +./usr/lib/librpcsvc_pic.a comp-c-piclib +./usr/lib/librt_pic.a comp-c-piclib +./usr/lib/librump_pic.a comp-c-piclib rump +./usr/lib/librumpclient_pic.a comp-c-piclib rump +./usr/lib/librumpcrypto_pic.a comp-obsolete obsolete +./usr/lib/librumpdev_audio_pic.a comp-c-piclib rump +./usr/lib/librumpdev_bpf_pic.a comp-c-piclib rump +./usr/lib/librumpdev_cgd_pic.a comp-c-piclib rump +./usr/lib/librumpdev_disk_pic.a comp-c-piclib rump +./usr/lib/librumpdev_dm_pic.a comp-c-piclib rump +./usr/lib/librumpdev_drvctl_pic.a comp-c-piclib rump +./usr/lib/librumpdev_fss_pic.a comp-c-piclib rump +./usr/lib/librumpdev_md_pic.a comp-c-piclib rump +./usr/lib/librumpdev_netsmb_pic.a comp-c-piclib rump +./usr/lib/librumpdev_pad_pic.a comp-c-piclib rump +./usr/lib/librumpdev_pic.a comp-c-piclib rump +./usr/lib/librumpdev_pud_pic.a comp-c-piclib rump +./usr/lib/librumpdev_putter_pic.a comp-c-piclib rump +./usr/lib/librumpdev_raidframe_pic.a comp-c-piclib rump +./usr/lib/librumpdev_rnd_pic.a comp-c-piclib rump +./usr/lib/librumpdev_scsipi_pic.a comp-c-piclib rump +./usr/lib/librumpdev_scsitest_pic.a comp-c-piclib rump +./usr/lib/librumpdev_sysmon_pic.a comp-c-piclib rump +./usr/lib/librumpdev_ubt_pic.a comp-c-piclib rump +./usr/lib/librumpdev_ucom_pic.a comp-c-piclib rump +./usr/lib/librumpdev_ugenhc_pic.a comp-c-piclib rump +./usr/lib/librumpdev_ulpt_pic.a comp-c-piclib rump +./usr/lib/librumpdev_umass_pic.a comp-c-piclib rump +./usr/lib/librumpdev_usb_pic.a comp-c-piclib rump +./usr/lib/librumpdev_wscons_pic.a comp-c-piclib rump +./usr/lib/librumpfs_cd9660_pic.a comp-c-piclib rump +./usr/lib/librumpfs_efs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_ext2fs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_fdesc_pic.a comp-c-piclib rump +./usr/lib/librumpfs_ffs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_hfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_kernfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_lfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_mfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_msdos_pic.a comp-c-piclib rump +./usr/lib/librumpfs_nfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_nfsserver_pic.a comp-c-piclib rump +./usr/lib/librumpfs_nilfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_ntfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_null_pic.a comp-c-piclib rump +./usr/lib/librumpfs_nullfs_pic.a comp-obsolete obsolete +./usr/lib/librumpfs_ptyfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_smbfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_syspuffs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_sysvbfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_tmpfs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_udf_pic.a comp-c-piclib rump +./usr/lib/librumpfs_ufs_pic.a comp-obsolete obsolete +./usr/lib/librumpfs_umap_pic.a comp-c-piclib rump +./usr/lib/librumpfs_umapfs_pic.a comp-obsolete obsolete +./usr/lib/librumpfs_union_pic.a comp-c-piclib rump +./usr/lib/librumpfs_v7fs_pic.a comp-c-piclib rump +./usr/lib/librumpfs_zfs_pic.a comp-c-piclib zfs,rump +./usr/lib/librumphijack_pic.a comp-c-piclib rump +./usr/lib/librumpkern_crypto_pic.a comp-c-piclib rump +./usr/lib/librumpkern_ksem_pic.a comp-obsolete obsolete +./usr/lib/librumpkern_solaris_pic.a comp-c-piclib zfs,rump +./usr/lib/librumpkern_tty_pic.a comp-c-piclib rump +./usr/lib/librumpkern_z_pic.a comp-c-piclib rump +./usr/lib/librumpnet_agr_pic.a comp-c-piclib rump +./usr/lib/librumpnet_bridge_pic.a comp-c-piclib rump +./usr/lib/librumpnet_local_pic.a comp-c-piclib rump +./usr/lib/librumpnet_net80211_pic.a comp-c-piclib rump +./usr/lib/librumpnet_net_pic.a comp-c-piclib rump +./usr/lib/librumpnet_netbt_pic.a comp-c-piclib rump +./usr/lib/librumpnet_netinet_pic.a comp-c-piclib rump +./usr/lib/librumpnet_npf.so comp-c-piclib rump +./usr/lib/librumpnet_npf.so.0 comp-c-piclib rump +./usr/lib/librumpnet_npf.so.0.0 comp-c-piclib rump +./usr/lib/librumpnet_npf_pic.a comp-c-piclib rump +./usr/lib/librumpnet_pic.a comp-c-piclib rump +./usr/lib/librumpnet_shmif_pic.a comp-c-piclib rump +./usr/lib/librumpnet_sockin_pic.a comp-c-piclib rump +./usr/lib/librumpnet_virtif_pic.a comp-c-piclib rump +./usr/lib/librumpuser_pic.a comp-c-piclib rump +./usr/lib/librumpvfs_fifofs_pic.a comp-c-piclib rump +./usr/lib/librumpvfs_layerfs_pic.a comp-c-piclib rump +./usr/lib/librumpvfs_pic.a comp-c-piclib rump +./usr/lib/libsaslc_pic.a comp-c-piclib crypto +./usr/lib/libsdp_pic.a comp-obsolete obsolete +./usr/lib/libskey_pic.a comp-c-piclib skey +./usr/lib/libsl_pic.a comp-c-piclib kerberos +./usr/lib/libsqlite3_pic.a comp-c-piclib +./usr/lib/libss_pic.a comp-obsolete obsolete +./usr/lib/libssh_pic.a comp-c-piclib crypto +./usr/lib/libssl_pic.a comp-c-piclib crypto +./usr/lib/libssp_pic.a comp-obsolete obsolete +./usr/lib/libstdc++_pic.a comp-cxx-piclib cxx,gcccmds +./usr/lib/libtermcap_pic.a comp-c-piclib +./usr/lib/libterminfo_pic.a comp-c-piclib +./usr/lib/libtermlib_pic.a comp-c-piclib +./usr/lib/libtre_pic.a comp-c-piclib +./usr/lib/libukfs_pic.a comp-c-piclib rump +./usr/lib/libumem_pic.a comp-zfs-piclib zfs +./usr/lib/libusbhid_pic.a comp-c-piclib +./usr/lib/libutil_pic.a comp-c-piclib +./usr/lib/libuutil_pic.a comp-zfs-piclib zfs +./usr/lib/libwind_pic.a comp-c-piclib kerberos +./usr/lib/libwrap_pic.a comp-c-piclib +./usr/lib/libz_pic.a comp-c-piclib +./usr/lib/libzfs_pic.a comp-zfs-piclib zfs +./usr/libdata/debug/usr/lib/i18n/libBIG5.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libDECHanyu.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libEUC.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libEUCTW.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libGBK2K.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libHZ.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libISO2022.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libJOHAB.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libMSKanji.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libUES.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libUTF1632.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libUTF7.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libUTF8.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libVIQR.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libZW.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libiconv_none.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libiconv_std.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libmapper_646.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libmapper_none.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libmapper_parallel.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libmapper_serial.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libmapper_std.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/i18n/libmapper_zone.so.5.0.debug comp-i18n-debug debug +./usr/libdata/debug/usr/lib/libamu.so.4.0.debug comp-amd-debug debug +./usr/libdata/debug/usr/lib/libarchive.so.3.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libasn1.so.9.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libatf-c.so.0.0.debug comp-atf-debug atf,debug +./usr/libdata/debug/usr/lib/libatf-c++.so.0.0.debug comp-atf-debug atf,debug +./usr/libdata/debug/usr/lib/libavl.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug +./usr/libdata/debug/usr/lib/libbfd.so.12.0.debug comp-sys-debug binutils,debug +./usr/libdata/debug/usr/lib/libbind9.so.5.7.debug comp-bind-debug debug +./usr/libdata/debug/usr/lib/libbluetooth.so.4.2.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libbsdmalloc.so.0.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libbz2.so.1.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libc.so.12.185.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libcom_err.so.7.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libcrypt.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libcrypto.so.8.0.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/lib/libcrypto_idea.so.7.0.debug comp-obsolete obsolete +./usr/libdata/debug/usr/lib/libcrypto_mdc2.so.7.0.debug comp-obsolete obsolete +./usr/libdata/debug/usr/lib/libcrypto_rc5.so.7.0.debug comp-crypto-debug crypto,crypto_rc5,debug +./usr/libdata/debug/usr/lib/libctf.so.2.0.debug comp-sys-debug dtrace,debug +./usr/libdata/debug/usr/lib/libcurses.so.7.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libdes.so.8.1.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/lib/libdevmapper.so.1.0.debug comp-lvm-debug lvm,debug +./usr/libdata/debug/usr/lib/libdm.so.0.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libdns.so.5.7.debug comp-bind-debug debug +./usr/libdata/debug/usr/lib/libdns_sd.so.0.0.debug comp-mdns-debug mdns,debug +./usr/libdata/debug/usr/lib/libdtrace.so.2.0.debug comp-sys-debug dtrace,debug +./usr/libdata/debug/usr/lib/libdwarf.so.0.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libedit.so.3.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libelf.so.0.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libevent.so.3.2.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libexecinfo.so.0.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libexpat.so.2.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libfetch.so.3.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libform.so.6.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libg2c.so.2.0.debug comp-sys-debug gcc=3,debug +./usr/libdata/debug/usr/lib/libgcc_s.so.1.0.debug comp-sys-debug gcc,debug +./usr/libdata/debug/usr/lib/libgmp.so.10.2.debug comp-c-shlib obsolete +./usr/libdata/debug/usr/lib/libgnumalloc.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libgomp.so.1.0.debug comp-sys-debug gcc=45,debug +./usr/libdata/debug/usr/lib/libgssapi.so.10.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libhdb.so.14.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libheimbase.so.1.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libheimntlm.so.4.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libhx509.so.5.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libintl.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libipsec.so.3.0.debug comp-net-debug debug +./usr/libdata/debug/usr/lib/libisc.so.5.7.debug comp-bind-debug debug +./usr/libdata/debug/usr/lib/libisccc.so.5.7.debug comp-bind-debug debug +./usr/libdata/debug/usr/lib/libisccfg.so.5.7.debug comp-bind-debug debug +./usr/libdata/debug/usr/lib/libiscsi.so.2.0.debug comp-iscsi-debug iscsi,debug +./usr/libdata/debug/usr/lib/libisns.so.0.0.debug comp-isns-debug debug +./usr/libdata/debug/usr/lib/libkadm5clnt.so.13.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libkadm5srv.so.14.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libkafs.so.12.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libkdc.so.2.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libkrb5.so.26.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libkvm.so.6.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/liblber.so.3.2.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/lib/libldap.so.4.2.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/lib/libldap_r.so.4.2.debug comp-ldap-debug ldap,debug +./usr/libdata/debug/usr/lib/liblua.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/liblwres.so.5.7.debug comp-bind-debug debug +./usr/libdata/debug/usr/lib/liblzf.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/liblzma.so.1.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libm.so.0.10.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libmagic.so.3.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libmenu.so.6.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libmj.so.1.0.debug comp-crypto-debug debug +./usr/libdata/debug/usr/lib/libmpc.so.2.0.debug comp-c-shlib obsolete +./usr/libdata/debug/usr/lib/libmpfr.so.4.1.debug comp-c-shlib obsolete +./usr/libdata/debug/usr/lib/libmudflap.so.0.0.debug comp-sys-debug gcc=45,debug +./usr/libdata/debug/usr/lib/libmudflapth.so.0.0.debug comp-sys-debug gcc=45,debug +./usr/libdata/debug/usr/lib/libnetpgp.so.3.0.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/lib/libnpf.so.0.0.debug comp-npf-debug npf,debug +./usr/libdata/debug/usr/lib/libnvpair.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug +./usr/libdata/debug/usr/lib/libobjc.so.2.0.debug comp-sys-debug gcc=3,debug +./usr/libdata/debug/usr/lib/libobjc.so.3.0.debug comp-sys-debug gcc=4,debug +./usr/libdata/debug/usr/lib/libobjc.so.3.0.debug comp-sys-debug gcc=45,debug +./usr/libdata/debug/usr/lib/libopcodes.so.5.0.debug comp-c-debug binutils,debug +./usr/libdata/debug/usr/lib/libossaudio.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libp2k.so.2.0.debug comp-puffs-debug debug,rump +./usr/libdata/debug/usr/lib/libpam.so.3.0.debug comp-sys-debug pam,debug +./usr/libdata/debug/usr/lib/libpcap.so.4.0.debug comp-net-debug debug +./usr/libdata/debug/usr/lib/libpci.so.2.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libperfuse.so.0.0.debug comp-perfuse-debug debug +./usr/libdata/debug/usr/lib/libposix.so.0.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libppath.so.0.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libprop.so.1.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libpthread.so.1.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libpthread_dbg.so.2.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libpuffs.so.2.0.debug comp-puffs-debug debug +./usr/libdata/debug/usr/lib/libquota.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libradius.so.4.0.debug comp-net-debug debug +./usr/libdata/debug/usr/lib/librefuse.so.2.0.debug comp-refuse-debug debug +./usr/libdata/debug/usr/lib/libresolv.so.2.0.debug comp-net-debug debug +./usr/libdata/debug/usr/lib/libroken.so.19.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/librpcsvc.so.1.0.debug comp-net-debug debug +./usr/libdata/debug/usr/lib/librt.so.1.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/librump.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpclient.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_audio.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_bpf.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_cgd.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_disk.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_dm.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_drvctl.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_fss.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_md.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_netsmb.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_pad.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_pud.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_putter.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_raidframe.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_rnd.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_scsipi.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_scsitest.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_sysmon.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_ubt.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_ucom.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_ugenhc.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_ulpt.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_umass.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_usb.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpdev_wscons.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_cd9660.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_efs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_ext2fs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_fdesc.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_ffs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_hfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_kernfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_lfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_mfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_msdos.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_nfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_nfsserver.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_nilfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_ntfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_null.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_ptyfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_smbfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_syspuffs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_sysvbfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_tmpfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_udf.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_umap.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_union.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_v7fs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpfs_zfs.so.0.0.debug comp-rump-debug debug,zfs,rump +./usr/libdata/debug/usr/lib/librumphijack.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpkern_crypto.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpkern_ksem.so.0.0.debug comp-obsolete obsolete,rump +./usr/libdata/debug/usr/lib/librumpkern_solaris.so.0.0.debug comp-rump-debug debug,zfs,rump +./usr/libdata/debug/usr/lib/librumpkern_tty.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpkern_z.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_agr.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_bridge.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_local.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_net.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_net80211.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_netbt.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_netinet.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_npf.so.0.0.debug comp-rump-debug npf,debug,rump +./usr/libdata/debug/usr/lib/librumpnet_shmif.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_sockin.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpnet_virtif.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpuser.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpvfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpvfs_fifofs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/librumpvfs_layerfs.so.0.0.debug comp-rump-debug debug,rump +./usr/libdata/debug/usr/lib/libsaslc.so.0.0.debug comp-sys-debug crypto,debug +./usr/libdata/debug/usr/lib/libskey.so.2.0.debug comp-sys-debug skey,debug +./usr/libdata/debug/usr/lib/libsl.so.5.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libsqlite3.so.1.1.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libssh.so.19.0.debug comp-secsh-debug crypto,debug +./usr/libdata/debug/usr/lib/libssl.so.10.0.debug comp-crypto-debug crypto,debug +./usr/libdata/debug/usr/lib/libstdc++.so.5.0.debug comp-sys-debug gcc=3,cxx,debug +./usr/libdata/debug/usr/lib/libstdc++.so.7.0.debug comp-sys-debug gcc=4,cxx,debug +./usr/libdata/debug/usr/lib/libstdc++.so.7.1.debug comp-sys-debug gcc=45,cxx,debug +./usr/libdata/debug/usr/lib/libterminfo.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libtre.so.0.8.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libukfs.so.1.0.debug comp-sys-debug debug,rump +./usr/libdata/debug/usr/lib/libumem.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug +./usr/libdata/debug/usr/lib/libusbhid.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libutil.so.7.21.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libuutil.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug +./usr/libdata/debug/usr/lib/libwind.so.0.0.debug comp-krb5-debug kerberos,debug +./usr/libdata/debug/usr/lib/libwrap.so.1.0.debug comp-net-debug debug +./usr/libdata/debug/usr/lib/libz.so.1.0.debug comp-sys-debug debug +./usr/libdata/debug/usr/lib/libzfs.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug +./usr/libdata/debug/usr/lib/libzpool.so.0.0.debug comp-zfs-debug zfs,dynamicroot,debug +./usr/libdata/debug/usr/lib/npf/libext_log.so.0.0.debug comp-sys-debug debug,npf +./usr/libdata/debug/usr/lib/npf/libext_normalise.so.0.0.debug comp-sys-debug debug,npf diff --git a/distrib/sets/lists/comp/stl.mi b/distrib/sets/lists/comp/stl.mi new file mode 100644 index 000000000..e08d4a25e --- /dev/null +++ b/distrib/sets/lists/comp/stl.mi @@ -0,0 +1,5 @@ +# $NetBSD: stl.mi,v 1.1 2010/07/02 21:19:00 mrg Exp $ +./usr/lib/crtbegin.o comp-c-lib +./usr/lib/crtend.o comp-c-lib +./usr/lib/crti.o comp-c-lib +./usr/lib/crtn.o comp-c-lib diff --git a/distrib/sets/lists/etc/md.amd64 b/distrib/sets/lists/etc/md.amd64 new file mode 100644 index 000000000..6581f817c --- /dev/null +++ b/distrib/sets/lists/etc/md.amd64 @@ -0,0 +1,3 @@ +# $NetBSD: md.amd64,v 1.3 2008/04/30 16:48:53 ad Exp $ +./boot.cfg etc-sys-etc +./etc/ttyaction etc-sys-etc diff --git a/distrib/sets/lists/etc/md.i386 b/distrib/sets/lists/etc/md.i386 new file mode 100644 index 000000000..533a6065f --- /dev/null +++ b/distrib/sets/lists/etc/md.i386 @@ -0,0 +1,3 @@ +# $NetBSD: md.i386,v 1.12 2008/06/03 18:49:59 ad Exp $ +./boot.cfg etc-sys-etc +./etc/ttyaction etc-sys-etc diff --git a/distrib/sets/lists/etc/md.sparc b/distrib/sets/lists/etc/md.sparc new file mode 100644 index 000000000..33bf7f834 --- /dev/null +++ b/distrib/sets/lists/etc/md.sparc @@ -0,0 +1,2 @@ +# $NetBSD: md.sparc,v 1.8 2004/01/11 09:59:49 lukem Exp $ +./etc/ld.so.conf etc-sys-etc diff --git a/distrib/sets/lists/etc/md.sun2 b/distrib/sets/lists/etc/md.sun2 new file mode 100644 index 000000000..c37b696e9 --- /dev/null +++ b/distrib/sets/lists/etc/md.sun2 @@ -0,0 +1,2 @@ +# $NetBSD: md.sun2,v 1.4 2004/01/11 09:59:49 lukem Exp $ +./etc/ttyaction etc-sys-etc diff --git a/distrib/sets/lists/etc/md.sun3 b/distrib/sets/lists/etc/md.sun3 new file mode 100644 index 000000000..7d8fdcea9 --- /dev/null +++ b/distrib/sets/lists/etc/md.sun3 @@ -0,0 +1,2 @@ +# $NetBSD: md.sun3,v 1.10 2004/01/11 09:59:49 lukem Exp $ +./etc/ttyaction etc-sys-etc diff --git a/distrib/sets/lists/etc/mi b/distrib/sets/lists/etc/mi new file mode 100644 index 000000000..3383e9c27 --- /dev/null +++ b/distrib/sets/lists/etc/mi @@ -0,0 +1,375 @@ +# $NetBSD: mi,v 1.228 2012/02/07 19:13:28 joerg Exp $ +# +# Note: end-user configuration files that are moved to another location +# should not be marked "obsolete"; they should just be removed from +# the set list, a custom fix should be added to postinstall(8), and +# an item should be added to src/UPDATING for MKUPDATE=yes users. +# This is an exception to the general rule that moved/removed files +# are marked as "obsolete", because we don't want to arbitrarily +# remove end-user configuration files. +# +./.cshrc etc-util-etc +./.profile etc-util-etc +./dev/MAKEDEV etc-sys-etc +./dev/MAKEDEV.local etc-sys-etc +./dev/MAKEDEV.subr etc-obsolete obsolete +./etc/atf/NetBSD.conf etc-atf-etc atf +./etc/atf/atf-run.hooks etc-atf-etc atf +./etc/atf/common.conf etc-atf-etc atf +./etc/audit-packages.conf etc-obsolete obsolete +./etc/bootptab etc-bootserver-etc +./etc/changelist etc-sys-etc +./etc/csh.cshrc etc-util-etc +./etc/csh.login etc-util-etc +./etc/csh.logout etc-util-etc +./etc/bluetooth etc-sys-etc +./etc/bluetooth/bluetooth.conf etc-obsolete obsolete +./etc/bluetooth/btattach.conf etc-sys-etc +./etc/bluetooth/btdevctl.conf etc-sys-etc +./etc/bluetooth/btuartd.conf etc-obsolete obsolete +./etc/bluetooth/hosts etc-sys-etc +./etc/bluetooth/protocols etc-sys-etc +./etc/daily etc-sys-etc +./etc/daily.conf etc-sys-etc +./etc/default etc-obsolete obsolete +./etc/default/daily.conf etc-obsolete obsolete +./etc/default/monthly.conf etc-obsolete obsolete +./etc/default/rc.conf etc-obsolete obsolete +./etc/default/security.conf etc-obsolete obsolete +./etc/default/weekly.conf etc-obsolete obsolete +./etc/defaults/daily.conf etc-sys-defaults +./etc/defaults/monthly.conf etc-sys-defaults +./etc/defaults/pf.boot.conf etc-pf-defaults pf +./etc/defaults/rc.conf etc-sys-defaults +./etc/defaults/security.conf etc-sys-defaults +./etc/defaults/weekly.conf etc-sys-defaults +./etc/dhclient-script etc-obsolete obsolete +./etc/dhcpcd.conf etc-dhcpcd-etc +./etc/disktab etc-sysutil-etc +./etc/dm.conf etc-games-etc +./etc/dumpdates etc-sysutil-etc +./etc/envsys.conf etc-sysutil-etc +./etc/floppytab etc-sysutil-etc +./etc/fstab.nfs etc-obsolete obsolete +./etc/fstab.sd etc-obsolete obsolete +./etc/fstab.sd0 etc-obsolete obsolete +./etc/fstab.sd1 etc-obsolete obsolete +./etc/fstab.sd2 etc-obsolete obsolete +./etc/fstab.sd3 etc-obsolete obsolete +./etc/fstab.sd4 etc-obsolete obsolete +./etc/fstab.sd5 etc-obsolete obsolete +./etc/fstab.sd6 etc-obsolete obsolete +./etc/fstab.sd7 etc-obsolete obsolete +./etc/fstab.tmp etc-obsolete obsolete +./etc/fstab.wd etc-obsolete obsolete +./etc/ftpchroot etc-netutil-etc +./etc/ftpusers etc-netutil-etc +./etc/gettytab etc-sysutil-etc +./etc/gpio.conf etc-sys-etc +./etc/group etc-sys-etc +./etc/hosts etc-net-etc +./etc/hosts.equiv etc-netutil-etc +./etc/hosts.lpd etc-lpr-etc +./etc/inetd.conf etc-netutil-etc +./etc/iscsi/auths etc-iscsi-etc iscsi +./etc/iscsi/targets etc-iscsi-etc iscsi +./etc/lkm.conf etc-obsolete obsolete +./etc/localtime etc-sys-etc +./etc/locate.conf etc-sys-etc +./etc/login.conf etc-sys-etc +./etc/mail.rc etc-mail-etc +./etc/mail/aliases etc-postfix-etc postfix +./etc/mailer.conf etc-mailwrapper-etc +./etc/man.conf etc-man-etc +./etc/master.passwd etc-sys-etc +./etc/moduli etc-secsh-etc crypto +./etc/monthly etc-sys-etc +./etc/monthly.conf etc-sys-etc +./etc/motd etc-sys-etc +./etc/mrouted.conf etc-router-etc +./etc/mtree/NetBSD.dist etc-sys-etc +./etc/mtree/set.etc etc-sys-etc +./etc/mtree/special etc-sys-etc +./etc/named.conf etc-bind-etc +./etc/namedb/127 etc-bind-etc +./etc/namedb/localhost etc-bind-etc +./etc/namedb/loopback.v6 etc-bind-etc +./etc/namedb/root.cache etc-bind-etc +./etc/netconfig etc-net-etc +./etc/networks etc-net-etc +./etc/newsyslog.conf etc-sysutil-etc +./etc/nsswitch.conf etc-net-etc +./etc/ntp.conf etc-ntp-etc +./etc/obsolete/base etc-obsolete obsolete +./etc/obsolete/comp etc-obsolete obsolete +./etc/obsolete/etc etc-obsolete obsolete +./etc/obsolete/games etc-obsolete obsolete +./etc/obsolete/man etc-obsolete obsolete +./etc/obsolete/misc etc-obsolete obsolete +./etc/obsolete/text etc-obsolete obsolete +./etc/pam.d/README etc-sys-etc +./etc/pam.d/display_manager etc-sys-etc +./etc/pam.d/ftpd etc-sys-etc +./etc/pam.d/gdm etc-sys-etc +./etc/pam.d/imap etc-sys-etc +./etc/pam.d/kde etc-sys-etc +./etc/pam.d/login etc-sys-etc +./etc/pam.d/other etc-sys-etc +./etc/pam.d/passwd etc-sys-etc +./etc/pam.d/pop3 etc-sys-etc +./etc/pam.d/ppp etc-sys-etc +./etc/pam.d/rexecd etc-sys-etc +./etc/pam.d/rsh etc-sys-etc +./etc/pam.d/sshd etc-sys-etc +./etc/pam.d/su etc-sys-etc +./etc/pam.d/system etc-sys-etc +./etc/pam.d/telnetd etc-sys-etc +./etc/pam.d/xdm etc-sys-etc +./etc/pam.d/xserver etc-sys-etc +./etc/passwd etc-sys-etc +./etc/passwd.conf etc-sys-etc +./etc/pf.conf etc-pf-etc pf +./etc/pf.os etc-pf-etc pf +./etc/phones etc-sys-etc +./etc/postfix/README etc-postfix-etc postfix +./etc/postfix/main.cf etc-postfix-etc postfix +./etc/postfix/master.cf etc-postfix-etc postfix +./etc/postfix/post-install etc-obsolete obsolete +./etc/postfix/postfix-files etc-obsolete obsolete +./etc/postfix/postfix-script etc-obsolete obsolete +./etc/postinstall etc-obsolete obsolete +./etc/powerd/scripts/acadapter etc-sysutil-etc +./etc/powerd/scripts/hotkey_button etc-sysutil-etc +./etc/powerd/scripts/lid_switch etc-sysutil-etc +./etc/powerd/scripts/power_button etc-sysutil-etc +./etc/powerd/scripts/reset_button etc-sysutil-etc +./etc/powerd/scripts/sensor_battery etc-sysutil-etc +./etc/powerd/scripts/sensor_drive etc-sysutil-etc +./etc/powerd/scripts/sensor_fan etc-sysutil-etc +./etc/powerd/scripts/sensor_indicator etc-sysutil-etc +./etc/powerd/scripts/sensor_power etc-sysutil-etc +./etc/powerd/scripts/sensor_resistance etc-sysutil-etc +./etc/powerd/scripts/sensor_temperature etc-sysutil-etc +./etc/powerd/scripts/sensor_voltage etc-sysutil-etc +./etc/powerd/scripts/sleep_button etc-sysutil-etc +./etc/primes etc-obsolete obsolete +./etc/printcap etc-lpr-etc +./etc/profile etc-util-etc +./etc/protocols etc-net-etc +./etc/pwd.db etc-sys-etc +./etc/rbootd.conf etc-bootserver-etc +./etc/rc etc-sys-rc +./etc/rc.conf etc-sys-rc +./etc/rc.d/DAEMON etc-sys-rc +./etc/rc.d/DISKS etc-sys-rc +./etc/rc.d/LOGIN etc-sys-rc +./etc/rc.d/NETWORK etc-obsolete obsolete +./etc/rc.d/NETWORKING etc-sys-rc +./etc/rc.d/SERVERS etc-sys-rc +./etc/rc.d/accounting etc-sys-rc +./etc/rc.d/altqd etc-router-rc +./etc/rc.d/amd etc-amd-rc +./etc/rc.d/apmd etc-sys-rc +./etc/rc.d/bluetooth etc-sys-rc +./etc/rc.d/bootconf.sh etc-sys-rc +./etc/rc.d/bootparams etc-bootserver-rc +./etc/rc.d/btattach etc-obsolete obsolete +./etc/rc.d/btconfig etc-obsolete obsolete +./etc/rc.d/btcontrol etc-obsolete obsolete +./etc/rc.d/btdevctl etc-obsolete obsolete +./etc/rc.d/bthcid etc-obsolete obsolete +./etc/rc.d/btuartd etc-obsolete obsolete +./etc/rc.d/ccd etc-sys-rc +./etc/rc.d/cgd etc-sys-rc +./etc/rc.d/cleartmp etc-sys-rc +./etc/rc.d/cron etc-cron-rc +./etc/rc.d/devpubd etc-sys-rc +./etc/rc.d/dhclient etc-dhclient-rc +./etc/rc.d/dhcpcd etc-dhcpcd-rc +./etc/rc.d/dhcpd etc-dhcpd-rc +./etc/rc.d/dhcrelay etc-dhcpd-rc +./etc/rc.d/dmesg etc-sys-rc +./etc/rc.d/downinterfaces etc-sys-rc +./etc/rc.d/envsys etc-sys-rc +./etc/rc.d/fixsb etc-obsolete obsolete +./etc/rc.d/fsck etc-sys-rc +./etc/rc.d/fsck_root etc-sys-rc +./etc/rc.d/fsck.sh etc-obsolete obsolete +./etc/rc.d/ftp_proxy etc-net-rc +./etc/rc.d/ftpd etc-net-rc +./etc/rc.d/hostapd etc-net-rc +./etc/rc.d/httpd etc-net-rc +./etc/rc.d/gated etc-obsolete obsolete +./etc/rc.d/gpio etc-sys-rc +./etc/rc.d/identd etc-net-rc +./etc/rc.d/ifwatchd etc-net-rc +./etc/rc.d/inetd etc-net-rc +./etc/rc.d/ipfilter etc-ipf-rc +./etc/rc.d/ipfs etc-ipf-rc +./etc/rc.d/ipmon etc-ipf-rc +./etc/rc.d/ipnat etc-ipf-rc +./etc/rc.d/ipsec etc-net-rc +./etc/rc.d/irdaattach etc-sys-rc +./etc/rc.d/iscsi_target etc-iscsi-rc +./etc/rc.d/isdnd etc-isdn-rc +./etc/rc.d/isibootd etc-bootserver-rc +./etc/rc.d/kdc etc-krb5-rc +./etc/rc.d/kerberos etc-obsolete obsolete +./etc/rc.d/ldconfig etc-sys-rc +./etc/rc.d/ldpd etc-router-rc +./etc/rc.d/lkm1 etc-obsolete obsolete +./etc/rc.d/lkm2 etc-obsolete obsolete +./etc/rc.d/lkm3 etc-obsolete obsolete +./etc/rc.d/local etc-sys-rc +./etc/rc.d/lpd etc-lpr-rc +./etc/rc.d/lvm etc-sys-rc +./etc/rc.d/makemandb etc-man-rc +./etc/rc.d/mdnsd etc-mdns-rc +./etc/rc.d/mixerctl etc-audio-rc +./etc/rc.d/mopd etc-bootserver-rc +./etc/rc.d/motd etc-sys-rc +./etc/rc.d/mountall etc-sys-rc +./etc/rc.d/mountcritlocal etc-sys-rc +./etc/rc.d/mountcritremote etc-sys-rc +./etc/rc.d/mountd etc-nfsserver-rc +./etc/rc.d/moused etc-sysutil-rc +./etc/rc.d/mrouted etc-router-rc +./etc/rc.d/named etc-bind-rc +./etc/rc.d/ndbootd etc-bootserver-rc +./etc/rc.d/network etc-net-rc +./etc/rc.d/newsyslog etc-sys-rc +./etc/rc.d/nfsd etc-nfsserver-rc +./etc/rc.d/nfslocking etc-nfsserver-rc +./etc/rc.d/npf etc-npf-rc +./etc/rc.d/ntpd etc-ntp-rc +./etc/rc.d/ntpdate etc-ntp-rc +./etc/rc.d/perusertmp etc-sys-rc +./etc/rc.d/pf etc-net-rc +./etc/rc.d/pf_boot etc-net-rc +./etc/rc.d/pflogd etc-net-rc +./etc/rc.d/poffd etc-obsolete obsolete +./etc/rc.d/postfix etc-postfix-rc +./etc/rc.d/powerd etc-sysutil-rc +./etc/rc.d/ppp etc-ppp-rc +./etc/rc.d/pwcheck etc-sys-rc +./etc/rc.d/quota etc-sys-rc +./etc/rc.d/racoon etc-net-rc +./etc/rc.d/raidframe etc-sys-rc +./etc/rc.d/raidframeparity etc-sys-rc +./etc/rc.d/random_seed etc-sys-rc +./etc/rc.d/rarpd etc-bootserver-rc +./etc/rc.d/rbootd etc-bootserver-rc +./etc/rc.d/rndctl etc-sys-rc +./etc/rc.d/root etc-sys-rc +./etc/rc.d/route6d etc-router-rc +./etc/rc.d/routed etc-router-rc +./etc/rc.d/rpcbind etc-rpcbind-rc +./etc/rc.d/rtadvd etc-net-rc +./etc/rc.d/rtclocaltime etc-sys-rc +./etc/rc.d/rtsold etc-net-rc +./etc/rc.d/rwho etc-net-rc +./etc/rc.d/savecore etc-sys-rc +./etc/rc.d/screenblank etc-sys-rc +./etc/rc.d/sdpd etc-obsolete obsolete +./etc/rc.d/securelevel etc-sys-rc +./etc/rc.d/sshd etc-secsh-rc +./etc/rc.d/staticroute etc-sys-rc +./etc/rc.d/swap1 etc-sys-rc +./etc/rc.d/swap2 etc-sys-rc +./etc/rc.d/sysctl etc-sys-rc +./etc/rc.d/sysdb etc-sys-rc +./etc/rc.d/syslogd etc-sys-rc +./etc/rc.d/systemfs etc-obsolete obsolete +./etc/rc.d/timed etc-timed-rc +./etc/rc.d/tpctl etc-sys-rc +./etc/rc.d/ttys etc-sys-rc +./etc/rc.d/veriexec etc-sys-rc +./etc/rc.d/virecover etc-sys-rc +./etc/rc.d/wdogctl etc-sysutil-rc +./etc/rc.d/wpa_supplicant etc-net-rc +./etc/rc.d/wscons etc-sys-rc +./etc/rc.d/wsmoused etc-sys-rc +./etc/rc.d/xntpd etc-obsolete obsolete +./etc/rc.d/ypbind etc-nis-rc +./etc/rc.d/yppasswdd etc-nis-rc +./etc/rc.d/ypserv etc-nis-rc +./etc/rc.d/ypset etc-obsolete obsolete +./etc/rc.lkm etc-obsolete obsolete +./etc/rc.local etc-sys-rc +./etc/rc.shutdown etc-sys-rc +./etc/rc.subr etc-sys-rc +./etc/rc.wscons etc-obsolete obsolete +./etc/release-info etc-obsolete obsolete +./etc/remote etc-sys-etc +./etc/rmt etc-sysutil-etc +./etc/rpc etc-net-etc +./etc/saslc.d etc-libsaslc-etc +./etc/saslc.d/mech obsolete obsolete +./etc/saslc.d/saslc etc-libsaslc-etc +./etc/saslc.d/saslc/mech etc-libsaslc-etc +./etc/saslc.d/postfix etc-libsaslc-postfix +./etc/saslc.d/postfix/mech etc-libsaslc-postfix +./etc/security etc-sys-etc +./etc/security.conf etc-sys-etc +./etc/services etc-net-etc +./etc/shells etc-sys-etc +./etc/shrc etc-util-etc +./etc/skel/.cshrc etc-sys-etc +./etc/skel/.login etc-sys-etc +./etc/skel/.logout etc-sys-etc +./etc/skel/.profile etc-sys-etc +./etc/skel/.shrc etc-sys-etc +./etc/skeykeys etc-sys-etc +./etc/spamd.conf etc-obsolete obsolete +./etc/spwd.db etc-sys-etc +./etc/ssh/ssh_config etc-secsh-etc crypto +./etc/ssh/ssh_known_hosts etc-secsh-etc crypto +./etc/ssh/sshd_config etc-secsh-etc crypto +./etc/sysctl.conf etc-sys-etc +./etc/syslog.conf etc-sys-etc +./etc/ttys etc-sys-etc +./etc/weekly etc-sys-etc +./etc/weekly.conf etc-sys-etc +./etc/wscons.conf etc-sys-etc +./root/.cshrc etc-root-root +./root/.klogin etc-root-root +./root/.login etc-root-root +./root/.profile etc-root-root +./root/.shrc etc-root-root +./var/at/at.deny etc-cron-root +./var/crash/minfree etc-sys-root +./var/cron/tabs/root etc-cron-root +./var/db/locate.database etc-sys-root +./var/games/atc_score etc-games-scores +./var/games/battlestar.log etc-games-scores +./var/games/cfscores etc-games-scores +./var/games/criblog etc-games-scores +./var/games/hackdir/record etc-games-scores +./var/games/larn/llog12.0 etc-games-scores +./var/games/larn/lscore12.0 etc-games-scores +./var/games/larn/playerids etc-games-scores +./var/games/phantasia/characs etc-games-scores +./var/games/phantasia/scoreboard etc-games-scores +./var/games/robots_roll etc-games-scores +./var/games/rogue.scores etc-games-scores +./var/games/saillog etc-games-scores +./var/games/snake.log etc-games-scores +./var/games/snakerawscores etc-games-scores +./var/games/tetris.scores etc-games-scores +./var/log/authlog etc-sys-log +./var/log/cron etc-cron-log +./var/log/lastlog etc-sys-log +./var/log/lastlogx etc-sys-log +./var/log/lpd-errs etc-lpr-log +./var/log/maillog etc-sendmail-log +./var/log/messages etc-sys-log +./var/log/secure etc-sys-log +./var/log/wtmp etc-sys-log +./var/log/wtmpx etc-sys-log +./var/log/xferlog etc-netutil-log +./var/msgs/bounds etc-sysutil-log +./var/run/utmp etc-sys-log +./var/run/utmpx etc-sys-log +./var/yp/Makefile.main etc-nis-root yp +./var/yp/Makefile.yp etc-nis-root yp +./var/yp/nicknames etc-nis-root yp diff --git a/distrib/sets/lists/games/mi b/distrib/sets/lists/games/mi new file mode 100644 index 000000000..c6ce7388c --- /dev/null +++ b/distrib/sets/lists/games/mi @@ -0,0 +1,364 @@ +# $NetBSD: mi,v 1.47 2012/06/06 00:23:09 christos Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.games games-sys-root +./usr/games/adventure games-games-bin +./usr/games/arithmetic games-games-bin +./usr/games/atc games-games-bin +./usr/games/backgammon games-games-bin +./usr/games/banner games-utils-bin +./usr/games/battlestar games-games-bin +./usr/games/bcd games-games-bin +./usr/games/boggle games-games-bin +./usr/games/caesar games-utils-bin +./usr/games/canfield games-games-bin +./usr/games/cfscores games-games-bin +./usr/games/chess games-obsolete obsolete +./usr/games/ching games-games-bin +./usr/games/colorbars games-utils-bin +./usr/games/countmail games-utils-bin +./usr/games/cribbage games-games-bin +./usr/games/dab games-games-bin cxx +./usr/games/dm games-games-bin +./usr/games/factor games-utils-bin +./usr/games/fish games-games-bin +./usr/games/fortune games-utils-bin +./usr/games/gomoku games-games-bin +./usr/games/hack games-games-bin +./usr/games/hangman games-games-bin +./usr/games/hide/adventure games-obsolete obsolete +./usr/games/hide/arithmetic games-obsolete obsolete +./usr/games/hide/atc games-obsolete obsolete +./usr/games/hide/backgammon games-obsolete obsolete +./usr/games/hide/battlestar games-obsolete obsolete +./usr/games/hide/bcd games-obsolete obsolete +./usr/games/hide/boggle games-obsolete obsolete +./usr/games/hide/canfield games-obsolete obsolete +./usr/games/hide/cfscores games-obsolete obsolete +./usr/games/hide/chess games-obsolete obsolete +./usr/games/hide/cribbage games-obsolete obsolete +./usr/games/hide/fish games-obsolete obsolete +./usr/games/hide/gomoku games-obsolete obsolete +./usr/games/hide/hack games-obsolete obsolete +./usr/games/hide/hangman games-obsolete obsolete +./usr/games/hide/hunt games-obsolete obsolete +./usr/games/hide/larn games-obsolete obsolete +./usr/games/hide/mille games-obsolete obsolete +./usr/games/hide/monop games-obsolete obsolete +./usr/games/hide/morse games-obsolete obsolete +./usr/games/hide/phantasia games-obsolete obsolete +./usr/games/hide/ppt games-obsolete obsolete +./usr/games/hide/quiz games-obsolete obsolete +./usr/games/hide/robots games-obsolete obsolete +./usr/games/hide/rogue games-obsolete obsolete +./usr/games/hide/sail games-obsolete obsolete +./usr/games/hide/snake games-obsolete obsolete +./usr/games/hide/snscore games-obsolete obsolete +./usr/games/hide/teachgammon games-obsolete obsolete +./usr/games/hide/tetris games-obsolete obsolete +./usr/games/hide/trek games-obsolete obsolete +./usr/games/hide/worm games-obsolete obsolete +./usr/games/hide/wump games-obsolete obsolete +./usr/games/hunt games-games-bin +./usr/games/huntd games-games-bin +./usr/games/larn games-games-bin +./usr/games/mille games-games-bin +./usr/games/monop games-games-bin +./usr/games/morse games-games-bin +./usr/games/number games-utils-bin +./usr/games/phantasia games-games-bin +./usr/games/pig games-games-bin +./usr/games/pom games-games-bin +./usr/games/ppt games-games-bin +./usr/games/primes games-utils-bin +./usr/games/quiz games-games-bin +./usr/games/rain games-games-bin +./usr/games/random games-utils-bin +./usr/games/robots games-games-bin +./usr/games/rogue games-games-bin +./usr/games/rot13 games-utils-bin +./usr/games/sail games-games-bin +./usr/games/snake games-games-bin +./usr/games/snscore games-games-bin +./usr/games/strfile games-utils-bin +./usr/games/teachgammon games-games-bin +./usr/games/tetris games-games-bin +./usr/games/trek games-games-bin +./usr/games/unstr games-utils-bin +./usr/games/wargames games-games-bin +./usr/games/worm games-games-bin +./usr/games/worms games-games-bin +./usr/games/wtf games-utils-bin +./usr/games/wump games-games-bin +./usr/libexec/ching/castching games-games-bin +./usr/libexec/ching/printching games-games-bin +./usr/share/doc/usd/30.rogue/Makefile games-usd-doc doc +./usr/share/doc/usd/30.rogue/rogue.me games-usd-doc doc +./usr/share/doc/usd/31.trek/Makefile games-usd-doc doc +./usr/share/doc/usd/31.trek/trek.me games-usd-doc doc +./usr/share/games/atc/ATC_scores games-obsolete obsolete +./usr/share/games/atc/Atlantis games-games-share share +./usr/share/games/atc/Game_List games-games-share share +./usr/share/games/atc/Killer games-games-share share +./usr/share/games/atc/OHare games-games-share share +./usr/share/games/atc/Tic-Tac-Toe games-games-share share +./usr/share/games/atc/airports games-games-share share +./usr/share/games/atc/box games-games-share share +./usr/share/games/atc/crosshatch games-games-share share +./usr/share/games/atc/crossover games-games-share share +./usr/share/games/atc/default games-games-share share +./usr/share/games/atc/easy games-games-share share +./usr/share/games/atc/game_2 games-games-share share +./usr/share/games/atc/game_3 games-games-share share +./usr/share/games/atc/game_4 games-games-share share +./usr/share/games/atc/novice games-games-share share +./usr/share/games/atc/two-corners games-games-share share +./usr/share/games/boggle/dictindex games-games-share share +./usr/share/games/boggle/dictionary games-games-share share +./usr/share/games/boggle/helpfile games-games-share share +./usr/share/games/cards.pck games-obsolete obsolete +./usr/share/games/ching/hexagrams games-games-share share +./usr/share/games/ching/macros games-games-share share +./usr/share/games/cribbage.instr games-games-share share +./usr/share/games/fish.instr games-games-share share +./usr/share/games/fortune/farber games-utils-share share +./usr/share/games/fortune/farber.dat games-utils-share share +./usr/share/games/fortune/fortunes games-utils-share share +./usr/share/games/fortune/fortunes-o games-utils-share share +./usr/share/games/fortune/fortunes-o.dat games-utils-share share +./usr/share/games/fortune/fortunes.dat games-utils-share share +./usr/share/games/fortune/fortunes2 games-utils-share share +./usr/share/games/fortune/fortunes2-o games-utils-share share +./usr/share/games/fortune/fortunes2-o.dat games-utils-share share +./usr/share/games/fortune/fortunes2.dat games-utils-share share +./usr/share/games/fortune/limerick games-utils-share share +./usr/share/games/fortune/limerick-o games-utils-share share +./usr/share/games/fortune/limerick-o.dat games-utils-share share +./usr/share/games/fortune/limerick.dat games-utils-share share +./usr/share/games/fortune/netbsd games-utils-share share +./usr/share/games/fortune/netbsd-o games-utils-share share +./usr/share/games/fortune/netbsd-o.dat games-utils-share share +./usr/share/games/fortune/netbsd-tips games-utils-share share +./usr/share/games/fortune/netbsd-tips.dat games-utils-share share +./usr/share/games/fortune/netbsd.dat games-utils-share share +./usr/share/games/fortune/startrek games-utils-share share +./usr/share/games/fortune/startrek.dat games-utils-share share +./usr/share/games/fortune/unamerican games-obsolete obsolete +./usr/share/games/fortune/unamerican-o games-utils-share share +./usr/share/games/fortune/unamerican-o.dat games-utils-share share +./usr/share/games/fortune/unamerican.dat games-obsolete obsolete +./usr/share/games/fortune/zippy games-utils-share share +./usr/share/games/fortune/zippy.dat games-utils-share share +./usr/share/games/gnuchess.book games-obsolete obsolete +./usr/share/games/larn/larn.help games-games-share share +./usr/share/games/larn/larnmaze games-games-share share +./usr/share/games/larn/larnopts games-games-share share +./usr/share/games/larn/lfortune games-obsolete obsolete +./usr/share/games/quiz.db/africa games-games-share share +./usr/share/games/quiz.db/america games-games-share share +./usr/share/games/quiz.db/areas games-games-share share +./usr/share/games/quiz.db/arith games-games-share share +./usr/share/games/quiz.db/asia games-games-share share +./usr/share/games/quiz.db/babies games-games-share share +./usr/share/games/quiz.db/bard games-games-share share +./usr/share/games/quiz.db/chinese games-games-share share +./usr/share/games/quiz.db/collectives games-games-share share +./usr/share/games/quiz.db/ed games-games-share share +./usr/share/games/quiz.db/elements games-games-share share +./usr/share/games/quiz.db/europe games-games-share share +./usr/share/games/quiz.db/flowers games-games-share share +./usr/share/games/quiz.db/greek games-games-share share +./usr/share/games/quiz.db/inca games-games-share share +./usr/share/games/quiz.db/index games-games-share share +./usr/share/games/quiz.db/latin games-games-share share +./usr/share/games/quiz.db/locomotive games-games-share share +./usr/share/games/quiz.db/midearth games-games-share share +./usr/share/games/quiz.db/morse games-games-share share +./usr/share/games/quiz.db/mult games-games-share share +./usr/share/games/quiz.db/murders games-games-share share +./usr/share/games/quiz.db/poetry games-games-share share +./usr/share/games/quiz.db/posneg games-games-share share +./usr/share/games/quiz.db/pres games-games-share share +./usr/share/games/quiz.db/province games-games-share share +./usr/share/games/quiz.db/seq-easy games-games-share share +./usr/share/games/quiz.db/seq-hard games-games-share share +./usr/share/games/quiz.db/sexes games-games-share share +./usr/share/games/quiz.db/sov games-games-share share +./usr/share/games/quiz.db/spell games-games-share share +./usr/share/games/quiz.db/state games-games-share share +./usr/share/games/quiz.db/trek games-games-share share +./usr/share/games/quiz.db/ucc games-games-share share +./usr/share/games/wump.info games-games-share share +./usr/share/man/cat5/dm.conf.0 games-games-catman .cat +./usr/share/man/cat6/adventure.0 games-games-catman .cat +./usr/share/man/cat6/arithmetic.0 games-games-catman .cat +./usr/share/man/cat6/atc.0 games-games-catman .cat +./usr/share/man/cat6/backgammon.0 games-games-catman .cat +./usr/share/man/cat6/banner.0 games-utils-catman .cat +./usr/share/man/cat6/battlestar.0 games-games-catman .cat +./usr/share/man/cat6/bcd.0 games-games-catman .cat +./usr/share/man/cat6/boggle.0 games-games-catman .cat +./usr/share/man/cat6/caesar.0 games-utils-catman .cat +./usr/share/man/cat6/canfield.0 games-games-catman .cat +./usr/share/man/cat6/chess.0 games-obsolete obsolete +./usr/share/man/cat6/ching.0 games-games-catman .cat +./usr/share/man/cat6/colorbars.0 games-utils-catman .cat +./usr/share/man/cat6/countmail.0 games-utils-catman .cat +./usr/share/man/cat6/cribbage.0 games-games-catman .cat +./usr/share/man/cat6/dab.0 games-games-catman .cat,cxx +./usr/share/man/cat6/factor.0 games-utils-catman .cat +./usr/share/man/cat6/fish.0 games-games-catman .cat +./usr/share/man/cat6/fortune.0 games-utils-catman .cat +./usr/share/man/cat6/gomoku.0 games-games-catman .cat +./usr/share/man/cat6/hack.0 games-games-catman .cat +./usr/share/man/cat6/hangman.0 games-games-catman .cat +./usr/share/man/cat6/hunt.0 games-games-catman .cat +./usr/share/man/cat6/huntd.0 games-games-catman .cat +./usr/share/man/cat6/intro.0 games-games-catman .cat +./usr/share/man/cat6/larn.0 games-games-catman .cat +./usr/share/man/cat6/mille.0 games-games-catman .cat +./usr/share/man/cat6/monop.0 games-games-catman .cat +./usr/share/man/cat6/morse.0 games-games-catman .cat +./usr/share/man/cat6/number.0 games-utils-catman .cat +./usr/share/man/cat6/phantasia.0 games-games-catman .cat +./usr/share/man/cat6/pig.0 games-games-catman .cat +./usr/share/man/cat6/pom.0 games-games-catman .cat +./usr/share/man/cat6/ppt.0 games-games-catman .cat +./usr/share/man/cat6/primes.0 games-utils-catman .cat +./usr/share/man/cat6/quiz.0 games-games-catman .cat +./usr/share/man/cat6/rain.0 games-games-catman .cat +./usr/share/man/cat6/random.0 games-utils-catman .cat +./usr/share/man/cat6/robots.0 games-games-catman .cat +./usr/share/man/cat6/rogue.0 games-games-catman .cat +./usr/share/man/cat6/rot13.0 games-utils-catman .cat +./usr/share/man/cat6/sail.0 games-games-catman .cat +./usr/share/man/cat6/snake.0 games-games-catman .cat +./usr/share/man/cat6/tetris.0 games-games-catman .cat +./usr/share/man/cat6/trek.0 games-games-catman .cat +./usr/share/man/cat6/wargames.0 games-games-catman .cat +./usr/share/man/cat6/worm.0 games-games-catman .cat +./usr/share/man/cat6/worms.0 games-games-catman .cat +./usr/share/man/cat6/wtf.0 games-utils-catman .cat +./usr/share/man/cat6/wump.0 games-games-catman .cat +./usr/share/man/cat8/dm.0 games-games-catman .cat +./usr/share/man/cat8/strfile.0 games-utils-catman .cat +./usr/share/man/cat8/unstr.0 games-utils-catman .cat +./usr/share/man/html5/dm.conf.html games-games-htmlman html +./usr/share/man/html6/adventure.html games-games-htmlman html +./usr/share/man/html6/arithmetic.html games-games-htmlman html +./usr/share/man/html6/atc.html games-games-htmlman html +./usr/share/man/html6/backgammon.html games-games-htmlman html +./usr/share/man/html6/banner.html games-utils-htmlman html +./usr/share/man/html6/battlestar.html games-games-htmlman html +./usr/share/man/html6/bcd.html games-games-htmlman html +./usr/share/man/html6/boggle.html games-games-htmlman html +./usr/share/man/html6/caesar.html games-utils-htmlman html +./usr/share/man/html6/canfield.html games-games-htmlman html +./usr/share/man/html6/ching.html games-games-htmlman html +./usr/share/man/html6/colorbars.html games-utils-htmlman html +./usr/share/man/html6/countmail.html games-utils-htmlman html +./usr/share/man/html6/cribbage.html games-games-htmlman html +./usr/share/man/html6/dab.html games-games-htmlman html,cxx +./usr/share/man/html6/factor.html games-utils-htmlman html +./usr/share/man/html6/fish.html games-games-htmlman html +./usr/share/man/html6/fortune.html games-utils-htmlman html +./usr/share/man/html6/gomoku.html games-games-htmlman html +./usr/share/man/html6/hack.html games-games-htmlman html +./usr/share/man/html6/hangman.html games-games-htmlman html +./usr/share/man/html6/hunt.html games-games-htmlman html +./usr/share/man/html6/huntd.html games-games-htmlman html +./usr/share/man/html6/intro.html games-games-htmlman html +./usr/share/man/html6/larn.html games-games-htmlman html +./usr/share/man/html6/mille.html games-games-htmlman html +./usr/share/man/html6/monop.html games-games-htmlman html +./usr/share/man/html6/morse.html games-games-htmlman html +./usr/share/man/html6/number.html games-utils-htmlman html +./usr/share/man/html6/phantasia.html games-games-htmlman html +./usr/share/man/html6/pig.html games-games-htmlman html +./usr/share/man/html6/pom.html games-games-htmlman html +./usr/share/man/html6/ppt.html games-games-htmlman html +./usr/share/man/html6/primes.html games-utils-htmlman html +./usr/share/man/html6/quiz.html games-games-htmlman html +./usr/share/man/html6/rain.html games-games-htmlman html +./usr/share/man/html6/random.html games-utils-htmlman html +./usr/share/man/html6/robots.html games-games-htmlman html +./usr/share/man/html6/rogue.html games-games-htmlman html +./usr/share/man/html6/rot13.html games-utils-htmlman html +./usr/share/man/html6/sail.html games-games-htmlman html +./usr/share/man/html6/snake.html games-games-htmlman html +./usr/share/man/html6/tetris.html games-games-htmlman html +./usr/share/man/html6/trek.html games-games-htmlman html +./usr/share/man/html6/wargames.html games-games-htmlman html +./usr/share/man/html6/worm.html games-games-htmlman html +./usr/share/man/html6/worms.html games-games-htmlman html +./usr/share/man/html6/wtf.html games-utils-htmlman html +./usr/share/man/html6/wump.html games-games-htmlman html +./usr/share/man/html8/dm.html games-games-htmlman html +./usr/share/man/html8/strfile.html games-utils-htmlman html +./usr/share/man/html8/unstr.html games-utils-htmlman html +./usr/share/man/man5/dm.conf.5 games-games-man .man +./usr/share/man/man6/adventure.6 games-games-man .man +./usr/share/man/man6/arithmetic.6 games-games-man .man +./usr/share/man/man6/atc.6 games-games-man .man +./usr/share/man/man6/backgammon.6 games-games-man .man +./usr/share/man/man6/banner.6 games-utils-man .man +./usr/share/man/man6/battlestar.6 games-games-man .man +./usr/share/man/man6/bcd.6 games-games-man .man +./usr/share/man/man6/boggle.6 games-games-man .man +./usr/share/man/man6/caesar.6 games-utils-man .man +./usr/share/man/man6/canfield.6 games-games-man .man +./usr/share/man/man6/chess.6 games-obsolete obsolete +./usr/share/man/man6/ching.6 games-games-man .man +./usr/share/man/man6/colorbars.6 games-utils-man .man +./usr/share/man/man6/countmail.6 games-utils-man .man +./usr/share/man/man6/cribbage.6 games-games-man .man +./usr/share/man/man6/dab.6 games-games-man .man,cxx +./usr/share/man/man6/factor.6 games-utils-man .man +./usr/share/man/man6/fish.6 games-games-man .man +./usr/share/man/man6/fortune.6 games-utils-man .man +./usr/share/man/man6/gomoku.6 games-games-man .man +./usr/share/man/man6/hack.6 games-games-man .man +./usr/share/man/man6/hangman.6 games-games-man .man +./usr/share/man/man6/hunt.6 games-games-man .man +./usr/share/man/man6/huntd.6 games-games-man .man +./usr/share/man/man6/intro.6 games-games-man .man +./usr/share/man/man6/larn.6 games-games-man .man +./usr/share/man/man6/mille.6 games-games-man .man +./usr/share/man/man6/monop.6 games-games-man .man +./usr/share/man/man6/morse.6 games-games-man .man +./usr/share/man/man6/number.6 games-utils-man .man +./usr/share/man/man6/phantasia.6 games-games-man .man +./usr/share/man/man6/pig.6 games-games-man .man +./usr/share/man/man6/pom.6 games-games-man .man +./usr/share/man/man6/ppt.6 games-games-man .man +./usr/share/man/man6/primes.6 games-utils-man .man +./usr/share/man/man6/quiz.6 games-games-man .man +./usr/share/man/man6/rain.6 games-games-man .man +./usr/share/man/man6/random.6 games-utils-man .man +./usr/share/man/man6/robots.6 games-games-man .man +./usr/share/man/man6/rogue.6 games-games-man .man +./usr/share/man/man6/rot13.6 games-utils-man .man +./usr/share/man/man6/sail.6 games-games-man .man +./usr/share/man/man6/snake.6 games-games-man .man +./usr/share/man/man6/tetris.6 games-games-man .man +./usr/share/man/man6/trek.6 games-games-man .man +./usr/share/man/man6/wargames.6 games-games-man .man +./usr/share/man/man6/worm.6 games-games-man .man +./usr/share/man/man6/worms.6 games-games-man .man +./usr/share/man/man6/wtf.6 games-utils-man .man +./usr/share/man/man6/wump.6 games-games-man .man +./usr/share/man/man8/dm.8 games-games-man .man +./usr/share/man/man8/strfile.8 games-utils-man .man +./usr/share/man/man8/unstr.8 games-utils-man .man +./var/games/atc_scores games-obsolete obsolete +./var/games/hackdir/data games-games-root +./var/games/hackdir/help games-games-root +./var/games/hackdir/hh games-games-root +./var/games/hackdir/perm games-games-root +./var/games/phantasia/gold games-games-root +./var/games/phantasia/lastdead games-games-root +./var/games/phantasia/mess games-games-root +./var/games/phantasia/monsters games-games-root +./var/games/phantasia/motd games-games-root +./var/games/phantasia/void games-games-root diff --git a/distrib/sets/lists/man/mi b/distrib/sets/lists/man/mi new file mode 100644 index 000000000..471a2d749 --- /dev/null +++ b/distrib/sets/lists/man/mi @@ -0,0 +1,8560 @@ +# $NetBSD: mi,v 1.1403 2012/09/16 18:59:26 tls Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.man man-sys-root +./usr/share/info/am-utils.info man-amd-info info +./usr/share/info/as.info man-computil-info binutils,info +./usr/share/info/awk.info man-util-info info +./usr/share/info/bfd.info man-computil-info binutils,info +./usr/share/info/binutils.info man-computil-info binutils,info +./usr/share/info/bzip2.info man-obsolete obsolete +./usr/share/info/cpp.info man-util-info gcccmds,info +./usr/share/info/cvs.info man-cvs-info cvs,info +./usr/share/info/cvsclient.info man-cvs-info cvs,info +./usr/share/info/dc.info man-util-info info +./usr/share/info/diff.info man-util-info info +./usr/share/info/dir man-info-share info +./usr/share/info/flex.info man-computil-info info +./usr/share/info/g++FAQ.info man-obsolete obsolete +./usr/share/info/g77.info comp-obsolete gcc=4,obsolete +./usr/share/info/g77.info man-fortran-info gcc=3,gcccmds,info +./usr/share/info/gcc.info man-c-info gcccmds,info +./usr/share/info/gdb.info man-debug-info gdb,info +./usr/share/info/gdbint.info man-debug-info gdb,info +./usr/share/info/gettext.info man-sys-info info +./usr/share/info/gprof.info man-debug-info binutils,info +./usr/share/info/grep.info man-util-info info,!bsdgrep +./usr/share/info/groff.info man-groff-info info,groff +./usr/share/info/gzip.info man-obsolete obsolete +./usr/share/info/heimdal.info man-krb5-info kerberos,info +./usr/share/info/info-stnd.info man-texinfo-info info +./usr/share/info/info.info man-texinfo-info info +./usr/share/info/iostream.info man-obsolete obsolete +./usr/share/info/kth-krb.info man-obsolete obsolete +./usr/share/info/ld.info man-computil-info binutils,info +./usr/share/info/send-pr.info man-gnats-info info +./usr/share/info/stabs.info man-debug-info gdb,info +./usr/share/info/tar.info man-obsolete obsolete +./usr/share/info/texinfo.info man-texinfo-info info +./usr/share/info/uucp.info man-obsolete obsolete +./usr/share/info/vi.info man-sys-info doc,info +./usr/share/man/cat1/Mail.0 man-mail-catman .cat +./usr/share/man/cat1/[.0 man-util-catman .cat +./usr/share/man/cat1/agrep.0 man-util-catman .cat +./usr/share/man/cat1/alias.0 man-util-catman .cat +./usr/share/man/cat1/altqstat.0 man-router-catman .cat +./usr/share/man/cat1/amq.0 man-obsolete obsolete +./usr/share/man/cat1/apply.0 man-util-catman .cat +./usr/share/man/cat1/apropos.0 man-man-catman .cat +./usr/share/man/cat1/arpaname.0 man-bind-catman .cat +./usr/share/man/cat1/at.0 man-cron-catman .cat +./usr/share/man/cat1/atari/edahdi.0 man-sysutil-catman .cat +./usr/share/man/cat1/atari/msconfig.0 man-sysutil-catman .cat +./usr/share/man/cat1/atf-check.0 man-atf-catman .cat,atf +./usr/share/man/cat1/atf-cleanup.0 man-obsolete obsolete +./usr/share/man/cat1/atf-compile.0 man-obsolete obsolete +./usr/share/man/cat1/atf-config.0 man-atf-catman .cat,atf +./usr/share/man/cat1/atf-exec.0 man-atf-catman obsolete +./usr/share/man/cat1/atf-format.0 man-obsolete obsolete +./usr/share/man/cat1/atf-killpg.0 man-obsolete obsolete +./usr/share/man/cat1/atf-report.0 man-atf-catman .cat,atf +./usr/share/man/cat1/atf-run.0 man-atf-catman .cat,atf +./usr/share/man/cat1/atf-sh.0 man-atf-catman .cat,atf +./usr/share/man/cat1/atf-test-program.0 man-atf-catman .cat,atf +./usr/share/man/cat1/atf-version.0 man-atf-catman .cat,atf +./usr/share/man/cat1/atq.0 man-cron-catman .cat +./usr/share/man/cat1/atrm.0 man-cron-catman .cat +./usr/share/man/cat1/audiocfg.0 man-audio-catman .cat +./usr/share/man/cat1/audioctl.0 man-audio-catman .cat +./usr/share/man/cat1/audioplay.0 man-audio-catman .cat +./usr/share/man/cat1/audiorecord.0 man-audio-catman .cat +./usr/share/man/cat1/audit-packages.0 man-obsolete obsolete +./usr/share/man/cat1/awk.0 man-util-catman .cat +./usr/share/man/cat1/banner.0 man-util-catman .cat +./usr/share/man/cat1/basename.0 man-util-catman .cat +./usr/share/man/cat1/batch.0 man-cron-catman .cat +./usr/share/man/cat1/bc.0 man-util-catman .cat +./usr/share/man/cat1/bdes.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/bg.0 man-util-catman .cat +./usr/share/man/cat1/biff.0 man-mail-catman .cat +./usr/share/man/cat1/bpm.0 man-pkgutil-catman crypto,.cat +./usr/share/man/cat1/bthset.0 man-util-catman .cat +./usr/share/man/cat1/btkey.0 man-util-catman .cat +./usr/share/man/cat1/btpin.0 man-util-catman .cat +./usr/share/man/cat1/bunzip2.0 man-util-catman .cat +./usr/share/man/cat1/bzcat.0 man-util-catman .cat +./usr/share/man/cat1/bzip2.0 man-util-catman .cat +./usr/share/man/cat1/bzip2recover.0 man-util-catman .cat +./usr/share/man/cat1/cal.0 man-util-catman .cat +./usr/share/man/cat1/calendar.0 man-util-catman .cat +./usr/share/man/cat1/cap_mkdb.0 man-util-catman .cat +./usr/share/man/cat1/cat.0 man-util-catman .cat +./usr/share/man/cat1/ccom.0 man-util-catman pcc,.cat +./usr/share/man/cat1/cd.0 man-util-catman .cat +./usr/share/man/cat1/cdplay.0 man-audio-catman .cat +./usr/share/man/cat1/chflags.0 man-util-catman .cat +./usr/share/man/cat1/chfn.0 man-util-catman .cat +./usr/share/man/cat1/chgrp.0 man-util-catman .cat +./usr/share/man/cat1/chio.0 man-util-catman .cat +./usr/share/man/cat1/chmod.0 man-util-catman .cat +./usr/share/man/cat1/chpass.0 man-util-catman .cat +./usr/share/man/cat1/chsh.0 man-util-catman .cat +./usr/share/man/cat1/ci.0 man-rcs-catman .cat +./usr/share/man/cat1/cksum.0 man-util-catman .cat +./usr/share/man/cat1/cleantags.0 man-util-catman .cat +./usr/share/man/cat1/clear.0 man-util-catman .cat +./usr/share/man/cat1/cmp.0 man-util-catman .cat +./usr/share/man/cat1/co.0 man-rcs-catman .cat +./usr/share/man/cat1/col.0 man-util-catman .cat +./usr/share/man/cat1/colcrt.0 man-util-catman .cat +./usr/share/man/cat1/colrm.0 man-util-catman .cat +./usr/share/man/cat1/column.0 man-util-catman .cat +./usr/share/man/cat1/comm.0 man-util-catman .cat +./usr/share/man/cat1/compile_et.0 man-obsolete obsolete +./usr/share/man/cat1/compress.0 man-util-catman .cat +./usr/share/man/cat1/cp.0 man-util-catman .cat +./usr/share/man/cat1/cpio.0 man-util-catman .cat +./usr/share/man/cat1/cpp.0 man-util-catman gcccmds,.cat +./usr/share/man/cat1/crontab.0 man-cron-catman .cat +./usr/share/man/cat1/csh.0 man-util-catman .cat +./usr/share/man/cat1/csplit.0 man-util-catman .cat +./usr/share/man/cat1/ctags.0 man-c-catman .cat +./usr/share/man/cat1/cu.0 man-util-catman .cat +./usr/share/man/cat1/cut.0 man-util-catman .cat +./usr/share/man/cat1/daicctl.0 man-sysutil-catman .cat +./usr/share/man/cat1/date.0 man-util-catman .cat +./usr/share/man/cat1/db.0 man-util-catman .cat +./usr/share/man/cat1/dc.0 man-util-catman .cat +./usr/share/man/cat1/dd.0 man-util-catman .cat +./usr/share/man/cat1/deroff.0 man-util-catman .cat +./usr/share/man/cat1/df.0 man-util-catman .cat +./usr/share/man/cat1/diff.0 man-util-catman .cat +./usr/share/man/cat1/diff3.0 man-util-catman .cat +./usr/share/man/cat1/dig.0 man-netutil-catman .cat +./usr/share/man/cat1/dirname.0 man-util-catman .cat +./usr/share/man/cat1/dirs.0 man-util-catman .cat +./usr/share/man/cat1/dns-sd.0 man-mdns-catman mdns,.cat +./usr/share/man/cat1/dnskeygen.0 man-obsolete obsolete +./usr/share/man/cat1/dnsquery.0 man-obsolete obsolete +./usr/share/man/cat1/domainname.0 man-nis-catman .cat +./usr/share/man/cat1/download-vulnerability-list.0 man-obsolete obsolete +./usr/share/man/cat1/dtmfdecode.0 man-isdn-catman .cat +./usr/share/man/cat1/dtrace.0 man-debug-catman dtrace,.cat +./usr/share/man/cat1/du.0 man-util-catman .cat +./usr/share/man/cat1/echo.0 man-util-catman .cat +./usr/share/man/cat1/ed.0 man-util-catman .cat +./usr/share/man/cat1/egrep.0 man-util-catman .cat +./usr/share/man/cat1/eject.0 man-util-catman .cat +./usr/share/man/cat1/env.0 man-util-catman .cat +./usr/share/man/cat1/error.0 man-util-catman .cat +./usr/share/man/cat1/ex.0 man-util-catman .cat +./usr/share/man/cat1/expand.0 man-util-catman .cat +./usr/share/man/cat1/expr.0 man-util-catman .cat +./usr/share/man/cat1/false.0 man-util-catman .cat +./usr/share/man/cat1/fdformat.0 man-util-catman .cat +./usr/share/man/cat1/fg.0 man-util-catman .cat +./usr/share/man/cat1/fgrep.0 man-util-catman .cat +./usr/share/man/cat1/file.0 man-util-catman .cat +./usr/share/man/cat1/fincore.0 man-util-catman .cat +./usr/share/man/cat1/find.0 man-util-catman .cat +./usr/share/man/cat1/finger.0 man-util-catman .cat +./usr/share/man/cat1/fmt.0 man-util-catman .cat +./usr/share/man/cat1/fold.0 man-util-catman .cat +./usr/share/man/cat1/foreach.0 man-util-catman .cat +./usr/share/man/cat1/from.0 man-util-catman .cat +./usr/share/man/cat1/fsplit.0 man-util-catman .cat +./usr/share/man/cat1/fstat.0 man-util-catman .cat +./usr/share/man/cat1/ftp.0 man-netutil-catman .cat +./usr/share/man/cat1/g711conv.0 man-obsolete obsolete +./usr/share/man/cat1/gcpp.0 man-util-catman gcccmds,.cat +./usr/share/man/cat1/gencat.0 man-locale-catman .cat +./usr/share/man/cat1/getcap.0 man-util-catman .cat +./usr/share/man/cat1/getconf.0 man-util-catman .cat +./usr/share/man/cat1/getent.0 man-util-catman .cat +./usr/share/man/cat1/getextattr.0 man-util-catman .cat +./usr/share/man/cat1/getopt.0 man-util-catman .cat +./usr/share/man/cat1/gettext.0 man-locale-catman .cat +./usr/share/man/cat1/gkermit.0 man-util-catman .cat +./usr/share/man/cat1/grep.0 man-util-catman .cat +./usr/share/man/cat1/grfinfo.0 man-obsolete obsolete +./usr/share/man/cat1/groups.0 man-util-catman .cat +./usr/share/man/cat1/gunzip.0 man-util-catman .cat +./usr/share/man/cat1/gzcat.0 man-util-catman .cat +./usr/share/man/cat1/gzexe.0 man-util-catman .cat +./usr/share/man/cat1/gzip.0 man-util-catman .cat +./usr/share/man/cat1/head.0 man-util-catman .cat +./usr/share/man/cat1/hesinfo.0 man-hesiod-catman hesiod,.cat +./usr/share/man/cat1/hexdump.0 man-util-catman .cat +./usr/share/man/cat1/history.0 man-util-catman .cat +./usr/share/man/cat1/host.0 man-netutil-catman .cat +./usr/share/man/cat1/hostname.0 man-util-catman .cat +./usr/share/man/cat1/hp300/grfinfo.0 man-obsolete obsolete +./usr/share/man/cat1/i386 man-obsolete obsolete +./usr/share/man/cat1/i386/cursor.0 man-obsolete obsolete +./usr/share/man/cat1/i386/fed.0 man-obsolete obsolete +./usr/share/man/cat1/i386/fontedit.0 man-obsolete obsolete +./usr/share/man/cat1/i386/kcon.0 man-obsolete obsolete +./usr/share/man/cat1/i386/loadfont.0 man-obsolete obsolete +./usr/share/man/cat1/i386/mcon.0 man-obsolete obsolete +./usr/share/man/cat1/i386/scon.0 man-obsolete obsolete +./usr/share/man/cat1/i386/vt220keys.0 man-obsolete obsolete +./usr/share/man/cat1/i386/vttest.0 man-obsolete obsolete +./usr/share/man/cat1/iconv.0 man-util-catman .cat +./usr/share/man/cat1/id.0 man-util-catman .cat +./usr/share/man/cat1/ident.0 man-util-catman .cat +./usr/share/man/cat1/indent.0 man-c-catman .cat +./usr/share/man/cat1/info.0 man-texinfo-catman .cat +./usr/share/man/cat1/infocmp.0 man-util-catman .cat +./usr/share/man/cat1/infokey.0 man-texinfo-catman .cat +./usr/share/man/cat1/innetgr.0 man-nis-catman .cat +./usr/share/man/cat1/install-info.0 man-texinfo-catman .cat +./usr/share/man/cat1/install.0 man-util-catman .cat +./usr/share/man/cat1/intro.0 man-sys-catman .cat +./usr/share/man/cat1/ipcrm.0 man-util-catman .cat +./usr/share/man/cat1/ipcs.0 man-util-catman .cat +./usr/share/man/cat1/ipftest.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat1/ipresend.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat1/ipsend.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat1/iptest.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat1/jobs.0 man-util-catman .cat +./usr/share/man/cat1/join.0 man-util-catman .cat +./usr/share/man/cat1/jot.0 man-util-catman .cat +./usr/share/man/cat1/kdestroy.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat1/kdump.0 man-debug-catman .cat +./usr/share/man/cat1/kf.0 man-obsolete obsolete +./usr/share/man/cat1/kgetcred.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat1/kill.0 man-util-catman .cat +./usr/share/man/cat1/kimpersonate.0 man-obsolete obsolete +./usr/share/man/cat1/kinit.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat1/klist.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat1/kpasswd.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat1/krb5-config.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat1/ksh.0 man-util-catman .cat +./usr/share/man/cat1/ktrace.0 man-debug-catman .cat +./usr/share/man/cat1/ktruss.0 man-debug-catman .cat +./usr/share/man/cat1/lam.0 man-util-catman .cat +./usr/share/man/cat1/last.0 man-util-catman .cat +./usr/share/man/cat1/lastcomm.0 man-util-catman .cat +./usr/share/man/cat1/ld.aout_so.0 man-shlib-catman .cat +./usr/share/man/cat1/ld.elf_so.0 man-shlib-catman .cat +./usr/share/man/cat1/ld.so.0 man-shlib-catman .cat +./usr/share/man/cat1/ldapadd.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldapcompare.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldapdelete.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldapexop.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldapmodify.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldapmodrdn.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldappasswd.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldapsearch.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldapurl.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldapwhoami.0 man-ldap-catman ldap,.cat +./usr/share/man/cat1/ldd.0 man-util-catman .cat +./usr/share/man/cat1/leave.0 man-util-catman .cat +./usr/share/man/cat1/less.0 man-util-catman .cat +./usr/share/man/cat1/lessecho.0 man-util-catman .cat +./usr/share/man/cat1/lesskey.0 man-util-catman .cat +./usr/share/man/cat1/limit.0 man-util-catman .cat +./usr/share/man/cat1/linkfarm.0 man-obsolete obsolete +./usr/share/man/cat1/ln.0 man-util-catman .cat +./usr/share/man/cat1/locale.0 man-util-catman .cat +./usr/share/man/cat1/locate.0 man-util-catman .cat +./usr/share/man/cat1/lock.0 man-util-catman .cat +./usr/share/man/cat1/logger.0 man-util-catman .cat +./usr/share/man/cat1/login.0 man-util-catman .cat +./usr/share/man/cat1/logname.0 man-util-catman .cat +./usr/share/man/cat1/look.0 man-util-catman .cat +./usr/share/man/cat1/lp.0 man-lpr-catman .cat +./usr/share/man/cat1/lpq.0 man-lpr-catman .cat +./usr/share/man/cat1/lpr.0 man-lpr-catman .cat +./usr/share/man/cat1/lprm.0 man-lpr-catman .cat +./usr/share/man/cat1/lptest.0 man-lpr-catman .cat +./usr/share/man/cat1/ls.0 man-util-catman .cat +./usr/share/man/cat1/lsextattr.0 man-util-catman .cat +./usr/share/man/cat1/lua.0 man-util-catman .cat +./usr/share/man/cat1/lzcat.0 man-util-catman .cat +./usr/share/man/cat1/lzf.0 man-util-catman .cat +./usr/share/man/cat1/lzfcat.0 man-util-catman .cat +./usr/share/man/cat1/lzma.0 man-util-catman .cat +./usr/share/man/cat1/lzmainfo.0 man-util-catman .cat +./usr/share/man/cat1/m4.0 man-util-catman .cat +./usr/share/man/cat1/machine.0 man-util-catman .cat +./usr/share/man/cat1/mail.0 man-mail-catman .cat +./usr/share/man/cat1/mailq.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/mailx.0 man-mail-catman .cat +./usr/share/man/cat1/make.0 man-util-catman .cat +./usr/share/man/cat1/makeinfo.0 man-texinfo-catman .cat +./usr/share/man/cat1/man.0 man-man-catman .cat +./usr/share/man/cat1/mandoc.0 man-mdocml-catman .cat +./usr/share/man/cat1/md2.0 man-util-catman .cat +./usr/share/man/cat1/md4.0 man-util-catman .cat +./usr/share/man/cat1/md5.0 man-util-catman .cat +./usr/share/man/cat1/merge.0 man-util-catman .cat +./usr/share/man/cat1/mesg.0 man-util-catman .cat +./usr/share/man/cat1/midiplay.0 man-audio-catman .cat +./usr/share/man/cat1/mixerctl.0 man-audio-catman .cat +./usr/share/man/cat1/mkdep.0 man-c-catman .cat +./usr/share/man/cat1/mkdir.0 man-util-catman .cat +./usr/share/man/cat1/mkfifo.0 man-sysutil-catman .cat +./usr/share/man/cat1/mkfilters.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat1/mklocale.0 man-util-catman .cat +./usr/share/man/cat1/mktemp.0 man-util-catman .cat +./usr/share/man/cat1/mopa.out.0 man-obsolete obsolete +./usr/share/man/cat1/mopchk.0 man-bootserver-catman .cat +./usr/share/man/cat1/mopcopy.0 man-bootserver-catman .cat +./usr/share/man/cat1/mopprobe.0 man-bootserver-catman .cat +./usr/share/man/cat1/moptrace.0 man-bootserver-catman .cat +./usr/share/man/cat1/more.0 man-util-catman .cat +./usr/share/man/cat1/mset.0 man-obsolete obsolete +./usr/share/man/cat1/msgattrib.0 man-locale-catman .cat +./usr/share/man/cat1/msgcat.0 man-locale-catman .cat +./usr/share/man/cat1/msgcmp.0 man-locale-catman .cat +./usr/share/man/cat1/msgcomm.0 man-locale-catman .cat +./usr/share/man/cat1/msgconv.0 man-locale-catman .cat +./usr/share/man/cat1/msgen.0 man-locale-catman .cat +./usr/share/man/cat1/msgexec.0 man-locale-catman .cat +./usr/share/man/cat1/msgfmt.0 man-locale-catman .cat +./usr/share/man/cat1/msginit.0 man-locale-catman .cat +./usr/share/man/cat1/msgmerge.0 man-locale-catman .cat +./usr/share/man/cat1/msgs.0 man-util-catman .cat +./usr/share/man/cat1/msgunfmt.0 man-locale-catman .cat +./usr/share/man/cat1/msguniq.0 man-locale-catman .cat +./usr/share/man/cat1/mt.0 man-util-catman .cat +./usr/share/man/cat1/mv.0 man-util-catman .cat +./usr/share/man/cat1/nbsvtool.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/netgroup.0 man-nis-catman .cat +./usr/share/man/cat1/netpgp.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/netpgpkeys.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/netpgpverify.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/netstat.0 man-netutil-catman .cat +./usr/share/man/cat1/newaliases.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/newgrp.0 man-util-catman .cat +./usr/share/man/cat1/nex.0 man-obsolete obsolete +./usr/share/man/cat1/nfsstat.0 man-nfsclient-catman .cat +./usr/share/man/cat1/nice.0 man-util-catman .cat +./usr/share/man/cat1/nl.0 man-util-catman .cat +./usr/share/man/cat1/nohup.0 man-util-catman .cat +./usr/share/man/cat1/nsupdate.0 man-netutil-catman .cat +./usr/share/man/cat1/nvi.0 man-obsolete obsolete +./usr/share/man/cat1/nview.0 man-obsolete obsolete +./usr/share/man/cat1/od.0 man-util-catman .cat +./usr/share/man/cat1/omshell.0 man-dhcpd-catman .cat +./usr/share/man/cat1/openpgp.0 man-obsolete obsolete +./usr/share/man/cat1/openssl.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_CA.pl.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_asn1parse.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_ca.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_ciphers.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_crl.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_crl2pkcs7.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_dgst.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_dhparam.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_dsa.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_dsaparam.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_ec.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_ecparam.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_enc.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_errstr.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_gendsa.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_genrsa.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_nseq.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_passwd.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_pkcs12.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_pkcs7.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_pkcs8.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_rand.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_req.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_rsa.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_rsautl.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_s_client.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_s_server.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_s_time.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_sess_id.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_smime.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_speed.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_spkac.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_verify.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_version.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_x509.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/openssl_x509v3_config.0 man-crypto-catman crypto,.cat +./usr/share/man/cat1/page.0 man-util-catman .cat +./usr/share/man/cat1/pagesize.0 man-util-catman .cat +./usr/share/man/cat1/passwd.0 man-util-catman .cat +./usr/share/man/cat1/paste.0 man-util-catman .cat +./usr/share/man/cat1/patch.0 man-util-catman .cat +./usr/share/man/cat1/pathchk.0 man-util-catman .cat +./usr/share/man/cat1/pawd.0 man-amd-catman .cat +./usr/share/man/cat1/pax.0 man-util-catman .cat +./usr/share/man/cat1/paxctl.0 man-obsolete obsolete +./usr/share/man/cat1/pcap-config.0 man-util-catman .cat +./usr/share/man/cat1/pcc.0 man-util-catman pcc,.cat +./usr/share/man/cat1/pcpp.0 man-util-catman pcc,.cat +./usr/share/man/cat1/pgrep.0 man-util-catman .cat +./usr/share/man/cat1/pigz.0 man-util-catman .cat +./usr/share/man/cat1/pim6stat.0 man-obsolete obsolete +./usr/share/man/cat1/pkg_add.0 man-pkgutil-catman crypto,.cat +./usr/share/man/cat1/pkg_admin.0 man-pkgutil-catman crypto,.cat +./usr/share/man/cat1/pkg_create.0 man-pkgutil-catman crypto,.cat +./usr/share/man/cat1/pkg_delete.0 man-pkgutil-catman crypto,.cat +./usr/share/man/cat1/pkg_info.0 man-pkgutil-catman crypto,.cat +./usr/share/man/cat1/pkg_view.0 man-obsolete obsolete +./usr/share/man/cat1/pkill.0 man-util-catman .cat +./usr/share/man/cat1/pmap.0 man-util-catman .cat +./usr/share/man/cat1/pmc.0 man-util-catman .cat +./usr/share/man/cat1/popd.0 man-util-catman .cat +./usr/share/man/cat1/postalias.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postcat.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postconf.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postdrop.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postfix.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postkick.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postlock.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postlog.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postmap.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postmulti.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postqueue.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/postsuper.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/pr.0 man-util-catman .cat +./usr/share/man/cat1/prenice.0 man-util-catman .cat +./usr/share/man/cat1/printenv.0 man-util-catman .cat +./usr/share/man/cat1/printf.0 man-util-catman .cat +./usr/share/man/cat1/progress.0 man-util-catman .cat +./usr/share/man/cat1/ps.0 man-util-catman .cat +./usr/share/man/cat1/pstat.0 man-obsolete obsolete +./usr/share/man/cat1/pushd.0 man-util-catman .cat +./usr/share/man/cat1/pwd.0 man-util-catman .cat +./usr/share/man/cat1/pwhash.0 man-util-catman .cat +./usr/share/man/cat1/qsafe.0 man-util-catman crypto,.cat +./usr/share/man/cat1/qsieve.0 man-util-catman crypto,.cat +./usr/share/man/cat1/qsubst.0 man-util-catman .cat +./usr/share/man/cat1/quota.0 man-util-catman .cat +./usr/share/man/cat1/radioctl.0 man-audio-catman .cat +./usr/share/man/cat1/rcmd.0 man-netutil-catman .cat +./usr/share/man/cat1/rcorder.0 man-obsolete obsolete +./usr/share/man/cat1/rcp.0 man-netutil-catman .cat +./usr/share/man/cat1/rcs.0 man-rcs-catman .cat +./usr/share/man/cat1/rcsclean.0 man-rcs-catman .cat +./usr/share/man/cat1/rcsdiff.0 man-rcs-catman .cat +./usr/share/man/cat1/rcsfreeze.0 man-rcs-catman .cat +./usr/share/man/cat1/rcsintro.0 man-rcs-catman .cat +./usr/share/man/cat1/rcslog.0 man-rcs-catman .cat +./usr/share/man/cat1/rcsmerge.0 man-rcs-catman .cat +./usr/share/man/cat1/rdist.0 man-netutil-catman .cat +./usr/share/man/cat1/readlink.0 man-util-catman .cat +./usr/share/man/cat1/rehash.0 man-util-catman .cat +./usr/share/man/cat1/repeat.0 man-util-catman .cat +./usr/share/man/cat1/reset.0 man-util-catman .cat +./usr/share/man/cat1/rev.0 man-util-catman .cat +./usr/share/man/cat1/rfcomm_sppd.0 man-util-catman .cat +./usr/share/man/cat1/rlog.0 man-rcs-catman .cat +./usr/share/man/cat1/rlogin.0 man-netutil-catman .cat +./usr/share/man/cat1/rm.0 man-util-catman .cat +./usr/share/man/cat1/rmd160.0 man-util-catman .cat +./usr/share/man/cat1/rmdir.0 man-util-catman .cat +./usr/share/man/cat1/rmextattr.0 man-util-catman .cat +./usr/share/man/cat1/rpc.rquotad.0 man-obsolete obsolete +./usr/share/man/cat1/rs.0 man-util-catman .cat +./usr/share/man/cat1/rsh.0 man-netutil-catman .cat +./usr/share/man/cat1/rtld.0 man-shlib-catman .cat +./usr/share/man/cat1/rump.dhcpclient.0 man-netutil-catman .cat,rump +./usr/share/man/cat1/rump.halt.0 man-netutil-catman .cat,rump +./usr/share/man/cat1/rump_allserver.0 man-netutil-catman .cat,rump +./usr/share/man/cat1/rump_server.0 man-netutil-catman .cat,rump +./usr/share/man/cat1/rup.0 man-netutil-catman .cat +./usr/share/man/cat1/ruptime.0 man-netutil-catman .cat +./usr/share/man/cat1/rusers.0 man-netutil-catman .cat +./usr/share/man/cat1/rwall.0 man-netutil-catman .cat +./usr/share/man/cat1/rwho.0 man-netutil-catman .cat +./usr/share/man/cat1/scp.0 man-secsh-catman crypto,.cat +./usr/share/man/cat1/screenblank.0 man-sysutil-catman .cat +./usr/share/man/cat1/script.0 man-util-catman .cat +./usr/share/man/cat1/sdiff.0 man-util-catman .cat +./usr/share/man/cat1/sdpquery.0 man-util-catman .cat +./usr/share/man/cat1/sed.0 man-util-catman .cat +./usr/share/man/cat1/send-pr.0 man-gnats-catman .cat +./usr/share/man/cat1/sendmail.0 man-postfix-catman postfix,.cat +./usr/share/man/cat1/seq.0 man-util-catman .cat +./usr/share/man/cat1/setextattr.0 man-util-catman .cat +./usr/share/man/cat1/sftp.0 man-secsh-catman crypto,.cat +./usr/share/man/cat1/sh.0 man-util-catman .cat +./usr/share/man/cat1/sha1.0 man-util-catman .cat +./usr/share/man/cat1/shar.0 man-util-catman .cat +./usr/share/man/cat1/shlock.0 man-util-catman .cat +./usr/share/man/cat1/shmif_dumpbus.0 man-util-catman .cat +./usr/share/man/cat1/shuffle.0 man-util-catman .cat +./usr/share/man/cat1/skey.0 man-util-catman skey,.cat +./usr/share/man/cat1/skeyaudit.0 man-util-catman skey,.cat +./usr/share/man/cat1/skeyinfo.0 man-util-catman skey,.cat +./usr/share/man/cat1/skeyinit.0 man-util-catman skey,.cat +./usr/share/man/cat1/sleep.0 man-util-catman .cat +./usr/share/man/cat1/slogin.0 man-secsh-catman crypto,.cat +./usr/share/man/cat1/sntp.0 man-ntp-catman .cat +./usr/share/man/cat1/sockstat.0 man-util-catman .cat +./usr/share/man/cat1/sort.0 man-util-catman .cat +./usr/share/man/cat1/source.0 man-util-catman .cat +./usr/share/man/cat1/spell.0 man-util-catman .cat +./usr/share/man/cat1/split.0 man-util-catman .cat +./usr/share/man/cat1/srtconfig.0 man-netutil-catman .cat +./usr/share/man/cat1/ssh-add.0 man-secsh-catman crypto,.cat +./usr/share/man/cat1/ssh-agent.0 man-secsh-catman crypto,.cat +./usr/share/man/cat1/ssh-keygen.0 man-secsh-catman crypto,.cat +./usr/share/man/cat1/ssh-keyscan.0 man-secsh-catman crypto,.cat +./usr/share/man/cat1/ssh.0 man-secsh-catman crypto,.cat +./usr/share/man/cat1/stat.0 man-util-catman .cat +./usr/share/man/cat1/stop.0 man-util-catman .cat +./usr/share/man/cat1/stty.0 man-util-catman .cat +./usr/share/man/cat1/su.0 man-util-catman .cat +./usr/share/man/cat1/sum.0 man-util-catman .cat +./usr/share/man/cat1/sup.0 man-sup-catman .cat +./usr/share/man/cat1/suspend.0 man-util-catman .cat +./usr/share/man/cat1/sysstat.0 man-util-catman .cat +./usr/share/man/cat1/systat.0 man-util-catman .cat +./usr/share/man/cat1/systrace.0 man-obsolete obsolete +./usr/share/man/cat1/tabs.0 man-util-catman .cat +./usr/share/man/cat1/tail.0 man-util-catman .cat +./usr/share/man/cat1/talk.0 man-netutil-catman .cat +./usr/share/man/cat1/tar.0 man-util-catman .cat +./usr/share/man/cat1/tcopy.0 man-util-catman .cat +./usr/share/man/cat1/tee.0 man-util-catman .cat +./usr/share/man/cat1/telnet.0 man-netutil-catman .cat +./usr/share/man/cat1/test.0 man-util-catman .cat +./usr/share/man/cat1/texi2dvi.0 man-texinfo-catman .cat +./usr/share/man/cat1/texindex.0 man-texinfo-catman .cat +./usr/share/man/cat1/tftp.0 man-netutil-catman .cat +./usr/share/man/cat1/tic.0 man-util-catman .cat +./usr/share/man/cat1/time.0 man-util-catman .cat +./usr/share/man/cat1/tip.0 man-util-catman .cat +./usr/share/man/cat1/tmux.0 man-util-catman .cat +./usr/share/man/cat1/tn3270.0 man-obsolete obsolete +./usr/share/man/cat1/top.0 man-util-catman .cat +./usr/share/man/cat1/touch.0 man-util-catman .cat +./usr/share/man/cat1/tpfmt.0 man-util-catman .cat +./usr/share/man/cat1/tput.0 man-util-catman .cat +./usr/share/man/cat1/tr.0 man-util-catman .cat +./usr/share/man/cat1/true.0 man-util-catman .cat +./usr/share/man/cat1/tset.0 man-util-catman .cat +./usr/share/man/cat1/tty.0 man-util-catman .cat +./usr/share/man/cat1/ttyflags.0 man-obsolete obsolete +./usr/share/man/cat1/ul.0 man-util-catman .cat +./usr/share/man/cat1/uname.0 man-util-catman .cat +./usr/share/man/cat1/uncompress.0 man-util-catman .cat +./usr/share/man/cat1/unexpand.0 man-util-catman .cat +./usr/share/man/cat1/uniq.0 man-util-catman .cat +./usr/share/man/cat1/units.0 man-util-catman .cat +./usr/share/man/cat1/unlzf.0 man-util-catman .cat +./usr/share/man/cat1/unlzma.0 man-util-catman .cat +./usr/share/man/cat1/unvis.0 man-util-catman .cat +./usr/share/man/cat1/unxz.0 man-util-catman .cat +./usr/share/man/cat1/unzip.0 man-util-catman .cat +./usr/share/man/cat1/uptime.0 man-util-catman .cat +./usr/share/man/cat1/usbhidaction.0 man-util-catman .cat +./usr/share/man/cat1/usbhidctl.0 man-util-catman .cat +./usr/share/man/cat1/users.0 man-util-catman .cat +./usr/share/man/cat1/utoppya.0 man-util-catman .cat +./usr/share/man/cat1/uucp.0 man-obsolete obsolete +./usr/share/man/cat1/uudecode.0 man-util-catman .cat +./usr/share/man/cat1/uuencode.0 man-util-catman .cat +./usr/share/man/cat1/uuidgen.0 man-util-catman .cat +./usr/share/man/cat1/uustat.0 man-obsolete obsolete +./usr/share/man/cat1/uux.0 man-obsolete obsolete +./usr/share/man/cat1/vacation.0 man-mail-catman .cat +./usr/share/man/cat1/vi.0 man-util-catman .cat +./usr/share/man/cat1/videoctl.0 man-video-catman .cat +./usr/share/man/cat1/view.0 man-util-catman .cat +./usr/share/man/cat1/vis.0 man-util-catman .cat +./usr/share/man/cat1/vmstat.0 man-util-catman .cat +./usr/share/man/cat1/vndcompress.0 man-util-catman .cat +./usr/share/man/cat1/vnduncompress.0 man-util-catman .cat +./usr/share/man/cat1/w.0 man-util-catman .cat +./usr/share/man/cat1/wait.0 man-util-catman .cat +./usr/share/man/cat1/wall.0 man-util-catman .cat +./usr/share/man/cat1/wc.0 man-util-catman .cat +./usr/share/man/cat1/what.0 man-util-catman .cat +./usr/share/man/cat1/whatis.0 man-util-catman .cat +./usr/share/man/cat1/whereis.0 man-util-catman .cat +./usr/share/man/cat1/which.0 man-util-catman .cat +./usr/share/man/cat1/who.0 man-util-catman .cat +./usr/share/man/cat1/whoami.0 man-util-catman .cat +./usr/share/man/cat1/whois.0 man-netutil-catman .cat +./usr/share/man/cat1/window.0 man-obsolete obsolete +./usr/share/man/cat1/write.0 man-util-catman .cat +./usr/share/man/cat1/x68k/aout2hux.0 man-util-catman .cat +./usr/share/man/cat1/x68k/bellctrl.0 man-util-catman .cat +./usr/share/man/cat1/x68k/loadfont.0 man-util-catman .cat +./usr/share/man/cat1/x68k/loadkmap.0 man-util-catman .cat +./usr/share/man/cat1/x68k/palette.0 man-util-catman .cat +./usr/share/man/cat1/x68k/tvctrl.0 man-util-catman .cat +./usr/share/man/cat1/xargs.0 man-util-catman .cat +./usr/share/man/cat1/xgettext.0 man-locale-catman .cat +./usr/share/man/cat1/xmlwf.0 man-util-catman .cat +./usr/share/man/cat1/xz.0 man-util-catman .cat +./usr/share/man/cat1/xzcat.0 man-util-catman .cat +./usr/share/man/cat1/yes.0 man-util-catman .cat +./usr/share/man/cat1/ypcat.0 man-nis-catman yp,.cat +./usr/share/man/cat1/ypmatch.0 man-nis-catman yp,.cat +./usr/share/man/cat1/yppasswd.0 man-nis-catman use_yp,.cat +./usr/share/man/cat1/ypwhich.0 man-nis-catman yp,.cat +./usr/share/man/cat1/zcat.0 man-util-catman .cat +./usr/share/man/cat1/zcmp.0 man-util-catman .cat +./usr/share/man/cat1/zdiff.0 man-util-catman .cat +./usr/share/man/cat1/zegrep.0 man-util-catman .cat +./usr/share/man/cat1/zfgrep.0 man-util-catman .cat +./usr/share/man/cat1/zforce.0 man-util-catman .cat +./usr/share/man/cat1/zgrep.0 man-util-catman .cat +./usr/share/man/cat1/zmore.0 man-util-catman .cat +./usr/share/man/cat1/znew.0 man-util-catman .cat +./usr/share/man/cat3/atari/ahdi_buildlabel.0 man-obsolete obsolete +./usr/share/man/cat3/atari/ahdi_checklabel.0 man-obsolete obsolete +./usr/share/man/cat3/atari/ahdi_readlabel.0 man-obsolete obsolete +./usr/share/man/cat3/atari/ahdi_writedisktab.0 man-obsolete obsolete +./usr/share/man/cat3/atari/ahdi_writelabel.0 man-obsolete obsolete +./usr/share/man/cat3/i386 man-obsolete obsolete +./usr/share/man/cat3/i386/keycap.0 man-obsolete obsolete +./usr/share/man/cat4/aac.0 man-sys-catman .cat +./usr/share/man/cat4/ac97.0 man-sys-catman .cat +./usr/share/man/cat4/acardide.0 man-sys-catman .cat +./usr/share/man/cat4/aceride.0 man-sys-catman .cat +./usr/share/man/cat4/acorn26/arckbd.0 man-sys-catman .cat +./usr/share/man/cat4/acorn26/arcwskbd.0 man-obsolete obsolete +./usr/share/man/cat4/acorn26/arcwsmouse.0 man-obsolete obsolete +./usr/share/man/cat4/acorn26/cpu.0 man-sys-catman .cat +./usr/share/man/cat4/acorn26/eca.0 man-sys-catman .cat +./usr/share/man/cat4/acorn26/eh.0 man-sys-catman .cat +./usr/share/man/cat4/acorn26/ei.0 man-obsolete obsolete +./usr/share/man/cat4/acorn26/iobus.0 man-sys-catman .cat +./usr/share/man/cat4/acorn26/podulebus.0 man-obsolete obsolete +./usr/share/man/cat4/acorn26/unixbp.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/asc.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/beep.0 man-obsolete obsolete +./usr/share/man/cat4/acorn32/busmouse.0 man-obsolete obsolete +./usr/share/man/cat4/acorn32/cosc.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/csc.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/ie.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/intro.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/iomdkbc.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/kbd.0 man-obsolete obsolete +./usr/share/man/cat4/acorn32/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/lpa.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/lpt.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/mainbus.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/mem.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/opms.0 man-obsolete obsolete +./usr/share/man/cat4/acorn32/podulebus.0 man-obsolete obsolete +./usr/share/man/cat4/acorn32/ptsc.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/qms.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/rpckbd.0 man-obsolete obsolete +./usr/share/man/cat4/acorn32/vidcaudio.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/vidcvideo.0 man-sys-catman .cat +./usr/share/man/cat4/acorn32/wsqms.0 man-obsolete obsolete +./usr/share/man/cat4/acphy.0 man-sys-catman .cat +./usr/share/man/cat4/acpi.0 man-sys-catman .cat +./usr/share/man/cat4/acpiacad.0 man-sys-catman .cat +./usr/share/man/cat4/acpibat.0 man-sys-catman .cat +./usr/share/man/cat4/acpibut.0 man-sys-catman .cat +./usr/share/man/cat4/acpicpu.0 man-sys-catman .cat +./usr/share/man/cat4/acpidalb.0 man-sys-catman .cat +./usr/share/man/cat4/acpiec.0 man-sys-catman .cat +./usr/share/man/cat4/acpiecdt.0 man-sys-catman .cat +./usr/share/man/cat4/acpifan.0 man-sys-catman .cat +./usr/share/man/cat4/acpilid.0 man-sys-catman .cat +./usr/share/man/cat4/acpiout.0 man-sys-catman .cat +./usr/share/man/cat4/acpipmtr.0 man-sys-catman .cat +./usr/share/man/cat4/acpismbus.0 man-sys-catman .cat +./usr/share/man/cat4/acpitz.0 man-sys-catman .cat +./usr/share/man/cat4/acpivga.0 man-sys-catman .cat +./usr/share/man/cat4/acpiwdrt.0 man-sys-catman .cat +./usr/share/man/cat4/acpiwmi.0 man-sys-catman .cat +./usr/share/man/cat4/adb.0 man-sys-catman .cat +./usr/share/man/cat4/adbbt.0 man-sys-catman .cat +./usr/share/man/cat4/adbkbd.0 man-sys-catman .cat +./usr/share/man/cat4/adbms.0 man-sys-catman .cat +./usr/share/man/cat4/adc.0 man-sys-catman .cat +./usr/share/man/cat4/adm1027.0 man-sys-catman .cat +./usr/share/man/cat4/adm1030.0 man-sys-catman .cat +./usr/share/man/cat4/admtemp.0 man-sys-catman .cat +./usr/share/man/cat4/adt7463.0 man-sys-catman .cat +./usr/share/man/cat4/adt7466.0 man-sys-catman .cat +./usr/share/man/cat4/adt7467.0 man-sys-catman .cat +./usr/share/man/cat4/adt7467c.0 man-obsolete obsolete +./usr/share/man/cat4/adt7468.0 man-sys-catman .cat +./usr/share/man/cat4/adt7473.0 man-sys-catman .cat +./usr/share/man/cat4/adt7475.0 man-sys-catman .cat +./usr/share/man/cat4/adt7476.0 man-sys-catman .cat +./usr/share/man/cat4/adv.0 man-sys-catman .cat +./usr/share/man/cat4/adw.0 man-sys-catman .cat +./usr/share/man/cat4/age.0 man-sys-catman .cat +./usr/share/man/cat4/agp.0 man-sys-catman .cat +./usr/share/man/cat4/agr.0 man-sys-catman .cat +./usr/share/man/cat4/aha.0 man-sys-catman .cat +./usr/share/man/cat4/ahb.0 man-sys-catman .cat +./usr/share/man/cat4/ahc.0 man-sys-catman .cat +./usr/share/man/cat4/ahcisata.0 man-sys-catman .cat +./usr/share/man/cat4/ahd.0 man-sys-catman .cat +./usr/share/man/cat4/ai.0 man-sys-catman .cat +./usr/share/man/cat4/aiboost.0 man-sys-catman .cat +./usr/share/man/cat4/aibs.0 man-sys-catman .cat +./usr/share/man/cat4/aic.0 man-sys-catman .cat +./usr/share/man/cat4/akbd.0 man-sys-catman .cat +./usr/share/man/cat4/alc.0 man-sys-catman .cat +./usr/share/man/cat4/ale.0 man-sys-catman .cat +./usr/share/man/cat4/alipm.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/apecs.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/asc.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/cia.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/dwlpx.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/gbus.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/intro.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/irongate.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/jensenio.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/kft.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/lca.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/mcbus.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/mcmem.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/mcpcia.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/sableio.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/tcasic.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/tlsb.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/tlsbmem.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/tsc.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/tsp.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/ttwoga.0 man-sys-catman .cat +./usr/share/man/cat4/alpha/ttwopci.0 man-sys-catman .cat +./usr/share/man/cat4/altmem.0 man-sys-catman .cat +./usr/share/man/cat4/altq.0 man-sys-catman .cat +./usr/share/man/cat4/amdpm.0 man-sys-catman .cat +./usr/share/man/cat4/amdtemp.0 man-sys-catman .cat +./usr/share/man/cat4/amhphy.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/a1k2cp.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/afsc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/ahsc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/amidisplaycc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/atzsc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/bah.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/bppcsc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/clockport.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/console.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/cv3dpb.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/ed.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/efa.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/empb.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/es.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/fdc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/grf.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/grfcl.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/grfcv.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/grfcv3d.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/grfet.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/grfrh.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/grfrt.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/grful.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/gtsc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/intro.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/ite.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/le.0 man-obsolete obsolete +./usr/share/man/cat4/amiga/mem.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/mfcs.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/mgnsc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/mppb.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/p5membar.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/p5pb.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/qn.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/ser.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/wesc.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/xsurf.0 man-sys-catman .cat +./usr/share/man/cat4/amiga/zssc.0 man-sys-catman .cat +./usr/share/man/cat4/amr.0 man-sys-catman .cat +./usr/share/man/cat4/ams.0 man-sys-catman .cat +./usr/share/man/cat4/an.0 man-sys-catman .cat +./usr/share/man/cat4/aps.0 man-sys-catman .cat +./usr/share/man/cat4/arc/intro.0 man-sys-catman .cat +./usr/share/man/cat4/arcmsr.0 man-sys-catman .cat +./usr/share/man/cat4/aria.0 man-sys-catman .cat +./usr/share/man/cat4/arm26/arckbd.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/arcwskbd.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/arcwsmouse.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/cpu.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/dtide.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/ea.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/eca.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/eh.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/ei.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/podulebus.0 man-obsolete obsolete +./usr/share/man/cat4/arm26/unixbp.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/asc.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/autoconf.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/beep.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/com.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/cosc.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/csc.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/ea.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/eb.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/eh.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/em.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/es.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/ie.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/intro.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/kbd.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/kmem.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/lpt.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/mainbus.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/mem.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/oak.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/podulebus.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/ptsc.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/quadmouse.0 man-obsolete obsolete +./usr/share/man/cat4/arm32/wd.0 man-obsolete obsolete +./usr/share/man/cat4/arp.0 man-sys-catman .cat +./usr/share/man/cat4/artsata.0 man-sys-catman .cat +./usr/share/man/cat4/ast.0 man-sys-catman .cat +./usr/share/man/cat4/ata.0 man-sys-catman .cat +./usr/share/man/cat4/atabus.0 man-sys-catman .cat +./usr/share/man/cat4/atalk.0 man-sys-catman .cat +./usr/share/man/cat4/atapi.0 man-sys-catman .cat +./usr/share/man/cat4/atapibus.0 man-sys-catman .cat +./usr/share/man/cat4/ataraid.0 man-sys-catman .cat +./usr/share/man/cat4/atari/ahdi.0 man-obsolete obsolete +./usr/share/man/cat4/atari/et.0 man-sys-catman .cat +./usr/share/man/cat4/atari/floppy.0 man-sys-catman .cat +./usr/share/man/cat4/atari/intro.0 man-sys-catman .cat +./usr/share/man/cat4/atari/ms.0 man-sys-catman .cat +./usr/share/man/cat4/atari/rtc.0 man-sys-catman .cat +./usr/share/man/cat4/ate.0 man-sys-catman .cat +./usr/share/man/cat4/atf-test-case.0 man-atf-catman .cat,atf +./usr/share/man/cat4/ath.0 man-sys-catman .cat +./usr/share/man/cat4/atphy.0 man-sys-catman .cat +./usr/share/man/cat4/atppc.0 man-sys-catman .cat +./usr/share/man/cat4/attimer.0 man-sys-catman .cat +./usr/share/man/cat4/atu.0 man-sys-catman .cat +./usr/share/man/cat4/atw.0 man-sys-catman .cat +./usr/share/man/cat4/au8522.0 man-sys-catman .cat +./usr/share/man/cat4/auacer.0 man-sys-catman .cat +./usr/share/man/cat4/aubtfwl.0 man-sys-catman .cat +./usr/share/man/cat4/audio.0 man-sys-catman .cat +./usr/share/man/cat4/audiocs.0 man-sys-catman .cat +./usr/share/man/cat4/audioctl.0 man-sys-catman .cat +./usr/share/man/cat4/aue.0 man-sys-catman .cat +./usr/share/man/cat4/auich.0 man-sys-catman .cat +./usr/share/man/cat4/auixp.0 man-sys-catman .cat +./usr/share/man/cat4/autri.0 man-sys-catman .cat +./usr/share/man/cat4/auvia.0 man-sys-catman .cat +./usr/share/man/cat4/auvitek.0 man-sys-catman .cat +./usr/share/man/cat4/awi.0 man-sys-catman .cat +./usr/share/man/cat4/axe.0 man-sys-catman .cat +./usr/share/man/cat4/az.0 man-sys-catman .cat +./usr/share/man/cat4/azalia.0 man-sys-catman .cat +./usr/share/man/cat4/battery_pmu.0 man-sys-catman .cat +./usr/share/man/cat4/bba.0 man-sys-catman .cat +./usr/share/man/cat4/bce.0 man-sys-catman .cat +./usr/share/man/cat4/bcsp.0 man-sys-catman .cat +./usr/share/man/cat4/be.0 man-sys-catman .cat +./usr/share/man/cat4/bge.0 man-sys-catman .cat +./usr/share/man/cat4/bha.0 man-sys-catman .cat +./usr/share/man/cat4/bicc.0 man-sys-catman .cat +./usr/share/man/cat4/bio.0 man-sys-catman .cat +./usr/share/man/cat4/bktr.0 man-sys-catman .cat +./usr/share/man/cat4/bluetooth.0 man-sys-catman .cat +./usr/share/man/cat4/bmtphy.0 man-sys-catman .cat +./usr/share/man/cat4/bnx.0 man-sys-catman .cat +./usr/share/man/cat4/boca.0 man-sys-catman .cat +./usr/share/man/cat4/bpf.0 man-sys-catman .cat +./usr/share/man/cat4/brgphy.0 man-sys-catman .cat +./usr/share/man/cat4/bridge.0 man-sys-catman .cat +./usr/share/man/cat4/bt.0 man-sys-catman .cat +./usr/share/man/cat4/bt3c.0 man-sys-catman .cat +./usr/share/man/cat4/btbc.0 man-sys-catman .cat +./usr/share/man/cat4/btdev.0 man-obsolete obsolete +./usr/share/man/cat4/bthidev.0 man-sys-catman .cat +./usr/share/man/cat4/bthset.0 man-obsolete obsolete +./usr/share/man/cat4/bthub.0 man-sys-catman .cat +./usr/share/man/cat4/btkbd.0 man-sys-catman .cat +./usr/share/man/cat4/btmagic.0 man-sys-catman .cat +./usr/share/man/cat4/btms.0 man-sys-catman .cat +./usr/share/man/cat4/btsco.0 man-sys-catman .cat +./usr/share/man/cat4/btuart.0 man-sys-catman .cat +./usr/share/man/cat4/bwi.0 man-sys-catman .cat +./usr/share/man/cat4/ca.0 man-obsolete obsolete +./usr/share/man/cat4/cac.0 man-sys-catman .cat +./usr/share/man/cat4/cardbus.0 man-sys-catman .cat +./usr/share/man/cat4/cardslot.0 man-sys-catman .cat +./usr/share/man/cat4/carp.0 man-sys-catman .cat +./usr/share/man/cat4/cas.0 man-sys-catman .cat +./usr/share/man/cat4/cbb.0 man-sys-catman .cat +./usr/share/man/cat4/ccd.0 man-sys-catman .cat +./usr/share/man/cat4/cd.0 man-sys-catman .cat +./usr/share/man/cat4/cdce.0 man-sys-catman .cat +./usr/share/man/cat4/cec.0 man-sys-catman .cat +./usr/share/man/cat4/cfb.0 man-sys-catman .cat +./usr/share/man/cat4/cgd.0 man-sys-catman .cat +./usr/share/man/cat4/ch.0 man-sys-catman .cat +./usr/share/man/cat4/chipsfb.0 man-sys-catman .cat +./usr/share/man/cat4/ciphy.0 man-sys-catman .cat +./usr/share/man/cat4/cir.0 man-sys-catman .cat +./usr/share/man/cat4/ciss.0 man-sys-catman .cat +./usr/share/man/cat4/clcs.0 man-sys-catman .cat +./usr/share/man/cat4/clct.0 man-sys-catman .cat +./usr/share/man/cat4/clnp.0 man-sys-catman .cat +./usr/share/man/cat4/clockctl.0 man-sys-catman .cat +./usr/share/man/cat4/cltp.0 man-sys-catman .cat +./usr/share/man/cat4/cmdide.0 man-sys-catman .cat +./usr/share/man/cat4/cmpci.0 man-sys-catman .cat +./usr/share/man/cat4/cms.0 man-sys-catman .cat +./usr/share/man/cat4/cnw.0 man-sys-catman .cat +./usr/share/man/cat4/cobalt/gt.0 man-sys-catman .cat +./usr/share/man/cat4/cobalt/intro.0 man-sys-catman .cat +./usr/share/man/cat4/com.0 man-sys-catman .cat +./usr/share/man/cat4/coretemp.0 man-obsolete obsolete +./usr/share/man/cat4/crypto.0 man-sys-catman .cat +./usr/share/man/cat4/cs.0 man-sys-catman .cat +./usr/share/man/cat4/cs80bus.0 man-sys-catman .cat +./usr/share/man/cat4/cuda.0 man-sys-catman .cat +./usr/share/man/cat4/cue.0 man-sys-catman .cat +./usr/share/man/cat4/cx24227.0 man-sys-catman .cat +./usr/share/man/cat4/cy.0 man-sys-catman .cat +./usr/share/man/cat4/cypide.0 man-sys-catman .cat +./usr/share/man/cat4/cz.0 man-sys-catman .cat +./usr/share/man/cat4/daic.0 man-sys-catman .cat +./usr/share/man/cat4/dbCool.0 man-sys-catman .cat +./usr/share/man/cat4/dbcool.0 man-sys-catman .cat +./usr/share/man/cat4/ddb.0 man-sys-catman .cat +./usr/share/man/cat4/ddc.0 man-sys-catman .cat +./usr/share/man/cat4/de.0 man-sys-catman .cat +./usr/share/man/cat4/depca.0 man-sys-catman .cat +./usr/share/man/cat4/dge.0 man-sys-catman .cat +./usr/share/man/cat4/dk.0 man-sys-catman .cat +./usr/share/man/cat4/dm.0 man-sys-catman .cat +./usr/share/man/cat4/dmoverio.0 man-sys-catman .cat +./usr/share/man/cat4/dmphy.0 man-sys-catman .cat +./usr/share/man/cat4/dpt.0 man-sys-catman .cat +./usr/share/man/cat4/dpti.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/aica.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/g2bus.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/gapspci.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/gdrom.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/intro.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/maple.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/mkbd.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/mlcd.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/mmem.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/mms.0 man-sys-catman .cat +./usr/share/man/cat4/dreamcast/pvr.0 man-sys-catman .cat +./usr/share/man/cat4/drm.0 man-sys-catman .cat +./usr/share/man/cat4/drum.0 man-sys-catman .cat +./usr/share/man/cat4/dtide.0 man-sys-catman .cat +./usr/share/man/cat4/dtv.0 man-sys-catman .cat +./usr/share/man/cat4/dtviic.0 man-sys-catman .cat +./usr/share/man/cat4/dty.0 man-sys-catman .cat +./usr/share/man/cat4/ea.0 man-sys-catman .cat +./usr/share/man/cat4/eap.0 man-sys-catman .cat +./usr/share/man/cat4/eb.0 man-sys-catman .cat +./usr/share/man/cat4/ebus.0 man-sys-catman .cat +./usr/share/man/cat4/ec.0 man-sys-catman .cat +./usr/share/man/cat4/edc.0 man-sys-catman .cat +./usr/share/man/cat4/ef.0 man-sys-catman .cat +./usr/share/man/cat4/eg.0 man-sys-catman .cat +./usr/share/man/cat4/ehci.0 man-sys-catman .cat +./usr/share/man/cat4/ei.0 man-sys-catman .cat +./usr/share/man/cat4/eisa.0 man-sys-catman .cat +./usr/share/man/cat4/el.0 man-sys-catman .cat +./usr/share/man/cat4/elmc.0 man-sys-catman .cat +./usr/share/man/cat4/emdtv.0 man-sys-catman .cat +./usr/share/man/cat4/emips/ace.0 man-sys-catman .cat +./usr/share/man/cat4/emips/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/emips/dz.0 man-sys-catman .cat +./usr/share/man/cat4/emips/ebus.0 man-sys-catman .cat +./usr/share/man/cat4/emips/eclock.0 man-sys-catman .cat +./usr/share/man/cat4/emips/enic.0 man-sys-catman .cat +./usr/share/man/cat4/emips/intro.0 man-sys-catman .cat +./usr/share/man/cat4/emuxki.0 man-sys-catman .cat +./usr/share/man/cat4/en.0 man-sys-catman .cat +./usr/share/man/cat4/envsys.0 man-sys-catman .cat +./usr/share/man/cat4/ep.0 man-sys-catman .cat +./usr/share/man/cat4/epic.0 man-sys-catman .cat +./usr/share/man/cat4/esa.0 man-sys-catman .cat +./usr/share/man/cat4/esh.0 man-sys-catman .cat +./usr/share/man/cat4/esiop.0 man-sys-catman .cat +./usr/share/man/cat4/esis.0 man-sys-catman .cat +./usr/share/man/cat4/esl.0 man-obsolete obsolete +./usr/share/man/cat4/esm.0 man-sys-catman .cat +./usr/share/man/cat4/eso.0 man-sys-catman .cat +./usr/share/man/cat4/esp.0 man-sys-catman .cat +./usr/share/man/cat4/ess.0 man-sys-catman .cat +./usr/share/man/cat4/et.0 man-sys-catman .cat +./usr/share/man/cat4/etherip.0 man-sys-catman .cat +./usr/share/man/cat4/etphy.0 man-sys-catman .cat +./usr/share/man/cat4/evbarm/epgpio.0 man-sys-catman .cat +./usr/share/man/cat4/evbarm/intro.0 man-sys-catman .cat +./usr/share/man/cat4/evbarm/iopaau.0 man-sys-catman .cat +./usr/share/man/cat4/evbarm/iopwdog.0 man-sys-catman .cat +./usr/share/man/cat4/evbmips/aupci.0 man-sys-catman .cat +./usr/share/man/cat4/evbmips/intro.0 man-sys-catman .cat +./usr/share/man/cat4/evbppc/cpc.0 man-sys-catman .cat +./usr/share/man/cat4/evbppc/intro_pmppc.0 man-sys-catman .cat +./usr/share/man/cat4/evbppc/mainbus.0 man-sys-catman .cat +./usr/share/man/cat4/evbppc/rtc.0 man-sys-catman .cat +./usr/share/man/cat4/ex.0 man-sys-catman .cat +./usr/share/man/cat4/exphy.0 man-sys-catman .cat +./usr/share/man/cat4/faith.0 man-sys-catman .cat +./usr/share/man/cat4/fast_ipsec.0 man-sys-catman .cat +./usr/share/man/cat4/fd.0 man-sys-catman .cat +./usr/share/man/cat4/fea.0 man-sys-catman .cat +./usr/share/man/cat4/filemon.0 man-sys-catman .cat +./usr/share/man/cat4/finsio.0 man-sys-catman .cat +./usr/share/man/cat4/flash.0 man-sys-catman .cat +./usr/share/man/cat4/fms.0 man-sys-catman .cat +./usr/share/man/cat4/fmv.0 man-sys-catman .cat +./usr/share/man/cat4/fpa.0 man-sys-catman .cat +./usr/share/man/cat4/fss.0 man-sys-catman .cat +./usr/share/man/cat4/fssbs.0 man-obsolete obsolete +./usr/share/man/cat4/fta.0 man-sys-catman .cat +./usr/share/man/cat4/fujbp.0 man-sys-catman .cat +./usr/share/man/cat4/fujhk.0 man-sys-catman .cat +./usr/share/man/cat4/fujitsu.0 man-obsolete obsolete +./usr/share/man/cat4/fwhrng.0 man-obsolete obsolete +./usr/share/man/cat4/fwip.0 man-sys-catman .cat +./usr/share/man/cat4/fwiso.0 man-obsolete obsolete +./usr/share/man/cat4/fwohci.0 man-sys-catman .cat +./usr/share/man/cat4/fxp.0 man-sys-catman .cat +./usr/share/man/cat4/g760a.0 man-sys-catman .cat +./usr/share/man/cat4/gcscaudio.0 man-sys-catman .cat +./usr/share/man/cat4/gem.0 man-sys-catman .cat +./usr/share/man/cat4/genfb.0 man-sys-catman .cat +./usr/share/man/cat4/gentbi.0 man-sys-catman .cat +./usr/share/man/cat4/geodeide.0 man-sys-catman .cat +./usr/share/man/cat4/gif.0 man-sys-catman .cat +./usr/share/man/cat4/glxtphy.0 man-sys-catman .cat +./usr/share/man/cat4/gphyter.0 man-sys-catman .cat +./usr/share/man/cat4/gpib.0 man-sys-catman .cat +./usr/share/man/cat4/gpio.0 man-sys-catman .cat +./usr/share/man/cat4/gpioiic.0 man-sys-catman .cat +./usr/share/man/cat4/gpiolock.0 man-sys-catman .cat +./usr/share/man/cat4/gpioow.0 man-sys-catman .cat +./usr/share/man/cat4/gpiopwm.0 man-sys-catman .cat +./usr/share/man/cat4/gpiosim.0 man-sys-catman .cat +./usr/share/man/cat4/gre.0 man-sys-catman .cat +./usr/share/man/cat4/gsip.0 man-sys-catman .cat +./usr/share/man/cat4/gtp.0 man-sys-catman .cat +./usr/share/man/cat4/gus.0 man-sys-catman .cat +./usr/share/man/cat4/guspnp.0 man-sys-catman .cat +./usr/share/man/cat4/hcide.0 man-sys-catman .cat +./usr/share/man/cat4/hdafg.0 man-sys-catman .cat +./usr/share/man/cat4/hdaudio.0 man-sys-catman .cat +./usr/share/man/cat4/hdaudiobus.0 man-sys-catman .cat +./usr/share/man/cat4/hifn.0 man-sys-catman .cat +./usr/share/man/cat4/hil.0 man-sys-catman .cat +./usr/share/man/cat4/hilid.0 man-sys-catman .cat +./usr/share/man/cat4/hilkbd.0 man-sys-catman .cat +./usr/share/man/cat4/hilms.0 man-sys-catman .cat +./usr/share/man/cat4/hme.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/apci.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/cons.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/ct.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/dca.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/dcl.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/dcm.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/dio.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/dnkbd.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/dv.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/dvbox.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/fhpib.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/frodo.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/gb.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/gbox.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/grf.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/hil.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/hpib.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/hpibbus.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/hyper.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/intio.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/intro.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/ite.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/le.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/mem.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/nhpib.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/oscsi.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/ppi.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/rb.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/rbox.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/rd.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/rmp.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/rtc.0 man-sys-catman .cat +./usr/share/man/cat4/hp300/tc.0 man-obsolete obsolete +./usr/share/man/cat4/hp300/topcat.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/asp.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/astro.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/cpu.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/dino.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/elroy.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/gsc.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/gsckbc.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/harmony.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/intro.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/io.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/lasi.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/lcd.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/mem.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/mongoose.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/pdc.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/phantomas.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/ssio.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/uturn.0 man-sys-catman .cat +./usr/share/man/cat4/hp700/wax.0 man-sys-catman .cat +./usr/share/man/cat4/hpacel.0 man-sys-catman .cat +./usr/share/man/cat4/hpcarm/intro.0 man-sys-catman .cat +./usr/share/man/cat4/hpcarm/j720kbd.0 man-sys-catman .cat +./usr/share/man/cat4/hpcarm/j720lcd.0 man-sys-catman .cat +./usr/share/man/cat4/hpcarm/j720tp.0 man-sys-catman .cat +./usr/share/man/cat4/hpcmips/teliosio.0 man-sys-catman .cat +./usr/share/man/cat4/hpcsh/intro.0 man-sys-catman .cat +./usr/share/man/cat4/hpcsh/j6x0lcd.0 man-sys-catman .cat +./usr/share/man/cat4/hpcsh/j6x0tp.0 man-sys-catman .cat +./usr/share/man/cat4/hpcsh/psh3lcd.0 man-sys-catman .cat +./usr/share/man/cat4/hpcsh/psh3tp.0 man-sys-catman .cat +./usr/share/man/cat4/hpqlb.0 man-sys-catman .cat +./usr/share/man/cat4/hptide.0 man-sys-catman .cat +./usr/share/man/cat4/i386/PCIBIOS.0 man-sys-catman .cat +./usr/share/man/cat4/i386/apm.0 man-sys-catman .cat +./usr/share/man/cat4/i386/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/i386/busmouse.0 man-obsolete obsolete +./usr/share/man/cat4/i386/cmos.0 man-sys-catman .cat +./usr/share/man/cat4/i386/com.0 man-obsolete obsolete +./usr/share/man/cat4/i386/cons.0 man-sys-catman .cat +./usr/share/man/cat4/i386/console.0 man-sys-catman .cat +./usr/share/man/cat4/i386/ed.0 man-sys-catman .cat +./usr/share/man/cat4/i386/elanpar.0 man-sys-catman .cat +./usr/share/man/cat4/i386/elanpex.0 man-sys-catman .cat +./usr/share/man/cat4/i386/elansc.0 man-sys-catman .cat +./usr/share/man/cat4/i386/fdc.0 man-obsolete obsolete +./usr/share/man/cat4/i386/gcscide.0 man-sys-catman .cat +./usr/share/man/cat4/i386/gcscpcib.0 man-sys-catman .cat +./usr/share/man/cat4/i386/geodecntr.0 man-sys-catman .cat +./usr/share/man/cat4/i386/geodewdog.0 man-sys-catman .cat +./usr/share/man/cat4/i386/glxsb.0 man-sys-catman .cat +./usr/share/man/cat4/i386/gscpcib.0 man-sys-catman .cat +./usr/share/man/cat4/i386/ie.0 man-obsolete obsolete +./usr/share/man/cat4/i386/intro.0 man-sys-catman .cat +./usr/share/man/cat4/i386/io.0 man-sys-catman .cat +./usr/share/man/cat4/i386/joy.0 man-obsolete obsolete +./usr/share/man/cat4/i386/kmem.0 man-obsolete obsolete +./usr/share/man/cat4/i386/le.0 man-obsolete obsolete +./usr/share/man/cat4/i386/lms.0 man-sys-catman .cat +./usr/share/man/cat4/i386/lpa.0 man-obsolete obsolete +./usr/share/man/cat4/i386/lpt.0 man-obsolete obsolete +./usr/share/man/cat4/i386/mem.0 man-obsolete obsolete +./usr/share/man/cat4/i386/mms.0 man-sys-catman .cat +./usr/share/man/cat4/i386/ndis.0 man-sys-catman .cat +./usr/share/man/cat4/i386/npx.0 man-sys-catman .cat +./usr/share/man/cat4/i386/olms.0 man-obsolete obsolete +./usr/share/man/cat4/i386/omms.0 man-obsolete obsolete +./usr/share/man/cat4/i386/opms.0 man-obsolete obsolete +./usr/share/man/cat4/i386/pcibios.0 man-sys-catman .cat +./usr/share/man/cat4/i386/pcvt.0 man-obsolete obsolete +./usr/share/man/cat4/i386/pms.0 man-obsolete obsolete +./usr/share/man/cat4/i386/pnpbios.0 man-sys-catman .cat +./usr/share/man/cat4/i386/rdcide.0 man-sys-catman .cat +./usr/share/man/cat4/i386/rdcpcib.0 man-sys-catman .cat +./usr/share/man/cat4/i386/sony.0 man-obsolete obsolete +./usr/share/man/cat4/i386/speaker.0 man-obsolete obsolete +./usr/share/man/cat4/i386/spic.0 man-sys-catman .cat +./usr/share/man/cat4/i386/vald.0 man-obsolete obsolete +./usr/share/man/cat4/i386/vesafb.0 man-obsolete obsolete +./usr/share/man/cat4/i386/viac7temp.0 man-sys-catman .cat +./usr/share/man/cat4/i4b.0 man-obsolete obsolete +./usr/share/man/cat4/i4bctl.0 man-obsolete obsolete +./usr/share/man/cat4/i4bipr.0 man-obsolete obsolete +./usr/share/man/cat4/i4bisp.0 man-obsolete obsolete +./usr/share/man/cat4/i4bisppp.0 man-obsolete obsolete +./usr/share/man/cat4/i4brbch.0 man-obsolete obsolete +./usr/share/man/cat4/i4btel.0 man-obsolete obsolete +./usr/share/man/cat4/i4btrc.0 man-obsolete obsolete +./usr/share/man/cat4/i915drm.0 man-sys-catman .cat +./usr/share/man/cat4/iavc.0 man-sys-catman .cat +./usr/share/man/cat4/ibmhawk.0 man-sys-catman .cat +./usr/share/man/cat4/ichlpcib.0 man-obsolete obsolete +./usr/share/man/cat4/ichsmb.0 man-sys-catman .cat +./usr/share/man/cat4/icmp.0 man-sys-catman .cat +./usr/share/man/cat4/icmp6.0 man-sys-catman .cat +./usr/share/man/cat4/icp.0 man-sys-catman .cat +./usr/share/man/cat4/icpsp.0 man-sys-catman .cat +./usr/share/man/cat4/icsphy.0 man-sys-catman .cat +./usr/share/man/cat4/idp.0 man-obsolete obsolete +./usr/share/man/cat4/iee.0 man-sys-catman .cat +./usr/share/man/cat4/ieee1394if.0 man-sys-catman .cat +./usr/share/man/cat4/ieee80211.0 man-sys-catman .cat +./usr/share/man/cat4/ifmedia.0 man-sys-catman .cat +./usr/share/man/cat4/ifpci.0 man-sys-catman .cat +./usr/share/man/cat4/igphy.0 man-sys-catman .cat +./usr/share/man/cat4/igsfb.0 man-sys-catman .cat +./usr/share/man/cat4/iha.0 man-sys-catman .cat +./usr/share/man/cat4/ihphy.0 man-sys-catman .cat +./usr/share/man/cat4/iic.0 man-sys-catman .cat +./usr/share/man/cat4/ikphy.0 man-sys-catman .cat +./usr/share/man/cat4/imp.0 man-obsolete obsolete +./usr/share/man/cat4/inet.0 man-sys-catman .cat +./usr/share/man/cat4/inet6.0 man-sys-catman .cat +./usr/share/man/cat4/inphy.0 man-sys-catman .cat +./usr/share/man/cat4/intersil7170.0 man-sys-catman .cat +./usr/share/man/cat4/ioasic.0 man-sys-catman .cat +./usr/share/man/cat4/ioat.0 man-sys-catman .cat +./usr/share/man/cat4/iop.0 man-sys-catman .cat +./usr/share/man/cat4/iophy.0 man-sys-catman .cat +./usr/share/man/cat4/iopsp.0 man-sys-catman .cat +./usr/share/man/cat4/ip.0 man-sys-catman .cat +./usr/share/man/cat4/ip6.0 man-sys-catman .cat +./usr/share/man/cat4/ipf.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat4/ipfilter.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat4/ipip.0 man-obsolete obsolete +./usr/share/man/cat4/ipkdb.0 man-sys-catman .cat +./usr/share/man/cat4/ipl.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat4/ipmi.0 man-sys-catman .cat +./usr/share/man/cat4/ipnat.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat4/ippp.0 man-sys-catman .cat +./usr/share/man/cat4/ipsec.0 man-sys-catman .cat +./usr/share/man/cat4/ipw.0 man-sys-catman .cat +./usr/share/man/cat4/irda.0 man-sys-catman .cat +./usr/share/man/cat4/irframe.0 man-sys-catman .cat +./usr/share/man/cat4/irframetty.0 man-sys-catman .cat +./usr/share/man/cat4/irip.0 man-sys-catman .cat +./usr/share/man/cat4/irmce.0 man-sys-catman .cat +./usr/share/man/cat4/isa.0 man-sys-catman .cat +./usr/share/man/cat4/isabeep.0 man-sys-catman .cat +./usr/share/man/cat4/isapnp.0 man-sys-catman .cat +./usr/share/man/cat4/isdn.0 man-sys-catman .cat +./usr/share/man/cat4/isdnbchan.0 man-sys-catman .cat +./usr/share/man/cat4/isdncapi.0 man-sys-catman .cat +./usr/share/man/cat4/isdnctl.0 man-sys-catman .cat +./usr/share/man/cat4/isdntel.0 man-sys-catman .cat +./usr/share/man/cat4/isdntrc.0 man-sys-catman .cat +./usr/share/man/cat4/isic.0 man-sys-catman .cat +./usr/share/man/cat4/iso.0 man-sys-catman .cat +./usr/share/man/cat4/isp.0 man-sys-catman .cat +./usr/share/man/cat4/isv.0 man-sys-catman .cat +./usr/share/man/cat4/it.0 man-obsolete obsolete +./usr/share/man/cat4/iteide.0 man-sys-catman .cat +./usr/share/man/cat4/itesio.0 man-sys-catman .cat +./usr/share/man/cat4/iwi.0 man-sys-catman .cat +./usr/share/man/cat4/iwic.0 man-sys-catman .cat +./usr/share/man/cat4/iwn.0 man-sys-catman .cat +./usr/share/man/cat4/ix.0 man-sys-catman .cat +./usr/share/man/cat4/ixg.0 man-sys-catman .cat +./usr/share/man/cat4/ixpide.0 man-sys-catman .cat +./usr/share/man/cat4/iy.0 man-sys-catman .cat +./usr/share/man/cat4/jme.0 man-sys-catman .cat +./usr/share/man/cat4/jmide.0 man-sys-catman .cat +./usr/share/man/cat4/joy.0 man-sys-catman .cat +./usr/share/man/cat4/kame_ipsec.0 man-obsolete obsolete +./usr/share/man/cat4/kloader.0 man-sys-catman .cat +./usr/share/man/cat4/kse.0 man-sys-catman .cat +./usr/share/man/cat4/ksyms.0 man-sys-catman .cat +./usr/share/man/cat4/kttcp.0 man-sys-catman .cat +./usr/share/man/cat4/kue.0 man-sys-catman .cat +./usr/share/man/cat4/lc.0 man-sys-catman .cat +./usr/share/man/cat4/ld.0 man-sys-catman .cat +./usr/share/man/cat4/le.0 man-sys-catman .cat +./usr/share/man/cat4/lg3303.0 man-sys-catman .cat +./usr/share/man/cat4/lii.0 man-sys-catman .cat +./usr/share/man/cat4/lkm.0 man-obsolete obsolete +./usr/share/man/cat4/lm.0 man-sys-catman .cat +./usr/share/man/cat4/lmc.0 man-sys-catman .cat +./usr/share/man/cat4/lmtemp.0 man-sys-catman .cat +./usr/share/man/cat4/lo.0 man-sys-catman .cat +./usr/share/man/cat4/lsu.0 man-obsolete obsolete +./usr/share/man/cat4/lxtphy.0 man-sys-catman .cat +./usr/share/man/cat4/m25p.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/adb.0 man-obsolete obsolete +./usr/share/man/cat4/mac68k/ae.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/cpi.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/intro.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/iwm.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/mainbus.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/mc.0 man-obsolete obsolete +./usr/share/man/cat4/mac68k/mem.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/netdock.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/obio.0 man-sys-catman .cat +./usr/share/man/cat4/mac68k/sn.0 man-obsolete obsolete +./usr/share/man/cat4/mac68k/zsc.0 man-sys-catman .cat +./usr/share/man/cat4/mach64drm.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/awacs.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/bm.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/gm.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/intro.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/mc.0 man-obsolete obsolete +./usr/share/man/cat4/macppc/mesh.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/obio.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/pbms.0 man-sys-catman .cat +./usr/share/man/cat4/macppc/snapper.0 man-sys-catman .cat +./usr/share/man/cat4/mainbus.0 man-sys-catman .cat +./usr/share/man/cat4/makphy.0 man-sys-catman .cat +./usr/share/man/cat4/malo.0 man-sys-catman .cat +./usr/share/man/cat4/mbe.0 man-sys-catman .cat +./usr/share/man/cat4/mc.0 man-sys-catman .cat +./usr/share/man/cat4/mca.0 man-sys-catman .cat +./usr/share/man/cat4/mcclock.0 man-sys-catman .cat +./usr/share/man/cat4/mcd.0 man-sys-catman .cat +./usr/share/man/cat4/md.0 man-sys-catman .cat +./usr/share/man/cat4/mfb.0 man-sys-catman .cat +./usr/share/man/cat4/mfi.0 man-sys-catman .cat +./usr/share/man/cat4/mgadrm.0 man-sys-catman .cat +./usr/share/man/cat4/mhzc.0 man-sys-catman .cat +./usr/share/man/cat4/midi.0 man-sys-catman .cat +./usr/share/man/cat4/mii.0 man-sys-catman .cat +./usr/share/man/cat4/mixer.0 man-sys-catman .cat +./usr/share/man/cat4/mk48txx.0 man-sys-catman .cat +./usr/share/man/cat4/mlx.0 man-sys-catman .cat +./usr/share/man/cat4/mly.0 man-sys-catman .cat +./usr/share/man/cat4/module.0 man-obsolete obsolete +./usr/share/man/cat4/mpls.0 man-sys-catman .cat +./usr/share/man/cat4/mpii.0 man-sys-catman .cat +./usr/share/man/cat4/mpt.0 man-sys-catman .cat +./usr/share/man/cat4/mpu.0 man-sys-catman .cat +./usr/share/man/cat4/mr.0 man-obsolete obsolete +./usr/share/man/cat4/msk.0 man-sys-catman .cat +./usr/share/man/cat4/mskc.0 man-sys-catman .cat +./usr/share/man/cat4/mt2131.0 man-sys-catman .cat +./usr/share/man/cat4/mtd.0 man-sys-catman .cat +./usr/share/man/cat4/mtio.0 man-sys-catman .cat +./usr/share/man/cat4/multicast.0 man-sys-catman .cat +./usr/share/man/cat4/music.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/clmpcc.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/clock.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/ie.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/intro.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/le.0 man-obsolete obsolete +./usr/share/man/cat4/mvme68k/lpa.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/lpt.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/mainbus.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/mem.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/memc.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/ncrsc.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/pcc.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/pcctwo.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/wdsc.0 man-sys-catman .cat +./usr/share/man/cat4/mvme68k/zsc.0 man-sys-catman .cat +./usr/share/man/cat4/mvsata.0 man-sys-catman .cat +./usr/share/man/cat4/nadb.0 man-sys-catman .cat +./usr/share/man/cat4/nca.0 man-sys-catman .cat +./usr/share/man/cat4/ncr.0 man-obsolete obsolete +./usr/share/man/cat4/ne.0 man-sys-catman .cat +./usr/share/man/cat4/nele.0 man-sys-catman .cat +./usr/share/man/cat4/neo.0 man-sys-catman .cat +./usr/share/man/cat4/netintro.0 man-sys-catman .cat +./usr/share/man/cat4/netsmb.0 man-sys-catman .cat +./usr/share/man/cat4/networking.0 man-sys-catman .cat +./usr/share/man/cat4/nfe.0 man-sys-catman .cat +./usr/share/man/cat4/nfsmb.0 man-sys-catman .cat +./usr/share/man/cat4/nfsmbc.0 man-sys-catman .cat +./usr/share/man/cat4/njata.0 man-sys-catman .cat +./usr/share/man/cat4/njs.0 man-sys-catman .cat +./usr/share/man/cat4/ns.0 man-obsolete obsolete +./usr/share/man/cat4/nsclpcsio.0 man-sys-catman .cat +./usr/share/man/cat4/nside.0 man-sys-catman .cat +./usr/share/man/cat4/nsip.0 man-obsolete obsolete +./usr/share/man/cat4/nsmb.0 man-sys-catman .cat +./usr/share/man/cat4/nsp.0 man-sys-catman .cat +./usr/share/man/cat4/nsphy.0 man-sys-catman .cat +./usr/share/man/cat4/nsphyter.0 man-sys-catman .cat +./usr/share/man/cat4/ntwo.0 man-sys-catman .cat +./usr/share/man/cat4/ntwoc.0 man-sys-catman .cat +./usr/share/man/cat4/null.0 man-sys-catman .cat +./usr/share/man/cat4/nxt2k.0 man-sys-catman .cat +./usr/share/man/cat4/oak.0 man-sys-catman .cat +./usr/share/man/cat4/oboe.0 man-sys-catman .cat +./usr/share/man/cat4/ofisa.0 man-sys-catman .cat +./usr/share/man/cat4/ohci.0 man-sys-catman .cat +./usr/share/man/cat4/onewire.0 man-sys-catman .cat +./usr/share/man/cat4/oosiop.0 man-sys-catman .cat +./usr/share/man/cat4/opl.0 man-sys-catman .cat +./usr/share/man/cat4/opms.0 man-obsolete obsolete +./usr/share/man/cat4/optiide.0 man-sys-catman .cat +./usr/share/man/cat4/options.0 man-sys-catman .cat +./usr/share/man/cat4/osiop.0 man-sys-catman .cat +./usr/share/man/cat4/otus.0 man-sys-catman .cat +./usr/share/man/cat4/owtemp.0 man-sys-catman .cat +./usr/share/man/cat4/pad.0 man-sys-catman .cat +./usr/share/man/cat4/pas.0 man-sys-catman .cat +./usr/share/man/cat4/pc532/intro.0 man-obsolete obsolete +./usr/share/man/cat4/pc532/lpt.0 man-obsolete obsolete +./usr/share/man/cat4/pc532/mem.0 man-obsolete obsolete +./usr/share/man/cat4/pc532/ncr.0 man-obsolete obsolete +./usr/share/man/cat4/pc532/plip.0 man-obsolete obsolete +./usr/share/man/cat4/pc532/scn.0 man-obsolete obsolete +./usr/share/man/cat4/pcdisplay.0 man-sys-catman .cat +./usr/share/man/cat4/pcf8563rtc.0 man-sys-catman .cat +./usr/share/man/cat4/pchb.0 man-sys-catman .cat +./usr/share/man/cat4/pci.0 man-sys-catman .cat +./usr/share/man/cat4/pciback.0 man-sys-catman .cat +./usr/share/man/cat4/pcic.0 man-sys-catman .cat +./usr/share/man/cat4/pciide.0 man-sys-catman .cat +./usr/share/man/cat4/pckbc.0 man-sys-catman .cat +./usr/share/man/cat4/pckbd.0 man-sys-catman .cat +./usr/share/man/cat4/pcmcia.0 man-sys-catman .cat +./usr/share/man/cat4/pcmcom.0 man-sys-catman .cat +./usr/share/man/cat4/pcn.0 man-sys-catman .cat +./usr/share/man/cat4/pcppi.0 man-sys-catman .cat +./usr/share/man/cat4/pcscp.0 man-sys-catman .cat +./usr/share/man/cat4/pcweasel.0 man-sys-catman .cat +./usr/share/man/cat4/pdcide.0 man-sys-catman .cat +./usr/share/man/cat4/pdcsata.0 man-sys-catman .cat +./usr/share/man/cat4/pf.0 man-pf-catman pf,.cat +./usr/share/man/cat4/pflog.0 man-pf-catman pf,.cat +./usr/share/man/cat4/pfsync.0 man-pf-catman pf,.cat +./usr/share/man/cat4/phy.0 man-sys-catman .cat +./usr/share/man/cat4/piixide.0 man-sys-catman .cat +./usr/share/man/cat4/piixpcib.0 man-sys-catman .cat +./usr/share/man/cat4/piixpm.0 man-sys-catman .cat +./usr/share/man/cat4/pim.0 man-sys-catman .cat +./usr/share/man/cat4/plip.0 man-sys-catman .cat +./usr/share/man/cat4/pmax/asc.0 man-sys-catman .cat +./usr/share/man/cat4/pmax/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/pmax/dc.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/dtop.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/fb.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/ibus.0 man-sys-catman .cat +./usr/share/man/cat4/pmax/intro.0 man-sys-catman .cat +./usr/share/man/cat4/pmax/ioasic.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/le.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/lk201.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/pm.0 man-sys-catman .cat +./usr/share/man/cat4/pmax/px.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/scc.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/sii.0 man-sys-catman .cat +./usr/share/man/cat4/pmax/tc.0 man-obsolete obsolete +./usr/share/man/cat4/pmax/xcfb.0 man-sys-catman .cat +./usr/share/man/cat4/pmppc/cpc.0 man-obsolete obsolete +./usr/share/man/cat4/pmppc/intro.0 man-obsolete obsolete +./usr/share/man/cat4/pmppc/mainbus.0 man-obsolete obsolete +./usr/share/man/cat4/pmppc/rtc.0 man-obsolete obsolete +./usr/share/man/cat4/pms.0 man-sys-catman .cat +./usr/share/man/cat4/pmsi.0 man-sys-catman .cat +./usr/share/man/cat4/pmu.0 man-sys-catman .cat +./usr/share/man/cat4/pnaphy.0 man-sys-catman .cat +./usr/share/man/cat4/podulebus.0 man-sys-catman .cat +./usr/share/man/cat4/ppb.0 man-sys-catman .cat +./usr/share/man/cat4/ppbus.0 man-sys-catman .cat +./usr/share/man/cat4/ppi.0 man-obsolete obsolete +./usr/share/man/cat4/ppp.0 man-sys-catman .cat +./usr/share/man/cat4/pppoe.0 man-sys-catman .cat +./usr/share/man/cat4/prep/intro.0 man-sys-catman .cat +./usr/share/man/cat4/prep/nvram.0 man-sys-catman .cat +./usr/share/man/cat4/pseye.0 man-sys-catman .cat +./usr/share/man/cat4/pss.0 man-obsolete obsolete +./usr/share/man/cat4/ptm.0 man-sys-catman .cat +./usr/share/man/cat4/pty.0 man-sys-catman .cat +./usr/share/man/cat4/puc.0 man-sys-catman .cat +./usr/share/man/cat4/pud.0 man-sys-catman .cat +./usr/share/man/cat4/puffs.0 man-puffs-catman .cat +./usr/share/man/cat4/pwdog.0 man-sys-catman .cat +./usr/share/man/cat4/px.0 man-sys-catman .cat +./usr/share/man/cat4/pxg.0 man-sys-catman .cat +./usr/share/man/cat4/qe.0 man-sys-catman .cat +./usr/share/man/cat4/qec.0 man-sys-catman .cat +./usr/share/man/cat4/qsphy.0 man-sys-catman .cat +./usr/share/man/cat4/r128drm.0 man-sys-catman .cat +./usr/share/man/cat4/radeondrm.0 man-sys-catman .cat +./usr/share/man/cat4/radio.0 man-sys-catman .cat +./usr/share/man/cat4/raid.0 man-sys-catman .cat +./usr/share/man/cat4/ral.0 man-sys-catman .cat +./usr/share/man/cat4/random.0 man-sys-catman .cat +./usr/share/man/cat4/rasterconsole.0 man-sys-catman .cat +./usr/share/man/cat4/ray.0 man-sys-catman .cat +./usr/share/man/cat4/rcons.0 man-sys-catman .cat +./usr/share/man/cat4/rdcphy.0 man-sys-catman .cat +./usr/share/man/cat4/re.0 man-sys-catman .cat +./usr/share/man/cat4/rgephy.0 man-sys-catman .cat +./usr/share/man/cat4/rl.0 man-obsolete obsolete +./usr/share/man/cat4/rlphy.0 man-sys-catman .cat +./usr/share/man/cat4/rmidi.0 man-sys-catman .cat +./usr/share/man/cat4/rnd.0 man-sys-catman .cat +./usr/share/man/cat4/route.0 man-sys-catman .cat +./usr/share/man/cat4/rs5c372rtc.0 man-sys-catman .cat +./usr/share/man/cat4/rt.0 man-sys-catman .cat +./usr/share/man/cat4/rtfps.0 man-sys-catman .cat +./usr/share/man/cat4/rtii.0 man-sys-catman .cat +./usr/share/man/cat4/rtk.0 man-sys-catman .cat +./usr/share/man/cat4/rtpphy.0 man-obsolete obsolete +./usr/share/man/cat4/rtw.0 man-sys-catman .cat +./usr/share/man/cat4/rum.0 man-sys-catman .cat +./usr/share/man/cat4/run.0 man-sys-catman .cat +./usr/share/man/cat4/s390rtc.0 man-sys-catman .cat +./usr/share/man/cat4/sandpoint/nhpow.0 man-sys-catman .cat +./usr/share/man/cat4/sandpoint/satmgr.0 man-sys-catman .cat +./usr/share/man/cat4/satalink.0 man-sys-catman .cat +./usr/share/man/cat4/savagedrm.0 man-sys-catman .cat +./usr/share/man/cat4/sb.0 man-sys-catman .cat +./usr/share/man/cat4/sbp.0 man-sys-catman .cat +./usr/share/man/cat4/sbt.0 man-sys-catman .cat +./usr/share/man/cat4/sbus.0 man-sys-catman .cat +./usr/share/man/cat4/sc.0 man-sys-catman .cat +./usr/share/man/cat4/scc.0 man-sys-catman .cat +./usr/share/man/cat4/schide.0 man-sys-catman .cat +./usr/share/man/cat4/scsi.0 man-sys-catman .cat +./usr/share/man/cat4/scsibus.0 man-sys-catman .cat +./usr/share/man/cat4/sd.0 man-sys-catman .cat +./usr/share/man/cat4/sdhc.0 man-sys-catman .cat +./usr/share/man/cat4/sdmmc.0 man-sys-catman .cat +./usr/share/man/cat4/sdtemp.0 man-sys-catman .cat +./usr/share/man/cat4/se.0 man-sys-catman .cat +./usr/share/man/cat4/sea.0 man-sys-catman .cat +./usr/share/man/cat4/sec.0 man-sys-catman .cat +./usr/share/man/cat4/seeprom.0 man-sys-catman .cat +./usr/share/man/cat4/sem.0 man-sys-catman .cat +./usr/share/man/cat4/sequencer.0 man-sys-catman .cat +./usr/share/man/cat4/ses.0 man-sys-catman .cat +./usr/share/man/cat4/sf.0 man-sys-catman .cat +./usr/share/man/cat4/sf2r.0 man-sys-catman .cat +./usr/share/man/cat4/sfb.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/crime.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/dpclock.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/dsclock.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/gio.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/giopci.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/grtwo.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/haltwo.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/hpc.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/imc.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/intro.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/light.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/mace.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/mavb.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/mec.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/newport.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/pic.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/sq.0 man-sys-catman .cat +./usr/share/man/cat4/sgimips/wdsc.0 man-sys-catman .cat +./usr/share/man/cat4/sgsmix.0 man-sys-catman .cat +./usr/share/man/cat4/shb.0 man-sys-catman .cat +./usr/share/man/cat4/shmif.0 man-sys-catman .cat +./usr/share/man/cat4/shpcic.0 man-sys-catman .cat +./usr/share/man/cat4/si.0 man-sys-catman .cat +./usr/share/man/cat4/siisata.0 man-sys-catman .cat +./usr/share/man/cat4/siop.0 man-sys-catman .cat +./usr/share/man/cat4/sip.0 man-sys-catman .cat +./usr/share/man/cat4/sisdrm.0 man-sys-catman .cat +./usr/share/man/cat4/siside.0 man-sys-catman .cat +./usr/share/man/cat4/sk.0 man-sys-catman .cat +./usr/share/man/cat4/skc.0 man-sys-catman .cat +./usr/share/man/cat4/sl.0 man-sys-catman .cat +./usr/share/man/cat4/slhci.0 man-sys-catman .cat +./usr/share/man/cat4/slide.0 man-sys-catman .cat +./usr/share/man/cat4/slip.0 man-sys-catman .cat +./usr/share/man/cat4/sm.0 man-sys-catman .cat +./usr/share/man/cat4/smsc.0 man-sys-catman .cat +./usr/share/man/cat4/smscmon.0 man-sys-catman .cat +./usr/share/man/cat4/smsh.0 man-sys-catman .cat +./usr/share/man/cat4/sn.0 man-sys-catman .cat +./usr/share/man/cat4/sony.0 man-sys-catman .cat +./usr/share/man/cat4/sound.0 man-sys-catman .cat +./usr/share/man/cat4/sp.0 man-obsolete obsolete +./usr/share/man/cat4/sparc/audioamd.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/auxreg.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/bpp.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/bwtwo.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/cgeight.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/cgfour.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/cgfourteen.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/cgsix.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/cgthree.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/cgtwo.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/clock.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/dbri.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/fd.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/fdc.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/ie.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/intro.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/kbd.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/le.0 man-obsolete obsolete +./usr/share/man/cat4/sparc/magma.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/mem.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/ms.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/nell.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/openprom.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/pnozz.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/tctrl.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/tcx.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/timer.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/tslot.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/xd.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/xy.0 man-sys-catman .cat +./usr/share/man/cat4/sparc/zx.0 man-sys-catman .cat +./usr/share/man/cat4/sparc64/envctrl.0 man-sys-catman .cat +./usr/share/man/cat4/sparc64/fdc.0 man-sys-catman .cat +./usr/share/man/cat4/sparc64/ffb.0 man-sys-catman .cat +./usr/share/man/cat4/sparc64/intro.0 man-sys-catman .cat +./usr/share/man/cat4/sparc64/lom.0 man-sys-catman .cat +./usr/share/man/cat4/sparc64/sab.0 man-sys-catman .cat +./usr/share/man/cat4/sparc64/sabtty.0 man-sys-catman .cat +./usr/share/man/cat4/spc.0 man-sys-catman .cat +./usr/share/man/cat4/spdmem.0 man-sys-catman .cat +./usr/share/man/cat4/speaker.0 man-sys-catman .cat +./usr/share/man/cat4/spi.0 man-sys-catman .cat +./usr/share/man/cat4/spic.0 man-obsolete obsolete +./usr/share/man/cat4/spif.0 man-sys-catman .cat +./usr/share/man/cat4/spkr.0 man-sys-catman .cat +./usr/share/man/cat4/spp.0 man-obsolete obsolete +./usr/share/man/cat4/sqphy.0 man-sys-catman .cat +./usr/share/man/cat4/ss.0 man-sys-catman .cat +./usr/share/man/cat4/st.0 man-sys-catman .cat +./usr/share/man/cat4/stderr.0 man-sys-catman .cat +./usr/share/man/cat4/stdin.0 man-sys-catman .cat +./usr/share/man/cat4/stdout.0 man-sys-catman .cat +./usr/share/man/cat4/ste.0 man-sys-catman .cat +./usr/share/man/cat4/stf.0 man-sys-catman .cat +./usr/share/man/cat4/stge.0 man-sys-catman .cat +./usr/share/man/cat4/sti.0 man-sys-catman .cat +./usr/share/man/cat4/stpcide.0 man-sys-catman .cat +./usr/share/man/cat4/strip.0 man-sys-catman .cat +./usr/share/man/cat4/stuirda.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/bwtwo.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/ec.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/ie.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/intro.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/kbd.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/leds.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/mem.0 man-sys-catman .cat +./usr/share/man/cat4/sun2/ms.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/bwtwo.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/cgfour.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/cgtwo.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/fd.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/ie.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/intro.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/kbd.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/le.0 man-obsolete obsolete +./usr/share/man/cat4/sun3/leds.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/mem.0 man-sys-catman .cat +./usr/share/man/cat4/sun3/ms.0 man-sys-catman .cat +./usr/share/man/cat4/sv.0 man-sys-catman .cat +./usr/share/man/cat4/svwsata.0 man-sys-catman .cat +./usr/share/man/cat4/sw.0 man-sys-catman .cat +./usr/share/man/cat4/swcrypto.0 man-sys-catman .cat +./usr/share/man/cat4/swsensor.0 man-sys-catman .cat +./usr/share/man/cat4/swwdog.0 man-sys-catman .cat +./usr/share/man/cat4/sysbeep.0 man-sys-catman .cat +./usr/share/man/cat4/sysmon.0 man-sys-catman .cat +./usr/share/man/cat4/systrace.0 man-obsolete obsolete +./usr/share/man/cat4/tap.0 man-sys-catman .cat +./usr/share/man/cat4/tb.0 man-obsolete obsolete +./usr/share/man/cat4/tc.0 man-sys-catman .cat +./usr/share/man/cat4/tcds.0 man-sys-catman .cat +./usr/share/man/cat4/tcic.0 man-sys-catman .cat +./usr/share/man/cat4/tcom.0 man-sys-catman .cat +./usr/share/man/cat4/tcp.0 man-sys-catman .cat +./usr/share/man/cat4/tdfxdrm.0 man-sys-catman .cat +./usr/share/man/cat4/tdvfb.0 man-sys-catman .cat +./usr/share/man/cat4/termios.0 man-sys-catman .cat +./usr/share/man/cat4/tfb.0 man-sys-catman .cat +./usr/share/man/cat4/thinkpad.0 man-sys-catman .cat +./usr/share/man/cat4/ti.0 man-sys-catman .cat +./usr/share/man/cat4/tl.0 man-sys-catman .cat +./usr/share/man/cat4/tlp.0 man-sys-catman .cat +./usr/share/man/cat4/tlphy.0 man-sys-catman .cat +./usr/share/man/cat4/tm121temp.0 man-sys-catman .cat +./usr/share/man/cat4/tp.0 man-sys-catman .cat +./usr/share/man/cat4/tpm.0 man-sys-catman .cat +./usr/share/man/cat4/tprof.0 man-sys-catman .cat +./usr/share/man/cat4/tqphy.0 man-sys-catman .cat +./usr/share/man/cat4/tr.0 man-sys-catman .cat +./usr/share/man/cat4/tra.0 man-sys-catman .cat +./usr/share/man/cat4/trm.0 man-sys-catman .cat +./usr/share/man/cat4/tty.0 man-sys-catman .cat +./usr/share/man/cat4/tun.0 man-sys-catman .cat +./usr/share/man/cat4/tuner.0 man-obsolete obsolete +./usr/share/man/cat4/tvpll.0 man-sys-catman .cat +./usr/share/man/cat4/twa.0 man-sys-catman .cat +./usr/share/man/cat4/twe.0 man-sys-catman .cat +./usr/share/man/cat4/txp.0 man-sys-catman .cat +./usr/share/man/cat4/u3g.0 man-sys-catman .cat +./usr/share/man/cat4/uark.0 man-sys-catman .cat +./usr/share/man/cat4/uatp.0 man-sys-catman .cat +./usr/share/man/cat4/uaudio.0 man-sys-catman .cat +./usr/share/man/cat4/uax.0 man-obsolete obsolete +./usr/share/man/cat4/uberry.0 man-sys-catman .cat +./usr/share/man/cat4/ubsa.0 man-sys-catman .cat +./usr/share/man/cat4/ubsec.0 man-sys-catman .cat +./usr/share/man/cat4/ubt.0 man-sys-catman .cat +./usr/share/man/cat4/ubtbcmfw.0 man-obsolete obsolete +./usr/share/man/cat4/uchcom.0 man-sys-catman .cat +./usr/share/man/cat4/ucom.0 man-sys-catman .cat +./usr/share/man/cat4/ucycom.0 man-sys-catman .cat +./usr/share/man/cat4/udav.0 man-sys-catman .cat +./usr/share/man/cat4/udp.0 man-sys-catman .cat +./usr/share/man/cat4/udsbr.0 man-sys-catman .cat +./usr/share/man/cat4/uep.0 man-sys-catman .cat +./usr/share/man/cat4/uftdi.0 man-sys-catman .cat +./usr/share/man/cat4/ug.0 man-sys-catman .cat +./usr/share/man/cat4/ugen.0 man-sys-catman .cat +./usr/share/man/cat4/ugensa.0 man-sys-catman .cat +./usr/share/man/cat4/uha.0 man-sys-catman .cat +./usr/share/man/cat4/uhci.0 man-sys-catman .cat +./usr/share/man/cat4/uhid.0 man-sys-catman .cat +./usr/share/man/cat4/uhidev.0 man-sys-catman .cat +./usr/share/man/cat4/uhmodem.0 man-sys-catman .cat +./usr/share/man/cat4/uhso.0 man-sys-catman .cat +./usr/share/man/cat4/uhub.0 man-sys-catman .cat +./usr/share/man/cat4/uipaq.0 man-sys-catman .cat +./usr/share/man/cat4/uirda.0 man-sys-catman .cat +./usr/share/man/cat4/uk.0 man-sys-catman .cat +./usr/share/man/cat4/ukbd.0 man-sys-catman .cat +./usr/share/man/cat4/ukphy.0 man-sys-catman .cat +./usr/share/man/cat4/ukyopon.0 man-sys-catman .cat +./usr/share/man/cat4/ulpt.0 man-sys-catman .cat +./usr/share/man/cat4/umass.0 man-sys-catman .cat +./usr/share/man/cat4/umct.0 man-sys-catman .cat +./usr/share/man/cat4/umidi.0 man-sys-catman .cat +./usr/share/man/cat4/umodem.0 man-sys-catman .cat +./usr/share/man/cat4/ums.0 man-sys-catman .cat +./usr/share/man/cat4/unix.0 man-sys-catman .cat +./usr/share/man/cat4/upgt.0 man-sys-catman .cat +./usr/share/man/cat4/upl.0 man-sys-catman .cat +./usr/share/man/cat4/uplcom.0 man-sys-catman .cat +./usr/share/man/cat4/urandom.0 man-sys-catman .cat +./usr/share/man/cat4/urio.0 man-sys-catman .cat +./usr/share/man/cat4/url.0 man-sys-catman .cat +./usr/share/man/cat4/urlphy.0 man-sys-catman .cat +./usr/share/man/cat4/urndis.0 man-sys-catman .cat +./usr/share/man/cat4/urtw.0 man-sys-catman .cat +./usr/share/man/cat4/urtwn.0 man-sys-catman .cat +./usr/share/man/cat4/usb.0 man-sys-catman .cat +./usr/share/man/cat4/usbtask.0 man-sys-catman .cat +./usr/share/man/cat4/uscanner.0 man-sys-catman .cat +./usr/share/man/cat4/userconf.0 man-sys-catman .cat +./usr/share/man/cat4/uslsa.0 man-sys-catman .cat +./usr/share/man/cat4/usscanner.0 man-sys-catman .cat +./usr/share/man/cat4/ustir.0 man-sys-catman .cat +./usr/share/man/cat4/uthum.0 man-sys-catman .cat +./usr/share/man/cat4/utoppy.0 man-sys-catman .cat +./usr/share/man/cat4/uts.0 man-sys-catman .cat +./usr/share/man/cat4/uvideo.0 man-sys-catman .cat +./usr/share/man/cat4/uvisor.0 man-sys-catman .cat +./usr/share/man/cat4/uvscom.0 man-sys-catman .cat +./usr/share/man/cat4/uyap.0 man-sys-catman .cat +./usr/share/man/cat4/uyurex.0 man-sys-catman .cat +./usr/share/man/cat4/vald.0 man-sys-catman .cat +./usr/share/man/cat4/vax/acc.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ad.0 man-sys-catman .cat +./usr/share/man/cat4/vax/asc.0 man-sys-catman .cat +./usr/share/man/cat4/vax/autoconf.0 man-sys-catman .cat +./usr/share/man/cat4/vax/cons.0 man-sys-catman .cat +./usr/share/man/cat4/vax/crl.0 man-sys-catman .cat +./usr/share/man/cat4/vax/css.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ct.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ddn.0 man-sys-catman .cat +./usr/share/man/cat4/vax/de.0 man-sys-catman .cat +./usr/share/man/cat4/vax/dh.0 man-sys-catman .cat +./usr/share/man/cat4/vax/dhu.0 man-sys-catman .cat +./usr/share/man/cat4/vax/dl.0 man-sys-catman .cat +./usr/share/man/cat4/vax/dmc.0 man-sys-catman .cat +./usr/share/man/cat4/vax/dmf.0 man-sys-catman .cat +./usr/share/man/cat4/vax/dmz.0 man-sys-catman .cat +./usr/share/man/cat4/vax/dn.0 man-sys-catman .cat +./usr/share/man/cat4/vax/dz.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ec.0 man-sys-catman .cat +./usr/share/man/cat4/vax/en.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ex.0 man-sys-catman .cat +./usr/share/man/cat4/vax/fl.0 man-sys-catman .cat +./usr/share/man/cat4/vax/hdh.0 man-sys-catman .cat +./usr/share/man/cat4/vax/hk.0 man-sys-catman .cat +./usr/share/man/cat4/vax/hp.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ht.0 man-sys-catman .cat +./usr/share/man/cat4/vax/hy.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ik.0 man-sys-catman .cat +./usr/share/man/cat4/vax/il.0 man-sys-catman .cat +./usr/share/man/cat4/vax/intro.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ix.0 man-sys-catman .cat +./usr/share/man/cat4/vax/kg.0 man-sys-catman .cat +./usr/share/man/cat4/vax/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/vax/lp.0 man-sys-catman .cat +./usr/share/man/cat4/vax/mem.0 man-sys-catman .cat +./usr/share/man/cat4/vax/mt.0 man-sys-catman .cat +./usr/share/man/cat4/vax/mtc.0 man-sys-catman .cat +./usr/share/man/cat4/vax/np.0 man-sys-catman .cat +./usr/share/man/cat4/vax/pcl.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ps.0 man-sys-catman .cat +./usr/share/man/cat4/vax/qe.0 man-sys-catman .cat +./usr/share/man/cat4/vax/qt.0 man-sys-catman .cat +./usr/share/man/cat4/vax/rf.0 man-sys-catman .cat +./usr/share/man/cat4/vax/rl.0 man-sys-catman .cat +./usr/share/man/cat4/vax/rx.0 man-obsolete obsolete +./usr/share/man/cat4/vax/tm.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ts.0 man-sys-catman .cat +./usr/share/man/cat4/vax/tu.0 man-sys-catman .cat +./usr/share/man/cat4/vax/uda.0 man-sys-catman .cat +./usr/share/man/cat4/vax/up.0 man-sys-catman .cat +./usr/share/man/cat4/vax/ut.0 man-sys-catman .cat +./usr/share/man/cat4/vax/uu.0 man-sys-catman .cat +./usr/share/man/cat4/vax/va.0 man-sys-catman .cat +./usr/share/man/cat4/vax/vp.0 man-sys-catman .cat +./usr/share/man/cat4/vax/vv.0 man-sys-catman .cat +./usr/share/man/cat4/vbi.0 man-sys-catman .cat +./usr/share/man/cat4/veriexec.0 man-sys-catman .cat +./usr/share/man/cat4/verifiedexec.0 man-obsolete obsolete +./usr/share/man/cat4/vga.0 man-sys-catman .cat +./usr/share/man/cat4/vge.0 man-sys-catman .cat +./usr/share/man/cat4/viadrm.0 man-sys-catman .cat +./usr/share/man/cat4/viaenv.0 man-sys-catman .cat +./usr/share/man/cat4/viaide.0 man-sys-catman .cat +./usr/share/man/cat4/viapm.0 man-obsolete obsolete +./usr/share/man/cat4/video.0 man-sys-catman .cat +./usr/share/man/cat4/vinum.0 man-obsolete obsolete +./usr/share/man/cat4/vioif.0 man-sys-catman .cat +./usr/share/man/cat4/viomb.0 man-sys-catman .cat +./usr/share/man/cat4/virt.0 man-sys-catman .cat +./usr/share/man/cat4/virtio.0 man-sys-catman .cat +./usr/share/man/cat4/vlan.0 man-sys-catman .cat +./usr/share/man/cat4/vmmon.0 man-sys-catman .cat +./usr/share/man/cat4/vmnet.0 man-sys-catman .cat +./usr/share/man/cat4/vnd.0 man-sys-catman .cat +./usr/share/man/cat4/voodoofb.0 man-sys-catman .cat +./usr/share/man/cat4/vr.0 man-sys-catman .cat +./usr/share/man/cat4/vte.0 man-sys-catman .cat +./usr/share/man/cat4/wapbl.0 man-sys-catman .cat +./usr/share/man/cat4/wb.0 man-sys-catman .cat +./usr/share/man/cat4/wbsio.0 man-sys-catman .cat +./usr/share/man/cat4/wd.0 man-sys-catman .cat +./usr/share/man/cat4/wdc.0 man-sys-catman .cat +./usr/share/man/cat4/wds.0 man-sys-catman .cat +./usr/share/man/cat4/we.0 man-sys-catman .cat +./usr/share/man/cat4/wedge.0 man-sys-catman .cat +./usr/share/man/cat4/wi.0 man-sys-catman .cat +./usr/share/man/cat4/wm.0 man-sys-catman .cat +./usr/share/man/cat4/wmidell.0 man-sys-catman .cat +./usr/share/man/cat4/wmieeepc.0 man-sys-catman .cat +./usr/share/man/cat4/wmihp.0 man-sys-catman .cat +./usr/share/man/cat4/wmimsi.0 man-sys-catman .cat +./usr/share/man/cat4/wpi.0 man-sys-catman .cat +./usr/share/man/cat4/wscons.0 man-sys-catman .cat +./usr/share/man/cat4/wsdisplay.0 man-sys-catman .cat +./usr/share/man/cat4/wsfont.0 man-sys-catman .cat +./usr/share/man/cat4/wskbd.0 man-sys-catman .cat +./usr/share/man/cat4/wsmouse.0 man-sys-catman .cat +./usr/share/man/cat4/wsmux.0 man-sys-catman .cat +./usr/share/man/cat4/wsmuxctl.0 man-sys-catman .cat +./usr/share/man/cat4/wss.0 man-sys-catman .cat +./usr/share/man/cat4/wt.0 man-sys-catman .cat +./usr/share/man/cat4/x68k/bmd.0 man-sys-catman .cat +./usr/share/man/cat4/x68k/intio.0 man-sys-catman .cat +./usr/share/man/cat4/x68k/intro.0 man-sys-catman .cat +./usr/share/man/cat4/x68k/mfp.0 man-sys-catman .cat +./usr/share/man/cat4/x68k/neptune.0 man-sys-catman .cat +./usr/share/man/cat4/x68k/pow.0 man-obsolete obsolete +./usr/share/man/cat4/x68k/powsw.0 man-sys-catman .cat +./usr/share/man/cat4/x68k/vs.0 man-sys-catman .cat +./usr/share/man/cat4/x86/amdpcib.0 man-sys-catman .cat +./usr/share/man/cat4/x86/apic.0 man-sys-catman .cat +./usr/share/man/cat4/x86/balloon.0 man-sys-catman .cat +./usr/share/man/cat4/x86/coretemp.0 man-sys-catman .cat +./usr/share/man/cat4/x86/est.0 man-sys-catman .cat +./usr/share/man/cat4/x86/fdc.0 man-sys-catman .cat +./usr/share/man/cat4/x86/fwhrng.0 man-sys-catman .cat +./usr/share/man/cat4/x86/hpet.0 man-sys-catman .cat +./usr/share/man/cat4/x86/ichlpcib.0 man-sys-catman .cat +./usr/share/man/cat4/x86/ioapic.0 man-sys-catman .cat +./usr/share/man/cat4/x86/kmem.0 man-sys-catman .cat +./usr/share/man/cat4/x86/lapic.0 man-sys-catman .cat +./usr/share/man/cat4/x86/lpa.0 man-sys-catman .cat +./usr/share/man/cat4/x86/lpt.0 man-sys-catman .cat +./usr/share/man/cat4/x86/mem.0 man-sys-catman .cat +./usr/share/man/cat4/x86/odcm.0 man-sys-catman .cat +./usr/share/man/cat4/x86/powernow.0 man-sys-catman .cat +./usr/share/man/cat4/x86/tprof_pmi.0 man-sys-catman .cat +./usr/share/man/cat4/x86/tprof_amdpmi.0 man-sys-catman .cat +./usr/share/man/cat4/x86/vmt.0 man-sys-catman .cat +./usr/share/man/cat4/xbd.0 man-sys-catman .cat +./usr/share/man/cat4/xbdback.0 man-sys-catman .cat +./usr/share/man/cat4/xbox.0 man-sys-catman .cat +./usr/share/man/cat4/xc3028.0 man-sys-catman .cat +./usr/share/man/cat4/xc5k.0 man-sys-catman .cat +./usr/share/man/cat4/xenbus.0 man-sys-catman .cat +./usr/share/man/cat4/xennet.0 man-sys-catman .cat +./usr/share/man/cat4/xge.0 man-sys-catman .cat +./usr/share/man/cat4/xi.0 man-sys-catman .cat +./usr/share/man/cat4/xirc.0 man-sys-catman .cat +./usr/share/man/cat4/xpci.0 man-sys-catman .cat +./usr/share/man/cat4/xvif.0 man-sys-catman .cat +./usr/share/man/cat4/yds.0 man-sys-catman .cat +./usr/share/man/cat4/ym.0 man-sys-catman .cat +./usr/share/man/cat4/zero.0 man-sys-catman .cat +./usr/share/man/cat4/zl10353.0 man-sys-catman .cat +./usr/share/man/cat4/zs.0 man-sys-catman .cat +./usr/share/man/cat4/zsc.0 man-sys-catman .cat +./usr/share/man/cat4/zstty.0 man-sys-catman .cat +./usr/share/man/cat4/zyd.0 man-sys-catman .cat +./usr/share/man/cat5/a.out.0 man-sys-catman .cat +./usr/share/man/cat5/access.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/acct.0 man-sys-catman .cat +./usr/share/man/cat5/aliases.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/altq.conf.0 man-router-catman .cat +./usr/share/man/cat5/amd.conf.0 man-amd-catman .cat +./usr/share/man/cat5/ar.0 man-sys-catman .cat +./usr/share/man/cat5/atf-formats.0 man-atf-catman .cat,atf +./usr/share/man/cat5/audit-packages.conf.0 man-obsolete obsolete +./usr/share/man/cat5/bluetooth.conf.0 man-obsolete obsolete +./usr/share/man/cat5/body_checks.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/boot.cfg.0 man-sys-catman .cat +./usr/share/man/cat5/bootparams.0 man-bootserver-catman .cat +./usr/share/man/cat5/bootptab.0 man-bootserver-catman .cat +./usr/share/man/cat5/bounce.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/canonical.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/capfile.0 man-sys-catman .cat +./usr/share/man/cat5/ccd.conf.0 man-sysutil-catman .cat +./usr/share/man/cat5/cdb.0 man-sys-catman .cat +./usr/share/man/cat5/cidr_table.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/core.0 man-sys-catman .cat +./usr/share/man/cat5/crontab.0 man-cron-catman .cat +./usr/share/man/cat5/daily.0 man-sys-catman .cat +./usr/share/man/cat5/daily.conf.0 man-sys-catman .cat +./usr/share/man/cat5/dhclient.conf.0 man-dhclient-catman .cat +./usr/share/man/cat5/dhclient.leases.0 man-dhclient-catman .cat +./usr/share/man/cat5/dhcp-eval.0 man-dhclient-catman .cat +./usr/share/man/cat5/dhcp-options.0 man-dhcpd-catman .cat +./usr/share/man/cat5/dhcpcd.conf.0 man-dhcpcd-catman .cat +./usr/share/man/cat5/dhcpd.conf.0 man-dhcpd-catman .cat +./usr/share/man/cat5/dhcpd.leases.0 man-dhcpd-catman .cat +./usr/share/man/cat5/dir.0 man-obsolete obsolete +./usr/share/man/cat5/dirent.0 man-obsolete obsolete +./usr/share/man/cat5/disklabel.0 man-sys-catman .cat +./usr/share/man/cat5/disktab.0 man-sys-catman .cat +./usr/share/man/cat5/editrc.0 man-sys-catman .cat +./usr/share/man/cat5/elf.0 man-sys-catman .cat +./usr/share/man/cat5/envsys.conf.0 man-sys-catman .cat +./usr/share/man/cat5/ethers.0 man-net-catman .cat +./usr/share/man/cat5/exports.0 man-nfsserver-catman .cat +./usr/share/man/cat5/floppytab.0 man-sys-catman .cat +./usr/share/man/cat5/forward.0 man-sys-catman .cat +./usr/share/man/cat5/fs.0 man-sys-catman .cat +./usr/share/man/cat5/fstab.0 man-sys-catman .cat +./usr/share/man/cat5/ftpchroot.0 man-netutil-catman .cat +./usr/share/man/cat5/ftpd.conf.0 man-netutil-catman .cat +./usr/share/man/cat5/ftpusers.0 man-netutil-catman .cat +./usr/share/man/cat5/genassym.cf.0 man-sys-catman .cat +./usr/share/man/cat5/generic.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/gettytab.0 man-sysutil-catman .cat +./usr/share/man/cat5/gpio.conf.0 man-sys-catman .cat +./usr/share/man/cat5/group.0 man-sys-catman .cat +./usr/share/man/cat5/header_checks.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/hesiod.conf.0 man-hesiod-catman .cat +./usr/share/man/cat5/hostapd.conf.0 man-sysutil-catman .cat +./usr/share/man/cat5/hosts.0 man-net-catman .cat +./usr/share/man/cat5/hosts.allow.0 man-net-catman .cat +./usr/share/man/cat5/hosts.deny.0 man-net-catman .cat +./usr/share/man/cat5/hosts.equiv.0 man-netutil-catman .cat +./usr/share/man/cat5/hosts_access.0 man-net-catman .cat +./usr/share/man/cat5/hosts_options.0 man-net-catman .cat +./usr/share/man/cat5/i386 man-obsolete obsolete +./usr/share/man/cat5/i386/keycap.0 man-obsolete obsolete +./usr/share/man/cat5/ifaliases.0 man-net-catman .cat +./usr/share/man/cat5/ifconfig.if.0 man-net-catman .cat +./usr/share/man/cat5/inetd.0 man-obsolete obsolete +./usr/share/man/cat5/inetd.conf.0 man-netutil-catman .cat +./usr/share/man/cat5/info.0 man-texinfo-catman .cat +./usr/share/man/cat5/inode.0 man-sys-catman .cat +./usr/share/man/cat5/intro.0 man-sys-catman .cat +./usr/share/man/cat5/ipf.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/ipf.conf.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/ipf6.conf.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/ipmon.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/ipnat.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/ipnat.conf.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/ippool.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/ippool.conf.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/ipsec.conf.0 man-netutil-catman .cat +./usr/share/man/cat5/ipsend.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat5/isdnd.acct.0 man-isdn-catman .cat +./usr/share/man/cat5/isdnd.rates.0 man-isdn-catman .cat +./usr/share/man/cat5/isdnd.rc.0 man-isdn-catman .cat +./usr/share/man/cat5/krb.conf.0 man-obsolete obsolete +./usr/share/man/cat5/krb.equiv.0 man-obsolete obsolete +./usr/share/man/cat5/krb.extra.0 man-obsolete obsolete +./usr/share/man/cat5/krb.realms.0 man-obsolete obsolete +./usr/share/man/cat5/krb5.conf.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat5/lastlog.0 man-sys-catman .cat +./usr/share/man/cat5/lastlogx.0 man-sys-catman .cat +./usr/share/man/cat5/ld.so.conf.0 man-sys-catman .cat +./usr/share/man/cat5/ldap_table.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/link.0 man-sys-catman .cat +./usr/share/man/cat5/lkm.conf.0 man-obsolete obsolete +./usr/share/man/cat5/locale.alias.0 man-sys-catman .cat +./usr/share/man/cat5/locate.conf.0 man-sys-catman .cat +./usr/share/man/cat5/login.access.0 man-sys-catman pam,.cat +./usr/share/man/cat5/login.conf.0 man-sys-catman .cat +./usr/share/man/cat5/lvm.conf.0 man-lvm-catman lvm,.cat +./usr/share/man/cat5/magic.0 man-util-catman .cat +./usr/share/man/cat5/mailer.conf.0 man-mailwrapper-catman .cat +./usr/share/man/cat5/man.conf.0 man-man-catman .cat +./usr/share/man/cat5/map3270.0 man-obsolete obsolete +./usr/share/man/cat5/master.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/master.passwd.0 man-sys-catman .cat +./usr/share/man/cat5/mixerctl.conf.0 man-audio-catman .cat +./usr/share/man/cat5/moduli.0 man-secsh-catman crypto,.cat +./usr/share/man/cat5/monthly.0 man-sys-catman .cat +./usr/share/man/cat5/monthly.conf.0 man-sys-catman .cat +./usr/share/man/cat5/motd.0 man-sys-catman .cat +./usr/share/man/cat5/named.conf.0 man-bind-catman .cat +./usr/share/man/cat5/netconfig.0 man-net-catman .cat +./usr/share/man/cat5/netgroup.0 man-nis-catman .cat +./usr/share/man/cat5/netid.0 man-nis-catman yp,.cat +./usr/share/man/cat5/networks.0 man-net-catman .cat +./usr/share/man/cat5/newsyslog.conf.0 man-sysutil-catman .cat +./usr/share/man/cat5/nicknames.0 man-nis-catman yp,.cat +./usr/share/man/cat5/nisplus_table.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/nologin.0 man-sysutil-catman .cat +./usr/share/man/cat5/npf.conf.0 man-npf-catman .cat,npf +./usr/share/man/cat5/nsswitch.conf.0 man-net-catman .cat +./usr/share/man/cat5/openssl.cnf.0 man-crypto-catman crypto,.cat +./usr/share/man/cat5/pam.conf.0 man-sys-catman .cat +./usr/share/man/cat5/passwd.0 man-sys-catman .cat +./usr/share/man/cat5/passwd.conf.0 man-sys-catman .cat +./usr/share/man/cat5/pcap-savefile.0 man-net-catman .cat +./usr/share/man/cat5/pcfs.0 man-obsolete obsolete +./usr/share/man/cat5/pcre_table.0 man-obsolete obsolete +./usr/share/man/cat5/pf.boot.conf.0 man-pf-catman pf,.cat +./usr/share/man/cat5/pf.conf.0 man-pf-catman pf,.cat +./usr/share/man/cat5/pf.os.0 man-pf-catman pf,.cat +./usr/share/man/cat5/pfspamd.conf.0 man-obsolete obsolete +./usr/share/man/cat5/phones.0 man-sys-man .cat +./usr/share/man/cat5/pim6dd.conf.0 man-obsolete obsolete +./usr/share/man/cat5/pim6sd.conf.0 man-obsolete obsolete +./usr/share/man/cat5/pkg_install.conf.0 man-pkgutil-catman crypto,.cat +./usr/share/man/cat5/pkg_summary.0 man-pkgutil-catman crypto,.cat +./usr/share/man/cat5/postconf.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/postfix-wrapper.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/primes.0 man-obsolete obsolete +./usr/share/man/cat5/printcap.0 man-lpr-catman .cat +./usr/share/man/cat5/protocols.0 man-net-catman .cat +./usr/share/man/cat5/racoon.conf.0 man-netutil-catman crypto,.cat +./usr/share/man/cat5/radius.conf.0 man-netutil-catman .cat +./usr/share/man/cat5/rc.conf.0 man-sys-catman .cat +./usr/share/man/cat5/rcsfile.0 man-rcs-catman .cat +./usr/share/man/cat5/regexp_table.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/relocated.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/remote.0 man-sys-catman .cat +./usr/share/man/cat5/resolv.conf.0 man-net-catman .cat +./usr/share/man/cat5/resolvconf.conf.0 man-resolvconf-catman .cat +./usr/share/man/cat5/resolver.0 man-net-catman .cat +./usr/share/man/cat5/rhosts.0 man-netutil-catman .cat +./usr/share/man/cat5/rndc.conf.0 man-bind-catman .cat +./usr/share/man/cat5/route.conf.0 man-sys-catman .cat +./usr/share/man/cat5/rpc.0 man-net-catman .cat +./usr/share/man/cat5/rtadvd.conf.0 man-router-catman use_inet6,.cat +./usr/share/man/cat5/securenet.0 man-obsolete obsolete +./usr/share/man/cat5/security.conf.0 man-sys-catman .cat +./usr/share/man/cat5/services.0 man-net-catman .cat +./usr/share/man/cat5/shells.0 man-sys-catman .cat +./usr/share/man/cat5/siginfo.0 man-obsolete obsolete +./usr/share/man/cat5/spamd.conf.0 man-obsolete obsolete +./usr/share/man/cat5/sqlite_table.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/ssh_config.0 man-secsh-catman crypto,.cat +./usr/share/man/cat5/sshd_config.0 man-secsh-catman crypto,.cat +./usr/share/man/cat5/stab.0 man-sys-catman .cat +./usr/share/man/cat5/sysctl.conf.0 man-sys-catman .cat +./usr/share/man/cat5/syslog.conf.0 man-sysutil-catman .cat +./usr/share/man/cat5/targets.0 man-iscsi-catman iscsi,.cat +./usr/share/man/cat5/termcap.0 man-sys-catman .cat +./usr/share/man/cat5/terminfo.0 man-sys-catman .cat +./usr/share/man/cat5/texinfo.0 man-texinfo-catman .cat +./usr/share/man/cat5/transport.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/ttyaction.0 man-sys-catman .cat +./usr/share/man/cat5/ttys.0 man-sys-catman .cat +./usr/share/man/cat5/types.0 man-obsolete obsolete +./usr/share/man/cat5/tzfile.0 man-sys-catman .cat +./usr/share/man/cat5/ucontext.0 man-obsolete obsolete +./usr/share/man/cat5/usermgmt.conf.0 man-sys-catman .cat +./usr/share/man/cat5/utmp.0 man-sys-catman .cat +./usr/share/man/cat5/utmpx.0 man-sys-catman .cat +./usr/share/man/cat5/uuencode.0 man-util-catman .cat +./usr/share/man/cat5/uuencode.format.0 man-obsolete obsolete +./usr/share/man/cat5/veriexec.0 man-sys-catman .cat +./usr/share/man/cat5/vgrindefs.0 man-groff-catman .cat +./usr/share/man/cat5/virtual.0 man-postfix-catman postfix,.cat +./usr/share/man/cat5/weekly.0 man-sys-catman .cat +./usr/share/man/cat5/weekly.conf.0 man-sys-catman .cat +./usr/share/man/cat5/wpa_supplicant.conf.0 man-net-catman .cat +./usr/share/man/cat5/wscons.conf.0 man-sys-catman .cat +./usr/share/man/cat5/wsmoused.conf.0 man-sys-catman .cat +./usr/share/man/cat5/wtmp.0 man-sys-catman .cat +./usr/share/man/cat5/wtmpx.0 man-sys-catman .cat +./usr/share/man/cat5/ypserv.acl.0 man-obsolete obsolete +./usr/share/man/cat7/ascii.0 man-reference-catman .cat +./usr/share/man/cat7/atf.0 man-atf-catman .cat,atf +./usr/share/man/cat7/c.0 man-reference-catman .cat +./usr/share/man/cat7/c78.0 man-reference-catman .cat +./usr/share/man/cat7/c89.0 man-reference-catman .cat +./usr/share/man/cat7/c90.0 man-reference-catman .cat +./usr/share/man/cat7/c99.0 man-reference-catman .cat +./usr/share/man/cat7/des_modes.0 man-reference-catman crypto,.cat +./usr/share/man/cat7/environ.0 man-reference-catman .cat +./usr/share/man/cat7/glob.0 man-reference-catman .cat +./usr/share/man/cat7/hier.0 man-reference-catman .cat +./usr/share/man/cat7/hostname.0 man-reference-catman .cat +./usr/share/man/cat7/intro.0 man-reference-catman .cat +./usr/share/man/cat7/lint.0 man-reference-catman .cat +./usr/share/man/cat7/mailaddr.0 man-reference-catman .cat +./usr/share/man/cat7/mandoc.0 man-obsolete obsolete +./usr/share/man/cat7/mdoc.0 man-groff-catman .cat,groff +./usr/share/man/cat7/miscellaneous.0 man-obsolete obsolete +./usr/share/man/cat7/module.0 man-reference-catman .cat +./usr/share/man/cat7/msafer.0 man-obsolete obsolete +./usr/share/man/cat7/nls.0 man-reference-catman .cat +./usr/share/man/cat7/orders.0 man-reference-catman .cat +./usr/share/man/cat7/packages.0 man-obsolete obsolete +./usr/share/man/cat7/pcap-filter.0 man-netutil-catman .cat +./usr/share/man/cat7/pcap-linktype.0 man-netutil-catman .cat +./usr/share/man/cat7/pkgsrc.0 man-reference-catman .cat +./usr/share/man/cat7/re_format.0 man-reference-catman .cat +./usr/share/man/cat7/release.0 man-reference-catman .cat +./usr/share/man/cat7/rfc6056.0 man-reference-catman .cat +./usr/share/man/cat7/rump_sp.0 man-reference-catman .cat,rump +./usr/share/man/cat7/script.0 man-reference-catman .cat +./usr/share/man/cat7/security.0 man-reference-catman .cat +./usr/share/man/cat7/setuid.0 man-reference-catman .cat +./usr/share/man/cat7/signal.0 man-reference-catman .cat +./usr/share/man/cat7/sticky.0 man-reference-catman .cat +./usr/share/man/cat7/symlink.0 man-reference-catman .cat +./usr/share/man/cat7/sysctl.0 man-reference-catman .cat +./usr/share/man/cat7/tests.0 man-reference-catman .cat +./usr/share/man/cat8/MAKEDEV.0 man-sysutil-catman .cat +./usr/share/man/cat8/MAKEDEV.local.0 man-sysutil-catman .cat +./usr/share/man/cat8/ac.0 man-sysutil-catman .cat +./usr/share/man/cat8/accton.0 man-sysutil-catman .cat +./usr/share/man/cat8/acorn26/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/acorn26/boot.0 man-sys-catman .cat +./usr/share/man/cat8/acorn26/boot26.0 man-sys-catman .cat +./usr/share/man/cat8/acorn26/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/acorn32/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/acorn32/boot.0 man-sys-catman .cat +./usr/share/man/cat8/acorn32/boot32.0 man-sys-catman .cat +./usr/share/man/cat8/acorn32/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/acorn32/nbfs.0 man-sys-catman .cat +./usr/share/man/cat8/acpidump.0 man-sysutil-catman .cat +./usr/share/man/cat8/adduser.0 man-sysutil-catman .cat +./usr/share/man/cat8/afterboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/algor/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/algor/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/alpha/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/alpha/boot.0 man-sys-catman .cat +./usr/share/man/cat8/alpha/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/alpha/installboot.old.0 man-obsolete obsolete +./usr/share/man/cat8/alpha/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/alpha/mkbootimage.0 man-sysutil-catman .cat +./usr/share/man/cat8/alpha/setnetbootinfo.0 man-sysutil-catman .cat +./usr/share/man/cat8/altqd.0 man-router-catman .cat +./usr/share/man/cat8/amd.0 man-amd-catman .cat +./usr/share/man/cat8/amd64/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/amd64/boot.0 man-sys-catman .cat +./usr/share/man/cat8/amd64/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/amiga/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/amiga/binpatch.0 man-sysutil-catman .cat +./usr/share/man/cat8/amiga/boot.0 man-sys-catman .cat +./usr/share/man/cat8/amiga/grfconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/amiga/installboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/amiga/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/amldb.0 man-sysutil-catman .cat +./usr/share/man/cat8/amq.0 man-amd-catman .cat +./usr/share/man/cat8/amrctl.0 man-sysutil-man .cat +./usr/share/man/cat8/anvil.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/apm.0 man-sysutil-catman .cat +./usr/share/man/cat8/apmd.0 man-sysutil-catman .cat +./usr/share/man/cat8/apmlabel.0 man-sysutil-catman .cat +./usr/share/man/cat8/arc/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/arc/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/arm26/BBBB.0 man-obsolete obsolete +./usr/share/man/cat8/arm26/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/arm26/bbbb.0 man-obsolete obsolete +./usr/share/man/cat8/arm26/boot.0 man-obsolete obsolete +./usr/share/man/cat8/arm26/boot26.0 man-obsolete obsolete +./usr/share/man/cat8/arm26/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/arm32/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/arm32/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/arp.0 man-netutil-catman .cat +./usr/share/man/cat8/atactl.0 man-sysutil-catman .cat +./usr/share/man/cat8/atari/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/atari/ahdilabel.0 man-sysutil-catman .cat +./usr/share/man/cat8/atari/binpatch.0 man-sysutil-catman .cat +./usr/share/man/cat8/atari/boot.0 man-sys-catman .cat +./usr/share/man/cat8/atari/bootpref.0 man-sysutil-catman .cat +./usr/share/man/cat8/atari/installboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/atari/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/atrun.0 man-cron-catman .cat +./usr/share/man/cat8/authpf.0 man-pf-catman pf,.cat +./usr/share/man/cat8/bad144.0 man-sysutil-catman .cat +./usr/share/man/cat8/badsect.0 man-sysutil-catman .cat +./usr/share/man/cat8/bebox/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/bebox/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/bioctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/boot.0 man-sysutil-catman .cat +./usr/share/man/cat8/bootparamd.0 man-bootserver-catman .cat +./usr/share/man/cat8/bootpd.0 man-bootserver-catman .cat +./usr/share/man/cat8/bootpef.0 man-bootserver-catman .cat +./usr/share/man/cat8/bootpgw.0 man-bootserver-catman .cat +./usr/share/man/cat8/bootptest.0 man-bootserver-catman .cat +./usr/share/man/cat8/bootselect.0 man-obsolete obsolete +./usr/share/man/cat8/bounce.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/brconfig.0 man-netutil-catman .cat +./usr/share/man/cat8/btattach.0 man-sysutil-catman .cat +./usr/share/man/cat8/btconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/btcontrol.0 man-obsolete obsolete +./usr/share/man/cat8/btdevctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/bthcid.0 man-sysutil-catman .cat +./usr/share/man/cat8/btpand.0 man-sysutil-catman .cat +./usr/share/man/cat8/btuartd.0 man-obsolete obsolete +./usr/share/man/cat8/catman.0 man-man-catman .cat +./usr/share/man/cat8/cats/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/cats/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/ccdconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/cesfic/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/cesfic/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/cgdconfig.0 man-sysutil-catman crypto,.cat +./usr/share/man/cat8/chat.0 man-ppp-catman .cat +./usr/share/man/cat8/chown.0 man-sysutil-catman .cat +./usr/share/man/cat8/chroot.0 man-sysutil-catman .cat +./usr/share/man/cat8/chrtbl.0 man-obsolete obsolete +./usr/share/man/cat8/cleanup.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/clri.0 man-sysutil-catman .cat +./usr/share/man/cat8/cnwctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/cobalt/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/cobalt/boot.0 man-sys-catman .cat +./usr/share/man/cat8/cobalt/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/compat_30.0 man-sys-catman .cat +./usr/share/man/cat8/compat_darwin.0 man-obsolete obsolete +./usr/share/man/cat8/compat_freebsd.0 man-sys-catman .cat +./usr/share/man/cat8/compat_hpux.0 man-obsolete obsolete +./usr/share/man/cat8/compat_ibcs2.0 man-sys-catman .cat +./usr/share/man/cat8/compat_linux.0 man-sys-catman .cat +./usr/share/man/cat8/compat_netbsd32.0 man-sys-catman .cat +./usr/share/man/cat8/compat_osf1.0 man-sys-catman .cat +./usr/share/man/cat8/compat_pecoff.0 man-obsolete obsolete +./usr/share/man/cat8/compat_sco.0 man-sys-catman .cat +./usr/share/man/cat8/compat_solaris.0 man-sys-catman .cat +./usr/share/man/cat8/compat_sunos.0 man-sys-catman .cat +./usr/share/man/cat8/compat_svr4.0 man-sys-catman .cat +./usr/share/man/cat8/compat_svr4_32.0 man-sys-catman .cat +./usr/share/man/cat8/compat_ultrix.0 man-sys-catman .cat +./usr/share/man/cat8/compat_win32.0 man-obsolete obsolete +./usr/share/man/cat8/compat_xenix.0 man-sys-catman .cat +./usr/share/man/cat8/comsat.0 man-man-catman .cat +./usr/share/man/cat8/cpuctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/crash.0 man-sysutil-catman .cat +./usr/share/man/cat8/cron.0 man-cron-catman .cat +./usr/share/man/cat8/dbsym.0 man-sysutil-catman binutils,.cat +./usr/share/man/cat8/ddns-confgen.0 man-bind-catman .cat +./usr/share/man/cat8/defer.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/dev_mkdb.0 man-sysutil-catman .cat +./usr/share/man/cat8/devpubd.0 man-sysutil-catman .cat +./usr/share/man/cat8/dhclient-script.0 man-dhclient-catman .cat +./usr/share/man/cat8/dhclient.0 man-dhclient-catman .cat +./usr/share/man/cat8/dhcpcd-run-hooks.0 man-dhcpcd-catman .cat +./usr/share/man/cat8/dhcpcd.0 man-dhcpcd-catman .cat +./usr/share/man/cat8/dhcpd.0 man-dhcpd-catman .cat +./usr/share/man/cat8/dhcrelay.0 man-dhcpd-catman .cat +./usr/share/man/cat8/discard.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/disklabel.0 man-sysutil-catman .cat +./usr/share/man/cat8/diskless.0 man-sysutil-catman .cat +./usr/share/man/cat8/diskpart.0 man-sysutil-catman .cat +./usr/share/man/cat8/dkctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/dkscan_bsdlabel.0 man-sysutil-catman .cat +./usr/share/man/cat8/dmctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/dmesg.0 man-sysutil-catman .cat +./usr/share/man/cat8/dmsetup.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/dnsblog.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/dnssec-dsfromkey.0 man-bind-catman .cat +./usr/share/man/cat8/dnssec-keyfromlabel.0 man-bind-catman .cat +./usr/share/man/cat8/dnssec-keygen.0 man-bind-catman .cat +./usr/share/man/cat8/dnssec-makekeyset.0 man-obsolete obsolete +./usr/share/man/cat8/dnssec-revoke.0 man-bind-catman .cat +./usr/share/man/cat8/dnssec-settime.0 man-bind-catman .cat +./usr/share/man/cat8/dnssec-signkey.0 man-obsolete obsolete +./usr/share/man/cat8/dnssec-signzone.0 man-bind-catman .cat +./usr/share/man/cat8/dreamcast/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/dreamcast/boot.0 man-sysutil-catman .cat +./usr/share/man/cat8/dreamcast/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/drvctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/dump.0 man-sysutil-catman .cat +./usr/share/man/cat8/dump_lfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/dumpfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/dumplfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/editmap.0 man-obsolete obsolete +./usr/share/man/cat8/edquota.0 man-sysutil-catman .cat +./usr/share/man/cat8/eeprom.0 man-sysutil-catman .cat +./usr/share/man/cat8/emips/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/emips/boot.0 man-sys-catman .cat +./usr/share/man/cat8/emips/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/emips/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/envstat.0 man-sysutil-catman .cat +./usr/share/man/cat8/error.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/eshconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/etcupdate.0 man-sysutil-catman .cat +./usr/share/man/cat8/evbarm/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/evbarm/bootmini2440.0 man-sysutil-catman .cat +./usr/share/man/cat8/evbarm/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/evbmips/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/evbmips/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/evbppc/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/evbppc/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/evbsh3/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/evbsh3/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/evbsh5/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/evbsh5/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/extattrctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/faithd.0 man-router-catman inet6,.cat +./usr/share/man/cat8/fastboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/fasthalt.0 man-sysutil-catman .cat +./usr/share/man/cat8/fdisk.0 man-sysutil-catman .cat +./usr/share/man/cat8/fingerd.0 man-sysutil-catman .cat +./usr/share/man/cat8/fixmount.0 man-sysutil-catman .cat +./usr/share/man/cat8/flashctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/flush.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/fsck.0 man-sysutil-catman .cat +./usr/share/man/cat8/fsck_ext2fs.0 man-ext2fs-catman .cat +./usr/share/man/cat8/fsck_ffs.0 man-sysutil-catman .cat +./usr/share/man/cat8/fsck_lfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/fsck_msdos.0 man-sysutil-catman .cat +./usr/share/man/cat8/fsck_v7fs.0 man-sysutil-catman .cat +./usr/share/man/cat8/fsdb.0 man-sysutil-catman .cat +./usr/share/man/cat8/fsinfo.0 man-sysutil-catman .cat +./usr/share/man/cat8/fsirand.0 man-sysutil-catman .cat +./usr/share/man/cat8/fssconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/ftp-proxy.0 man-pf-catman pf,.cat +./usr/share/man/cat8/ftpd.0 man-netutil-catman .cat +./usr/share/man/cat8/fusermount.0 man-refuse-catman .cat +./usr/share/man/cat8/fwctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/genassym.sh.0 man-obsolete obsolete +./usr/share/man/cat8/getNAME.0 man-man-catman !makemandb, .cat +./usr/share/man/cat8/getencstat.0 man-sysutil-catman .cat +./usr/share/man/cat8/gettable.0 man-obsolete obsolete +./usr/share/man/cat8/getty.0 man-sysutil-catman .cat +./usr/share/man/cat8/gpioctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/gpt.0 man-sysutil-catman .cat +./usr/share/man/cat8/greconfig.0 man-obsolete obsolete +./usr/share/man/cat8/grfconfig.0 man-obsolete obsolete +./usr/share/man/cat8/group.0 man-sysutil-catman .cat +./usr/share/man/cat8/groupadd.0 man-sysutil-catman .cat +./usr/share/man/cat8/groupdel.0 man-sysutil-catman .cat +./usr/share/man/cat8/groupinfo.0 man-sysutil-catman .cat +./usr/share/man/cat8/groupmod.0 man-sysutil-catman .cat +./usr/share/man/cat8/gspa.0 man-sysutil-catman .cat +./usr/share/man/cat8/halt.0 man-sysutil-catman .cat +./usr/share/man/cat8/hdaudioctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/hlfsd.0 man-amd-catman .cat +./usr/share/man/cat8/hostapd.0 man-sysutil-catman .cat +./usr/share/man/cat8/hostapd_cli.0 man-sysutil-catman .cat +./usr/share/man/cat8/hp300/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/hp300/boot.0 man-sys-catman .cat +./usr/share/man/cat8/hp300/crash.0 man-sys-catman .cat +./usr/share/man/cat8/hp300/format.0 man-sys-catman .cat +./usr/share/man/cat8/hp300/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/hp700/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/hp700/boot.0 man-sys-catman .cat +./usr/share/man/cat8/hp700/mkboot.0 man-sys-catman .cat +./usr/share/man/cat8/hp700/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/hpcarm/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/hpcarm/boot.0 man-sys-catman .cat +./usr/share/man/cat8/hpcarm/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/hpcboot.0 man-sys-catman .cat +./usr/share/man/cat8/hpcmips/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/hpcmips/boot.0 man-sys-catman .cat +./usr/share/man/cat8/hpcmips/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/hpcmips/pbsdboot.0 man-sys-catman .cat +./usr/share/man/cat8/hpcsh/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/hpcsh/boot.0 man-sys-catman .cat +./usr/share/man/cat8/hpcsh/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/hprop.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/hpropd.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/htable.0 man-obsolete obsolete +./usr/share/man/cat8/httpd.0 man-netutil-catman .cat +./usr/share/man/cat8/i2cscan.0 man-sysutil-catman .cat +./usr/share/man/cat8/i386/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/i386/apm.0 man-obsolete obsolete +./usr/share/man/cat8/i386/apmd.0 man-obsolete obsolete +./usr/share/man/cat8/i386/bad144.0 man-obsolete obsolete +./usr/share/man/cat8/i386/boot.0 man-sys-catman .cat +./usr/share/man/cat8/i386/boot_console.0 man-sys-catman .cat +./usr/share/man/cat8/i386/bootselect.0 man-sys-catman .cat +./usr/share/man/cat8/i386/dosboot.0 man-sys-catman .cat +./usr/share/man/cat8/i386/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/i386/ispcvt.0 man-obsolete obsolete +./usr/share/man/cat8/i386/kbdio.0 man-obsolete obsolete +./usr/share/man/cat8/i386/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/i386/mbr.0 man-sys-catman .cat +./usr/share/man/cat8/i386/multiboot.0 man-sys-catman .cat +./usr/share/man/cat8/i386/ndiscvt.0 man-netutil-catman .cat +./usr/share/man/cat8/i386/pxeboot.0 man-sys-catman .cat +./usr/share/man/cat8/i386/reboot.0 man-obsolete obsolete +./usr/share/man/cat8/i386/reboot_i386.0 man-obsolete obsolete +./usr/share/man/cat8/i386/vgaio.0 man-obsolete obsolete +./usr/share/man/cat8/i386/w95boot.0 man-obsolete obsolete +./usr/share/man/cat8/i386/zzz.0 man-obsolete obsolete +./usr/share/man/cat8/iasl.0 man-sysutil-catman .cat +./usr/share/man/cat8/ibmnws/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/identd.0 man-netutil-catman .cat +./usr/share/man/cat8/ifconfig.0 man-netutil-catman .cat +./usr/share/man/cat8/ifmcstat.0 man-netutil-catman inet6,.cat +./usr/share/man/cat8/ifwatchd.0 man-netutil-catman .cat +./usr/share/man/cat8/inetd.0 man-netutil-catman .cat +./usr/share/man/cat8/init.0 man-sysutil-catman .cat +./usr/share/man/cat8/installboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/intro.0 man-sys-catman .cat +./usr/share/man/cat8/iopctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/iostat.0 man-sysutil-catman .cat +./usr/share/man/cat8/ipf.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat8/ipfs.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat8/ipfstat.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat8/ipmon.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat8/ipnat.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat8/ippool.0 man-ipf-catman ipfilter,.cat +./usr/share/man/cat8/ipppctl.0 man-isdn-catman .cat +./usr/share/man/cat8/iprop-log.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/iprop.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/ipropd-master.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/ipropd-slave.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/ipwctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/irda.0 man-sysutil-catman .cat +./usr/share/man/cat8/irdaattach.0 man-sysutil-catman .cat +./usr/share/man/cat8/iscsi-initiator.0 man-iscsi-catman iscsi,.cat +./usr/share/man/cat8/iscsi-target.0 man-iscsi-catman iscsi,.cat +./usr/share/man/cat8/iscsictl.0 man-iscsi-catman iscsi,.cat +./usr/share/man/cat8/iscsid.0 man-iscsi-catman iscsi,.cat +./usr/share/man/cat8/isdnd.0 man-isdn-catman .cat +./usr/share/man/cat8/isdnmonitor.0 man-isdn-catman .cat +./usr/share/man/cat8/isdntel.0 man-isdn-catman .cat +./usr/share/man/cat8/isdntelctl.0 man-isdn-catman .cat +./usr/share/man/cat8/isdntrace.0 man-isdn-catman .cat +./usr/share/man/cat8/isibootd.0 man-bootserver-catman .cat +./usr/share/man/cat8/ispppcontrol.0 man-obsolete obsolete +./usr/share/man/cat8/iteconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/iwictl.0 man-sysutil-catman .cat +./usr/share/man/cat8/kadmin.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/kadmind.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/kcm.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/kdc.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/kerberos.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/kfd.0 man-obsolete obsolete +./usr/share/man/cat8/kimpersonate.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/kpasswdd.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/kstash.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/ktutil.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/kvm_mkdb.0 man-obsolete obsolete +./usr/share/man/cat8/lastlogin.0 man-sysutil-catman .cat +./usr/share/man/cat8/ldconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/ldpd.0 man-router-catman .cat +./usr/share/man/cat8/lfs_cleanerd.0 man-sysutil-catman .cat +./usr/share/man/cat8/link.0 man-sysutil-catman .cat +./usr/share/man/cat8/lmcconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/lmcctl.0 man-obsolete obsolete +./usr/share/man/cat8/lmtp.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/local.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/locate.updatedb.0 man-sysutil-catman .cat +./usr/share/man/cat8/lockd.0 man-nfsserver-catman .cat +./usr/share/man/cat8/lockstat.0 man-sysutil-catman .cat +./usr/share/man/cat8/lpc.0 man-lpr-catman .cat +./usr/share/man/cat8/lpd.0 man-lpr-catman .cat +./usr/share/man/cat8/luna68k/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/luna68k/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/lvchange.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvconvert.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvcreate.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvdisplay.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvextend.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvm.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvmchange.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvmdiskscan.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvmdump.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvreduce.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvremove.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvrename.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvresize.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvs.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lvscan.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/lwresd.0 man-bind-catman .cat +./usr/share/man/cat8/mac68k/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/mac68k/boot.0 man-sys-catman .cat +./usr/share/man/cat8/mac68k/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/macppc/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/macppc/boot.0 man-sys-catman .cat +./usr/share/man/cat8/macppc/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/macppc/ofwboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/macppc/ofwboot.elf.0 man-sysutil-catman .cat +./usr/share/man/cat8/macppc/ofwboot.xcf.0 man-sysutil-catman .cat +./usr/share/man/cat8/mail.local.0 man-mail-catman .cat +./usr/share/man/cat8/mailstats.0 man-obsolete obsolete +./usr/share/man/cat8/mailwrapper.0 man-mailwrapper-catman .cat +./usr/share/man/cat8/makedbm.0 man-nis-catman yp,.cat +./usr/share/man/cat8/makedev.0 man-sysutil-catman .cat +./usr/share/man/cat8/makedev.local.0 man-sysutil-catman .cat +./usr/share/man/cat8/makefs.0 man-sysutil-catman .cat +./usr/share/man/cat8/makekey.0 man-crypto-catman .cat +./usr/share/man/cat8/makemandb.0 man-man-catman makemandb,.cat +./usr/share/man/cat8/makemap.0 man-obsolete obsolete +./usr/share/man/cat8/makewhatis.0 man-man-catman !makemandb,.cat +./usr/share/man/cat8/map-mbone.0 man-netutil-catman .cat +./usr/share/man/cat8/master.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/mbr.0 man-obsolete obsolete +./usr/share/man/cat8/mbrlabel.0 man-sysutil-catman .cat +./usr/share/man/cat8/mdconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/mdnsd.0 man-mdns-catman mdns,.cat +./usr/share/man/cat8/mdsetimage.0 man-sysutil-catman binutils,.cat +./usr/share/man/cat8/mfs.0 man-sys-catman .cat +./usr/share/man/cat8/mipsco/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/mipsco/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/mk-amd-map.0 man-amd-catman .cat +./usr/share/man/cat8/mkalias.0 man-nis-catman yp,.cat +./usr/share/man/cat8/mknetid.0 man-nis-catman yp,.cat +./usr/share/man/cat8/mknod.0 man-sysutil-catman .cat +./usr/share/man/cat8/mld6query.0 man-netutil-catman use_inet6,.cat +./usr/share/man/cat8/mlxctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/mmcformat.0 man-sysutil-catman .cat +./usr/share/man/cat8/mmeye/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/mmeye/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/modload.0 man-sysutil-catman .cat +./usr/share/man/cat8/modstat.0 man-sysutil-catman .cat +./usr/share/man/cat8/modunload.0 man-sysutil-catman .cat +./usr/share/man/cat8/mopd.0 man-bootserver-catman .cat +./usr/share/man/cat8/mount.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_9p.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/mount_ados.0 man-adosfs-catman .cat +./usr/share/man/cat8/mount_cd9660.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_chfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_efs.0 man-efs-catman .cat +./usr/share/man/cat8/mount_ext2fs.0 man-ext2fs-catman .cat +./usr/share/man/cat8/mount_fdesc.0 man-miscfs-catman .cat +./usr/share/man/cat8/mount_ffs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_filecore.0 man-filecorefs-catman .cat +./usr/share/man/cat8/mount_hfs.0 man-hfs-catman .cat +./usr/share/man/cat8/mount_hfsp.0 man-obsolete obsolete +./usr/share/man/cat8/mount_kernfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_lfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_mfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_msdos.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_nfs.0 man-nfsclient-catman .cat +./usr/share/man/cat8/mount_nilfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_ntfs.0 man-ntfs-catman .cat +./usr/share/man/cat8/mount_null.0 man-miscfs-catman .cat +./usr/share/man/cat8/mount_overlay.0 man-miscfs-catman .cat +./usr/share/man/cat8/mount_portal.0 man-miscfs-catman .cat +./usr/share/man/cat8/mount_procfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_psshfs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/mount_ptyfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_puffs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_smbfs.0 man-smbfs-catman .cat +./usr/share/man/cat8/mount_sysctlfs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/mount_sysvbfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_tmpfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_udf.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_ufs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mount_umap.0 man-miscfs-catman .cat +./usr/share/man/cat8/mount_union.0 man-miscfs-catman .cat +./usr/share/man/cat8/mount_v7fs.0 man-sysutil-catman .cat +./usr/share/man/cat8/mountd.0 man-nfsserver-catman .cat +./usr/share/man/cat8/moused.0 man-sysutil-catman .cat +./usr/share/man/cat8/mrinfo.0 man-netutil-catman .cat +./usr/share/man/cat8/mrouted.0 man-router-catman .cat +./usr/share/man/cat8/mscdlabel.0 man-sysutil-catman .cat +./usr/share/man/cat8/mtrace.0 man-netutil-catman .cat +./usr/share/man/cat8/mtrace6.0 man-obsolete obsolete +./usr/share/man/cat8/mtree.0 man-sysutil-catman .cat +./usr/share/man/cat8/mvme68k/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/mvme68k/boot.0 man-sys-catman .cat +./usr/share/man/cat8/mvme68k/installboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/mvme68k/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/mvmeppc/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/mvmeppc/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/named-bootconf.0 man-obsolete obsolete +./usr/share/man/cat8/named-checkconf.0 man-bind-catman .cat +./usr/share/man/cat8/named-checkzone.0 man-bind-catman .cat +./usr/share/man/cat8/named-compilezone.0 man-bind-catman .cat +./usr/share/man/cat8/named-journalprint.0 man-bind-catman .cat +./usr/share/man/cat8/named-xfer.0 man-obsolete obsolete +./usr/share/man/cat8/named.0 man-bind-catman .cat +./usr/share/man/cat8/named.reload.0 man-obsolete obsolete +./usr/share/man/cat8/named.restart.0 man-obsolete obsolete +./usr/share/man/cat8/ncdcs.0 man-sysutil-catman binutils,.cat +./usr/share/man/cat8/ndbootd.0 man-bootserver-catman .cat +./usr/share/man/cat8/ndc.0 man-obsolete obsolete +./usr/share/man/cat8/ndiscvt.0 man-obsolete obsolete +./usr/share/man/cat8/ndp.0 man-netutil-catman inet6,.cat +./usr/share/man/cat8/netbsd32.0 man-sys-catman .cat +./usr/share/man/cat8/netgroup_mkdb.0 man-nis-catman .cat +./usr/share/man/cat8/netwinder/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/netwinder/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/newbtconf.0 man-sysutil-catman .cat +./usr/share/man/cat8/newfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/newfs_ext2fs.0 man-sysutil-catman .cat +./usr/share/man/cat8/newfs_lfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/newfs_msdos.0 man-sysutil-catman .cat +./usr/share/man/cat8/newfs_sysvbfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/newfs_udf.0 man-sysutil-catman .cat +./usr/share/man/cat8/newfs_v7fs.0 man-sysutil-catman .cat +./usr/share/man/cat8/newlfs.0 man-obsolete obsolete +./usr/share/man/cat8/news68k/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/news68k/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/newsmips/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/newsmips/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/newsyslog.0 man-sysutil-catman .cat +./usr/share/man/cat8/next68k/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/next68k/boot.0 man-sys-catman .cat +./usr/share/man/cat8/next68k/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/nfsd.0 man-nfsserver-catman .cat +./usr/share/man/cat8/nfsiod.0 man-obsolete obsolete +./usr/share/man/cat8/nis.0 man-nis-catman .cat +./usr/share/man/cat8/nologin.0 man-sysutil-catman .cat +./usr/share/man/cat8/npf.conf.0 man-obsolete obsolete +./usr/share/man/cat8/npfctl.0 man-npf-catman .cat,npf +./usr/share/man/cat8/nqmgr.0 man-obsolete obsolete +./usr/share/man/cat8/nsec3hash.0 man-bind-catman .cat +./usr/share/man/cat8/nslookup.0 man-netutil-catman .cat +./usr/share/man/cat8/nsupdate.0 man-obsolete obsolete +./usr/share/man/cat8/ntalkd.0 man-netutil-catman .cat +./usr/share/man/cat8/ntp-keygen.0 man-ntp-catman crypto,.cat +./usr/share/man/cat8/ntpd.0 man-ntp-catman .cat +./usr/share/man/cat8/ntpdate.0 man-ntp-catman .cat +./usr/share/man/cat8/ntpdc.0 man-ntp-catman .cat +./usr/share/man/cat8/ntpq.0 man-ntp-catman .cat +./usr/share/man/cat8/ntptime.0 man-ntp-catman .cat +./usr/share/man/cat8/ntptrace.0 man-ntp-catman .cat +./usr/share/man/cat8/ofctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/ofppc/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/ofppc/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/oqmgr.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/pac.0 man-sysutil-catman .cat +./usr/share/man/cat8/pam.0 man-sysutil-catman .cat +./usr/share/man/cat8/pam_afslog.0 man-sysutil-catman kerberos,pam,.cat +./usr/share/man/cat8/pam_chroot.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_deny.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_echo.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_exec.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_ftpusers.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_group.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_guest.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_krb5.0 man-sysutil-catman kerberos,pam,.cat +./usr/share/man/cat8/pam_ksu.0 man-sysutil-catman kerberos,pam,.cat +./usr/share/man/cat8/pam_lastlog.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_login_access.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_nologin.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_permit.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_radius.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_rhosts.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_rootok.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_securetty.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_self.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/pam_skey.0 man-sysutil-catman skey,pam,.cat +./usr/share/man/cat8/pam_ssh.0 man-sysutil-catman crypto,pam,.cat +./usr/share/man/cat8/pam_unix.0 man-sysutil-catman pam,.cat +./usr/share/man/cat8/paxctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/pc532/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/pc532/bim.0 man-obsolete obsolete +./usr/share/man/cat8/pc532/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/pcictl.0 man-sysutil-catman .cat +./usr/share/man/cat8/pcnfsd.0 man-nfsserver-catman .cat +./usr/share/man/cat8/pdisk.0 man-sysutil-catman .cat +./usr/share/man/cat8/peace.0 man-obsolete obsolete +./usr/share/man/cat8/perfused.0 man-perfuse-catman .cat +./usr/share/man/cat8/pfctl.0 man-pf-catman pf,.cat +./usr/share/man/cat8/pflogd.0 man-pf-catman pf,.cat +./usr/share/man/cat8/pfs.0 man-pf-catman pf,.cat +./usr/share/man/cat8/pfspamd-setup.0 man-obsolete obsolete +./usr/share/man/cat8/pfspamd.0 man-obsolete obsolete +./usr/share/man/cat8/pfspamdb.0 man-obsolete obsolete +./usr/share/man/cat8/pfspamlogd.0 man-obsolete obsolete +./usr/share/man/cat8/pickup.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/pim6dd.0 man-obsolete obsolete +./usr/share/man/cat8/pim6sd.0 man-obsolete obsolete +./usr/share/man/cat8/ping.0 man-netutil-catman .cat +./usr/share/man/cat8/ping6.0 man-netutil-catman use_inet6,.cat +./usr/share/man/cat8/pipe.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/playstation2/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/playstation2/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/pmax/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/pmax/boot.0 man-sys-catman .cat +./usr/share/man/cat8/pmax/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/pmax/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/pmppc/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/pmppc/boot.0 man-obsolete obsolete +./usr/share/man/cat8/pmppc/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/portmap.0 man-obsolete obsolete +./usr/share/man/cat8/postinstall.0 man-sys-catman .cat +./usr/share/man/cat8/postscreen.0 man-postfix-catman postfix,crypto,.cat +./usr/share/man/cat8/powerd.0 man-sysutil-catman .cat +./usr/share/man/cat8/poweroff.0 man-sysutil-catman .cat +./usr/share/man/cat8/pppd.0 man-ppp-catman .cat +./usr/share/man/cat8/pppd.cbcp.0 man-obsolete obsolete +./usr/share/man/cat8/pppdump.0 man-ppp-catman .cat +./usr/share/man/cat8/pppoectl.0 man-isdn-catman .cat +./usr/share/man/cat8/pppstats.0 man-ppp-catman .cat +./usr/share/man/cat8/praliases.0 man-obsolete obsolete +./usr/share/man/cat8/prep/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/prep/boot.0 man-sys-catman .cat +./usr/share/man/cat8/prep/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/prep/mkbootimage.0 man-sys-catman .cat +./usr/share/man/cat8/proxymap.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/psrset.0 man-sysutil-catman .cat +./usr/share/man/cat8/pstat.0 man-sysutil-catman .cat +./usr/share/man/cat8/pvchange.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pvck.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pvcreate.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pvcsif.0 man-netutil-catman .cat +./usr/share/man/cat8/pvctxctl.0 man-netutil-catman .cat +./usr/share/man/cat8/pvdisplay.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pvmove.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pvremove.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pvresize.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pvs.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pvscan.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/pwd_mkdb.0 man-sysutil-catman .cat +./usr/share/man/cat8/qmgr.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/qmqpd.0 man-obsolete obsolete +./usr/share/man/cat8/quot.0 man-sysutil-catman .cat +./usr/share/man/cat8/quotacheck.0 man-sysutil-catman .cat +./usr/share/man/cat8/quotactl.0 man-obsolete obsolete +./usr/share/man/cat8/quotadump.0 man-sysutil-catman .cat +./usr/share/man/cat8/quotaoff.0 man-sysutil-catman .cat +./usr/share/man/cat8/quotaon.0 man-sysutil-catman .cat +./usr/share/man/cat8/quotarestore.0 man-sysutil-catman .cat +./usr/share/man/cat8/racoon.0 man-netutil-catman crypto,.cat +./usr/share/man/cat8/racoonctl.0 man-netutil-catman crypto,.cat +./usr/share/man/cat8/raidctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/rarpd.0 man-bootserver-catman .cat +./usr/share/man/cat8/rbootd.0 man-bootserver-catman .cat +./usr/share/man/cat8/rc.0 man-rc-catman .cat +./usr/share/man/cat8/rc.d.0 man-rc-catman .cat +./usr/share/man/cat8/rc.local.0 man-rc-catman .cat +./usr/share/man/cat8/rc.shutdown.0 man-rc-catman .cat +./usr/share/man/cat8/rc.subr.0 man-rc-catman .cat +./usr/share/man/cat8/rcorder.0 man-sysutil-catman .cat +./usr/share/man/cat8/rdate.0 man-netutil-catman .cat +./usr/share/man/cat8/rdconfig.0 man-obsolete obsolete +./usr/share/man/cat8/rdisc.0 man-netutil-catman .cat +./usr/share/man/cat8/rdump.0 man-netutil-catman .cat +./usr/share/man/cat8/rdump_lfs.0 man-netutil-catman .cat +./usr/share/man/cat8/reboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/renice.0 man-sysutil-catman .cat +./usr/share/man/cat8/repquota.0 man-sysutil-catman .cat +./usr/share/man/cat8/rescue.0 man-sysutil-catman .cat +./usr/share/man/cat8/resize_ffs.0 man-sysutil-catman .cat +./usr/share/man/cat8/resize_lfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/resolvconf.0 man-resolvconf-catman .cat +./usr/share/man/cat8/restore.0 man-sysutil-catman .cat +./usr/share/man/cat8/revnetgroup.0 man-nis-catman yp,.cat +./usr/share/man/cat8/revoke.0 man-sysutil-catman .cat +./usr/share/man/cat8/rexecd.0 man-netutil-catman .cat +./usr/share/man/cat8/rip6query.0 man-netutil-catman inet6,.cat +./usr/share/man/cat8/rlogind.0 man-netutil-catman .cat +./usr/share/man/cat8/rmail.0 man-obsolete obsolete +./usr/share/man/cat8/rmt.0 man-sysutil-catman .cat +./usr/share/man/cat8/rndc-confgen.0 man-bind-catman .cat +./usr/share/man/cat8/rndc.0 man-bind-catman .cat +./usr/share/man/cat8/rndctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/route.0 man-netutil-catman .cat +./usr/share/man/cat8/route6d.0 man-router-catman use_inet6,.cat +./usr/share/man/cat8/routed.0 man-router-catman .cat +./usr/share/man/cat8/rpc.bootparamd.0 man-bootserver-catman .cat +./usr/share/man/cat8/rpc.lockd.0 man-nfsserver-catman .cat +./usr/share/man/cat8/rpc.pcnfsd.0 man-nfsserver-catman .cat +./usr/share/man/cat8/rpc.rquotad.0 man-nfsserver-catman .cat +./usr/share/man/cat8/rpc.rstatd.0 man-rpcserver-catman .cat +./usr/share/man/cat8/rpc.rusersd.0 man-rpcserver-catman .cat +./usr/share/man/cat8/rpc.rwalld.0 man-rpcserver-catman .cat +./usr/share/man/cat8/rpc.sprayd.0 man-rpcserver-catman .cat +./usr/share/man/cat8/rpc.statd.0 man-nfsserver-catman .cat +./usr/share/man/cat8/rpc.yppasswdd.0 man-nis-catman yp,.cat +./usr/share/man/cat8/rpcbind.0 man-rpcserver-catman .cat +./usr/share/man/cat8/rpcinfo.0 man-rpcutil-catman .cat +./usr/share/man/cat8/rquotad.0 man-nfsserver-catman .cat +./usr/share/man/cat8/rrestore.0 man-netutil-catman .cat +./usr/share/man/cat8/rshd.0 man-netutil-catman .cat +./usr/share/man/cat8/rstatd.0 man-netutil-catman .cat +./usr/share/man/cat8/rtadvd.0 man-router-catman use_inet6,.cat +./usr/share/man/cat8/rtquery.0 man-netutil-catman .cat +./usr/share/man/cat8/rtsol.0 man-netutil-catman inet6,.cat +./usr/share/man/cat8/rtsold.0 man-netutil-catman inet6,.cat +./usr/share/man/cat8/rump_cd9660.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_efs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_ext2fs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_ffs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_hfs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_lfs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_msdos.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_nfs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_ntfs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_smbfs.0 man-puffs-catman crypto,.cat,rump +./usr/share/man/cat8/rump_syspuffs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_sysvbfs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_tmpfs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_udf.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rump_v7fs.0 man-puffs-catman .cat,rump +./usr/share/man/cat8/rusersd.0 man-netutil-catman .cat +./usr/share/man/cat8/rwalld.0 man-netutil-catman .cat +./usr/share/man/cat8/rwhod.0 man-netutil-catman .cat +./usr/share/man/cat8/sa.0 man-sysutil-catman .cat +./usr/share/man/cat8/sandpoint/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/sandpoint/altboot.0 man-sysutil-catman .cat +./usr/share/man/cat8/sandpoint/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/savecore.0 man-sysutil-catman .cat +./usr/share/man/cat8/sbmips/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/sbmips/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/scache.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/scan_ffs.0 man-sysutil-catman .cat +./usr/share/man/cat8/scan_lfs.0 man-sysutil-catman .cat +./usr/share/man/cat8/schedctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/scsictl.0 man-sysutil-catman .cat +./usr/share/man/cat8/sdpd.0 man-sysutil-catman .cat +./usr/share/man/cat8/security.0 man-obsolete obsolete +./usr/share/man/cat8/sendmail.0 man-obsolete obsolete +./usr/share/man/cat8/services_mkdb.0 man-sysutil-catman .cat +./usr/share/man/cat8/sesd.0 man-sysutil-catman .cat +./usr/share/man/cat8/setencstat.0 man-sysutil-catman .cat +./usr/share/man/cat8/setkey.0 man-netutil-catman .cat +./usr/share/man/cat8/setobjstat.0 man-sysutil-catman .cat +./usr/share/man/cat8/sftp-server.0 man-secsh-catman crypto,.cat +./usr/share/man/cat8/sgimips/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/sgimips/boot.0 man-sys-catman .cat +./usr/share/man/cat8/sgimips/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/sgimips/sgivol.0 man-sys-catman .cat +./usr/share/man/cat8/shark/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/shark/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/showmount.0 man-nfsclient-catman .cat +./usr/share/man/cat8/showq.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/shutdown.0 man-sysutil-catman .cat +./usr/share/man/cat8/slattach.0 man-slip-catman .cat +./usr/share/man/cat8/slip.0 man-obsolete obsolete +./usr/share/man/cat8/sliplogin.0 man-slip-catman .cat +./usr/share/man/cat8/slstats.0 man-slip-catman .cat +./usr/share/man/cat8/smrsh.0 man-obsolete obsolete +./usr/share/man/cat8/smtp.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/smtpd.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/spamd-setup.0 man-obsolete obsolete +./usr/share/man/cat8/spamd.0 man-obsolete obsolete +./usr/share/man/cat8/spamdb.0 man-obsolete obsolete +./usr/share/man/cat8/spamlogd.0 man-obsolete obsolete +./usr/share/man/cat8/sparc/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/sparc/binstall.0 man-sysutil-catman .cat +./usr/share/man/cat8/sparc/boot.0 man-sys-catman .cat +./usr/share/man/cat8/sparc/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/sparc/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/sparc/tadpolectl.0 man-sysutil-catman .cat +./usr/share/man/cat8/sparc64/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/sparc64/boot.0 man-sys-catman .cat +./usr/share/man/cat8/sparc64/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/sparc64/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/sparc64/ofwboot.0 man-sys-catman .cat +./usr/share/man/cat8/spawn.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/spray.0 man-rpcutil-catman .cat +./usr/share/man/cat8/sprayd.0 man-rpcserver-catman .cat +./usr/share/man/cat8/ssh-keysign.0 man-secsh-catman crypto,.cat +./usr/share/man/cat8/ssh-pkcs11-helper.0 man-secsh-catman crypto,.cat +./usr/share/man/cat8/sshd.0 man-secsh-catman crypto,.cat +./usr/share/man/cat8/statd.0 man-nfsserver-catman .cat +./usr/share/man/cat8/statmsg.0 man-obsolete obsolete +./usr/share/man/cat8/stdethers.0 man-nis-catman yp,.cat +./usr/share/man/cat8/stdhosts.0 man-nis-catman yp,.cat +./usr/share/man/cat8/sti.0 man-sysutil-catman .cat +./usr/share/man/cat8/sticky.0 man-obsolete obsolete +./usr/share/man/cat8/string2key.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/sun2/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/sun2/boot.0 man-sys-catman .cat +./usr/share/man/cat8/sun2/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/sun3/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/sun3/boot.0 man-sys-catman .cat +./usr/share/man/cat8/sun3/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/sun3/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/sun3x man-obsolete obsolete +./usr/share/man/cat8/sun3x/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/sunlabel.0 man-sysutil-catman .cat +./usr/share/man/cat8/supfilesrv.0 man-sup-catman .cat +./usr/share/man/cat8/supscan.0 man-sup-catman .cat +./usr/share/man/cat8/supservers.0 man-sup-catman .cat +./usr/share/man/cat8/sushi.0 man-obsolete obsolete +./usr/share/man/cat8/svhlabel.0 man-sysutil-catman .cat +./usr/share/man/cat8/swapctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/swapon.0 man-sysutil-catman .cat +./usr/share/man/cat8/sync.0 man-sysutil-catman .cat +./usr/share/man/cat8/sysconfd.0 man-obsolete obsolete +./usr/share/man/cat8/sysctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/sysinst.0 man-sysutil-man .cat +./usr/share/man/cat8/syslogd.0 man-sysutil-catman .cat +./usr/share/man/cat8/talkd.0 man-netutil-catman .cat +./usr/share/man/cat8/tbrconfig.0 man-router-catman .cat +./usr/share/man/cat8/tcpdchk.0 man-netutil-catman .cat +./usr/share/man/cat8/tcpdmatch.0 man-netutil-catman .cat +./usr/share/man/cat8/tcpdrop.0 man-netutil-catman .cat +./usr/share/man/cat8/tcpdump.0 man-netutil-catman .cat +./usr/share/man/cat8/telnetd.0 man-netutil-catman .cat +./usr/share/man/cat8/tftp-proxy.0 man-pf-catman pf,.cat +./usr/share/man/cat8/tftpd.0 man-netutil-catman .cat +./usr/share/man/cat8/timed.0 man-timed-catman .cat +./usr/share/man/cat8/timedc.0 man-timed-catman .cat +./usr/share/man/cat8/tlsmgr.0 man-postfix-catman postfix,crypto,.cat +./usr/share/man/cat8/tlsproxy.0 man-postfix-catman postfix,crypto,.cat +./usr/share/man/cat8/tpctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/trace.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/traceroute.0 man-netutil-catman .cat +./usr/share/man/cat8/traceroute6.0 man-netutil-catman use_inet6,.cat +./usr/share/man/cat8/trivial-rewrite.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/tprof.0 man-sysutil-catman .cat +./usr/share/man/cat8/trpt.0 man-netutil-catman .cat +./usr/share/man/cat8/trsp.0 man-obsolete obsolete +./usr/share/man/cat8/ttyflags.0 man-sysutil-catman .cat +./usr/share/man/cat8/tunefs.0 man-sysutil-catman .cat +./usr/share/man/cat8/umount.0 man-sysutil-catman .cat +./usr/share/man/cat8/unlink.0 man-sysutil-catman .cat +./usr/share/man/cat8/update.0 man-obsolete obsolete +./usr/share/man/cat8/usbd.0 man-obsolete obsolete +./usr/share/man/cat8/usbdevs.0 man-sysutil-catman .cat +./usr/share/man/cat8/user.0 man-sysutil-catman .cat +./usr/share/man/cat8/useradd.0 man-sysutil-catman .cat +./usr/share/man/cat8/userdel.0 man-sysutil-catman .cat +./usr/share/man/cat8/userinfo.0 man-sysutil-catman .cat +./usr/share/man/cat8/usermod.0 man-sysutil-catman .cat +./usr/share/man/cat8/utmp_update.0 man-sysutil-catman .cat +./usr/share/man/cat8/uucico.0 man-obsolete obsolete +./usr/share/man/cat8/uucpd.0 man-obsolete obsolete +./usr/share/man/cat8/uugetty.0 man-obsolete obsolete +./usr/share/man/cat8/uuxqt.0 man-obsolete obsolete +./usr/share/man/cat8/vax/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/vax/boot.0 man-sys-catman .cat +./usr/share/man/cat8/vax/crash.0 man-sys-catman .cat +./usr/share/man/cat8/vax/drtest.0 man-sys-catman .cat +./usr/share/man/cat8/vax/format.0 man-sys-catman .cat +./usr/share/man/cat8/vax/installboot.0 man-obsolete obsolete +./usr/share/man/cat8/vax/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/veriexec.0 man-sys-catman .cat +./usr/share/man/cat8/veriexecctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/veriexecgen.0 man-sysutil-catman .cat +./usr/share/man/cat8/verifiedexec_load.0 man-obsolete obsolete +./usr/share/man/cat8/verify.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/verify_krb5_conf.0 man-krb5-catman kerberos,.cat +./usr/share/man/cat8/vgcfgbackup.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgcfgrestore.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgchange.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgck.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgconvert.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgcreate.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgdisplay.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgexport.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgextend.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgimport.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgmerge.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgmknodes.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgreduce.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgremove.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgrename.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgs.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgscan.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vgsplit.0 man-lvm-catman lvm,.cat +./usr/share/man/cat8/vinum.0 man-obsolete obsolete +./usr/share/man/cat8/vipw.0 man-sysutil-catman .cat +./usr/share/man/cat8/virecover.0 man-sysutil-catman .cat +./usr/share/man/cat8/virtual.0 man-postfix-catman postfix,.cat +./usr/share/man/cat8/vmstat.0 man-obsolete obsolete +./usr/share/man/cat8/vnconfig.0 man-sysutil-catman .cat +./usr/share/man/cat8/wake.0 man-obsolete obsolete +./usr/share/man/cat8/wakeonlan.0 man-netutil-catman .cat +./usr/share/man/cat8/walnut/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/walnut/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/wdogctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/wiconfig.0 man-netutil-catman .cat +./usr/share/man/cat8/wire-test.0 man-netutil-catman .cat +./usr/share/man/cat8/wizd.0 man-sysutil-catman .cat +./usr/share/man/cat8/wlanctl.0 man-netutil-catman .cat +./usr/share/man/cat8/wpa_cli.0 man-netutil-catman .cat +./usr/share/man/cat8/wpa_passphrase.0 man-netutil-catman .cat +./usr/share/man/cat8/wpa_supplicant.0 man-netutil-catman .cat +./usr/share/man/cat8/wsconscfg.0 man-sysutil-catman .cat +./usr/share/man/cat8/wsconsctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/wsfontload.0 man-sysutil-catman .cat +./usr/share/man/cat8/wsmoused.0 man-sysutil-catman .cat +./usr/share/man/cat8/wsmuxctl.0 man-sysutil-catman .cat +./usr/share/man/cat8/x68k/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/x68k/boot.0 man-sys-catman .cat +./usr/share/man/cat8/x68k/loadbsd.0 man-sys-catman .cat +./usr/share/man/cat8/x68k/loadbsd.x.0 man-sys-catman .cat +./usr/share/man/cat8/x68k/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/x68k/memswitch.0 man-sysutil-catman .cat +./usr/share/man/cat8/x68k/newdisk.0 man-sysutil-catman .cat +./usr/share/man/cat8/x68k/poffd.0 man-obsolete obsolete +./usr/share/man/cat8/x68k/rtcalarm.0 man-obsolete obsolete +./usr/share/man/cat8/x86_64/MAKEDEV.0 man-obsolete obsolete +./usr/share/man/cat8/x86_64/makedev.0 man-obsolete obsolete +./usr/share/man/cat8/xntpd.0 man-obsolete obsolete +./usr/share/man/cat8/xntpdc.0 man-obsolete obsolete +./usr/share/man/cat8/yp.0 man-nis-catman .cat +./usr/share/man/cat8/ypbind.0 man-nis-catman yp,.cat +./usr/share/man/cat8/ypinit.0 man-nis-catman yp,.cat +./usr/share/man/cat8/yppasswdd.0 man-nis-catman yp,.cat +./usr/share/man/cat8/yppoll.0 man-nis-catman yp,.cat +./usr/share/man/cat8/yppush.0 man-nis-catman yp,.cat +./usr/share/man/cat8/ypserv.0 man-nis-catman yp,.cat +./usr/share/man/cat8/ypset.0 man-nis-catman yp,.cat +./usr/share/man/cat8/yptest.0 man-nis-catman yp,.cat +./usr/share/man/cat8/ypxfr.0 man-nis-catman yp,.cat +./usr/share/man/cat8/zdb.0 man-zfs-catman zfs,.cat +./usr/share/man/cat8/zdump.0 man-sysutil-catman .cat +./usr/share/man/cat8/zfs.0 man-zfs-catman zfs,.cat +./usr/share/man/cat8/zic.0 man-sysutil-catman .cat +./usr/share/man/cat8/zpool.0 man-zfs-catman zfs,.cat +./usr/share/man/cat8/zzz.0 man-sysutil-catman .cat +./usr/share/man/cat9/boot.0 man-obsolete obsolete +./usr/share/man/html1/Mail.html man-mail-htmlman html +./usr/share/man/html1/[.html man-util-htmlman html +./usr/share/man/html1/agrep.html man-util-htmlman html +./usr/share/man/html1/alias.html man-util-htmlman html +./usr/share/man/html1/altqstat.html man-router-htmlman html +./usr/share/man/html1/apply.html man-util-htmlman html +./usr/share/man/html1/apropos.html man-man-htmlman html +./usr/share/man/html1/arpaname.html man-bind-htmlman html +./usr/share/man/html1/at.html man-cron-htmlman html +./usr/share/man/html1/atari/edahdi.html man-sysutil-htmlman html +./usr/share/man/html1/atari/msconfig.html man-sysutil-htmlman html +./usr/share/man/html1/atf-check.html man-atf-htmlman html,atf +./usr/share/man/html1/atf-cleanup.html man-obsolete obsolete +./usr/share/man/html1/atf-compile.html man-obsolete obsolete +./usr/share/man/html1/atf-config.html man-atf-htmlman html,atf +./usr/share/man/html1/atf-exec.html man-atf-htmlman obsolete +./usr/share/man/html1/atf-format.html man-obsolete obsolete +./usr/share/man/html1/atf-killpg.html man-obsolete obsolete +./usr/share/man/html1/atf-report.html man-atf-htmlman html,atf +./usr/share/man/html1/atf-run.html man-atf-htmlman html,atf +./usr/share/man/html1/atf-sh.html man-atf-htmlman html,atf +./usr/share/man/html1/atf-test-program.html man-atf-htmlman html,atf +./usr/share/man/html1/atf-version.html man-atf-htmlman html,atf +./usr/share/man/html1/atq.html man-cron-htmlman html +./usr/share/man/html1/atrm.html man-cron-htmlman html +./usr/share/man/html1/audiocfg.html man-audio-htmlman html +./usr/share/man/html1/audioctl.html man-audio-htmlman html +./usr/share/man/html1/audioplay.html man-audio-htmlman html +./usr/share/man/html1/audiorecord.html man-audio-htmlman html +./usr/share/man/html1/audit-packages.html man-obsolete obsolete +./usr/share/man/html1/awk.html man-util-htmlman html +./usr/share/man/html1/banner.html man-util-htmlman html +./usr/share/man/html1/basename.html man-util-htmlman html +./usr/share/man/html1/batch.html man-cron-htmlman html +./usr/share/man/html1/bc.html man-util-htmlman html +./usr/share/man/html1/bdes.html man-crypto-htmlman crypto,html +./usr/share/man/html1/bg.html man-util-htmlman html +./usr/share/man/html1/biff.html man-mail-htmlman html +./usr/share/man/html1/bpm.html man-pkgutil-htmlman crypto,html +./usr/share/man/html1/bthset.html man-util-htmlman html +./usr/share/man/html1/btkey.html man-util-htmlman html +./usr/share/man/html1/btpin.html man-util-htmlman html +./usr/share/man/html1/bunzip2.html man-util-htmlman html +./usr/share/man/html1/bzcat.html man-util-htmlman html +./usr/share/man/html1/bzip2.html man-util-htmlman html +./usr/share/man/html1/bzip2recover.html man-util-htmlman html +./usr/share/man/html1/cal.html man-util-htmlman html +./usr/share/man/html1/calendar.html man-util-htmlman html +./usr/share/man/html1/cap_mkdb.html man-util-htmlman html +./usr/share/man/html1/cat.html man-util-htmlman html +./usr/share/man/html1/ccom.html man-util-htmlman pcc,html +./usr/share/man/html1/cd.html man-util-htmlman html +./usr/share/man/html1/cdplay.html man-audio-htmlman html +./usr/share/man/html1/chflags.html man-util-htmlman html +./usr/share/man/html1/chfn.html man-util-htmlman html +./usr/share/man/html1/chgrp.html man-util-htmlman html +./usr/share/man/html1/chio.html man-util-htmlman html +./usr/share/man/html1/chmod.html man-util-htmlman html +./usr/share/man/html1/chpass.html man-util-htmlman html +./usr/share/man/html1/chsh.html man-util-htmlman html +./usr/share/man/html1/ci.html man-rcs-htmlman html +./usr/share/man/html1/cksum.html man-util-htmlman html +./usr/share/man/html1/cleantags.html man-util-htmlman html +./usr/share/man/html1/clear.html man-util-htmlman html +./usr/share/man/html1/cmp.html man-util-htmlman html +./usr/share/man/html1/co.html man-rcs-htmlman html +./usr/share/man/html1/col.html man-util-htmlman html +./usr/share/man/html1/colcrt.html man-util-htmlman html +./usr/share/man/html1/colrm.html man-util-htmlman html +./usr/share/man/html1/column.html man-util-htmlman html +./usr/share/man/html1/comm.html man-util-htmlman html +./usr/share/man/html1/compile_et.html man-obsolete obsolete +./usr/share/man/html1/compress.html man-util-htmlman html +./usr/share/man/html1/cp.html man-util-htmlman html +./usr/share/man/html1/cpio.html man-util-htmlman html +./usr/share/man/html1/cpp.html man-util-htmlman gcccmds,html +./usr/share/man/html1/crontab.html man-cron-htmlman html +./usr/share/man/html1/csh.html man-util-htmlman html +./usr/share/man/html1/csplit.html man-util-htmlman html +./usr/share/man/html1/ctags.html man-c-htmlman html +./usr/share/man/html1/cu.html man-util-htmlman html +./usr/share/man/html1/cut.html man-util-htmlman html +./usr/share/man/html1/daicctl.html man-sysutil-htmlman html +./usr/share/man/html1/date.html man-util-htmlman html +./usr/share/man/html1/db.html man-util-htmlman html +./usr/share/man/html1/dc.html man-util-htmlman html +./usr/share/man/html1/dd.html man-util-htmlman html +./usr/share/man/html1/deroff.html man-util-htmlman html +./usr/share/man/html1/df.html man-util-htmlman html +./usr/share/man/html1/diff.html man-util-htmlman html +./usr/share/man/html1/diff3.html man-util-htmlman html +./usr/share/man/html1/dig.html man-netutil-htmlman html +./usr/share/man/html1/dirname.html man-util-htmlman html +./usr/share/man/html1/dirs.html man-util-htmlman html +./usr/share/man/html1/dns-sd.html man-mdns-htmlman mdns,html +./usr/share/man/html1/domainname.html man-nis-htmlman html +./usr/share/man/html1/download-vulnerability-list.html man-obsolete obsolete +./usr/share/man/html1/dtmfdecode.html man-isdn-htmlman html +./usr/share/man/html1/dtrace.html man-debug-htmlman dtrace,html +./usr/share/man/html1/du.html man-util-htmlman html +./usr/share/man/html1/echo.html man-util-htmlman html +./usr/share/man/html1/ed.html man-util-htmlman html +./usr/share/man/html1/egrep.html man-util-htmlman html +./usr/share/man/html1/eject.html man-util-htmlman html +./usr/share/man/html1/env.html man-util-htmlman html +./usr/share/man/html1/error.html man-util-htmlman html +./usr/share/man/html1/ex.html man-util-htmlman html +./usr/share/man/html1/expand.html man-util-htmlman html +./usr/share/man/html1/expr.html man-util-htmlman html +./usr/share/man/html1/false.html man-util-htmlman html +./usr/share/man/html1/fdformat.html man-util-htmlman html +./usr/share/man/html1/fg.html man-util-htmlman html +./usr/share/man/html1/fgrep.html man-util-htmlman html +./usr/share/man/html1/file.html man-util-htmlman html +./usr/share/man/html1/fincore.html man-util-htmlman html +./usr/share/man/html1/find.html man-util-htmlman html +./usr/share/man/html1/finger.html man-util-htmlman html +./usr/share/man/html1/fmt.html man-util-htmlman html +./usr/share/man/html1/fold.html man-util-htmlman html +./usr/share/man/html1/foreach.html man-util-htmlman html +./usr/share/man/html1/from.html man-util-htmlman html +./usr/share/man/html1/fsplit.html man-util-htmlman html +./usr/share/man/html1/fstat.html man-util-htmlman html +./usr/share/man/html1/ftp.html man-netutil-htmlman html +./usr/share/man/html1/gcpp.html man-util-htmlman gcccmds,html +./usr/share/man/html1/gencat.html man-locale-htmlman html +./usr/share/man/html1/getcap.html man-util-htmlman html +./usr/share/man/html1/getconf.html man-util-htmlman html +./usr/share/man/html1/getent.html man-util-htmlman html +./usr/share/man/html1/getextattr.html man-util-htmlman html +./usr/share/man/html1/getopt.html man-util-htmlman html +./usr/share/man/html1/gettext.html man-locale-htmlman html +./usr/share/man/html1/gkermit.html man-util-htmlman html +./usr/share/man/html1/grep.html man-util-htmlman html +./usr/share/man/html1/groups.html man-util-htmlman html +./usr/share/man/html1/gunzip.html man-util-htmlman html +./usr/share/man/html1/gzcat.html man-util-htmlman html +./usr/share/man/html1/gzexe.html man-util-htmlman html +./usr/share/man/html1/gzip.html man-util-htmlman html +./usr/share/man/html1/head.html man-util-htmlman html +./usr/share/man/html1/hesinfo.html man-hesiod-htmlman hesiod,html +./usr/share/man/html1/hexdump.html man-util-htmlman html +./usr/share/man/html1/history.html man-util-htmlman html +./usr/share/man/html1/host.html man-netutil-htmlman html +./usr/share/man/html1/hostname.html man-util-htmlman html +./usr/share/man/html1/hp300/grfinfo.html man-obsolete obsolete +./usr/share/man/html1/iconv.html man-util-htmlman html +./usr/share/man/html1/id.html man-util-htmlman html +./usr/share/man/html1/ident.html man-util-htmlman html +./usr/share/man/html1/indent.html man-c-htmlman html +./usr/share/man/html1/info.html man-texinfo-htmlman html +./usr/share/man/html1/infocmp.html man-util-htmlman html +./usr/share/man/html1/infokey.html man-texinfo-htmlman html +./usr/share/man/html1/innetgr.html man-nis-htmlman html +./usr/share/man/html1/install-info.html man-texinfo-htmlman html +./usr/share/man/html1/install.html man-util-htmlman html +./usr/share/man/html1/intro.html man-sys-htmlman html +./usr/share/man/html1/ipcrm.html man-util-htmlman html +./usr/share/man/html1/ipcs.html man-util-htmlman html +./usr/share/man/html1/ipftest.html man-ipf-htmlman ipfilter,html +./usr/share/man/html1/ipresend.html man-ipf-htmlman ipfilter,html +./usr/share/man/html1/ipsend.html man-ipf-htmlman ipfilter,html +./usr/share/man/html1/iptest.html man-ipf-htmlman ipfilter,html +./usr/share/man/html1/jobs.html man-util-htmlman html +./usr/share/man/html1/join.html man-util-htmlman html +./usr/share/man/html1/jot.html man-util-htmlman html +./usr/share/man/html1/kdestroy.html man-krb5-htmlman kerberos,html +./usr/share/man/html1/kdump.html man-debug-htmlman html +./usr/share/man/html1/kgetcred.html man-krb5-htmlman kerberos,html +./usr/share/man/html1/kill.html man-util-htmlman html +./usr/share/man/html1/kimpersonate.html man-obsolete obsolete +./usr/share/man/html1/kinit.html man-krb5-htmlman kerberos,html +./usr/share/man/html1/klist.html man-krb5-htmlman kerberos,html +./usr/share/man/html1/kpasswd.html man-krb5-htmlman kerberos,html +./usr/share/man/html1/krb5-config.html man-krb5-htmlman kerberos,html +./usr/share/man/html1/ksh.html man-util-htmlman html +./usr/share/man/html1/ktrace.html man-debug-htmlman html +./usr/share/man/html1/ktruss.html man-debug-htmlman html +./usr/share/man/html1/lam.html man-util-htmlman html +./usr/share/man/html1/last.html man-util-htmlman html +./usr/share/man/html1/lastcomm.html man-util-htmlman html +./usr/share/man/html1/ld.aout_so.html man-shlib-htmlman html +./usr/share/man/html1/ld.elf_so.html man-shlib-htmlman html +./usr/share/man/html1/ld.so.html man-shlib-htmlman html +./usr/share/man/html1/ldapadd.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldapcompare.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldapdelete.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldapexop.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldapmodify.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldapmodrdn.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldappasswd.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldapsearch.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldapurl.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldapwhoami.html man-ldap-htmlman ldap,html +./usr/share/man/html1/ldd.html man-util-htmlman html +./usr/share/man/html1/leave.html man-util-htmlman html +./usr/share/man/html1/less.html man-util-htmlman html +./usr/share/man/html1/lessecho.html man-util-htmlman html +./usr/share/man/html1/lesskey.html man-util-htmlman html +./usr/share/man/html1/limit.html man-util-htmlman html +./usr/share/man/html1/linkfarm.html man-obsolete obsolete +./usr/share/man/html1/ln.html man-util-htmlman html +./usr/share/man/html1/locale.html man-util-htmlman html +./usr/share/man/html1/locate.html man-util-htmlman html +./usr/share/man/html1/lock.html man-util-htmlman html +./usr/share/man/html1/logger.html man-util-htmlman html +./usr/share/man/html1/login.html man-util-htmlman html +./usr/share/man/html1/logname.html man-util-htmlman html +./usr/share/man/html1/look.html man-util-htmlman html +./usr/share/man/html1/lp.html man-lpr-htmlman html +./usr/share/man/html1/lpq.html man-lpr-htmlman html +./usr/share/man/html1/lpr.html man-lpr-htmlman html +./usr/share/man/html1/lprm.html man-lpr-htmlman html +./usr/share/man/html1/lptest.html man-lpr-htmlman html +./usr/share/man/html1/ls.html man-util-htmlman html +./usr/share/man/html1/lsextattr.html man-util-htmlman html +./usr/share/man/html1/lua.html man-util-htmlman html +./usr/share/man/html1/lzcat.html man-util-htmlman html +./usr/share/man/html1/lzf.html man-util-htmlman html +./usr/share/man/html1/lzfcat.html man-util-htmlman html +./usr/share/man/html1/lzma.html man-util-htmlman html +./usr/share/man/html1/lzmainfo.html man-util-htmlman html +./usr/share/man/html1/m4.html man-util-htmlman html +./usr/share/man/html1/machine.html man-util-htmlman html +./usr/share/man/html1/mail.html man-mail-htmlman html +./usr/share/man/html1/mailq.html man-postfix-htmlman postfix,html +./usr/share/man/html1/mailx.html man-mail-htmlman html +./usr/share/man/html1/make.html man-util-htmlman html +./usr/share/man/html1/makeinfo.html man-texinfo-htmlman html +./usr/share/man/html1/man.html man-man-htmlman html +./usr/share/man/html1/mandoc.html man-mdocml-htmlman html +./usr/share/man/html1/md2.html man-util-htmlman html +./usr/share/man/html1/md4.html man-util-htmlman html +./usr/share/man/html1/md5.html man-util-htmlman html +./usr/share/man/html1/merge.html man-util-htmlman html +./usr/share/man/html1/mesg.html man-util-htmlman html +./usr/share/man/html1/midiplay.html man-audio-htmlman html +./usr/share/man/html1/mixerctl.html man-audio-htmlman html +./usr/share/man/html1/mkdep.html man-c-htmlman html +./usr/share/man/html1/mkdir.html man-util-htmlman html +./usr/share/man/html1/mkfifo.html man-sysutil-htmlman html +./usr/share/man/html1/mkfilters.html man-ipf-htmlman ipfilter,html +./usr/share/man/html1/mklocale.html man-util-htmlman html +./usr/share/man/html1/mktemp.html man-util-htmlman html +./usr/share/man/html1/mopchk.html man-bootserver-htmlman html +./usr/share/man/html1/mopcopy.html man-bootserver-htmlman html +./usr/share/man/html1/mopprobe.html man-bootserver-htmlman html +./usr/share/man/html1/moptrace.html man-bootserver-htmlman html +./usr/share/man/html1/more.html man-util-htmlman html +./usr/share/man/html1/mset.html man-obsolete obsolete +./usr/share/man/html1/msgattrib.html man-locale-htmlman html +./usr/share/man/html1/msgcat.html man-locale-htmlman html +./usr/share/man/html1/msgcmp.html man-locale-htmlman html +./usr/share/man/html1/msgcomm.html man-locale-htmlman html +./usr/share/man/html1/msgconv.html man-locale-htmlman html +./usr/share/man/html1/msgen.html man-locale-htmlman html +./usr/share/man/html1/msgexec.html man-locale-htmlman html +./usr/share/man/html1/msgfmt.html man-locale-htmlman html +./usr/share/man/html1/msginit.html man-locale-htmlman html +./usr/share/man/html1/msgmerge.html man-locale-htmlman html +./usr/share/man/html1/msgs.html man-util-htmlman html +./usr/share/man/html1/msgunfmt.html man-locale-htmlman html +./usr/share/man/html1/msguniq.html man-locale-htmlman html +./usr/share/man/html1/mt.html man-util-htmlman html +./usr/share/man/html1/mv.html man-util-htmlman html +./usr/share/man/html1/nbsvtool.html man-crypto-htmlman crypto,html +./usr/share/man/html1/netgroup.html man-nis-htmlman html +./usr/share/man/html1/netpgp.html man-crypto-htmlman crypto,html +./usr/share/man/html1/netpgpkeys.html man-crypto-htmlman crypto,html +./usr/share/man/html1/netpgpverify.html man-crypto-htmlman crypto,html +./usr/share/man/html1/netstat.html man-netutil-htmlman html +./usr/share/man/html1/newaliases.html man-postfix-htmlman postfix,html +./usr/share/man/html1/newgrp.html man-util-htmlman html +./usr/share/man/html1/nex.html man-obsolete obsolete +./usr/share/man/html1/nfsstat.html man-nfsclient-htmlman html +./usr/share/man/html1/nice.html man-util-htmlman html +./usr/share/man/html1/nl.html man-util-htmlman html +./usr/share/man/html1/nohup.html man-util-htmlman html +./usr/share/man/html1/nsupdate.html man-netutil-htmlman html +./usr/share/man/html1/nvi.html man-obsolete obsolete +./usr/share/man/html1/nview.html man-obsolete obsolete +./usr/share/man/html1/od.html man-util-htmlman html +./usr/share/man/html1/omshell.html man-dhcpd-htmlman html +./usr/share/man/html1/openpgp.html man-obsolete obsolete +./usr/share/man/html1/openssl.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_CA.pl.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_asn1parse.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_ca.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_ciphers.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_crl.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_crl2pkcs7.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_dgst.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_dhparam.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_dsa.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_dsaparam.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_ec.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_ecparam.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_enc.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_errstr.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_gendsa.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_genrsa.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_nseq.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_passwd.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_pkcs12.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_pkcs7.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_pkcs8.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_rand.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_req.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_rsa.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_rsautl.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_s_client.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_s_server.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_s_time.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_sess_id.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_smime.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_speed.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_spkac.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_verify.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_version.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_x509.html man-crypto-htmlman crypto,html +./usr/share/man/html1/openssl_x509v3_config.html man-crypto-htmlman crypto,html +./usr/share/man/html1/page.html man-util-htmlman html +./usr/share/man/html1/pagesize.html man-util-htmlman html +./usr/share/man/html1/passwd.html man-util-htmlman html +./usr/share/man/html1/paste.html man-util-htmlman html +./usr/share/man/html1/patch.html man-util-htmlman html +./usr/share/man/html1/pathchk.html man-util-htmlman html +./usr/share/man/html1/pawd.html man-amd-htmlman html +./usr/share/man/html1/pax.html man-util-htmlman html +./usr/share/man/html1/pcap-config.html man-util-htmlman html +./usr/share/man/html1/pcc.html man-util-htmlman pcc,html +./usr/share/man/html1/pcpp.html man-util-htmlman pcc,html +./usr/share/man/html1/pgrep.html man-util-htmlman html +./usr/share/man/html1/pigz.html man-util-htmlman html +./usr/share/man/html1/pkg_add.html man-pkgutil-htmlman crypto,html +./usr/share/man/html1/pkg_admin.html man-pkgutil-htmlman crypto,html +./usr/share/man/html1/pkg_create.html man-pkgutil-htmlman crypto,html +./usr/share/man/html1/pkg_delete.html man-pkgutil-htmlman crypto,html +./usr/share/man/html1/pkg_info.html man-pkgutil-htmlman crypto,html +./usr/share/man/html1/pkg_view.html man-obsolete obsolete +./usr/share/man/html1/pkill.html man-util-htmlman html +./usr/share/man/html1/pmap.html man-util-htmlman html +./usr/share/man/html1/pmc.html man-util-htmlman html +./usr/share/man/html1/popd.html man-util-htmlman html +./usr/share/man/html1/postalias.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postcat.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postconf.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postdrop.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postfix.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postkick.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postlock.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postlog.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postmap.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postmulti.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postqueue.html man-postfix-htmlman postfix,html +./usr/share/man/html1/postsuper.html man-postfix-htmlman postfix,html +./usr/share/man/html1/pr.html man-util-htmlman html +./usr/share/man/html1/prenice.html man-util-htmlman html +./usr/share/man/html1/printenv.html man-util-htmlman html +./usr/share/man/html1/printf.html man-util-htmlman html +./usr/share/man/html1/progress.html man-util-htmlman html +./usr/share/man/html1/ps.html man-util-htmlman html +./usr/share/man/html1/pushd.html man-util-htmlman html +./usr/share/man/html1/pwd.html man-util-htmlman html +./usr/share/man/html1/pwhash.html man-util-htmlman html +./usr/share/man/html1/qsafe.html man-util-htmlman crypto,html +./usr/share/man/html1/qsieve.html man-util-htmlman crypto,html +./usr/share/man/html1/qsubst.html man-util-htmlman html +./usr/share/man/html1/quota.html man-util-htmlman html +./usr/share/man/html1/radioctl.html man-audio-htmlman html +./usr/share/man/html1/rcmd.html man-netutil-htmlman html +./usr/share/man/html1/rcp.html man-netutil-htmlman html +./usr/share/man/html1/rcs.html man-rcs-htmlman html +./usr/share/man/html1/rcsclean.html man-rcs-htmlman html +./usr/share/man/html1/rcsdiff.html man-rcs-htmlman html +./usr/share/man/html1/rcsfreeze.html man-rcs-htmlman html +./usr/share/man/html1/rcsintro.html man-rcs-htmlman html +./usr/share/man/html1/rcslog.html man-rcs-htmlman html +./usr/share/man/html1/rcsmerge.html man-rcs-htmlman html +./usr/share/man/html1/rdist.html man-netutil-htmlman html +./usr/share/man/html1/readlink.html man-util-htmlman html +./usr/share/man/html1/rehash.html man-util-htmlman html +./usr/share/man/html1/repeat.html man-util-htmlman html +./usr/share/man/html1/reset.html man-util-htmlman html +./usr/share/man/html1/rev.html man-util-htmlman html +./usr/share/man/html1/rfcomm_sppd.html man-util-htmlman html +./usr/share/man/html1/rlog.html man-rcs-htmlman html +./usr/share/man/html1/rlogin.html man-netutil-htmlman html +./usr/share/man/html1/rm.html man-util-htmlman html +./usr/share/man/html1/rmd160.html man-util-htmlman html +./usr/share/man/html1/rmdir.html man-util-htmlman html +./usr/share/man/html1/rmextattr.html man-util-htmlman html +./usr/share/man/html1/rs.html man-util-htmlman html +./usr/share/man/html1/rsh.html man-netutil-htmlman html +./usr/share/man/html1/rtld.html man-shlib-htmlman html +./usr/share/man/html1/rump.dhcpclient.html man-netutil-htmlman html,rump +./usr/share/man/html1/rump.halt.html man-netutil-htmlman html,rump +./usr/share/man/html1/rump_allserver.html man-netutil-htmlman html,rump +./usr/share/man/html1/rump_server.html man-netutil-htmlman html,rump +./usr/share/man/html1/rup.html man-netutil-htmlman html +./usr/share/man/html1/ruptime.html man-netutil-htmlman html +./usr/share/man/html1/rusers.html man-netutil-htmlman html +./usr/share/man/html1/rwall.html man-netutil-htmlman html +./usr/share/man/html1/rwho.html man-netutil-htmlman html +./usr/share/man/html1/scp.html man-secsh-htmlman crypto,html +./usr/share/man/html1/screenblank.html man-sysutil-htmlman html +./usr/share/man/html1/script.html man-util-htmlman html +./usr/share/man/html1/sdiff.html man-util-htmlman html +./usr/share/man/html1/sdpquery.html man-util-htmlman html +./usr/share/man/html1/sed.html man-util-htmlman html +./usr/share/man/html1/send-pr.html man-gnats-htmlman html +./usr/share/man/html1/sendmail.html man-postfix-htmlman postfix,html +./usr/share/man/html1/seq.html man-util-htmlman html +./usr/share/man/html1/setextattr.html man-util-htmlman html +./usr/share/man/html1/sftp.html man-secsh-htmlman crypto,html +./usr/share/man/html1/sh.html man-util-htmlman html +./usr/share/man/html1/sha1.html man-util-htmlman html +./usr/share/man/html1/shar.html man-util-htmlman html +./usr/share/man/html1/shlock.html man-util-htmlman html +./usr/share/man/html1/shmif_dumpbus.html man-util-htmlman html +./usr/share/man/html1/shuffle.html man-util-htmlman html +./usr/share/man/html1/skey.html man-util-htmlman skey,html +./usr/share/man/html1/skeyaudit.html man-util-htmlman skey,html +./usr/share/man/html1/skeyinfo.html man-util-htmlman skey,html +./usr/share/man/html1/skeyinit.html man-util-htmlman skey,html +./usr/share/man/html1/sleep.html man-util-htmlman html +./usr/share/man/html1/slogin.html man-secsh-htmlman crypto,html +./usr/share/man/html1/sntp.html man-ntp-htmlman html +./usr/share/man/html1/sockstat.html man-util-htmlman html +./usr/share/man/html1/sort.html man-util-htmlman html +./usr/share/man/html1/source.html man-util-htmlman html +./usr/share/man/html1/spell.html man-util-htmlman html +./usr/share/man/html1/split.html man-util-htmlman html +./usr/share/man/html1/srtconfig.html man-netutil-htmlman html +./usr/share/man/html1/ssh-add.html man-secsh-htmlman crypto,html +./usr/share/man/html1/ssh-agent.html man-secsh-htmlman crypto,html +./usr/share/man/html1/ssh-keygen.html man-secsh-htmlman crypto,html +./usr/share/man/html1/ssh-keyscan.html man-secsh-htmlman crypto,html +./usr/share/man/html1/ssh.html man-secsh-htmlman crypto,html +./usr/share/man/html1/stat.html man-util-htmlman html +./usr/share/man/html1/stop.html man-util-htmlman html +./usr/share/man/html1/stty.html man-util-htmlman html +./usr/share/man/html1/su.html man-util-htmlman html +./usr/share/man/html1/sum.html man-util-htmlman html +./usr/share/man/html1/sup.html man-sup-htmlman html +./usr/share/man/html1/suspend.html man-util-htmlman html +./usr/share/man/html1/sysstat.html man-util-htmlman html +./usr/share/man/html1/systat.html man-util-htmlman html +./usr/share/man/html1/tabs.html man-util-htmlman html +./usr/share/man/html1/tail.html man-util-htmlman html +./usr/share/man/html1/talk.html man-netutil-htmlman html +./usr/share/man/html1/tar.html man-util-htmlman html +./usr/share/man/html1/tcopy.html man-util-htmlman html +./usr/share/man/html1/tee.html man-util-htmlman html +./usr/share/man/html1/telnet.html man-netutil-htmlman html +./usr/share/man/html1/test.html man-util-htmlman html +./usr/share/man/html1/texi2dvi.html man-texinfo-htmlman html +./usr/share/man/html1/texindex.html man-texinfo-htmlman html +./usr/share/man/html1/tftp.html man-netutil-htmlman html +./usr/share/man/html1/tic.html man-util-htmlman html +./usr/share/man/html1/time.html man-util-htmlman html +./usr/share/man/html1/tip.html man-util-htmlman html +./usr/share/man/html1/tmux.html man-util-htmlman html +./usr/share/man/html1/tn3270.html man-obsolete obsolete +./usr/share/man/html1/top.html man-util-htmlman html +./usr/share/man/html1/touch.html man-util-htmlman html +./usr/share/man/html1/tpfmt.html man-util-htmlman html +./usr/share/man/html1/tput.html man-util-htmlman html +./usr/share/man/html1/tr.html man-util-htmlman html +./usr/share/man/html1/true.html man-util-htmlman html +./usr/share/man/html1/tset.html man-util-htmlman html +./usr/share/man/html1/tty.html man-util-htmlman html +./usr/share/man/html1/ul.html man-util-htmlman html +./usr/share/man/html1/uname.html man-util-htmlman html +./usr/share/man/html1/uncompress.html man-util-htmlman html +./usr/share/man/html1/unexpand.html man-util-htmlman html +./usr/share/man/html1/uniq.html man-util-htmlman html +./usr/share/man/html1/units.html man-util-htmlman html +./usr/share/man/html1/unlzf.html man-util-htmlman html +./usr/share/man/html1/unlzma.html man-util-htmlman html +./usr/share/man/html1/unvis.html man-util-htmlman html +./usr/share/man/html1/unxz.html man-util-htmlman html +./usr/share/man/html1/unzip.html man-util-htmlman html +./usr/share/man/html1/uptime.html man-util-htmlman html +./usr/share/man/html1/usbhidaction.html man-util-htmlman html +./usr/share/man/html1/usbhidctl.html man-util-htmlman html +./usr/share/man/html1/users.html man-util-htmlman html +./usr/share/man/html1/utoppya.html man-util-htmlman html +./usr/share/man/html1/uudecode.html man-util-htmlman html +./usr/share/man/html1/uuencode.html man-util-htmlman html +./usr/share/man/html1/uuidgen.html man-util-htmlman html +./usr/share/man/html1/vacation.html man-mail-htmlman html +./usr/share/man/html1/vi.html man-util-htmlman html +./usr/share/man/html1/videoctl.html man-video-htmlman html +./usr/share/man/html1/view.html man-util-htmlman html +./usr/share/man/html1/vis.html man-util-htmlman html +./usr/share/man/html1/vmstat.html man-util-htmlman html +./usr/share/man/html1/vndcompress.html man-util-htmlman html +./usr/share/man/html1/vnduncompress.html man-util-htmlman html +./usr/share/man/html1/w.html man-util-htmlman html +./usr/share/man/html1/wait.html man-util-htmlman html +./usr/share/man/html1/wall.html man-util-htmlman html +./usr/share/man/html1/wc.html man-util-htmlman html +./usr/share/man/html1/what.html man-util-htmlman html +./usr/share/man/html1/whatis.html man-util-htmlman html +./usr/share/man/html1/whereis.html man-util-htmlman html +./usr/share/man/html1/which.html man-util-htmlman html +./usr/share/man/html1/who.html man-util-htmlman html +./usr/share/man/html1/whoami.html man-util-htmlman html +./usr/share/man/html1/whois.html man-netutil-htmlman html +./usr/share/man/html1/window.html man-obsolete obsolete +./usr/share/man/html1/write.html man-util-htmlman html +./usr/share/man/html1/x68k/aout2hux.html man-util-htmlman html +./usr/share/man/html1/x68k/bellctrl.html man-util-htmlman html +./usr/share/man/html1/x68k/loadfont.html man-util-htmlman html +./usr/share/man/html1/x68k/loadkmap.html man-util-htmlman html +./usr/share/man/html1/x68k/palette.html man-util-htmlman html +./usr/share/man/html1/x68k/tvctrl.html man-util-htmlman html +./usr/share/man/html1/xargs.html man-util-htmlman html +./usr/share/man/html1/xgettext.html man-locale-htmlman html +./usr/share/man/html1/xmlwf.html man-util-htmlman html +./usr/share/man/html1/xz.html man-util-htmlman html +./usr/share/man/html1/xzcat.html man-util-htmlman html +./usr/share/man/html1/yes.html man-util-htmlman html +./usr/share/man/html1/ypcat.html man-nis-htmlman yp,html +./usr/share/man/html1/ypmatch.html man-nis-htmlman yp,html +./usr/share/man/html1/yppasswd.html man-nis-htmlman use_yp,html +./usr/share/man/html1/ypwhich.html man-nis-htmlman yp,html +./usr/share/man/html1/zcat.html man-util-htmlman html +./usr/share/man/html1/zcmp.html man-util-htmlman html +./usr/share/man/html1/zdiff.html man-util-htmlman html +./usr/share/man/html1/zegrep.html man-util-htmlman html +./usr/share/man/html1/zfgrep.html man-util-htmlman html +./usr/share/man/html1/zforce.html man-util-htmlman html +./usr/share/man/html1/zgrep.html man-util-htmlman html +./usr/share/man/html1/zmore.html man-util-htmlman html +./usr/share/man/html1/znew.html man-util-htmlman html +./usr/share/man/html4/aac.html man-sys-htmlman html +./usr/share/man/html4/ac97.html man-sys-htmlman html +./usr/share/man/html4/acardide.html man-sys-htmlman html +./usr/share/man/html4/aceride.html man-sys-htmlman html +./usr/share/man/html4/acorn26/arckbd.html man-sys-htmlman html +./usr/share/man/html4/acorn26/arcwskbd.html man-obsolete obsolete +./usr/share/man/html4/acorn26/arcwsmouse.html man-obsolete obsolete +./usr/share/man/html4/acorn26/cpu.html man-sys-htmlman html +./usr/share/man/html4/acorn26/eca.html man-sys-htmlman html +./usr/share/man/html4/acorn26/eh.html man-sys-htmlman html +./usr/share/man/html4/acorn26/iobus.html man-sys-htmlman html +./usr/share/man/html4/acorn26/unixbp.html man-sys-htmlman html +./usr/share/man/html4/acorn32/asc.html man-sys-htmlman html +./usr/share/man/html4/acorn32/autoconf.html man-sys-htmlman html +./usr/share/man/html4/acorn32/cosc.html man-sys-htmlman html +./usr/share/man/html4/acorn32/csc.html man-sys-htmlman html +./usr/share/man/html4/acorn32/ie.html man-sys-htmlman html +./usr/share/man/html4/acorn32/intro.html man-sys-htmlman html +./usr/share/man/html4/acorn32/iomdkbc.html man-sys-htmlman html +./usr/share/man/html4/acorn32/kmem.html man-sys-htmlman html +./usr/share/man/html4/acorn32/lpa.html man-sys-htmlman html +./usr/share/man/html4/acorn32/lpt.html man-sys-htmlman html +./usr/share/man/html4/acorn32/mainbus.html man-sys-htmlman html +./usr/share/man/html4/acorn32/mem.html man-sys-htmlman html +./usr/share/man/html4/acorn32/ptsc.html man-sys-htmlman html +./usr/share/man/html4/acorn32/qms.html man-sys-htmlman html +./usr/share/man/html4/acorn32/vidcaudio.html man-sys-htmlman html +./usr/share/man/html4/acorn32/vidcvideo.html man-sys-htmlman html +./usr/share/man/html4/acphy.html man-sys-htmlman html +./usr/share/man/html4/acpi.html man-sys-htmlman html +./usr/share/man/html4/acpiacad.html man-sys-htmlman html +./usr/share/man/html4/acpibat.html man-sys-htmlman html +./usr/share/man/html4/acpibut.html man-sys-htmlman html +./usr/share/man/html4/acpicpu.html man-sys-htmlman html +./usr/share/man/html4/acpidalb.html man-sys-htmlman html +./usr/share/man/html4/acpiec.html man-sys-htmlman html +./usr/share/man/html4/acpiecdt.html man-sys-htmlman html +./usr/share/man/html4/acpifan.html man-sys-htmlman html +./usr/share/man/html4/acpilid.html man-sys-htmlman html +./usr/share/man/html4/acpiout.html man-sys-htmlman html +./usr/share/man/html4/acpipmtr.html man-sys-htmlman html +./usr/share/man/html4/acpismbus.html man-sys-htmlman html +./usr/share/man/html4/acpitz.html man-sys-htmlman html +./usr/share/man/html4/acpivga.html man-sys-htmlman html +./usr/share/man/html4/acpiwdrt.html man-sys-htmlman html +./usr/share/man/html4/acpiwmi.html man-sys-htmlman html +./usr/share/man/html4/adb.html man-sys-htmlman html +./usr/share/man/html4/adbbt.html man-sys-htmlman html +./usr/share/man/html4/adbkbd.html man-sys-htmlman html +./usr/share/man/html4/adbms.html man-sys-htmlman html +./usr/share/man/html4/adc.html man-sys-htmlman html +./usr/share/man/html4/adm1027.html man-sys-htmlman html +./usr/share/man/html4/adm1030.html man-sys-htmlman html +./usr/share/man/html4/admtemp.html man-sys-htmlman html +./usr/share/man/html4/adt7463.html man-sys-htmlman html +./usr/share/man/html4/adt7466.html man-sys-htmlman html +./usr/share/man/html4/adt7467.html man-sys-htmlman html +./usr/share/man/html4/adt7467c.html man-obsolete obsolete +./usr/share/man/html4/adt7468.html man-sys-htmlman html +./usr/share/man/html4/adt7473.html man-sys-htmlman html +./usr/share/man/html4/adt7475.html man-sys-htmlman html +./usr/share/man/html4/adt7476.html man-sys-htmlman html +./usr/share/man/html4/adv.html man-sys-htmlman html +./usr/share/man/html4/adw.html man-sys-htmlman html +./usr/share/man/html4/age.html man-sys-htmlman html +./usr/share/man/html4/agp.html man-sys-htmlman html +./usr/share/man/html4/agr.html man-sys-htmlman html +./usr/share/man/html4/aha.html man-sys-htmlman html +./usr/share/man/html4/ahb.html man-sys-htmlman html +./usr/share/man/html4/ahc.html man-sys-htmlman html +./usr/share/man/html4/ahcisata.html man-sys-htmlman html +./usr/share/man/html4/ahd.html man-sys-htmlman html +./usr/share/man/html4/ai.html man-sys-htmlman html +./usr/share/man/html4/aiboost.html man-sys-htmlman html +./usr/share/man/html4/aibs.html man-sys-htmlman html +./usr/share/man/html4/aic.html man-sys-htmlman html +./usr/share/man/html4/akbd.html man-sys-htmlman html +./usr/share/man/html4/alc.html man-sys-htmlman html +./usr/share/man/html4/ale.html man-sys-htmlman html +./usr/share/man/html4/alipm.html man-sys-htmlman html +./usr/share/man/html4/alpha/apecs.html man-sys-htmlman html +./usr/share/man/html4/alpha/asc.html man-sys-htmlman html +./usr/share/man/html4/alpha/autoconf.html man-sys-htmlman html +./usr/share/man/html4/alpha/cia.html man-sys-htmlman html +./usr/share/man/html4/alpha/dwlpx.html man-sys-htmlman html +./usr/share/man/html4/alpha/gbus.html man-sys-htmlman html +./usr/share/man/html4/alpha/intro.html man-sys-htmlman html +./usr/share/man/html4/alpha/irongate.html man-sys-htmlman html +./usr/share/man/html4/alpha/jensenio.html man-sys-htmlman html +./usr/share/man/html4/alpha/kft.html man-sys-htmlman html +./usr/share/man/html4/alpha/lca.html man-sys-htmlman html +./usr/share/man/html4/alpha/mcbus.html man-sys-htmlman html +./usr/share/man/html4/alpha/mcmem.html man-sys-htmlman html +./usr/share/man/html4/alpha/mcpcia.html man-sys-htmlman html +./usr/share/man/html4/alpha/sableio.html man-sys-htmlman html +./usr/share/man/html4/alpha/tcasic.html man-sys-htmlman html +./usr/share/man/html4/alpha/tlsb.html man-sys-htmlman html +./usr/share/man/html4/alpha/tlsbmem.html man-sys-htmlman html +./usr/share/man/html4/alpha/tsc.html man-sys-htmlman html +./usr/share/man/html4/alpha/tsp.html man-sys-htmlman html +./usr/share/man/html4/alpha/ttwoga.html man-sys-htmlman html +./usr/share/man/html4/alpha/ttwopci.html man-sys-htmlman html +./usr/share/man/html4/altmem.html man-sys-htmlman html +./usr/share/man/html4/altq.html man-sys-htmlman html +./usr/share/man/html4/amdpm.html man-sys-htmlman html +./usr/share/man/html4/amdtemp.html man-sys-htmlman html +./usr/share/man/html4/amhphy.html man-sys-htmlman html +./usr/share/man/html4/amiga/a1k2cp.html man-sys-htmlman html +./usr/share/man/html4/amiga/afsc.html man-sys-htmlman html +./usr/share/man/html4/amiga/ahsc.html man-sys-htmlman html +./usr/share/man/html4/amiga/amidisplaycc.html man-sys-htmlman html +./usr/share/man/html4/amiga/atzsc.html man-sys-htmlman html +./usr/share/man/html4/amiga/autoconf.html man-sys-htmlman html +./usr/share/man/html4/amiga/bah.html man-sys-htmlman html +./usr/share/man/html4/amiga/bppcsc.html man-sys-htmlman html +./usr/share/man/html4/amiga/clockport.html man-sys-htmlman html +./usr/share/man/html4/amiga/console.html man-sys-htmlman html +./usr/share/man/html4/amiga/cv3dpb.html man-sys-htmlman html +./usr/share/man/html4/amiga/ed.html man-sys-htmlman html +./usr/share/man/html4/amiga/efa.html man-sys-htmlman html +./usr/share/man/html4/amiga/empb.html man-sys-htmlman html +./usr/share/man/html4/amiga/es.html man-sys-htmlman html +./usr/share/man/html4/amiga/fdc.html man-sys-htmlman html +./usr/share/man/html4/amiga/grf.html man-sys-htmlman html +./usr/share/man/html4/amiga/grfcl.html man-sys-htmlman html +./usr/share/man/html4/amiga/grfcv.html man-sys-htmlman html +./usr/share/man/html4/amiga/grfcv3d.html man-sys-htmlman html +./usr/share/man/html4/amiga/grfet.html man-sys-htmlman html +./usr/share/man/html4/amiga/grfrh.html man-sys-htmlman html +./usr/share/man/html4/amiga/grfrt.html man-sys-htmlman html +./usr/share/man/html4/amiga/grful.html man-sys-htmlman html +./usr/share/man/html4/amiga/gtsc.html man-sys-htmlman html +./usr/share/man/html4/amiga/intro.html man-sys-htmlman html +./usr/share/man/html4/amiga/ite.html man-sys-htmlman html +./usr/share/man/html4/amiga/kmem.html man-sys-htmlman html +./usr/share/man/html4/amiga/mem.html man-sys-htmlman html +./usr/share/man/html4/amiga/mfcs.html man-sys-htmlman html +./usr/share/man/html4/amiga/mgnsc.html man-sys-htmlman html +./usr/share/man/html4/amiga/mppb.html man-sys-htmlman html +./usr/share/man/html4/amiga/p5membar.html man-sys-htmlman html +./usr/share/man/html4/amiga/p5pb.html man-sys-htmlman html +./usr/share/man/html4/amiga/qn.html man-sys-htmlman html +./usr/share/man/html4/amiga/ser.html man-sys-htmlman html +./usr/share/man/html4/amiga/wesc.html man-sys-htmlman html +./usr/share/man/html4/amiga/xsurf.html man-sys-htmlman html +./usr/share/man/html4/amiga/zssc.html man-sys-htmlman html +./usr/share/man/html4/amr.html man-sys-htmlman html +./usr/share/man/html4/ams.html man-sys-htmlman html +./usr/share/man/html4/an.html man-sys-htmlman html +./usr/share/man/html4/aps.html man-sys-htmlman html +./usr/share/man/html4/arc/intro.html man-sys-htmlman html +./usr/share/man/html4/arcmsr.html man-sys-htmlman html +./usr/share/man/html4/aria.html man-sys-htmlman html +./usr/share/man/html4/arp.html man-sys-htmlman html +./usr/share/man/html4/artsata.html man-sys-htmlman html +./usr/share/man/html4/ast.html man-sys-htmlman html +./usr/share/man/html4/ata.html man-sys-htmlman html +./usr/share/man/html4/atabus.html man-sys-htmlman html +./usr/share/man/html4/atalk.html man-sys-htmlman html +./usr/share/man/html4/atapi.html man-sys-htmlman html +./usr/share/man/html4/atapibus.html man-sys-htmlman html +./usr/share/man/html4/ataraid.html man-sys-htmlman html +./usr/share/man/html4/atari/et.html man-sys-htmlman html +./usr/share/man/html4/atari/floppy.html man-sys-htmlman html +./usr/share/man/html4/atari/intro.html man-sys-htmlman html +./usr/share/man/html4/atari/ms.html man-sys-htmlman html +./usr/share/man/html4/atari/rtc.html man-sys-htmlman html +./usr/share/man/html4/ate.html man-sys-htmlman html +./usr/share/man/html4/atf-test-case.html man-atf-htmlman html,atf +./usr/share/man/html4/ath.html man-sys-htmlman html +./usr/share/man/html4/atphy.html man-sys-htmlman html +./usr/share/man/html4/atppc.html man-sys-htmlman html +./usr/share/man/html4/attimer.html man-sys-htmlman html +./usr/share/man/html4/atu.html man-sys-htmlman html +./usr/share/man/html4/atw.html man-sys-htmlman html +./usr/share/man/html4/au8522.html man-sys-htmlman html +./usr/share/man/html4/auacer.html man-sys-htmlman html +./usr/share/man/html4/aubtfwl.html man-sys-htmlman html +./usr/share/man/html4/audio.html man-sys-htmlman html +./usr/share/man/html4/audiocs.html man-sys-htmlman html +./usr/share/man/html4/audioctl.html man-sys-htmlman html +./usr/share/man/html4/aue.html man-sys-htmlman html +./usr/share/man/html4/auich.html man-sys-htmlman html +./usr/share/man/html4/auixp.html man-sys-htmlman html +./usr/share/man/html4/autri.html man-sys-htmlman html +./usr/share/man/html4/auvia.html man-sys-htmlman html +./usr/share/man/html4/auvitek.html man-sys-htmlman html +./usr/share/man/html4/awi.html man-sys-htmlman html +./usr/share/man/html4/axe.html man-sys-htmlman html +./usr/share/man/html4/az.html man-sys-htmlman html +./usr/share/man/html4/azalia.html man-sys-htmlman html +./usr/share/man/html4/battery_pmu.html man-sys-htmlman html +./usr/share/man/html4/bba.html man-sys-htmlman html +./usr/share/man/html4/bce.html man-sys-htmlman html +./usr/share/man/html4/bcsp.html man-sys-htmlman html +./usr/share/man/html4/be.html man-sys-htmlman html +./usr/share/man/html4/bge.html man-sys-htmlman html +./usr/share/man/html4/bha.html man-sys-htmlman html +./usr/share/man/html4/bicc.html man-sys-htmlman html +./usr/share/man/html4/bio.html man-sys-htmlman html +./usr/share/man/html4/bktr.html man-sys-htmlman html +./usr/share/man/html4/bluetooth.html man-sys-htmlman html +./usr/share/man/html4/bmtphy.html man-sys-htmlman html +./usr/share/man/html4/bnx.html man-sys-htmlman html +./usr/share/man/html4/boca.html man-sys-htmlman html +./usr/share/man/html4/bpf.html man-sys-htmlman html +./usr/share/man/html4/brgphy.html man-sys-htmlman html +./usr/share/man/html4/bridge.html man-sys-htmlman html +./usr/share/man/html4/bt.html man-sys-htmlman html +./usr/share/man/html4/bt3c.html man-sys-htmlman html +./usr/share/man/html4/btbc.html man-sys-htmlman html +./usr/share/man/html4/bthidev.html man-sys-htmlman html +./usr/share/man/html4/bthub.html man-sys-htmlman html +./usr/share/man/html4/btkbd.html man-sys-htmlman html +./usr/share/man/html4/btmagic.html man-sys-htmlman html +./usr/share/man/html4/btms.html man-sys-htmlman html +./usr/share/man/html4/btsco.html man-sys-htmlman html +./usr/share/man/html4/btuart.html man-sys-htmlman html +./usr/share/man/html4/bwi.html man-sys-htmlman html +./usr/share/man/html4/cac.html man-sys-htmlman html +./usr/share/man/html4/cardbus.html man-sys-htmlman html +./usr/share/man/html4/cardslot.html man-sys-htmlman html +./usr/share/man/html4/carp.html man-sys-htmlman html +./usr/share/man/html4/cas.html man-sys-htmlman html +./usr/share/man/html4/cbb.html man-sys-htmlman html +./usr/share/man/html4/ccd.html man-sys-htmlman html +./usr/share/man/html4/cd.html man-sys-htmlman html +./usr/share/man/html4/cdce.html man-sys-htmlman html +./usr/share/man/html4/cec.html man-sys-htmlman html +./usr/share/man/html4/cfb.html man-sys-htmlman html +./usr/share/man/html4/cgd.html man-sys-htmlman html +./usr/share/man/html4/ch.html man-sys-htmlman html +./usr/share/man/html4/chipsfb.html man-sys-htmlman html +./usr/share/man/html4/ciphy.html man-sys-htmlman html +./usr/share/man/html4/cir.html man-sys-htmlman html +./usr/share/man/html4/ciss.html man-sys-htmlman html +./usr/share/man/html4/clcs.html man-sys-htmlman html +./usr/share/man/html4/clct.html man-sys-htmlman html +./usr/share/man/html4/clnp.html man-sys-htmlman html +./usr/share/man/html4/clockctl.html man-sys-htmlman html +./usr/share/man/html4/cltp.html man-sys-htmlman html +./usr/share/man/html4/cmdide.html man-sys-htmlman html +./usr/share/man/html4/cmpci.html man-sys-htmlman html +./usr/share/man/html4/cms.html man-sys-htmlman html +./usr/share/man/html4/cnw.html man-sys-htmlman html +./usr/share/man/html4/cobalt/gt.html man-sys-htmlman html +./usr/share/man/html4/cobalt/intro.html man-sys-htmlman html +./usr/share/man/html4/com.html man-sys-htmlman html +./usr/share/man/html4/coretemp.html man-obsolete obsolete +./usr/share/man/html4/crypto.html man-sys-htmlman html +./usr/share/man/html4/cs.html man-sys-htmlman html +./usr/share/man/html4/cs80bus.html man-sys-htmlman html +./usr/share/man/html4/cuda.html man-sys-htmlman html +./usr/share/man/html4/cue.html man-sys-htmlman html +./usr/share/man/html4/cx24227.html man-sys-htmlman html +./usr/share/man/html4/cy.html man-sys-htmlman html +./usr/share/man/html4/cypide.html man-sys-htmlman html +./usr/share/man/html4/cz.html man-sys-htmlman html +./usr/share/man/html4/daic.html man-sys-htmlman html +./usr/share/man/html4/dbCool.html man-sys-htmlman html +./usr/share/man/html4/dbcool.html man-sys-htmlman html +./usr/share/man/html4/ddb.html man-sys-htmlman html +./usr/share/man/html4/ddc.html man-sys-htmlman html +./usr/share/man/html4/de.html man-sys-htmlman html +./usr/share/man/html4/depca.html man-sys-htmlman html +./usr/share/man/html4/dge.html man-sys-htmlman html +./usr/share/man/html4/dk.html man-sys-htmlman html +./usr/share/man/html4/dm.html man-sys-htmlman html +./usr/share/man/html4/dmoverio.html man-sys-htmlman html +./usr/share/man/html4/dmphy.html man-sys-htmlman html +./usr/share/man/html4/dpt.html man-sys-htmlman html +./usr/share/man/html4/dpti.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/aica.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/g2bus.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/gapspci.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/gdrom.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/intro.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/maple.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/mkbd.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/mlcd.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/mmem.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/mms.html man-sys-htmlman html +./usr/share/man/html4/dreamcast/pvr.html man-sys-htmlman html +./usr/share/man/html4/drm.html man-sys-htmlman html +./usr/share/man/html4/drum.html man-sys-htmlman html +./usr/share/man/html4/dtide.html man-sys-htmlman html +./usr/share/man/html4/dtv.html man-sys-htmlman html +./usr/share/man/html4/dtviic.html man-sys-htmlman html +./usr/share/man/html4/dty.html man-sys-htmlman html +./usr/share/man/html4/ea.html man-sys-htmlman html +./usr/share/man/html4/eap.html man-sys-htmlman html +./usr/share/man/html4/eb.html man-sys-htmlman html +./usr/share/man/html4/ebus.html man-sys-htmlman html +./usr/share/man/html4/ec.html man-sys-htmlman html +./usr/share/man/html4/edc.html man-sys-htmlman html +./usr/share/man/html4/ef.html man-sys-htmlman html +./usr/share/man/html4/eg.html man-sys-htmlman html +./usr/share/man/html4/ehci.html man-sys-htmlman html +./usr/share/man/html4/ei.html man-sys-htmlman html +./usr/share/man/html4/eisa.html man-sys-htmlman html +./usr/share/man/html4/el.html man-sys-htmlman html +./usr/share/man/html4/elmc.html man-sys-htmlman html +./usr/share/man/html4/emdtv.html man-sys-htmlman html +./usr/share/man/html4/emips/ace.html man-sys-htmlman html +./usr/share/man/html4/emips/autoconf.html man-sys-htmlman html +./usr/share/man/html4/emips/dz.html man-sys-htmlman html +./usr/share/man/html4/emips/ebus.html man-sys-htmlman html +./usr/share/man/html4/emips/eclock.html man-sys-htmlman html +./usr/share/man/html4/emips/enic.html man-sys-htmlman html +./usr/share/man/html4/emips/intro.html man-sys-htmlman html +./usr/share/man/html4/emuxki.html man-sys-htmlman html +./usr/share/man/html4/en.html man-sys-htmlman html +./usr/share/man/html4/envsys.html man-sys-htmlman html +./usr/share/man/html4/ep.html man-sys-htmlman html +./usr/share/man/html4/epic.html man-sys-htmlman html +./usr/share/man/html4/esa.html man-sys-htmlman html +./usr/share/man/html4/esh.html man-sys-htmlman html +./usr/share/man/html4/esiop.html man-sys-htmlman html +./usr/share/man/html4/esis.html man-sys-htmlman html +./usr/share/man/html4/esl.html man-obsolete obsolete +./usr/share/man/html4/esm.html man-sys-htmlman html +./usr/share/man/html4/eso.html man-sys-htmlman html +./usr/share/man/html4/esp.html man-sys-htmlman html +./usr/share/man/html4/ess.html man-sys-htmlman html +./usr/share/man/html4/et.html man-sys-htmlman html +./usr/share/man/html4/etherip.html man-sys-htmlman html +./usr/share/man/html4/etphy.html man-sys-htmlman html +./usr/share/man/html4/evbarm/epgpio.html man-sys-htmlman html +./usr/share/man/html4/evbarm/intro.html man-sys-htmlman html +./usr/share/man/html4/evbarm/iopaau.html man-sys-htmlman html +./usr/share/man/html4/evbarm/iopwdog.html man-sys-htmlman html +./usr/share/man/html4/evbmips/aupci.html man-sys-htmlman html +./usr/share/man/html4/evbmips/intro.html man-sys-htmlman html +./usr/share/man/html4/evbppc/cpc.html man-sys-htmlman html +./usr/share/man/html4/evbppc/intro_pmppc.html man-sys-htmlman html +./usr/share/man/html4/evbppc/mainbus.html man-sys-htmlman html +./usr/share/man/html4/evbppc/rtc.html man-sys-htmlman html +./usr/share/man/html4/ex.html man-sys-htmlman html +./usr/share/man/html4/exphy.html man-sys-htmlman html +./usr/share/man/html4/faith.html man-sys-htmlman html +./usr/share/man/html4/fast_ipsec.html man-sys-htmlman html +./usr/share/man/html4/fd.html man-sys-htmlman html +./usr/share/man/html4/fea.html man-sys-htmlman html +./usr/share/man/html4/filemon.html man-sys-htmlman html +./usr/share/man/html4/finsio.html man-sys-htmlman html +./usr/share/man/html4/flash.html man-sys-htmlman html +./usr/share/man/html4/fms.html man-sys-htmlman html +./usr/share/man/html4/fmv.html man-sys-htmlman html +./usr/share/man/html4/fpa.html man-sys-htmlman html +./usr/share/man/html4/fss.html man-sys-htmlman html +./usr/share/man/html4/fssbs.html man-obsolete obsolete +./usr/share/man/html4/fta.html man-sys-htmlman html +./usr/share/man/html4/fujbp.html man-sys-htmlman html +./usr/share/man/html4/fujhk.html man-sys-htmlman html +./usr/share/man/html4/fujitsu.html man-obsolete obsolete +./usr/share/man/html4/fwhrng.html man-obsolete obsolete +./usr/share/man/html4/fwip.html man-sys-htmlman html +./usr/share/man/html4/fwohci.html man-sys-htmlman html +./usr/share/man/html4/fxp.html man-sys-htmlman html +./usr/share/man/html4/g760a.html man-sys-htmlman html +./usr/share/man/html4/gcscaudio.html man-sys-htmlman html +./usr/share/man/html4/gem.html man-sys-htmlman html +./usr/share/man/html4/genfb.html man-sys-htmlman html +./usr/share/man/html4/gentbi.html man-sys-htmlman html +./usr/share/man/html4/geodeide.html man-sys-htmlman html +./usr/share/man/html4/gif.html man-sys-htmlman html +./usr/share/man/html4/glxtphy.html man-sys-htmlman html +./usr/share/man/html4/gphyter.html man-sys-htmlman html +./usr/share/man/html4/gpib.html man-sys-htmlman html +./usr/share/man/html4/gpio.html man-sys-htmlman html +./usr/share/man/html4/gpioiic.html man-sys-htmlman html +./usr/share/man/html4/gpiolock.html man-sys-htmlman html +./usr/share/man/html4/gpioow.html man-sys-htmlman html +./usr/share/man/html4/gpiopwm.html man-sys-htmlman html +./usr/share/man/html4/gpiosim.html man-sys-htmlman html +./usr/share/man/html4/gre.html man-sys-htmlman html +./usr/share/man/html4/gsip.html man-sys-htmlman html +./usr/share/man/html4/gtp.html man-sys-htmlman html +./usr/share/man/html4/gus.html man-sys-htmlman html +./usr/share/man/html4/guspnp.html man-sys-htmlman html +./usr/share/man/html4/hcide.html man-sys-htmlman html +./usr/share/man/html4/hdafg.html man-sys-htmlman html +./usr/share/man/html4/hdaudio.html man-sys-htmlman html +./usr/share/man/html4/hdaudiobus.html man-sys-htmlman html +./usr/share/man/html4/hifn.html man-sys-htmlman html +./usr/share/man/html4/hil.html man-sys-htmlman html +./usr/share/man/html4/hilid.html man-sys-htmlman html +./usr/share/man/html4/hilkbd.html man-sys-htmlman html +./usr/share/man/html4/hilms.html man-sys-htmlman html +./usr/share/man/html4/hme.html man-sys-htmlman html +./usr/share/man/html4/hp300/autoconf.html man-sys-htmlman html +./usr/share/man/html4/hp300/cons.html man-sys-htmlman html +./usr/share/man/html4/hp300/ct.html man-sys-htmlman html +./usr/share/man/html4/hp300/dcm.html man-sys-htmlman html +./usr/share/man/html4/hp300/dio.html man-sys-htmlman html +./usr/share/man/html4/hp300/dnkbd.html man-sys-htmlman html +./usr/share/man/html4/hp300/dvbox.html man-sys-htmlman html +./usr/share/man/html4/hp300/fhpib.html man-sys-htmlman html +./usr/share/man/html4/hp300/frodo.html man-sys-htmlman html +./usr/share/man/html4/hp300/gbox.html man-sys-htmlman html +./usr/share/man/html4/hp300/grf.html man-obsolete obsolete +./usr/share/man/html4/hp300/hil.html man-obsolete obsolete +./usr/share/man/html4/hp300/hpib.html man-sys-htmlman html +./usr/share/man/html4/hp300/hpibbus.html man-sys-htmlman html +./usr/share/man/html4/hp300/hyper.html man-sys-htmlman html +./usr/share/man/html4/hp300/intio.html man-sys-htmlman html +./usr/share/man/html4/hp300/intro.html man-sys-htmlman html +./usr/share/man/html4/hp300/ite.html man-obsolete obsolete +./usr/share/man/html4/hp300/kmem.html man-sys-htmlman html +./usr/share/man/html4/hp300/mem.html man-sys-htmlman html +./usr/share/man/html4/hp300/nhpib.html man-sys-htmlman html +./usr/share/man/html4/hp300/ppi.html man-sys-htmlman html +./usr/share/man/html4/hp300/rbox.html man-sys-htmlman html +./usr/share/man/html4/hp300/rd.html man-sys-htmlman html +./usr/share/man/html4/hp300/rmp.html man-sys-htmlman html +./usr/share/man/html4/hp300/rtc.html man-sys-htmlman html +./usr/share/man/html4/hp300/topcat.html man-sys-htmlman html +./usr/share/man/html4/hp700/asp.html man-sys-htmlman html +./usr/share/man/html4/hp700/astro.html man-sys-htmlman html +./usr/share/man/html4/hp700/cpu.html man-sys-htmlman html +./usr/share/man/html4/hp700/dino.html man-sys-htmlman html +./usr/share/man/html4/hp700/elroy.html man-sys-htmlman html +./usr/share/man/html4/hp700/gsc.html man-sys-htmlman html +./usr/share/man/html4/hp700/gsckbc.html man-sys-htmlman html +./usr/share/man/html4/hp700/harmony.html man-sys-htmlman html +./usr/share/man/html4/hp700/intro.html man-sys-htmlman html +./usr/share/man/html4/hp700/io.html man-sys-htmlman html +./usr/share/man/html4/hp700/lasi.html man-sys-htmlman html +./usr/share/man/html4/hp700/lcd.html man-sys-htmlman html +./usr/share/man/html4/hp700/mem.html man-sys-htmlman html +./usr/share/man/html4/hp700/mongoose.html man-sys-htmlman html +./usr/share/man/html4/hp700/pdc.html man-sys-htmlman html +./usr/share/man/html4/hp700/phantomas.html man-sys-htmlman html +./usr/share/man/html4/hp700/ssio.html man-sys-htmlman html +./usr/share/man/html4/hp700/uturn.html man-sys-htmlman html +./usr/share/man/html4/hp700/wax.html man-sys-htmlman html +./usr/share/man/html4/hpacel.html man-sys-htmlman html +./usr/share/man/html4/hpcarm/intro.html man-sys-htmlman html +./usr/share/man/html4/hpcarm/j720kbd.html man-sys-htmlman html +./usr/share/man/html4/hpcarm/j720lcd.html man-sys-htmlman html +./usr/share/man/html4/hpcarm/j720tp.html man-sys-htmlman html +./usr/share/man/html4/hpcmips/teliosio.html man-sys-htmlman html +./usr/share/man/html4/hpcsh/intro.html man-sys-htmlman html +./usr/share/man/html4/hpcsh/j6x0lcd.html man-sys-htmlman html +./usr/share/man/html4/hpcsh/j6x0tp.html man-sys-htmlman html +./usr/share/man/html4/hpcsh/psh3lcd.html man-sys-htmlman html +./usr/share/man/html4/hpcsh/psh3tp.html man-sys-htmlman html +./usr/share/man/html4/hpqlb.html man-sys-htmlman html +./usr/share/man/html4/hptide.html man-sys-htmlman html +./usr/share/man/html4/i386/PCIBIOS.html man-sys-htmlman html +./usr/share/man/html4/i386/apm.html man-sys-htmlman html +./usr/share/man/html4/i386/autoconf.html man-sys-htmlman html +./usr/share/man/html4/i386/cmos.html man-sys-htmlman html +./usr/share/man/html4/i386/cons.html man-sys-htmlman html +./usr/share/man/html4/i386/console.html man-sys-htmlman html +./usr/share/man/html4/i386/ed.html man-sys-htmlman html +./usr/share/man/html4/i386/elanpar.html man-sys-htmlman html +./usr/share/man/html4/i386/elanpex.html man-sys-htmlman html +./usr/share/man/html4/i386/elansc.html man-sys-htmlman html +./usr/share/man/html4/i386/fdc.html man-obsolete obsolete +./usr/share/man/html4/i386/gcscide.html man-sys-htmlman html +./usr/share/man/html4/i386/gcscpcib.html man-sys-htmlman html +./usr/share/man/html4/i386/geodecntr.html man-sys-htmlman html +./usr/share/man/html4/i386/geodewdog.html man-sys-htmlman html +./usr/share/man/html4/i386/glxsb.html man-sys-htmlman html +./usr/share/man/html4/i386/gscpcib.html man-sys-htmlman html +./usr/share/man/html4/i386/intro.html man-sys-htmlman html +./usr/share/man/html4/i386/io.html man-sys-htmlman html +./usr/share/man/html4/i386/kmem.html man-obsolete obsolete +./usr/share/man/html4/i386/lms.html man-sys-htmlman html +./usr/share/man/html4/i386/lpa.html man-obsolete obsolete +./usr/share/man/html4/i386/lpt.html man-obsolete obsolete +./usr/share/man/html4/i386/mem.html man-obsolete obsolete +./usr/share/man/html4/i386/mms.html man-sys-htmlman html +./usr/share/man/html4/i386/ndis.html man-sys-htmlman html +./usr/share/man/html4/i386/npx.html man-sys-htmlman html +./usr/share/man/html4/i386/pcibios.html man-sys-htmlman html +./usr/share/man/html4/i386/pnpbios.html man-sys-htmlman html +./usr/share/man/html4/i386/rdcide.html man-sys-htmlman html +./usr/share/man/html4/i386/rdcpcib.html man-sys-htmlman html +./usr/share/man/html4/i386/spic.html man-sys-htmlman html +./usr/share/man/html4/i386/vald.html man-obsolete obsolete +./usr/share/man/html4/i386/vesafb.html man-obsolete obsolete +./usr/share/man/html4/i386/viac7temp.html man-sys-htmlman html +./usr/share/man/html4/i915drm.html man-sys-htmlman html +./usr/share/man/html4/iavc.html man-sys-htmlman html +./usr/share/man/html4/ibmhawk.html man-sys-htmlman html +./usr/share/man/html4/ichlpcib.html man-obsolete obsolete +./usr/share/man/html4/ichsmb.html man-sys-htmlman html +./usr/share/man/html4/icmp.html man-sys-htmlman html +./usr/share/man/html4/icmp6.html man-sys-htmlman html +./usr/share/man/html4/icp.html man-sys-htmlman html +./usr/share/man/html4/icpsp.html man-sys-htmlman html +./usr/share/man/html4/icsphy.html man-sys-htmlman html +./usr/share/man/html4/iee.html man-sys-htmlman html +./usr/share/man/html4/ieee1394if.html man-sys-htmlman html +./usr/share/man/html4/ieee80211.html man-sys-htmlman html +./usr/share/man/html4/ifmedia.html man-sys-htmlman html +./usr/share/man/html4/ifpci.html man-sys-htmlman html +./usr/share/man/html4/igphy.html man-sys-htmlman html +./usr/share/man/html4/igsfb.html man-sys-htmlman html +./usr/share/man/html4/iha.html man-sys-htmlman html +./usr/share/man/html4/ihphy.html man-sys-htmlman html +./usr/share/man/html4/iic.html man-sys-htmlman html +./usr/share/man/html4/ikphy.html man-sys-htmlman html +./usr/share/man/html4/inet.html man-sys-htmlman html +./usr/share/man/html4/inet6.html man-sys-htmlman html +./usr/share/man/html4/inphy.html man-sys-htmlman html +./usr/share/man/html4/intersil7170.html man-sys-htmlman html +./usr/share/man/html4/ioasic.html man-sys-htmlman html +./usr/share/man/html4/ioat.html man-sys-htmlman html +./usr/share/man/html4/iop.html man-sys-htmlman html +./usr/share/man/html4/iophy.html man-sys-htmlman html +./usr/share/man/html4/iopsp.html man-sys-htmlman html +./usr/share/man/html4/ip.html man-sys-htmlman html +./usr/share/man/html4/ip6.html man-sys-htmlman html +./usr/share/man/html4/ipf.html man-ipf-htmlman ipfilter,html +./usr/share/man/html4/ipfilter.html man-ipf-htmlman ipfilter,html +./usr/share/man/html4/ipkdb.html man-sys-htmlman html +./usr/share/man/html4/ipl.html man-ipf-htmlman ipfilter,html +./usr/share/man/html4/ipmi.html man-sys-htmlman html +./usr/share/man/html4/ipnat.html man-ipf-htmlman ipfilter,html +./usr/share/man/html4/ippp.html man-sys-htmlman html +./usr/share/man/html4/ipsec.html man-sys-htmlman html +./usr/share/man/html4/ipw.html man-sys-htmlman html +./usr/share/man/html4/irda.html man-sys-htmlman html +./usr/share/man/html4/irframe.html man-sys-htmlman html +./usr/share/man/html4/irframetty.html man-sys-htmlman html +./usr/share/man/html4/irip.html man-sys-htmlman html +./usr/share/man/html4/irmce.html man-sys-htmlman html +./usr/share/man/html4/isa.html man-sys-htmlman html +./usr/share/man/html4/isabeep.html man-sys-htmlman html +./usr/share/man/html4/isapnp.html man-sys-htmlman html +./usr/share/man/html4/isdn.html man-sys-htmlman html +./usr/share/man/html4/isdnbchan.html man-sys-htmlman html +./usr/share/man/html4/isdncapi.html man-sys-htmlman html +./usr/share/man/html4/isdnctl.html man-sys-htmlman html +./usr/share/man/html4/isdntel.html man-sys-htmlman html +./usr/share/man/html4/isdntrc.html man-sys-htmlman html +./usr/share/man/html4/isic.html man-sys-htmlman html +./usr/share/man/html4/iso.html man-sys-htmlman html +./usr/share/man/html4/isp.html man-sys-htmlman html +./usr/share/man/html4/isv.html man-sys-htmlman html +./usr/share/man/html4/iteide.html man-sys-htmlman html +./usr/share/man/html4/itesio.html man-sys-htmlman html +./usr/share/man/html4/iwi.html man-sys-htmlman html +./usr/share/man/html4/iwic.html man-sys-htmlman html +./usr/share/man/html4/iwn.html man-sys-htmlman html +./usr/share/man/html4/ix.html man-sys-htmlman html +./usr/share/man/html4/ixg.html man-sys-htmlman html +./usr/share/man/html4/ixpide.html man-sys-htmlman html +./usr/share/man/html4/iy.html man-sys-htmlman html +./usr/share/man/html4/jme.html man-sys-htmlman html +./usr/share/man/html4/jmide.html man-sys-htmlman html +./usr/share/man/html4/joy.html man-sys-htmlman html +./usr/share/man/html4/kame_ipsec.html man-obsolete obsolete +./usr/share/man/html4/kloader.html man-sys-htmlman html +./usr/share/man/html4/kse.html man-sys-htmlman html +./usr/share/man/html4/ksyms.html man-sys-htmlman html +./usr/share/man/html4/kttcp.html man-sys-htmlman html +./usr/share/man/html4/kue.html man-sys-htmlman html +./usr/share/man/html4/lc.html man-sys-htmlman html +./usr/share/man/html4/ld.html man-sys-htmlman html +./usr/share/man/html4/le.html man-sys-htmlman html +./usr/share/man/html4/lg3303.html man-sys-htmlman html +./usr/share/man/html4/lii.html man-sys-htmlman html +./usr/share/man/html4/lkm.html man-obsolete obsolete +./usr/share/man/html4/lm.html man-sys-htmlman html +./usr/share/man/html4/lmc.html man-sys-htmlman html +./usr/share/man/html4/lmtemp.html man-sys-htmlman html +./usr/share/man/html4/lo.html man-sys-htmlman html +./usr/share/man/html4/lxtphy.html man-sys-htmlman html +./usr/share/man/html4/m25p.html man-sys-htmlman html +./usr/share/man/html4/mac68k/ae.html man-sys-htmlman html +./usr/share/man/html4/mac68k/autoconf.html man-sys-htmlman html +./usr/share/man/html4/mac68k/cpi.html man-sys-htmlman html +./usr/share/man/html4/mac68k/intro.html man-sys-htmlman html +./usr/share/man/html4/mac68k/iwm.html man-sys-htmlman html +./usr/share/man/html4/mac68k/kmem.html man-sys-htmlman html +./usr/share/man/html4/mac68k/mainbus.html man-sys-htmlman html +./usr/share/man/html4/mac68k/mem.html man-sys-htmlman html +./usr/share/man/html4/mac68k/netdock.html man-sys-htmlman html +./usr/share/man/html4/mac68k/obio.html man-sys-htmlman html +./usr/share/man/html4/mac68k/zsc.html man-sys-htmlman html +./usr/share/man/html4/mach64drm.html man-sys-htmlman html +./usr/share/man/html4/macppc/autoconf.html man-sys-htmlman html +./usr/share/man/html4/macppc/awacs.html man-sys-htmlman html +./usr/share/man/html4/macppc/bm.html man-sys-htmlman html +./usr/share/man/html4/macppc/gm.html man-sys-htmlman html +./usr/share/man/html4/macppc/intro.html man-sys-htmlman html +./usr/share/man/html4/macppc/mesh.html man-sys-htmlman html +./usr/share/man/html4/macppc/obio.html man-sys-htmlman html +./usr/share/man/html4/macppc/pbms.html man-sys-htmlman html +./usr/share/man/html4/macppc/snapper.html man-sys-htmlman html +./usr/share/man/html4/mainbus.html man-sys-htmlman html +./usr/share/man/html4/makphy.html man-sys-htmlman html +./usr/share/man/html4/malo.html man-sys-htmlman html +./usr/share/man/html4/mbe.html man-sys-htmlman html +./usr/share/man/html4/mc.html man-sys-htmlman html +./usr/share/man/html4/mca.html man-sys-htmlman html +./usr/share/man/html4/mcclock.html man-sys-htmlman html +./usr/share/man/html4/mcd.html man-sys-htmlman html +./usr/share/man/html4/md.html man-sys-htmlman html +./usr/share/man/html4/mfb.html man-sys-htmlman html +./usr/share/man/html4/mfi.html man-sys-htmlman html +./usr/share/man/html4/mgadrm.html man-sys-htmlman html +./usr/share/man/html4/mhzc.html man-sys-htmlman html +./usr/share/man/html4/midi.html man-sys-htmlman html +./usr/share/man/html4/mii.html man-sys-htmlman html +./usr/share/man/html4/mixer.html man-sys-htmlman html +./usr/share/man/html4/mk48txx.html man-sys-htmlman html +./usr/share/man/html4/mlx.html man-sys-htmlman html +./usr/share/man/html4/mly.html man-sys-htmlman html +./usr/share/man/html4/module.html man-obsolete obsolete +./usr/share/man/html4/mpls.html man-sys-htmlman html +./usr/share/man/html4/mpii.html man-sys-htmlman html +./usr/share/man/html4/mpt.html man-sys-htmlman html +./usr/share/man/html4/mpu.html man-sys-htmlman html +./usr/share/man/html4/mr.html man-obsolete obsolete +./usr/share/man/html4/msk.html man-sys-htmlman html +./usr/share/man/html4/mskc.html man-sys-htmlman html +./usr/share/man/html4/mt2131.html man-sys-htmlman html +./usr/share/man/html4/mtd.html man-sys-htmlman html +./usr/share/man/html4/mtio.html man-sys-htmlman html +./usr/share/man/html4/multicast.html man-sys-htmlman html +./usr/share/man/html4/music.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/autoconf.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/clmpcc.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/clock.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/ie.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/intro.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/kmem.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/lpa.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/lpt.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/mainbus.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/mem.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/memc.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/ncrsc.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/pcc.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/pcctwo.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/wdsc.html man-sys-htmlman html +./usr/share/man/html4/mvme68k/zsc.html man-sys-htmlman html +./usr/share/man/html4/mvsata.html man-sys-htmlman html +./usr/share/man/html4/nadb.html man-sys-htmlman html +./usr/share/man/html4/nca.html man-sys-htmlman html +./usr/share/man/html4/ne.html man-sys-htmlman html +./usr/share/man/html4/nele.html man-sys-htmlman html +./usr/share/man/html4/neo.html man-sys-htmlman html +./usr/share/man/html4/netintro.html man-sys-htmlman html +./usr/share/man/html4/netsmb.html man-sys-htmlman html +./usr/share/man/html4/networking.html man-sys-htmlman html +./usr/share/man/html4/nfe.html man-sys-htmlman html +./usr/share/man/html4/nfsmb.html man-sys-htmlman html +./usr/share/man/html4/nfsmbc.html man-sys-htmlman html +./usr/share/man/html4/njata.html man-sys-htmlman html +./usr/share/man/html4/njs.html man-sys-htmlman html +./usr/share/man/html4/nsclpcsio.html man-sys-htmlman html +./usr/share/man/html4/nside.html man-sys-htmlman html +./usr/share/man/html4/nsmb.html man-sys-htmlman html +./usr/share/man/html4/nsp.html man-sys-htmlman html +./usr/share/man/html4/nsphy.html man-sys-htmlman html +./usr/share/man/html4/nsphyter.html man-sys-htmlman html +./usr/share/man/html4/ntwo.html man-sys-htmlman html +./usr/share/man/html4/ntwoc.html man-sys-htmlman html +./usr/share/man/html4/null.html man-sys-htmlman html +./usr/share/man/html4/nxt2k.html man-sys-htmlman html +./usr/share/man/html4/oak.html man-sys-htmlman html +./usr/share/man/html4/oboe.html man-sys-htmlman html +./usr/share/man/html4/ofisa.html man-sys-htmlman html +./usr/share/man/html4/ohci.html man-sys-htmlman html +./usr/share/man/html4/onewire.html man-sys-htmlman html +./usr/share/man/html4/oosiop.html man-sys-htmlman html +./usr/share/man/html4/opl.html man-sys-htmlman html +./usr/share/man/html4/optiide.html man-sys-htmlman html +./usr/share/man/html4/options.html man-sys-htmlman html +./usr/share/man/html4/osiop.html man-sys-htmlman html +./usr/share/man/html4/otus.html man-sys-htmlman html +./usr/share/man/html4/owtemp.html man-sys-htmlman html +./usr/share/man/html4/pad.html man-sys-htmlman html +./usr/share/man/html4/pas.html man-sys-htmlman html +./usr/share/man/html4/pcdisplay.html man-sys-htmlman html +./usr/share/man/html4/pcf8563rtc.html man-sys-htmlman html +./usr/share/man/html4/pchb.html man-sys-htmlman html +./usr/share/man/html4/pci.html man-sys-htmlman html +./usr/share/man/html4/pciback.html man-sys-htmlman html +./usr/share/man/html4/pcic.html man-sys-htmlman html +./usr/share/man/html4/pciide.html man-sys-htmlman html +./usr/share/man/html4/pckbc.html man-sys-htmlman html +./usr/share/man/html4/pckbd.html man-sys-htmlman html +./usr/share/man/html4/pcmcia.html man-sys-htmlman html +./usr/share/man/html4/pcmcom.html man-sys-htmlman html +./usr/share/man/html4/pcn.html man-sys-htmlman html +./usr/share/man/html4/pcppi.html man-sys-htmlman html +./usr/share/man/html4/pcscp.html man-sys-htmlman html +./usr/share/man/html4/pcweasel.html man-sys-htmlman html +./usr/share/man/html4/pdcide.html man-sys-htmlman html +./usr/share/man/html4/pdcsata.html man-sys-htmlman html +./usr/share/man/html4/pf.html man-pf-htmlman pf,html +./usr/share/man/html4/pflog.html man-pf-htmlman pf,html +./usr/share/man/html4/pfsync.html man-pf-htmlman pf,html +./usr/share/man/html4/phy.html man-sys-htmlman html +./usr/share/man/html4/piixide.html man-sys-htmlman html +./usr/share/man/html4/piixpcib.html man-sys-htmlman html +./usr/share/man/html4/piixpm.html man-sys-htmlman html +./usr/share/man/html4/pim.html man-sys-htmlman html +./usr/share/man/html4/plip.html man-sys-htmlman html +./usr/share/man/html4/pmax/asc.html man-sys-htmlman html +./usr/share/man/html4/pmax/autoconf.html man-sys-htmlman html +./usr/share/man/html4/pmax/ibus.html man-sys-htmlman html +./usr/share/man/html4/pmax/intro.html man-sys-htmlman html +./usr/share/man/html4/pmax/pm.html man-sys-htmlman html +./usr/share/man/html4/pmax/sii.html man-sys-htmlman html +./usr/share/man/html4/pmax/xcfb.html man-sys-htmlman html +./usr/share/man/html4/pms.html man-sys-htmlman html +./usr/share/man/html4/pmsi.html man-sys-htmlman html +./usr/share/man/html4/pmu.html man-sys-htmlman html +./usr/share/man/html4/pnaphy.html man-sys-htmlman html +./usr/share/man/html4/podulebus.html man-sys-htmlman html +./usr/share/man/html4/ppb.html man-sys-htmlman html +./usr/share/man/html4/ppbus.html man-sys-htmlman html +./usr/share/man/html4/ppp.html man-sys-htmlman html +./usr/share/man/html4/pppoe.html man-sys-htmlman html +./usr/share/man/html4/prep/intro.html man-sys-htmlman html +./usr/share/man/html4/prep/nvram.html man-sys-htmlman html +./usr/share/man/html4/pseye.html man-sys-htmlman html +./usr/share/man/html4/ptm.html man-sys-htmlman html +./usr/share/man/html4/pty.html man-sys-htmlman html +./usr/share/man/html4/puc.html man-sys-htmlman html +./usr/share/man/html4/pud.html man-sys-htmlman html +./usr/share/man/html4/puffs.html man-sys-htmlman html +./usr/share/man/html4/pwdog.html man-sys-htmlman html +./usr/share/man/html4/px.html man-sys-htmlman html +./usr/share/man/html4/pxg.html man-sys-htmlman html +./usr/share/man/html4/qe.html man-sys-htmlman html +./usr/share/man/html4/qec.html man-sys-htmlman html +./usr/share/man/html4/qsphy.html man-sys-htmlman html +./usr/share/man/html4/r128drm.html man-sys-htmlman html +./usr/share/man/html4/radeondrm.html man-sys-htmlman html +./usr/share/man/html4/radio.html man-sys-htmlman html +./usr/share/man/html4/raid.html man-sys-htmlman html +./usr/share/man/html4/ral.html man-sys-htmlman html +./usr/share/man/html4/random.html man-sys-htmlman html +./usr/share/man/html4/rasterconsole.html man-sys-htmlman html +./usr/share/man/html4/ray.html man-sys-htmlman html +./usr/share/man/html4/rcons.html man-sys-htmlman html +./usr/share/man/html4/rdcphy.html man-sys-htmlman html +./usr/share/man/html4/re.html man-sys-htmlman html +./usr/share/man/html4/rgephy.html man-sys-htmlman html +./usr/share/man/html4/rlphy.html man-sys-htmlman html +./usr/share/man/html4/rmidi.html man-sys-htmlman html +./usr/share/man/html4/rnd.html man-sys-htmlman html +./usr/share/man/html4/route.html man-sys-htmlman html +./usr/share/man/html4/rs5c372rtc.html man-sys-htmlman html +./usr/share/man/html4/rt.html man-sys-htmlman html +./usr/share/man/html4/rtfps.html man-sys-htmlman html +./usr/share/man/html4/rtii.html man-sys-htmlman html +./usr/share/man/html4/rtk.html man-sys-htmlman html +./usr/share/man/html4/rtw.html man-sys-htmlman html +./usr/share/man/html4/rum.html man-sys-htmlman html +./usr/share/man/html4/run.html man-sys-htmlman html +./usr/share/man/html4/s390rtc.html man-sys-htmlman html +./usr/share/man/html4/sandpoint/nhpow.html man-sys-htmlman html +./usr/share/man/html4/sandpoint/satmgr.html man-sys-htmlman html +./usr/share/man/html4/satalink.html man-sys-htmlman html +./usr/share/man/html4/savagedrm.html man-sys-htmlman html +./usr/share/man/html4/sb.html man-sys-htmlman html +./usr/share/man/html4/sbp.html man-sys-htmlman html +./usr/share/man/html4/sbt.html man-sys-htmlman html +./usr/share/man/html4/sbus.html man-sys-htmlman html +./usr/share/man/html4/sc.html man-sys-htmlman html +./usr/share/man/html4/scc.html man-sys-htmlman html +./usr/share/man/html4/schide.html man-sys-htmlman html +./usr/share/man/html4/scsi.html man-sys-htmlman html +./usr/share/man/html4/scsibus.html man-sys-htmlman html +./usr/share/man/html4/sd.html man-sys-htmlman html +./usr/share/man/html4/sdhc.html man-sys-htmlman html +./usr/share/man/html4/sdmmc.html man-sys-htmlman html +./usr/share/man/html4/sdtemp.html man-sys-htmlman html +./usr/share/man/html4/se.html man-sys-htmlman html +./usr/share/man/html4/sea.html man-sys-htmlman html +./usr/share/man/html4/sec.html man-sys-htmlman html +./usr/share/man/html4/seeprom.html man-sys-htmlman html +./usr/share/man/html4/sem.html man-sys-htmlman html +./usr/share/man/html4/sequencer.html man-sys-htmlman html +./usr/share/man/html4/ses.html man-sys-htmlman html +./usr/share/man/html4/sf.html man-sys-htmlman html +./usr/share/man/html4/sf2r.html man-sys-htmlman html +./usr/share/man/html4/sfb.html man-sys-htmlman html +./usr/share/man/html4/sgimips/crime.html man-sys-htmlman html +./usr/share/man/html4/sgimips/dpclock.html man-sys-htmlman html +./usr/share/man/html4/sgimips/dsclock.html man-sys-htmlman html +./usr/share/man/html4/sgimips/gio.html man-sys-htmlman html +./usr/share/man/html4/sgimips/giopci.html man-sys-htmlman html +./usr/share/man/html4/sgimips/grtwo.html man-sys-htmlman html +./usr/share/man/html4/sgimips/haltwo.html man-sys-htmlman html +./usr/share/man/html4/sgimips/hpc.html man-sys-htmlman html +./usr/share/man/html4/sgimips/imc.html man-sys-htmlman html +./usr/share/man/html4/sgimips/intro.html man-sys-htmlman html +./usr/share/man/html4/sgimips/light.html man-sys-htmlman html +./usr/share/man/html4/sgimips/mace.html man-sys-htmlman html +./usr/share/man/html4/sgimips/mavb.html man-sys-htmlman html +./usr/share/man/html4/sgimips/mec.html man-sys-htmlman html +./usr/share/man/html4/sgimips/newport.html man-sys-htmlman html +./usr/share/man/html4/sgimips/pic.html man-sys-htmlman html +./usr/share/man/html4/sgimips/sq.html man-sys-htmlman html +./usr/share/man/html4/sgimips/wdsc.html man-sys-htmlman html +./usr/share/man/html4/sgsmix.html man-sys-htmlman html +./usr/share/man/html4/shb.html man-sys-htmlman html +./usr/share/man/html4/shmif.html man-sys-htmlman html +./usr/share/man/html4/shpcic.html man-sys-htmlman html +./usr/share/man/html4/si.html man-sys-htmlman html +./usr/share/man/html4/siisata.html man-sys-htmlman html +./usr/share/man/html4/siop.html man-sys-htmlman html +./usr/share/man/html4/sip.html man-sys-htmlman html +./usr/share/man/html4/sisdrm.html man-sys-htmlman html +./usr/share/man/html4/siside.html man-sys-htmlman html +./usr/share/man/html4/sk.html man-sys-htmlman html +./usr/share/man/html4/skc.html man-sys-htmlman html +./usr/share/man/html4/sl.html man-sys-htmlman html +./usr/share/man/html4/slhci.html man-sys-htmlman html +./usr/share/man/html4/slide.html man-sys-htmlman html +./usr/share/man/html4/slip.html man-sys-htmlman html +./usr/share/man/html4/sm.html man-sys-htmlman html +./usr/share/man/html4/smsc.html man-sys-htmlman html +./usr/share/man/html4/smscmon.html man-sys-htmlman html +./usr/share/man/html4/smsh.html man-sys-htmlman html +./usr/share/man/html4/sn.html man-sys-htmlman html +./usr/share/man/html4/sony.html man-sys-htmlman html +./usr/share/man/html4/sound.html man-sys-htmlman html +./usr/share/man/html4/sparc/audioamd.html man-sys-htmlman html +./usr/share/man/html4/sparc/autoconf.html man-sys-htmlman html +./usr/share/man/html4/sparc/auxreg.html man-sys-htmlman html +./usr/share/man/html4/sparc/bpp.html man-sys-htmlman html +./usr/share/man/html4/sparc/bwtwo.html man-sys-htmlman html +./usr/share/man/html4/sparc/cgeight.html man-sys-htmlman html +./usr/share/man/html4/sparc/cgfour.html man-sys-htmlman html +./usr/share/man/html4/sparc/cgfourteen.html man-sys-htmlman html +./usr/share/man/html4/sparc/cgsix.html man-sys-htmlman html +./usr/share/man/html4/sparc/cgthree.html man-sys-htmlman html +./usr/share/man/html4/sparc/cgtwo.html man-sys-htmlman html +./usr/share/man/html4/sparc/clock.html man-sys-htmlman html +./usr/share/man/html4/sparc/dbri.html man-sys-htmlman html +./usr/share/man/html4/sparc/fd.html man-sys-htmlman html +./usr/share/man/html4/sparc/fdc.html man-sys-htmlman html +./usr/share/man/html4/sparc/ie.html man-sys-htmlman html +./usr/share/man/html4/sparc/intro.html man-sys-htmlman html +./usr/share/man/html4/sparc/kbd.html man-sys-htmlman html +./usr/share/man/html4/sparc/kmem.html man-sys-htmlman html +./usr/share/man/html4/sparc/magma.html man-sys-htmlman html +./usr/share/man/html4/sparc/mem.html man-sys-htmlman html +./usr/share/man/html4/sparc/ms.html man-sys-htmlman html +./usr/share/man/html4/sparc/nell.html man-sys-htmlman html +./usr/share/man/html4/sparc/openprom.html man-sys-htmlman html +./usr/share/man/html4/sparc/pnozz.html man-sys-htmlman html +./usr/share/man/html4/sparc/tctrl.html man-sys-htmlman html +./usr/share/man/html4/sparc/tcx.html man-sys-htmlman html +./usr/share/man/html4/sparc/timer.html man-sys-htmlman html +./usr/share/man/html4/sparc/tslot.html man-sys-htmlman html +./usr/share/man/html4/sparc/xd.html man-sys-htmlman html +./usr/share/man/html4/sparc/xy.html man-sys-htmlman html +./usr/share/man/html4/sparc/zx.html man-sys-htmlman html +./usr/share/man/html4/sparc64/envctrl.html man-sys-htmlman html +./usr/share/man/html4/sparc64/fdc.html man-sys-htmlman html +./usr/share/man/html4/sparc64/ffb.html man-sys-htmlman html +./usr/share/man/html4/sparc64/intro.html man-sys-htmlman html +./usr/share/man/html4/sparc64/lom.html man-sys-htmlman html +./usr/share/man/html4/sparc64/sab.html man-sys-htmlman html +./usr/share/man/html4/sparc64/sabtty.html man-sys-htmlman html +./usr/share/man/html4/spc.html man-sys-htmlman html +./usr/share/man/html4/spdmem.html man-sys-htmlman html +./usr/share/man/html4/speaker.html man-sys-htmlman html +./usr/share/man/html4/spi.html man-sys-htmlman html +./usr/share/man/html4/spif.html man-sys-htmlman html +./usr/share/man/html4/spkr.html man-sys-htmlman html +./usr/share/man/html4/sqphy.html man-sys-htmlman html +./usr/share/man/html4/ss.html man-sys-htmlman html +./usr/share/man/html4/st.html man-sys-htmlman html +./usr/share/man/html4/stderr.html man-sys-htmlman html +./usr/share/man/html4/stdin.html man-sys-htmlman html +./usr/share/man/html4/stdout.html man-sys-htmlman html +./usr/share/man/html4/ste.html man-sys-htmlman html +./usr/share/man/html4/stf.html man-sys-htmlman html +./usr/share/man/html4/stge.html man-sys-htmlman html +./usr/share/man/html4/sti.html man-sys-htmlman html +./usr/share/man/html4/stpcide.html man-sys-htmlman html +./usr/share/man/html4/strip.html man-sys-htmlman html +./usr/share/man/html4/stuirda.html man-sys-htmlman html +./usr/share/man/html4/sun2/autoconf.html man-sys-htmlman html +./usr/share/man/html4/sun2/bwtwo.html man-sys-htmlman html +./usr/share/man/html4/sun2/ec.html man-sys-htmlman html +./usr/share/man/html4/sun2/ie.html man-sys-htmlman html +./usr/share/man/html4/sun2/intro.html man-sys-htmlman html +./usr/share/man/html4/sun2/kbd.html man-sys-htmlman html +./usr/share/man/html4/sun2/kmem.html man-sys-htmlman html +./usr/share/man/html4/sun2/leds.html man-sys-htmlman html +./usr/share/man/html4/sun2/mem.html man-sys-htmlman html +./usr/share/man/html4/sun2/ms.html man-sys-htmlman html +./usr/share/man/html4/sun3/autoconf.html man-sys-htmlman html +./usr/share/man/html4/sun3/bwtwo.html man-sys-htmlman html +./usr/share/man/html4/sun3/cgfour.html man-sys-htmlman html +./usr/share/man/html4/sun3/cgtwo.html man-sys-htmlman html +./usr/share/man/html4/sun3/fd.html man-sys-htmlman html +./usr/share/man/html4/sun3/ie.html man-sys-htmlman html +./usr/share/man/html4/sun3/intro.html man-sys-htmlman html +./usr/share/man/html4/sun3/kbd.html man-sys-htmlman html +./usr/share/man/html4/sun3/kmem.html man-sys-htmlman html +./usr/share/man/html4/sun3/leds.html man-sys-htmlman html +./usr/share/man/html4/sun3/mem.html man-sys-htmlman html +./usr/share/man/html4/sun3/ms.html man-sys-htmlman html +./usr/share/man/html4/sv.html man-sys-htmlman html +./usr/share/man/html4/svwsata.html man-sys-htmlman html +./usr/share/man/html4/sw.html man-sys-htmlman html +./usr/share/man/html4/swcrypto.html man-sys-htmlman html +./usr/share/man/html4/swsensor.html man-sys-htmlman html +./usr/share/man/html4/swwdog.html man-sys-htmlman html +./usr/share/man/html4/sysbeep.html man-sys-htmlman html +./usr/share/man/html4/sysmon.html man-sys-htmlman html +./usr/share/man/html4/tap.html man-sys-htmlman html +./usr/share/man/html4/tc.html man-sys-htmlman html +./usr/share/man/html4/tcds.html man-sys-htmlman html +./usr/share/man/html4/tcic.html man-sys-htmlman html +./usr/share/man/html4/tcom.html man-sys-htmlman html +./usr/share/man/html4/tcp.html man-sys-htmlman html +./usr/share/man/html4/tdfxdrm.html man-sys-htmlman html +./usr/share/man/html4/tdvfb.html man-sys-htmlman html +./usr/share/man/html4/termios.html man-sys-htmlman html +./usr/share/man/html4/tfb.html man-sys-htmlman html +./usr/share/man/html4/thinkpad.html man-sys-htmlman html +./usr/share/man/html4/ti.html man-sys-htmlman html +./usr/share/man/html4/tl.html man-sys-htmlman html +./usr/share/man/html4/tlp.html man-sys-htmlman html +./usr/share/man/html4/tlphy.html man-sys-htmlman html +./usr/share/man/html4/tm121temp.html man-sys-htmlman html +./usr/share/man/html4/tp.html man-sys-htmlman html +./usr/share/man/html4/tpm.html man-sys-htmlman html +./usr/share/man/html4/tprof.html man-sys-htmlman html +./usr/share/man/html4/tqphy.html man-sys-htmlman html +./usr/share/man/html4/tr.html man-sys-htmlman html +./usr/share/man/html4/tra.html man-sys-htmlman html +./usr/share/man/html4/trm.html man-sys-htmlman html +./usr/share/man/html4/tty.html man-sys-htmlman html +./usr/share/man/html4/tun.html man-sys-htmlman html +./usr/share/man/html4/tuner.html man-obsolete obsolete +./usr/share/man/html4/tvpll.html man-sys-htmlman html +./usr/share/man/html4/twa.html man-sys-htmlman html +./usr/share/man/html4/twe.html man-sys-htmlman html +./usr/share/man/html4/txp.html man-sys-htmlman html +./usr/share/man/html4/u3g.html man-sys-htmlman html +./usr/share/man/html4/uark.html man-sys-htmlman html +./usr/share/man/html4/uatp.html man-sys-htmlman html +./usr/share/man/html4/uaudio.html man-sys-htmlman html +./usr/share/man/html4/uberry.html man-sys-htmlman html +./usr/share/man/html4/ubsa.html man-sys-htmlman html +./usr/share/man/html4/ubsec.html man-sys-htmlman html +./usr/share/man/html4/ubt.html man-sys-htmlman html +./usr/share/man/html4/uchcom.html man-sys-htmlman html +./usr/share/man/html4/ucom.html man-sys-htmlman html +./usr/share/man/html4/ucycom.html man-sys-htmlman html +./usr/share/man/html4/udav.html man-sys-htmlman html +./usr/share/man/html4/udp.html man-sys-htmlman html +./usr/share/man/html4/udsbr.html man-sys-htmlman html +./usr/share/man/html4/uep.html man-sys-htmlman html +./usr/share/man/html4/uftdi.html man-sys-htmlman html +./usr/share/man/html4/ug.html man-sys-htmlman html +./usr/share/man/html4/ugen.html man-sys-htmlman html +./usr/share/man/html4/ugensa.html man-sys-htmlman html +./usr/share/man/html4/uha.html man-sys-htmlman html +./usr/share/man/html4/uhci.html man-sys-htmlman html +./usr/share/man/html4/uhid.html man-sys-htmlman html +./usr/share/man/html4/uhidev.html man-sys-htmlman html +./usr/share/man/html4/uhmodem.html man-sys-htmlman html +./usr/share/man/html4/uhso.html man-sys-htmlman html +./usr/share/man/html4/uhub.html man-sys-htmlman html +./usr/share/man/html4/uipaq.html man-sys-htmlman html +./usr/share/man/html4/uirda.html man-sys-htmlman html +./usr/share/man/html4/uk.html man-sys-htmlman html +./usr/share/man/html4/ukbd.html man-sys-htmlman html +./usr/share/man/html4/ukphy.html man-sys-htmlman html +./usr/share/man/html4/ukyopon.html man-sys-htmlman html +./usr/share/man/html4/ulpt.html man-sys-htmlman html +./usr/share/man/html4/umass.html man-sys-htmlman html +./usr/share/man/html4/umct.html man-sys-htmlman html +./usr/share/man/html4/umidi.html man-sys-htmlman html +./usr/share/man/html4/umodem.html man-sys-htmlman html +./usr/share/man/html4/ums.html man-sys-htmlman html +./usr/share/man/html4/unix.html man-sys-htmlman html +./usr/share/man/html4/upgt.html man-sys-htmlman html +./usr/share/man/html4/upl.html man-sys-htmlman html +./usr/share/man/html4/uplcom.html man-sys-htmlman html +./usr/share/man/html4/urandom.html man-sys-htmlman html +./usr/share/man/html4/urio.html man-sys-htmlman html +./usr/share/man/html4/url.html man-sys-htmlman html +./usr/share/man/html4/urlphy.html man-sys-htmlman html +./usr/share/man/html4/urndis.html man-sys-htmlman html +./usr/share/man/html4/urtw.html man-sys-htmlman html +./usr/share/man/html4/urtwn.html man-sys-htmlman html +./usr/share/man/html4/usb.html man-sys-htmlman html +./usr/share/man/html4/usbtask.html man-sys-htmlman html +./usr/share/man/html4/uscanner.html man-sys-htmlman html +./usr/share/man/html4/userconf.html man-sys-htmlman html +./usr/share/man/html4/uslsa.html man-sys-htmlman html +./usr/share/man/html4/usscanner.html man-sys-htmlman html +./usr/share/man/html4/ustir.html man-sys-htmlman html +./usr/share/man/html4/uthum.html man-sys-htmlman html +./usr/share/man/html4/utoppy.html man-sys-htmlman html +./usr/share/man/html4/uts.html man-sys-htmlman html +./usr/share/man/html4/uvideo.html man-sys-htmlman html +./usr/share/man/html4/uvisor.html man-sys-htmlman html +./usr/share/man/html4/uvscom.html man-sys-htmlman html +./usr/share/man/html4/uyap.html man-sys-htmlman html +./usr/share/man/html4/uyurex.html man-sys-htmlman html +./usr/share/man/html4/vald.html man-sys-htmlman html +./usr/share/man/html4/vax/acc.html man-sys-htmlman html +./usr/share/man/html4/vax/ad.html man-sys-htmlman html +./usr/share/man/html4/vax/asc.html man-sys-htmlman html +./usr/share/man/html4/vax/autoconf.html man-sys-htmlman html +./usr/share/man/html4/vax/cons.html man-sys-htmlman html +./usr/share/man/html4/vax/crl.html man-sys-htmlman html +./usr/share/man/html4/vax/css.html man-sys-htmlman html +./usr/share/man/html4/vax/ct.html man-sys-htmlman html +./usr/share/man/html4/vax/ddn.html man-sys-htmlman html +./usr/share/man/html4/vax/de.html man-sys-htmlman html +./usr/share/man/html4/vax/dh.html man-sys-htmlman html +./usr/share/man/html4/vax/dhu.html man-sys-htmlman html +./usr/share/man/html4/vax/dl.html man-sys-htmlman html +./usr/share/man/html4/vax/dmc.html man-sys-htmlman html +./usr/share/man/html4/vax/dmf.html man-sys-htmlman html +./usr/share/man/html4/vax/dmz.html man-sys-htmlman html +./usr/share/man/html4/vax/dn.html man-sys-htmlman html +./usr/share/man/html4/vax/dz.html man-sys-htmlman html +./usr/share/man/html4/vax/ec.html man-sys-htmlman html +./usr/share/man/html4/vax/en.html man-sys-htmlman html +./usr/share/man/html4/vax/ex.html man-sys-htmlman html +./usr/share/man/html4/vax/fl.html man-sys-htmlman html +./usr/share/man/html4/vax/hdh.html man-sys-htmlman html +./usr/share/man/html4/vax/hk.html man-sys-htmlman html +./usr/share/man/html4/vax/hp.html man-sys-htmlman html +./usr/share/man/html4/vax/ht.html man-sys-htmlman html +./usr/share/man/html4/vax/hy.html man-sys-htmlman html +./usr/share/man/html4/vax/ik.html man-sys-htmlman html +./usr/share/man/html4/vax/il.html man-sys-htmlman html +./usr/share/man/html4/vax/intro.html man-sys-htmlman html +./usr/share/man/html4/vax/ix.html man-sys-htmlman html +./usr/share/man/html4/vax/kg.html man-sys-htmlman html +./usr/share/man/html4/vax/kmem.html man-sys-htmlman html +./usr/share/man/html4/vax/lp.html man-sys-htmlman html +./usr/share/man/html4/vax/mem.html man-sys-htmlman html +./usr/share/man/html4/vax/mt.html man-sys-htmlman html +./usr/share/man/html4/vax/mtc.html man-sys-htmlman html +./usr/share/man/html4/vax/np.html man-sys-htmlman html +./usr/share/man/html4/vax/pcl.html man-sys-htmlman html +./usr/share/man/html4/vax/ps.html man-sys-htmlman html +./usr/share/man/html4/vax/qe.html man-sys-htmlman html +./usr/share/man/html4/vax/qt.html man-sys-htmlman html +./usr/share/man/html4/vax/rf.html man-sys-htmlman html +./usr/share/man/html4/vax/rl.html man-sys-htmlman html +./usr/share/man/html4/vax/tm.html man-sys-htmlman html +./usr/share/man/html4/vax/ts.html man-sys-htmlman html +./usr/share/man/html4/vax/tu.html man-sys-htmlman html +./usr/share/man/html4/vax/uda.html man-sys-htmlman html +./usr/share/man/html4/vax/up.html man-sys-htmlman html +./usr/share/man/html4/vax/ut.html man-sys-htmlman html +./usr/share/man/html4/vax/uu.html man-sys-htmlman html +./usr/share/man/html4/vax/va.html man-sys-htmlman html +./usr/share/man/html4/vax/vp.html man-sys-htmlman html +./usr/share/man/html4/vax/vv.html man-sys-htmlman html +./usr/share/man/html4/vbi.html man-sys-htmlman html +./usr/share/man/html4/veriexec.html man-sys-htmlman html +./usr/share/man/html4/vga.html man-sys-htmlman html +./usr/share/man/html4/vge.html man-sys-htmlman html +./usr/share/man/html4/viadrm.html man-sys-htmlman html +./usr/share/man/html4/viaenv.html man-sys-htmlman html +./usr/share/man/html4/viaide.html man-sys-htmlman html +./usr/share/man/html4/video.html man-sys-htmlman html +./usr/share/man/html4/vioif.html man-sys-htmlman html +./usr/share/man/html4/viomb.html man-sys-htmlman html +./usr/share/man/html4/virt.html man-sys-htmlman html +./usr/share/man/html4/virtio.html man-sys-htmlman html +./usr/share/man/html4/vlan.html man-sys-htmlman html +./usr/share/man/html4/vmmon.html man-sys-htmlman html +./usr/share/man/html4/vmnet.html man-sys-htmlman html +./usr/share/man/html4/vnd.html man-sys-htmlman html +./usr/share/man/html4/voodoofb.html man-sys-htmlman html +./usr/share/man/html4/vr.html man-sys-htmlman html +./usr/share/man/html4/vte.html man-sys-htmlman html +./usr/share/man/html4/wapbl.html man-sys-htmlman html +./usr/share/man/html4/wb.html man-sys-htmlman html +./usr/share/man/html4/wbsio.html man-sys-htmlman html +./usr/share/man/html4/wd.html man-sys-htmlman html +./usr/share/man/html4/wdc.html man-sys-htmlman html +./usr/share/man/html4/wds.html man-sys-htmlman html +./usr/share/man/html4/we.html man-sys-htmlman html +./usr/share/man/html4/wedge.html man-sys-htmlman html +./usr/share/man/html4/wi.html man-sys-htmlman html +./usr/share/man/html4/wm.html man-sys-htmlman html +./usr/share/man/html4/wmidell.html man-sys-htmlman html +./usr/share/man/html4/wmieeepc.html man-sys-htmlman html +./usr/share/man/html4/wmihp.html man-sys-htmlman html +./usr/share/man/html4/wmimsi.html man-sys-htmlman html +./usr/share/man/html4/wpi.html man-sys-htmlman html +./usr/share/man/html4/wscons.html man-sys-htmlman html +./usr/share/man/html4/wsdisplay.html man-sys-htmlman html +./usr/share/man/html4/wsfont.html man-sys-htmlman html +./usr/share/man/html4/wskbd.html man-sys-htmlman html +./usr/share/man/html4/wsmouse.html man-sys-htmlman html +./usr/share/man/html4/wsmux.html man-sys-htmlman html +./usr/share/man/html4/wsmuxctl.html man-sys-htmlman html +./usr/share/man/html4/wss.html man-sys-htmlman html +./usr/share/man/html4/wt.html man-sys-htmlman html +./usr/share/man/html4/x68k/bmd.html man-sys-htmlman html +./usr/share/man/html4/x68k/intio.html man-sys-htmlman html +./usr/share/man/html4/x68k/intro.html man-sys-htmlman html +./usr/share/man/html4/x68k/mfp.html man-sys-htmlman html +./usr/share/man/html4/x68k/neptune.html man-sys-htmlman html +./usr/share/man/html4/x68k/pow.html man-obsolete obsolete +./usr/share/man/html4/x68k/powsw.html man-sys-htmlman html +./usr/share/man/html4/x68k/vs.html man-sys-htmlman html +./usr/share/man/html4/x86/amdpcib.html man-sys-htmlman html +./usr/share/man/html4/x86/apic.html man-sys-htmlman html +./usr/share/man/html4/x86/balloon.html man-sys-htmlman html +./usr/share/man/html4/x86/coretemp.html man-sys-htmlman html +./usr/share/man/html4/x86/est.html man-sys-htmlman html +./usr/share/man/html4/x86/fdc.html man-sys-htmlman html +./usr/share/man/html4/x86/fwhrng.html man-sys-htmlman html +./usr/share/man/html4/x86/hpet.html man-sys-htmlman html +./usr/share/man/html4/x86/ichlpcib.html man-sys-htmlman html +./usr/share/man/html4/x86/ioapic.html man-sys-htmlman html +./usr/share/man/html4/x86/kmem.html man-sys-htmlman html +./usr/share/man/html4/x86/lapic.html man-sys-htmlman html +./usr/share/man/html4/x86/lpa.html man-sys-htmlman html +./usr/share/man/html4/x86/lpt.html man-sys-htmlman html +./usr/share/man/html4/x86/mem.html man-sys-htmlman html +./usr/share/man/html4/x86/odcm.html man-sys-htmlman html +./usr/share/man/html4/x86/powernow.html man-sys-htmlman html +./usr/share/man/html4/x86/tprof_amdpmi.html man-sys-htmlman html +./usr/share/man/html4/x86/tprof_pmi.html man-sys-htmlman html +./usr/share/man/html4/x86/vmt.html man-sys-htmlman html +./usr/share/man/html4/xbd.html man-sys-htmlman html +./usr/share/man/html4/xbdback.html man-sys-htmlman html +./usr/share/man/html4/xbox.html man-sys-htmlman html +./usr/share/man/html4/xc3028.html man-sys-htmlman html +./usr/share/man/html4/xc5k.html man-sys-htmlman html +./usr/share/man/html4/xenbus.html man-sys-htmlman html +./usr/share/man/html4/xennet.html man-sys-htmlman html +./usr/share/man/html4/xge.html man-sys-htmlman html +./usr/share/man/html4/xi.html man-sys-htmlman html +./usr/share/man/html4/xirc.html man-sys-htmlman html +./usr/share/man/html4/xpci.html man-sys-htmlman html +./usr/share/man/html4/xvif.html man-sys-htmlman html +./usr/share/man/html4/yds.html man-sys-htmlman html +./usr/share/man/html4/ym.html man-sys-htmlman html +./usr/share/man/html4/zero.html man-sys-htmlman html +./usr/share/man/html4/zl10353.html man-sys-htmlman html +./usr/share/man/html4/zs.html man-sys-htmlman html +./usr/share/man/html4/zsc.html man-sys-htmlman html +./usr/share/man/html4/zstty.html man-sys-htmlman html +./usr/share/man/html4/zyd.html man-sys-htmlman html +./usr/share/man/html5/a.out.html man-sys-htmlman html +./usr/share/man/html5/access.html man-postfix-htmlman postfix,html +./usr/share/man/html5/acct.html man-sys-htmlman html +./usr/share/man/html5/aliases.html man-postfix-htmlman postfix,html +./usr/share/man/html5/altq.conf.html man-router-htmlman html +./usr/share/man/html5/amd.conf.html man-amd-htmlman html +./usr/share/man/html5/ar.html man-sys-htmlman html +./usr/share/man/html5/atf-formats.html man-atf-htmlman html,atf +./usr/share/man/html5/audit-packages.conf.html man-obsolete obsolete +./usr/share/man/html5/body_checks.html man-postfix-htmlman postfix,html +./usr/share/man/html5/boot.cfg.html man-sys-htmlman html +./usr/share/man/html5/bootparams.html man-bootserver-htmlman html +./usr/share/man/html5/bootptab.html man-bootserver-htmlman html +./usr/share/man/html5/bounce.html man-postfix-htmlman postfix,html +./usr/share/man/html5/canonical.html man-postfix-htmlman postfix,html +./usr/share/man/html5/capfile.html man-sys-htmlman html +./usr/share/man/html5/ccd.conf.html man-sysutil-htmlman html +./usr/share/man/html5/cdb.html man-sys-htmlman html +./usr/share/man/html5/cidr_table.html man-postfix-htmlman postfix,html +./usr/share/man/html5/core.html man-sys-htmlman html +./usr/share/man/html5/crontab.html man-cron-htmlman html +./usr/share/man/html5/daily.conf.html man-sys-htmlman html +./usr/share/man/html5/daily.html man-sys-htmlman html +./usr/share/man/html5/dhclient.conf.html man-dhclient-htmlman html +./usr/share/man/html5/dhclient.leases.html man-dhclient-htmlman html +./usr/share/man/html5/dhcp-eval.html man-dhclient-htmlman html +./usr/share/man/html5/dhcp-options.html man-dhcpd-htmlman html +./usr/share/man/html5/dhcpcd.conf.html man-dhcpcd-htmlman html +./usr/share/man/html5/dhcpd.conf.html man-dhcpd-htmlman html +./usr/share/man/html5/dhcpd.leases.html man-dhcpd-htmlman html +./usr/share/man/html5/dir.html man-obsolete obsolete +./usr/share/man/html5/dirent.html man-obsolete obsolete +./usr/share/man/html5/disklabel.html man-sys-htmlman html +./usr/share/man/html5/disktab.html man-sys-htmlman html +./usr/share/man/html5/editrc.html man-sys-htmlman html +./usr/share/man/html5/elf.html man-sys-htmlman html +./usr/share/man/html5/envsys.conf.html man-sys-htmlman html +./usr/share/man/html5/ethers.html man-net-htmlman html +./usr/share/man/html5/exports.html man-nfsserver-htmlman html +./usr/share/man/html5/floppytab.html man-sys-htmlman html +./usr/share/man/html5/forward.html man-sys-htmlman html +./usr/share/man/html5/fs.html man-sys-htmlman html +./usr/share/man/html5/fstab.html man-sys-htmlman html +./usr/share/man/html5/ftpchroot.html man-netutil-htmlman html +./usr/share/man/html5/ftpd.conf.html man-netutil-htmlman html +./usr/share/man/html5/ftpusers.html man-netutil-htmlman html +./usr/share/man/html5/genassym.cf.html man-sys-htmlman html +./usr/share/man/html5/generic.html man-postfix-htmlman postfix,html +./usr/share/man/html5/gettytab.html man-sysutil-htmlman html +./usr/share/man/html5/gpio.conf.html man-sys-htmlman html +./usr/share/man/html5/group.html man-sys-htmlman html +./usr/share/man/html5/header_checks.html man-postfix-htmlman postfix,html +./usr/share/man/html5/hesiod.conf.html man-hesiod-htmlman html +./usr/share/man/html5/hostapd.conf.html man-sysutil-htmlman html +./usr/share/man/html5/hosts.allow.html man-net-htmlman html +./usr/share/man/html5/hosts.deny.html man-net-htmlman html +./usr/share/man/html5/hosts.equiv.html man-netutil-htmlman html +./usr/share/man/html5/hosts.html man-net-htmlman html +./usr/share/man/html5/hosts_access.html man-net-htmlman html +./usr/share/man/html5/hosts_options.html man-net-htmlman html +./usr/share/man/html5/ifaliases.html man-net-htmlman html +./usr/share/man/html5/ifconfig.if.html man-net-htmlman html +./usr/share/man/html5/inetd.conf.html man-netutil-htmlman html +./usr/share/man/html5/info.html man-texinfo-htmlman html +./usr/share/man/html5/inode.html man-sys-htmlman html +./usr/share/man/html5/intro.html man-sys-htmlman html +./usr/share/man/html5/ipf.conf.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/ipf.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/ipf6.conf.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/ipmon.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/ipnat.conf.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/ipnat.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/ippool.conf.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/ippool.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/ipsec.conf.html man-netutil-htmlman html +./usr/share/man/html5/ipsend.html man-ipf-htmlman ipfilter,html +./usr/share/man/html5/isdnd.acct.html man-isdn-htmlman html +./usr/share/man/html5/isdnd.rates.html man-isdn-htmlman html +./usr/share/man/html5/isdnd.rc.html man-isdn-htmlman html +./usr/share/man/html5/krb5.conf.html man-krb5-htmlman kerberos,html +./usr/share/man/html5/lastlog.html man-sys-htmlman html +./usr/share/man/html5/lastlogx.html man-sys-htmlman html +./usr/share/man/html5/ld.so.conf.html man-sys-htmlman html +./usr/share/man/html5/ldap_table.html man-postfix-htmlman postfix,html +./usr/share/man/html5/link.html man-sys-htmlman html +./usr/share/man/html5/lkm.conf.html man-obsolete obsolete +./usr/share/man/html5/locale.alias.html man-sys-htmlman html +./usr/share/man/html5/locate.conf.html man-sys-htmlman html +./usr/share/man/html5/login.access.html man-sys-htmlman pam,html +./usr/share/man/html5/login.conf.html man-sys-htmlman html +./usr/share/man/html5/lvm.conf.html man-lvm-htmlman lvm,html +./usr/share/man/html5/magic.html man-util-htmlman html +./usr/share/man/html5/mailer.conf.html man-mailwrapper-htmlman html +./usr/share/man/html5/man.conf.html man-man-htmlman html +./usr/share/man/html5/map3270.html man-obsolete obsolete +./usr/share/man/html5/master.html man-postfix-htmlman postfix,html +./usr/share/man/html5/master.passwd.html man-sys-htmlman html +./usr/share/man/html5/mixerctl.conf.html man-audio-htmlman html +./usr/share/man/html5/moduli.html man-secsh-htmlman crypto,html +./usr/share/man/html5/monthly.conf.html man-sys-htmlman html +./usr/share/man/html5/monthly.html man-sys-htmlman html +./usr/share/man/html5/motd.html man-sys-htmlman html +./usr/share/man/html5/named.conf.html man-bind-htmlman html +./usr/share/man/html5/netconfig.html man-net-htmlman html +./usr/share/man/html5/netgroup.html man-nis-htmlman html +./usr/share/man/html5/netid.html man-nis-htmlman yp,html +./usr/share/man/html5/networks.html man-net-htmlman html +./usr/share/man/html5/newsyslog.conf.html man-sysutil-htmlman html +./usr/share/man/html5/nicknames.html man-nis-htmlman yp,html +./usr/share/man/html5/nisplus_table.html man-postfix-htmlman postfix,html +./usr/share/man/html5/nologin.html man-sysutil-htmlman html +./usr/share/man/html5/npf.conf.html man-npf-htmlman html,npf +./usr/share/man/html5/nsswitch.conf.html man-net-htmlman html +./usr/share/man/html5/openssl.cnf.html man-crypto-htmlman crypto,html +./usr/share/man/html5/pam.conf.html man-sys-htmlman html +./usr/share/man/html5/passwd.conf.html man-sys-htmlman html +./usr/share/man/html5/passwd.html man-sys-htmlman html +./usr/share/man/html5/pcap-savefile.html man-sys-htmlman html +./usr/share/man/html5/pcre_table.html man-obsolete obsolete +./usr/share/man/html5/pf.boot.conf.html man-pf-htmlman pf,html +./usr/share/man/html5/pf.conf.html man-pf-htmlman pf,html +./usr/share/man/html5/pf.os.html man-pf-htmlman pf,html +./usr/share/man/html5/phones.html man-sys-man html +./usr/share/man/html5/pkg_install.conf.html man-pkgutil-htmlman crypto,html +./usr/share/man/html5/pkg_summary.html man-pkgutil-htmlman crypto,html +./usr/share/man/html5/postconf.html man-postfix-htmlman postfix,html +./usr/share/man/html5/postfix-wrapper.html man-postfix-htmlman postfix,html +./usr/share/man/html5/printcap.html man-lpr-htmlman html +./usr/share/man/html5/protocols.html man-net-htmlman html +./usr/share/man/html5/racoon.conf.html man-netutil-htmlman crypto,html +./usr/share/man/html5/radius.conf.html man-netutil-htmlman html +./usr/share/man/html5/rc.conf.html man-sys-htmlman html +./usr/share/man/html5/rcsfile.html man-rcs-htmlman html +./usr/share/man/html5/regexp_table.html man-postfix-htmlman postfix,html +./usr/share/man/html5/relocated.html man-postfix-htmlman postfix,html +./usr/share/man/html5/remote.html man-sys-htmlman html +./usr/share/man/html5/resolv.conf.html man-net-htmlman html +./usr/share/man/html5/resolvconf.conf.html man-resolvconf-htmlman html +./usr/share/man/html5/resolver.html man-net-htmlman html +./usr/share/man/html5/rhosts.html man-netutil-htmlman html +./usr/share/man/html5/rndc.conf.html man-bind-htmlman html +./usr/share/man/html5/route.conf.html man-sys-htmlman html +./usr/share/man/html5/rpc.html man-net-htmlman html +./usr/share/man/html5/rtadvd.conf.html man-router-htmlman use_inet6,html +./usr/share/man/html5/security.conf.html man-sys-htmlman html +./usr/share/man/html5/services.html man-net-htmlman html +./usr/share/man/html5/shells.html man-sys-htmlman html +./usr/share/man/html5/sqlite_table.html man-postfix-htmlman postfix,html +./usr/share/man/html5/ssh_config.html man-secsh-htmlman crypto,html +./usr/share/man/html5/sshd_config.html man-secsh-htmlman crypto,html +./usr/share/man/html5/stab.html man-sys-htmlman html +./usr/share/man/html5/sysctl.conf.html man-sys-htmlman html +./usr/share/man/html5/syslog.conf.html man-sysutil-htmlman html +./usr/share/man/html5/targets.html man-iscsi-htmlman iscsi,html +./usr/share/man/html5/termcap.html man-sys-htmlman html +./usr/share/man/html5/terminfo.html man-sys-htmlman html +./usr/share/man/html5/texinfo.html man-texinfo-htmlman html +./usr/share/man/html5/transport.html man-postfix-htmlman postfix,html +./usr/share/man/html5/ttyaction.html man-sys-htmlman html +./usr/share/man/html5/ttys.html man-sys-htmlman html +./usr/share/man/html5/types.html man-obsolete obsolete +./usr/share/man/html5/tzfile.html man-sys-htmlman html +./usr/share/man/html5/usermgmt.conf.html man-sys-htmlman html +./usr/share/man/html5/utmp.html man-sys-htmlman html +./usr/share/man/html5/utmpx.html man-sys-htmlman html +./usr/share/man/html5/uuencode.html man-util-htmlman html +./usr/share/man/html5/veriexec.html man-sys-htmlman html +./usr/share/man/html5/vgrindefs.html man-groff-htmlman html +./usr/share/man/html5/virtual.html man-postfix-htmlman postfix,html +./usr/share/man/html5/weekly.conf.html man-sys-htmlman html +./usr/share/man/html5/weekly.html man-sys-htmlman html +./usr/share/man/html5/wpa_supplicant.conf.html man-net-htmlman html +./usr/share/man/html5/wscons.conf.html man-sys-htmlman html +./usr/share/man/html5/wsmoused.conf.html man-sys-htmlman html +./usr/share/man/html5/wtmp.html man-sys-htmlman html +./usr/share/man/html5/wtmpx.html man-sys-htmlman html +./usr/share/man/html7/ascii.html man-reference-htmlman html +./usr/share/man/html7/atf.html man-atf-htmlman html,atf +./usr/share/man/html7/c.html man-reference-htmlman html +./usr/share/man/html7/c78.html man-reference-htmlman html +./usr/share/man/html7/c89.html man-reference-htmlman html +./usr/share/man/html7/c90.html man-reference-htmlman html +./usr/share/man/html7/c99.html man-reference-htmlman html +./usr/share/man/html7/des_modes.html man-reference-htmlman crypto,html +./usr/share/man/html7/environ.html man-reference-htmlman html +./usr/share/man/html7/glob.html man-reference-htmlman html +./usr/share/man/html7/hier.html man-reference-htmlman html +./usr/share/man/html7/hostname.html man-reference-htmlman html +./usr/share/man/html7/intro.html man-reference-htmlman html +./usr/share/man/html7/lint.html man-reference-htmlman html +./usr/share/man/html7/mailaddr.html man-reference-htmlman html +./usr/share/man/html7/mdoc.html man-groff-htmlman html,groff +./usr/share/man/html7/module.html man-reference-htmlman html +./usr/share/man/html7/nls.html man-reference-htmlman html +./usr/share/man/html7/orders.html man-reference-htmlman html +./usr/share/man/html7/pcap-filter.html man-netutil-htmlman html +./usr/share/man/html7/pcap-linktype.html man-netutil-htmlman html +./usr/share/man/html7/pkgsrc.html man-reference-htmlman html +./usr/share/man/html7/re_format.html man-reference-htmlman html +./usr/share/man/html7/release.html man-reference-htmlman html +./usr/share/man/html7/rfc6056.html man-reference-htmlman html +./usr/share/man/html7/rump_sp.html man-reference-htmlman html,rump +./usr/share/man/html7/script.html man-reference-htmlman html +./usr/share/man/html7/security.html man-reference-htmlman html +./usr/share/man/html7/setuid.html man-reference-htmlman html +./usr/share/man/html7/signal.html man-reference-htmlman html +./usr/share/man/html7/sticky.html man-reference-htmlman html +./usr/share/man/html7/symlink.html man-reference-htmlman html +./usr/share/man/html7/sysctl.html man-reference-htmlman html +./usr/share/man/html7/tests.html man-reference-htmlman html +./usr/share/man/html8/MAKEDEV.html man-sysutil-htmlman html +./usr/share/man/html8/MAKEDEV.local.html man-sysutil-htmlman html +./usr/share/man/html8/ac.html man-sysutil-htmlman html +./usr/share/man/html8/accton.html man-sysutil-htmlman html +./usr/share/man/html8/acorn26/boot.html man-sys-htmlman html +./usr/share/man/html8/acorn26/boot26.html man-sys-htmlman html +./usr/share/man/html8/acorn32/boot.html man-sys-htmlman html +./usr/share/man/html8/acorn32/boot32.html man-sys-htmlman html +./usr/share/man/html8/acorn32/nbfs.html man-sys-htmlman html +./usr/share/man/html8/acpidump.html man-sysutil-htmlman html +./usr/share/man/html8/adduser.html man-sysutil-htmlman html +./usr/share/man/html8/afterboot.html man-sysutil-htmlman html +./usr/share/man/html8/alpha/boot.html man-sys-htmlman html +./usr/share/man/html8/alpha/mkbootimage.html man-sysutil-htmlman html +./usr/share/man/html8/alpha/setnetbootinfo.html man-sysutil-htmlman html +./usr/share/man/html8/altqd.html man-router-htmlman html +./usr/share/man/html8/amd.html man-amd-htmlman html +./usr/share/man/html8/amd64/boot.html man-sys-htmlman html +./usr/share/man/html8/amiga/binpatch.html man-sysutil-htmlman html +./usr/share/man/html8/amiga/boot.html man-sys-htmlman html +./usr/share/man/html8/amiga/grfconfig.html man-sysutil-htmlman html +./usr/share/man/html8/amiga/installboot.html man-sysutil-htmlman html +./usr/share/man/html8/amldb.html man-sysutil-htmlman html +./usr/share/man/html8/amq.html man-amd-htmlman html +./usr/share/man/html8/amrctl.html man-sysutil-man html +./usr/share/man/html8/anvil.html man-postfix-htmlman postfix,html +./usr/share/man/html8/apm.html man-sysutil-htmlman html +./usr/share/man/html8/apmd.html man-sysutil-htmlman html +./usr/share/man/html8/apmlabel.html man-sysutil-htmlman html +./usr/share/man/html8/arp.html man-netutil-htmlman html +./usr/share/man/html8/atactl.html man-sysutil-htmlman html +./usr/share/man/html8/atari/ahdilabel.html man-sysutil-htmlman html +./usr/share/man/html8/atari/binpatch.html man-sysutil-htmlman html +./usr/share/man/html8/atari/boot.html man-sys-htmlman html +./usr/share/man/html8/atari/bootpref.html man-sysutil-htmlman html +./usr/share/man/html8/atari/installboot.html man-sysutil-htmlman html +./usr/share/man/html8/atrun.html man-cron-htmlman html +./usr/share/man/html8/authpf.html man-pf-htmlman pf,html +./usr/share/man/html8/bad144.html man-sysutil-htmlman html +./usr/share/man/html8/badsect.html man-sysutil-htmlman html +./usr/share/man/html8/bioctl.html man-sysutil-htmlman html +./usr/share/man/html8/boot.html man-sysutil-htmlman html +./usr/share/man/html8/bootparamd.html man-bootserver-htmlman html +./usr/share/man/html8/bootpd.html man-bootserver-htmlman html +./usr/share/man/html8/bootpef.html man-bootserver-htmlman html +./usr/share/man/html8/bootpgw.html man-bootserver-htmlman html +./usr/share/man/html8/bootptest.html man-bootserver-htmlman html +./usr/share/man/html8/bounce.html man-postfix-htmlman postfix,html +./usr/share/man/html8/brconfig.html man-netutil-htmlman html +./usr/share/man/html8/btattach.html man-sysutil-htmlman html +./usr/share/man/html8/btconfig.html man-sysutil-htmlman html +./usr/share/man/html8/btdevctl.html man-sysutil-htmlman html +./usr/share/man/html8/bthcid.html man-sysutil-htmlman html +./usr/share/man/html8/btpand.html man-sysutil-htmlman html +./usr/share/man/html8/catman.html man-man-htmlman html +./usr/share/man/html8/ccdconfig.html man-sysutil-htmlman html +./usr/share/man/html8/cgdconfig.html man-sysutil-htmlman crypto,html +./usr/share/man/html8/chat.html man-ppp-htmlman html +./usr/share/man/html8/chown.html man-sysutil-htmlman html +./usr/share/man/html8/chroot.html man-sysutil-htmlman html +./usr/share/man/html8/chrtbl.html man-obsolete obsolete +./usr/share/man/html8/cleanup.html man-postfix-htmlman postfix,html +./usr/share/man/html8/clri.html man-sysutil-htmlman html +./usr/share/man/html8/cnwctl.html man-sysutil-htmlman html +./usr/share/man/html8/cobalt/boot.html man-sys-htmlman html +./usr/share/man/html8/compat_30.html man-sys-htmlman html +./usr/share/man/html8/compat_darwin.html man-obsolete obsolete +./usr/share/man/html8/compat_freebsd.html man-sys-htmlman html +./usr/share/man/html8/compat_ibcs2.html man-sys-htmlman html +./usr/share/man/html8/compat_linux.html man-sys-htmlman html +./usr/share/man/html8/compat_netbsd32.html man-sys-htmlman html +./usr/share/man/html8/compat_osf1.html man-sys-htmlman html +./usr/share/man/html8/compat_pecoff.html man-obsolete obsolete +./usr/share/man/html8/compat_sco.html man-sys-htmlman html +./usr/share/man/html8/compat_solaris.html man-sys-htmlman html +./usr/share/man/html8/compat_sunos.html man-sys-htmlman html +./usr/share/man/html8/compat_svr4.html man-sys-htmlman html +./usr/share/man/html8/compat_svr4_32.html man-sys-htmlman html +./usr/share/man/html8/compat_ultrix.html man-sys-htmlman html +./usr/share/man/html8/compat_win32.html man-obsolete obsolete +./usr/share/man/html8/compat_xenix.html man-sys-htmlman html +./usr/share/man/html8/comsat.html man-man-htmlman html +./usr/share/man/html8/cpuctl.html man-sysutil-htmlman html +./usr/share/man/html8/crash.html man-sysutil-htmlman html +./usr/share/man/html8/cron.html man-cron-htmlman html +./usr/share/man/html8/dbsym.html man-sysutil-htmlman binutils,html +./usr/share/man/html8/ddns-confgen.html man-bind-htmlman html +./usr/share/man/html8/defer.html man-postfix-htmlman postfix,html +./usr/share/man/html8/dev_mkdb.html man-sysutil-htmlman html +./usr/share/man/html8/devpubd.html man-sysutil-htmlman html +./usr/share/man/html8/dhclient-script.html man-dhclient-htmlman html +./usr/share/man/html8/dhclient.html man-dhclient-htmlman html +./usr/share/man/html8/dhcpcd-run-hooks.html man-dhcpcd-htmlman html +./usr/share/man/html8/dhcpcd.html man-dhcpcd-htmlman html +./usr/share/man/html8/dhcpd.html man-dhcpd-htmlman html +./usr/share/man/html8/dhcrelay.html man-dhcpd-htmlman html +./usr/share/man/html8/discard.html man-postfix-htmlman postfix,html +./usr/share/man/html8/disklabel.html man-sysutil-htmlman html +./usr/share/man/html8/diskless.html man-sysutil-htmlman html +./usr/share/man/html8/diskpart.html man-sysutil-htmlman html +./usr/share/man/html8/dkctl.html man-sysutil-htmlman html +./usr/share/man/html8/dkscan_bsdlabel.html man-sysutil-htmlman html +./usr/share/man/html8/dmctl.html man-sysutil-htmlman html +./usr/share/man/html8/dmesg.html man-sysutil-htmlman html +./usr/share/man/html8/dmsetup.html man-lvm-htmlman lvm,html +./usr/share/man/html8/dnsblog.html man-postfix-htmlman postfix,html +./usr/share/man/html8/dnssec-dsfromkey.html man-bind-htmlman html +./usr/share/man/html8/dnssec-keyfromlabel.html man-bind-htmlman html +./usr/share/man/html8/dnssec-keygen.html man-bind-htmlman html +./usr/share/man/html8/dnssec-revoke.html man-bind-htmlman html +./usr/share/man/html8/dnssec-settime.html man-bind-htmlman html +./usr/share/man/html8/dnssec-signzone.html man-bind-htmlman html +./usr/share/man/html8/dreamcast/boot.html man-sysutil-htmlman html +./usr/share/man/html8/drvctl.html man-sysutil-htmlman html +./usr/share/man/html8/dump.html man-sysutil-htmlman html +./usr/share/man/html8/dump_lfs.html man-sysutil-htmlman html +./usr/share/man/html8/dumpfs.html man-sysutil-htmlman html +./usr/share/man/html8/dumplfs.html man-sysutil-htmlman html +./usr/share/man/html8/edquota.html man-sysutil-htmlman html +./usr/share/man/html8/eeprom.html man-sysutil-htmlman html +./usr/share/man/html8/emips/boot.html man-sys-htmlman html +./usr/share/man/html8/evbarm/bootmini2440.html man-sysutil-htmlman html +./usr/share/man/html8/envstat.html man-sysutil-htmlman html +./usr/share/man/html8/error.html man-postfix-htmlman postfix,html +./usr/share/man/html8/eshconfig.html man-sysutil-htmlman html +./usr/share/man/html8/etcupdate.html man-sysutil-htmlman html +./usr/share/man/html8/extattrctl.html man-sysutil-htmlman html +./usr/share/man/html8/faithd.html man-router-htmlman inet6,html +./usr/share/man/html8/fastboot.html man-sysutil-htmlman html +./usr/share/man/html8/fasthalt.html man-sysutil-htmlman html +./usr/share/man/html8/fdisk.html man-sysutil-htmlman html +./usr/share/man/html8/fingerd.html man-sysutil-htmlman html +./usr/share/man/html8/fixmount.html man-sysutil-htmlman html +./usr/share/man/html8/flashctl.html man-sysutil-htmlman html +./usr/share/man/html8/flush.html man-postfix-htmlman postfix,html +./usr/share/man/html8/fsck.html man-sysutil-htmlman html +./usr/share/man/html8/fsck_ext2fs.html man-ext2fs-htmlman html +./usr/share/man/html8/fsck_ffs.html man-sysutil-htmlman html +./usr/share/man/html8/fsck_lfs.html man-sysutil-htmlman html +./usr/share/man/html8/fsck_msdos.html man-sysutil-htmlman html +./usr/share/man/html8/fsck_v7fs.html man-sysutil-htmlman html +./usr/share/man/html8/fsdb.html man-sysutil-htmlman html +./usr/share/man/html8/fsinfo.html man-sysutil-htmlman html +./usr/share/man/html8/fsirand.html man-sysutil-htmlman html +./usr/share/man/html8/fssconfig.html man-sysutil-htmlman html +./usr/share/man/html8/ftp-proxy.html man-pf-htmlman pf,html +./usr/share/man/html8/ftpd.html man-netutil-htmlman html +./usr/share/man/html8/fusermount.html man-refuse-htmlman html +./usr/share/man/html8/fwctl.html man-sysutil-htmlman html +./usr/share/man/html8/getNAME.html man-man-htmlman !makemandb,html +./usr/share/man/html8/getencstat.html man-sysutil-htmlman html +./usr/share/man/html8/getty.html man-sysutil-htmlman html +./usr/share/man/html8/gpioctl.html man-sysutil-htmlman html +./usr/share/man/html8/gpt.html man-sysutil-htmlman html +./usr/share/man/html8/group.html man-sysutil-htmlman html +./usr/share/man/html8/groupadd.html man-sysutil-htmlman html +./usr/share/man/html8/groupdel.html man-sysutil-htmlman html +./usr/share/man/html8/groupinfo.html man-sysutil-htmlman html +./usr/share/man/html8/groupmod.html man-sysutil-htmlman html +./usr/share/man/html8/gspa.html man-sysutil-htmlman html +./usr/share/man/html8/halt.html man-sysutil-htmlman html +./usr/share/man/html8/hdaudioctl.html man-sysutil-htmlman html +./usr/share/man/html8/hlfsd.html man-amd-htmlman html +./usr/share/man/html8/hostapd.html man-sysutil-htmlman html +./usr/share/man/html8/hostapd_cli.html man-sysutil-htmlman html +./usr/share/man/html8/hp300/boot.html man-sys-htmlman html +./usr/share/man/html8/hp300/crash.html man-sys-htmlman html +./usr/share/man/html8/hp300/format.html man-sys-htmlman html +./usr/share/man/html8/hp700/boot.html man-sys-htmlman html +./usr/share/man/html8/hp700/mkboot.html man-sys-htmlman html +./usr/share/man/html8/hpcarm/boot.html man-sys-htmlman html +./usr/share/man/html8/hpcboot.html man-sys-htmlman html +./usr/share/man/html8/hpcmips/boot.html man-sys-htmlman html +./usr/share/man/html8/hpcmips/pbsdboot.html man-sys-htmlman html +./usr/share/man/html8/hpcsh/boot.html man-sys-htmlman html +./usr/share/man/html8/hprop.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/hpropd.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/httpd.html man-netutil-htmlman html +./usr/share/man/html8/i2cscan.html man-sysutil-htmlman html +./usr/share/man/html8/i386/boot.html man-sys-htmlman html +./usr/share/man/html8/i386/boot_console.html man-sys-htmlman html +./usr/share/man/html8/i386/bootselect.html man-sys-htmlman html +./usr/share/man/html8/i386/dosboot.html man-sys-htmlman html +./usr/share/man/html8/i386/mbr.html man-sys-htmlman html +./usr/share/man/html8/i386/multiboot.html man-sys-htmlman html +./usr/share/man/html8/i386/ndiscvt.html man-netutil-htmlman html +./usr/share/man/html8/i386/pxeboot.html man-sys-htmlman html +./usr/share/man/html8/i386/w95boot.html man-obsolete obsolete +./usr/share/man/html8/iasl.html man-sysutil-htmlman html +./usr/share/man/html8/identd.html man-netutil-htmlman html +./usr/share/man/html8/ifconfig.html man-netutil-htmlman html +./usr/share/man/html8/ifmcstat.html man-netutil-htmlman inet6,html +./usr/share/man/html8/ifwatchd.html man-netutil-htmlman html +./usr/share/man/html8/inetd.html man-netutil-htmlman html +./usr/share/man/html8/init.html man-sysutil-htmlman html +./usr/share/man/html8/installboot.html man-sysutil-htmlman html +./usr/share/man/html8/intro.html man-sys-htmlman html +./usr/share/man/html8/iopctl.html man-sysutil-htmlman html +./usr/share/man/html8/iostat.html man-sysutil-htmlman html +./usr/share/man/html8/ipf.html man-ipf-htmlman ipfilter,html +./usr/share/man/html8/ipfs.html man-ipf-htmlman ipfilter,html +./usr/share/man/html8/ipfstat.html man-ipf-htmlman ipfilter,html +./usr/share/man/html8/ipmon.html man-ipf-htmlman ipfilter,html +./usr/share/man/html8/ipnat.html man-ipf-htmlman ipfilter,html +./usr/share/man/html8/ippool.html man-ipf-htmlman ipfilter,html +./usr/share/man/html8/ipppctl.html man-isdn-htmlman html +./usr/share/man/html8/iprop-log.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/iprop.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/ipropd-master.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/ipropd-slave.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/ipwctl.html man-sysutil-htmlman html +./usr/share/man/html8/irda.html man-sysutil-htmlman html +./usr/share/man/html8/irdaattach.html man-sysutil-htmlman html +./usr/share/man/html8/iscsi-initiator.html man-iscsi-htmlman iscsi,html +./usr/share/man/html8/iscsi-target.html man-iscsi-htmlman iscsi,html +./usr/share/man/html8/iscsictl.html man-iscsi-htmlman iscsi,html +./usr/share/man/html8/iscsid.html man-iscsi-htmlman iscsi,html +./usr/share/man/html8/isdnd.html man-isdn-htmlman html +./usr/share/man/html8/isdnmonitor.html man-isdn-htmlman html +./usr/share/man/html8/isdntel.html man-isdn-htmlman html +./usr/share/man/html8/isdntelctl.html man-isdn-htmlman html +./usr/share/man/html8/isdntrace.html man-isdn-htmlman html +./usr/share/man/html8/isibootd.html man-bootserver-htmlman html +./usr/share/man/html8/iteconfig.html man-sysutil-htmlman html +./usr/share/man/html8/iwictl.html man-sysutil-htmlman html +./usr/share/man/html8/kadmin.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/kadmind.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/kcm.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/kdc.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/kerberos.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/kimpersonate.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/kpasswdd.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/kstash.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/ktutil.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/lastlogin.html man-sysutil-htmlman html +./usr/share/man/html8/ldconfig.html man-sysutil-htmlman html +./usr/share/man/html8/ldpd.html man-router-htmlman html +./usr/share/man/html8/lfs_cleanerd.html man-sysutil-htmlman html +./usr/share/man/html8/link.html man-sysutil-htmlman html +./usr/share/man/html8/lmcconfig.html man-sysutil-htmlman html +./usr/share/man/html8/lmtp.html man-postfix-htmlman postfix,html +./usr/share/man/html8/local.html man-postfix-htmlman postfix,html +./usr/share/man/html8/locate.updatedb.html man-sysutil-htmlman html +./usr/share/man/html8/lockd.html man-nfsserver-htmlman html +./usr/share/man/html8/lockstat.html man-sysutil-htmlman html +./usr/share/man/html8/lpc.html man-lpr-htmlman html +./usr/share/man/html8/lpd.html man-lpr-htmlman html +./usr/share/man/html8/lvchange.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvconvert.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvcreate.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvdisplay.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvextend.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvm.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvmchange.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvmdiskscan.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvmdump.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvreduce.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvremove.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvrename.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvresize.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvs.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lvscan.html man-lvm-htmlman lvm,html +./usr/share/man/html8/lwresd.html man-bind-htmlman html +./usr/share/man/html8/mac68k/boot.html man-sys-htmlman html +./usr/share/man/html8/macppc/boot.html man-sys-htmlman html +./usr/share/man/html8/macppc/ofwboot.elf.html man-sysutil-htmlman html +./usr/share/man/html8/macppc/ofwboot.html man-sysutil-htmlman html +./usr/share/man/html8/macppc/ofwboot.xcf.html man-sysutil-htmlman html +./usr/share/man/html8/mail.local.html man-mail-htmlman html +./usr/share/man/html8/mailwrapper.html man-mailwrapper-htmlman html +./usr/share/man/html8/makedbm.html man-nis-htmlman yp,html +./usr/share/man/html8/makedev.html man-sysutil-htmlman html +./usr/share/man/html8/makedev.local.html man-sysutil-htmlman html +./usr/share/man/html8/makefs.html man-sysutil-htmlman html +./usr/share/man/html8/makekey.html man-crypto-htmlman html +./usr/share/man/html8/makemandb.html man-man-htmlman makemandb,html +./usr/share/man/html8/makewhatis.html man-man-htmlman !makemandb,html +./usr/share/man/html8/map-mbone.html man-netutil-htmlman html +./usr/share/man/html8/master.html man-postfix-htmlman postfix,html +./usr/share/man/html8/mbrlabel.html man-sysutil-htmlman html +./usr/share/man/html8/mdconfig.html man-sysutil-htmlman html +./usr/share/man/html8/mdnsd.html man-mdns-htmlman mdns,html +./usr/share/man/html8/mdsetimage.html man-sysutil-htmlman binutils,html +./usr/share/man/html8/mfs.html man-sys-htmlman html +./usr/share/man/html8/mk-amd-map.html man-amd-htmlman html +./usr/share/man/html8/mkalias.html man-nis-htmlman yp,html +./usr/share/man/html8/mknetid.html man-nis-htmlman yp,html +./usr/share/man/html8/mknod.html man-sysutil-htmlman html +./usr/share/man/html8/mld6query.html man-netutil-htmlman use_inet6,html +./usr/share/man/html8/mlxctl.html man-sysutil-htmlman html +./usr/share/man/html8/mmcformat.html man-sysutil-htmlman html +./usr/share/man/html8/modload.html man-sysutil-htmlman html +./usr/share/man/html8/modstat.html man-sysutil-htmlman html +./usr/share/man/html8/modunload.html man-sysutil-htmlman html +./usr/share/man/html8/mopd.html man-bootserver-htmlman html +./usr/share/man/html8/mount.html man-sysutil-htmlman html +./usr/share/man/html8/mount_9p.html man-puffs-htmlman html,rump +./usr/share/man/html8/mount_ados.html man-adosfs-htmlman html +./usr/share/man/html8/mount_cd9660.html man-sysutil-htmlman html +./usr/share/man/html8/mount_chfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_efs.html man-efs-htmlman html +./usr/share/man/html8/mount_ext2fs.html man-ext2fs-htmlman html +./usr/share/man/html8/mount_fdesc.html man-miscfs-htmlman html +./usr/share/man/html8/mount_ffs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_filecore.html man-filecorefs-htmlman html +./usr/share/man/html8/mount_hfs.html man-hfs-htmlman html +./usr/share/man/html8/mount_kernfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_lfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_mfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_msdos.html man-sysutil-htmlman html +./usr/share/man/html8/mount_nfs.html man-nfsclient-htmlman html +./usr/share/man/html8/mount_nilfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_ntfs.html man-ntfs-htmlman html +./usr/share/man/html8/mount_null.html man-miscfs-htmlman html +./usr/share/man/html8/mount_overlay.html man-miscfs-htmlman html +./usr/share/man/html8/mount_portal.html man-miscfs-htmlman html +./usr/share/man/html8/mount_procfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_psshfs.html man-puffs-htmlman html,rump +./usr/share/man/html8/mount_ptyfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_puffs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_smbfs.html man-smbfs-htmlman html +./usr/share/man/html8/mount_sysctlfs.html man-puffs-htmlman html,rump +./usr/share/man/html8/mount_sysvbfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_tmpfs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_udf.html man-sysutil-htmlman html +./usr/share/man/html8/mount_ufs.html man-sysutil-htmlman html +./usr/share/man/html8/mount_umap.html man-miscfs-htmlman html +./usr/share/man/html8/mount_union.html man-miscfs-htmlman html +./usr/share/man/html8/mount_v7fs.html man-sysutil-htmlman html +./usr/share/man/html8/mountd.html man-nfsserver-htmlman html +./usr/share/man/html8/moused.html man-sysutil-htmlman html +./usr/share/man/html8/mrinfo.html man-netutil-htmlman html +./usr/share/man/html8/mrouted.html man-router-htmlman html +./usr/share/man/html8/mscdlabel.html man-sysutil-htmlman html +./usr/share/man/html8/mtrace.html man-netutil-htmlman html +./usr/share/man/html8/mtree.html man-sysutil-htmlman html +./usr/share/man/html8/mvme68k/boot.html man-sys-htmlman html +./usr/share/man/html8/mvme68k/installboot.html man-sysutil-htmlman html +./usr/share/man/html8/named-checkconf.html man-bind-htmlman html +./usr/share/man/html8/named-checkzone.html man-bind-htmlman html +./usr/share/man/html8/named-compilezone.html man-bind-htmlman html +./usr/share/man/html8/named-journalprint.html man-bind-htmlman html +./usr/share/man/html8/named.html man-bind-htmlman html +./usr/share/man/html8/ncdcs.html man-sysutil-htmlman binutils,html +./usr/share/man/html8/ndbootd.html man-bootserver-htmlman html +./usr/share/man/html8/ndiscvt.html man-obsolete obsolete +./usr/share/man/html8/ndp.html man-netutil-htmlman inet6,html +./usr/share/man/html8/netbsd32.html man-sys-htmlman html +./usr/share/man/html8/netgroup_mkdb.html man-nis-htmlman html +./usr/share/man/html8/newbtconf.html man-sysutil-htmlman html +./usr/share/man/html8/newfs.html man-sysutil-htmlman html +./usr/share/man/html8/newfs_ext2fs.html man-sysutil-htmlman html +./usr/share/man/html8/newfs_lfs.html man-sysutil-htmlman html +./usr/share/man/html8/newfs_msdos.html man-sysutil-htmlman html +./usr/share/man/html8/newfs_sysvbfs.html man-sysutil-htmlman html +./usr/share/man/html8/newfs_udf.html man-sysutil-htmlman html +./usr/share/man/html8/newfs_v7fs.html man-sysutil-htmlman html +./usr/share/man/html8/newsyslog.html man-sysutil-htmlman html +./usr/share/man/html8/next68k/boot.html man-sys-htmlman html +./usr/share/man/html8/nfsd.html man-nfsserver-htmlman html +./usr/share/man/html8/nis.html man-nis-htmlman html +./usr/share/man/html8/nologin.html man-sysutil-htmlman html +./usr/share/man/html8/npf.conf.html man-obsolete obsolete +./usr/share/man/html8/npfctl.html man-npf-htmlman html,npf +./usr/share/man/html8/nsec3hash.html man-bind-htmlman html +./usr/share/man/html8/nslookup.html man-netutil-htmlman html +./usr/share/man/html8/nsupdate.html man-obsolete obsolete +./usr/share/man/html8/ntalkd.html man-netutil-htmlman html +./usr/share/man/html8/ntp-keygen.html man-ntp-htmlman crypto,html +./usr/share/man/html8/ntpd.html man-ntp-htmlman html +./usr/share/man/html8/ntpdate.html man-ntp-htmlman html +./usr/share/man/html8/ntpdc.html man-ntp-htmlman html +./usr/share/man/html8/ntpq.html man-ntp-htmlman html +./usr/share/man/html8/ntptime.html man-ntp-htmlman html +./usr/share/man/html8/ntptrace.html man-ntp-htmlman html +./usr/share/man/html8/ofctl.html man-sysutil-htmlman html +./usr/share/man/html8/oqmgr.html man-postfix-htmlman postfix,html +./usr/share/man/html8/pac.html man-sysutil-htmlman html +./usr/share/man/html8/pam.html man-sysutil-htmlman html +./usr/share/man/html8/pam_afslog.html man-sysutil-htmlman kerberos,pam,html +./usr/share/man/html8/pam_chroot.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_deny.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_echo.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_exec.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_ftpusers.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_group.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_guest.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_krb5.html man-sysutil-htmlman kerberos,pam,html +./usr/share/man/html8/pam_ksu.html man-sysutil-htmlman kerberos,pam,html +./usr/share/man/html8/pam_lastlog.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_login_access.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_nologin.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_permit.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_radius.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_rhosts.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_rootok.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_securetty.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_self.html man-sysutil-htmlman pam,html +./usr/share/man/html8/pam_skey.html man-sysutil-htmlman skey,pam,html +./usr/share/man/html8/pam_ssh.html man-sysutil-htmlman crypto,pam,html +./usr/share/man/html8/pam_unix.html man-sysutil-htmlman pam,html +./usr/share/man/html8/paxctl.html man-sysutil-htmlman html +./usr/share/man/html8/pcictl.html man-sysutil-htmlman html +./usr/share/man/html8/pcnfsd.html man-nfsserver-htmlman html +./usr/share/man/html8/pdisk.html man-sysutil-htmlman html +./usr/share/man/html8/peace.html man-obsolete obsolete +./usr/share/man/html8/perfused.html man-perfuse-htmlman html +./usr/share/man/html8/pfctl.html man-pf-htmlman pf,html +./usr/share/man/html8/pflogd.html man-pf-htmlman pf,html +./usr/share/man/html8/pfs.html man-pf-htmlman pf,html +./usr/share/man/html8/pickup.html man-postfix-htmlman postfix,html +./usr/share/man/html8/ping.html man-netutil-htmlman html +./usr/share/man/html8/ping6.html man-netutil-htmlman use_inet6,html +./usr/share/man/html8/pipe.html man-postfix-htmlman postfix,html +./usr/share/man/html8/pmax/boot.html man-sys-htmlman html +./usr/share/man/html8/postinstall.html man-sys-htmlman html +./usr/share/man/html8/postscreen.html man-postfix-htmlman postfix,crypto,html +./usr/share/man/html8/powerd.html man-sysutil-htmlman html +./usr/share/man/html8/poweroff.html man-sysutil-htmlman html +./usr/share/man/html8/pppd.html man-ppp-htmlman html +./usr/share/man/html8/pppdump.html man-ppp-htmlman html +./usr/share/man/html8/pppoectl.html man-isdn-htmlman html +./usr/share/man/html8/pppstats.html man-ppp-htmlman html +./usr/share/man/html8/prep/boot.html man-sys-htmlman html +./usr/share/man/html8/prep/mkbootimage.html man-sys-htmlman html +./usr/share/man/html8/proxymap.html man-postfix-htmlman postfix,html +./usr/share/man/html8/psrset.html man-sysutil-htmlman html +./usr/share/man/html8/pstat.html man-sysutil-htmlman html +./usr/share/man/html8/pvchange.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pvck.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pvcreate.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pvcsif.html man-netutil-htmlman html +./usr/share/man/html8/pvctxctl.html man-netutil-htmlman html +./usr/share/man/html8/pvdisplay.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pvmove.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pvremove.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pvresize.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pvs.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pvscan.html man-lvm-htmlman lvm,html +./usr/share/man/html8/pwd_mkdb.html man-sysutil-htmlman html +./usr/share/man/html8/qmgr.html man-postfix-htmlman postfix,html +./usr/share/man/html8/quot.html man-sysutil-htmlman html +./usr/share/man/html8/quotacheck.html man-sysutil-htmlman html +./usr/share/man/html8/quotactl.html man-obsolete obsolete +./usr/share/man/html8/quotadump.html man-sysutil-htmlman html +./usr/share/man/html8/quotaoff.html man-sysutil-htmlman html +./usr/share/man/html8/quotaon.html man-sysutil-htmlman html +./usr/share/man/html8/quotarestore.html man-sysutil-htmlman html +./usr/share/man/html8/racoon.html man-netutil-htmlman crypto,html +./usr/share/man/html8/racoonctl.html man-netutil-htmlman crypto,html +./usr/share/man/html8/raidctl.html man-sysutil-htmlman html +./usr/share/man/html8/rarpd.html man-bootserver-htmlman html +./usr/share/man/html8/rbootd.html man-bootserver-htmlman html +./usr/share/man/html8/rc.d.html man-rc-htmlman html +./usr/share/man/html8/rc.html man-rc-htmlman html +./usr/share/man/html8/rc.local.html man-rc-htmlman html +./usr/share/man/html8/rc.shutdown.html man-rc-htmlman html +./usr/share/man/html8/rc.subr.html man-rc-htmlman html +./usr/share/man/html8/rcorder.html man-sysutil-htmlman html +./usr/share/man/html8/rdate.html man-netutil-htmlman html +./usr/share/man/html8/rdisc.html man-netutil-htmlman html +./usr/share/man/html8/rdump.html man-netutil-htmlman html +./usr/share/man/html8/rdump_lfs.html man-netutil-htmlman html +./usr/share/man/html8/reboot.html man-sysutil-htmlman html +./usr/share/man/html8/renice.html man-sysutil-htmlman html +./usr/share/man/html8/repquota.html man-sysutil-htmlman html +./usr/share/man/html8/rescue.html man-sysutil-htmlman html +./usr/share/man/html8/resize_ffs.html man-sysutil-htmlman html +./usr/share/man/html8/resize_lfs.html man-sysutil-htmlman html +./usr/share/man/html8/resolvconf.html man-resolvconf-htmlman html +./usr/share/man/html8/restore.html man-sysutil-htmlman html +./usr/share/man/html8/revnetgroup.html man-nis-htmlman yp,html +./usr/share/man/html8/revoke.html man-sysutil-htmlman html +./usr/share/man/html8/rexecd.html man-netutil-htmlman html +./usr/share/man/html8/rip6query.html man-netutil-htmlman inet6,html +./usr/share/man/html8/rlogind.html man-netutil-htmlman html +./usr/share/man/html8/rmt.html man-sysutil-htmlman html +./usr/share/man/html8/rndc-confgen.html man-bind-htmlman html +./usr/share/man/html8/rndc.html man-bind-htmlman html +./usr/share/man/html8/rndctl.html man-sysutil-htmlman html +./usr/share/man/html8/route.html man-netutil-htmlman html +./usr/share/man/html8/route6d.html man-router-htmlman use_inet6,html +./usr/share/man/html8/routed.html man-router-htmlman html +./usr/share/man/html8/rpc.bootparamd.html man-bootserver-htmlman html +./usr/share/man/html8/rpc.lockd.html man-nfsserver-htmlman html +./usr/share/man/html8/rpc.pcnfsd.html man-nfsserver-htmlman html +./usr/share/man/html8/rpc.rquotad.html man-nfsserver-htmlman html +./usr/share/man/html8/rpc.rstatd.html man-rpcserver-htmlman html +./usr/share/man/html8/rpc.rusersd.html man-rpcserver-htmlman html +./usr/share/man/html8/rpc.rwalld.html man-rpcserver-htmlman html +./usr/share/man/html8/rpc.sprayd.html man-rpcserver-htmlman html +./usr/share/man/html8/rpc.statd.html man-nfsserver-htmlman html +./usr/share/man/html8/rpc.yppasswdd.html man-nis-htmlman yp,html +./usr/share/man/html8/rpcbind.html man-rpcserver-htmlman html +./usr/share/man/html8/rpcinfo.html man-rpcutil-htmlman html +./usr/share/man/html8/rquotad.html man-nfsserver-htmlman html +./usr/share/man/html8/rrestore.html man-netutil-htmlman html +./usr/share/man/html8/rshd.html man-netutil-htmlman html +./usr/share/man/html8/rstatd.html man-netutil-htmlman html +./usr/share/man/html8/rtadvd.html man-router-htmlman use_inet6,html +./usr/share/man/html8/rtquery.html man-netutil-htmlman html +./usr/share/man/html8/rtsol.html man-netutil-htmlman inet6,html +./usr/share/man/html8/rtsold.html man-netutil-htmlman inet6,html +./usr/share/man/html8/rump_cd9660.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_efs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_ext2fs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_ffs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_hfs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_lfs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_msdos.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_nfs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_ntfs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_smbfs.html man-puffs-htmlman crypto,html,rump +./usr/share/man/html8/rump_syspuffs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_sysvbfs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_tmpfs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_udf.html man-puffs-htmlman html,rump +./usr/share/man/html8/rump_v7fs.html man-puffs-htmlman html,rump +./usr/share/man/html8/rusersd.html man-netutil-htmlman html +./usr/share/man/html8/rwalld.html man-netutil-htmlman html +./usr/share/man/html8/rwhod.html man-netutil-htmlman html +./usr/share/man/html8/sa.html man-sysutil-htmlman html +./usr/share/man/html8/sandpoint/altboot.html man-sysutil-htmlman html +./usr/share/man/html8/savecore.html man-sysutil-htmlman html +./usr/share/man/html8/scache.html man-postfix-htmlman postfix,html +./usr/share/man/html8/scan_ffs.html man-sysutil-htmlman html +./usr/share/man/html8/scan_lfs.html man-sysutil-htmlman html +./usr/share/man/html8/schedctl.html man-sysutil-htmlman html +./usr/share/man/html8/scsictl.html man-sysutil-htmlman html +./usr/share/man/html8/sdpd.html man-sysutil-htmlman html +./usr/share/man/html8/security.html man-obsolete obsolete +./usr/share/man/html8/services_mkdb.html man-sysutil-htmlman html +./usr/share/man/html8/sesd.html man-sysutil-htmlman html +./usr/share/man/html8/setencstat.html man-sysutil-htmlman html +./usr/share/man/html8/setkey.html man-netutil-htmlman html +./usr/share/man/html8/setobjstat.html man-sysutil-htmlman html +./usr/share/man/html8/sftp-server.html man-secsh-htmlman crypto,html +./usr/share/man/html8/sgimips/boot.html man-sys-htmlman html +./usr/share/man/html8/sgimips/sgivol.html man-sys-htmlman html +./usr/share/man/html8/showmount.html man-nfsclient-htmlman html +./usr/share/man/html8/showq.html man-postfix-htmlman postfix,html +./usr/share/man/html8/shutdown.html man-sysutil-htmlman html +./usr/share/man/html8/slattach.html man-slip-htmlman html +./usr/share/man/html8/sliplogin.html man-slip-htmlman html +./usr/share/man/html8/slstats.html man-slip-htmlman html +./usr/share/man/html8/smtp.html man-postfix-htmlman postfix,html +./usr/share/man/html8/smtpd.html man-postfix-htmlman postfix,html +./usr/share/man/html8/sparc/binstall.html man-sysutil-htmlman html +./usr/share/man/html8/sparc/boot.html man-sys-htmlman html +./usr/share/man/html8/sparc/tadpolectl.html man-sysutil-htmlman html +./usr/share/man/html8/sparc64/boot.html man-sys-htmlman html +./usr/share/man/html8/sparc64/ofwboot.html man-sys-htmlman html +./usr/share/man/html8/spawn.html man-postfix-htmlman postfix,html +./usr/share/man/html8/spray.html man-rpcutil-htmlman html +./usr/share/man/html8/sprayd.html man-rpcserver-htmlman html +./usr/share/man/html8/ssh-keysign.html man-secsh-htmlman crypto,html +./usr/share/man/html8/ssh-pkcs11-helper.html man-secsh-htmlman crypto,html +./usr/share/man/html8/sshd.html man-secsh-htmlman crypto,html +./usr/share/man/html8/statd.html man-nfsserver-htmlman html +./usr/share/man/html8/stdethers.html man-nis-htmlman yp,html +./usr/share/man/html8/stdhosts.html man-nis-htmlman yp,html +./usr/share/man/html8/sti.html man-sysutil-htmlman html +./usr/share/man/html8/string2key.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/sun2/boot.html man-sys-htmlman html +./usr/share/man/html8/sun3/boot.html man-sys-htmlman html +./usr/share/man/html8/sunlabel.html man-sysutil-htmlman html +./usr/share/man/html8/supfilesrv.html man-sup-htmlman html +./usr/share/man/html8/supscan.html man-sup-htmlman html +./usr/share/man/html8/supservers.html man-sup-htmlman html +./usr/share/man/html8/svhlabel.html man-sysutil-htmlman html +./usr/share/man/html8/swapctl.html man-sysutil-htmlman html +./usr/share/man/html8/swapon.html man-sysutil-htmlman html +./usr/share/man/html8/sync.html man-sysutil-htmlman html +./usr/share/man/html8/sysctl.html man-sysutil-htmlman html +./usr/share/man/html8/sysinst.html man-sysutil-man html +./usr/share/man/html8/syslogd.html man-sysutil-htmlman html +./usr/share/man/html8/talkd.html man-netutil-htmlman html +./usr/share/man/html8/tbrconfig.html man-router-htmlman html +./usr/share/man/html8/tcpdchk.html man-netutil-htmlman html +./usr/share/man/html8/tcpdmatch.html man-netutil-htmlman html +./usr/share/man/html8/tcpdrop.html man-netutil-htmlman html +./usr/share/man/html8/tcpdump.html man-netutil-htmlman html +./usr/share/man/html8/telnetd.html man-netutil-htmlman html +./usr/share/man/html8/tftp-proxy.html man-pf-htmlman pf,html +./usr/share/man/html8/tftpd.html man-netutil-htmlman html +./usr/share/man/html8/timed.html man-timed-htmlman html +./usr/share/man/html8/timedc.html man-timed-htmlman html +./usr/share/man/html8/tlsmgr.html man-postfix-htmlman postfix,crypto,html +./usr/share/man/html8/tlsproxy.html man-postfix-htmlman postfix,crypto,html +./usr/share/man/html8/tpctl.html man-sysutil-htmlman html +./usr/share/man/html8/trace.html man-postfix-htmlman postfix,html +./usr/share/man/html8/traceroute.html man-netutil-htmlman html +./usr/share/man/html8/traceroute6.html man-netutil-htmlman use_inet6,html +./usr/share/man/html8/trivial-rewrite.html man-postfix-htmlman postfix,html +./usr/share/man/html8/tprof.html man-sysutil-htmlman html +./usr/share/man/html8/trpt.html man-netutil-htmlman html +./usr/share/man/html8/ttyflags.html man-sysutil-htmlman html +./usr/share/man/html8/tunefs.html man-sysutil-htmlman html +./usr/share/man/html8/umount.html man-sysutil-htmlman html +./usr/share/man/html8/unlink.html man-sysutil-htmlman html +./usr/share/man/html8/usbdevs.html man-sysutil-htmlman html +./usr/share/man/html8/user.html man-sysutil-htmlman html +./usr/share/man/html8/useradd.html man-sysutil-htmlman html +./usr/share/man/html8/userdel.html man-sysutil-htmlman html +./usr/share/man/html8/userinfo.html man-sysutil-htmlman html +./usr/share/man/html8/usermod.html man-sysutil-htmlman html +./usr/share/man/html8/utmp_update.html man-sysutil-htmlman html +./usr/share/man/html8/vax/boot.html man-sys-htmlman html +./usr/share/man/html8/vax/crash.html man-sys-htmlman html +./usr/share/man/html8/vax/drtest.html man-sys-htmlman html +./usr/share/man/html8/vax/format.html man-sys-htmlman html +./usr/share/man/html8/veriexec.html man-sys-htmlman html +./usr/share/man/html8/veriexecctl.html man-sysutil-htmlman html +./usr/share/man/html8/veriexecgen.html man-sysutil-htmlman html +./usr/share/man/html8/verify.html man-postfix-htmlman postfix,html +./usr/share/man/html8/verify_krb5_conf.html man-krb5-htmlman kerberos,html +./usr/share/man/html8/vgcfgbackup.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgcfgrestore.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgchange.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgck.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgconvert.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgcreate.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgdisplay.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgexport.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgextend.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgimport.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgmerge.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgmknodes.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgreduce.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgremove.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgrename.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgs.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgscan.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vgsplit.html man-lvm-htmlman lvm,html +./usr/share/man/html8/vipw.html man-sysutil-htmlman html +./usr/share/man/html8/virecover.html man-sysutil-htmlman html +./usr/share/man/html8/virtual.html man-postfix-htmlman postfix,html +./usr/share/man/html8/vnconfig.html man-sysutil-htmlman html +./usr/share/man/html8/wake.html man-obsolete obsolete +./usr/share/man/html8/wakeonlan.html man-netutil-htmlman html +./usr/share/man/html8/wdogctl.html man-sysutil-htmlman html +./usr/share/man/html8/wiconfig.html man-netutil-htmlman html +./usr/share/man/html8/wire-test.html man-netutil-htmlman html +./usr/share/man/html8/wizd.html man-sysutil-htmlman html +./usr/share/man/html8/wlanctl.html man-netutil-htmlman html +./usr/share/man/html8/wpa_cli.html man-netutil-htmlman html +./usr/share/man/html8/wpa_passphrase.html man-netutil-htmlman html +./usr/share/man/html8/wpa_supplicant.html man-netutil-htmlman html +./usr/share/man/html8/wsconscfg.html man-sysutil-htmlman html +./usr/share/man/html8/wsconsctl.html man-sysutil-htmlman html +./usr/share/man/html8/wsfontload.html man-sysutil-htmlman html +./usr/share/man/html8/wsmoused.html man-sysutil-htmlman html +./usr/share/man/html8/wsmuxctl.html man-sysutil-htmlman html +./usr/share/man/html8/x68k/boot.html man-sys-htmlman html +./usr/share/man/html8/x68k/loadbsd.html man-sys-htmlman html +./usr/share/man/html8/x68k/loadbsd.x.html man-sys-htmlman html +./usr/share/man/html8/x68k/memswitch.html man-sysutil-htmlman html +./usr/share/man/html8/x68k/newdisk.html man-sysutil-htmlman html +./usr/share/man/html8/x68k/poffd.html man-obsolete obsolete +./usr/share/man/html8/x68k/rtcalarm.html man-obsolete obsolete +./usr/share/man/html8/yp.html man-nis-htmlman html +./usr/share/man/html8/ypbind.html man-nis-htmlman yp,html +./usr/share/man/html8/ypinit.html man-nis-htmlman yp,html +./usr/share/man/html8/yppasswdd.html man-nis-htmlman yp,html +./usr/share/man/html8/yppoll.html man-nis-htmlman yp,html +./usr/share/man/html8/yppush.html man-nis-htmlman yp,html +./usr/share/man/html8/ypserv.html man-nis-htmlman yp,html +./usr/share/man/html8/ypset.html man-nis-htmlman yp,html +./usr/share/man/html8/yptest.html man-nis-htmlman yp,html +./usr/share/man/html8/ypxfr.html man-nis-htmlman yp,html +./usr/share/man/html8/zdb.html man-zfs-htmlman zfs,html +./usr/share/man/html8/zdump.html man-sysutil-htmlman html +./usr/share/man/html8/zfs.html man-zfs-htmlman zfs,html +./usr/share/man/html8/zic.html man-sysutil-htmlman html +./usr/share/man/html8/zpool.html man-zfs-htmlman zfs,html +./usr/share/man/html8/zzz.html man-sysutil-htmlman html +./usr/share/man/man1/Mail.1 man-mail-man .man +./usr/share/man/man1/[.1 man-util-man .man +./usr/share/man/man1/agrep.1 man-util-man .man +./usr/share/man/man1/alias.1 man-util-man .man +./usr/share/man/man1/altqstat.1 man-router-man .man +./usr/share/man/man1/amq.1 man-obsolete obsolete +./usr/share/man/man1/apply.1 man-util-man .man +./usr/share/man/man1/apropos.1 man-man-man .man +./usr/share/man/man1/arpaname.1 man-bind-man .man +./usr/share/man/man1/at.1 man-cron-man .man +./usr/share/man/man1/atari/edahdi.1 man-sysutil-man .man +./usr/share/man/man1/atari/msconfig.1 man-sysutil-man .man +./usr/share/man/man1/atf-check.1 man-atf-man .man,atf +./usr/share/man/man1/atf-cleanup.1 man-obsolete obsolete +./usr/share/man/man1/atf-compile.1 man-obsolete obsolete +./usr/share/man/man1/atf-config.1 man-atf-man .man,atf +./usr/share/man/man1/atf-exec.1 man-atf-man obsolete +./usr/share/man/man1/atf-format.1 man-obsolete obsolete +./usr/share/man/man1/atf-killpg.1 man-obsolete obsolete +./usr/share/man/man1/atf-report.1 man-atf-man .man,atf +./usr/share/man/man1/atf-run.1 man-atf-man .man,atf +./usr/share/man/man1/atf-sh.1 man-atf-man .man,atf +./usr/share/man/man1/atf-test-program.1 man-atf-man .man,atf +./usr/share/man/man1/atf-version.1 man-atf-man .man,atf +./usr/share/man/man1/atq.1 man-cron-man .man +./usr/share/man/man1/atrm.1 man-cron-man .man +./usr/share/man/man1/audiocfg.1 man-audio-man .man +./usr/share/man/man1/audioctl.1 man-audio-man .man +./usr/share/man/man1/audioplay.1 man-audio-man .man +./usr/share/man/man1/audiorecord.1 man-audio-man .man +./usr/share/man/man1/audit-packages.1 man-obsolete obsolete +./usr/share/man/man1/awk.1 man-util-man .man +./usr/share/man/man1/banner.1 man-util-man .man +./usr/share/man/man1/basename.1 man-util-man .man +./usr/share/man/man1/batch.1 man-cron-man .man +./usr/share/man/man1/bc.1 man-util-man .man +./usr/share/man/man1/bdes.1 man-crypto-man crypto,.man +./usr/share/man/man1/bg.1 man-util-man .man +./usr/share/man/man1/biff.1 man-mail-man .man +./usr/share/man/man1/bpm.1 man-pkgutil-man crypto,.man +./usr/share/man/man1/bthset.1 man-util-man .man +./usr/share/man/man1/btkey.1 man-util-man .man +./usr/share/man/man1/btpin.1 man-util-man .man +./usr/share/man/man1/bunzip2.1 man-util-man .man +./usr/share/man/man1/bzcat.1 man-util-man .man +./usr/share/man/man1/bzip2.1 man-util-man .man +./usr/share/man/man1/bzip2recover.1 man-util-man .man +./usr/share/man/man1/cal.1 man-util-man .man +./usr/share/man/man1/calendar.1 man-util-man .man +./usr/share/man/man1/cap_mkdb.1 man-util-man .man +./usr/share/man/man1/cat.1 man-util-man .man +./usr/share/man/man1/ccom.1 man-util-man pcc,.man +./usr/share/man/man1/cd.1 man-util-man .man +./usr/share/man/man1/cdplay.1 man-audio-man .man +./usr/share/man/man1/chflags.1 man-util-man .man +./usr/share/man/man1/chfn.1 man-util-man .man +./usr/share/man/man1/chgrp.1 man-util-man .man +./usr/share/man/man1/chio.1 man-util-man .man +./usr/share/man/man1/chmod.1 man-util-man .man +./usr/share/man/man1/chpass.1 man-util-man .man +./usr/share/man/man1/chsh.1 man-util-man .man +./usr/share/man/man1/ci.1 man-rcs-man .man +./usr/share/man/man1/cksum.1 man-util-man .man +./usr/share/man/man1/cleantags.1 man-util-man .man +./usr/share/man/man1/clear.1 man-util-man .man +./usr/share/man/man1/cmp.1 man-util-man .man +./usr/share/man/man1/co.1 man-rcs-man .man +./usr/share/man/man1/col.1 man-util-man .man +./usr/share/man/man1/colcrt.1 man-util-man .man +./usr/share/man/man1/colrm.1 man-util-man .man +./usr/share/man/man1/column.1 man-util-man .man +./usr/share/man/man1/comm.1 man-util-man .man +./usr/share/man/man1/compile_et.1 man-obsolete obsolete +./usr/share/man/man1/compress.1 man-util-man .man +./usr/share/man/man1/cp.1 man-util-man .man +./usr/share/man/man1/cpio.1 man-util-man .man +./usr/share/man/man1/cpp.1 man-util-man gcccmds,.man +./usr/share/man/man1/crontab.1 man-cron-man .man +./usr/share/man/man1/csh.1 man-util-man .man +./usr/share/man/man1/csplit.1 man-util-man .man +./usr/share/man/man1/ctags.1 man-c-man .man +./usr/share/man/man1/cu.1 man-util-man .man +./usr/share/man/man1/cut.1 man-util-man .man +./usr/share/man/man1/daicctl.1 man-sysutil-man .man +./usr/share/man/man1/date.1 man-util-man .man +./usr/share/man/man1/db.1 man-util-man .man +./usr/share/man/man1/dc.1 man-util-man .man +./usr/share/man/man1/dd.1 man-util-man .man +./usr/share/man/man1/deroff.1 man-util-man .man +./usr/share/man/man1/df.1 man-util-man .man +./usr/share/man/man1/diff.1 man-util-man .man +./usr/share/man/man1/diff3.1 man-util-man .man +./usr/share/man/man1/dig.1 man-netutil-man .man +./usr/share/man/man1/dirname.1 man-util-man .man +./usr/share/man/man1/dirs.1 man-util-man .man +./usr/share/man/man1/dns-sd.1 man-mdns-man mdns,.man +./usr/share/man/man1/dnskeygen.1 man-obsolete obsolete +./usr/share/man/man1/dnsquery.1 man-obsolete obsolete +./usr/share/man/man1/domainname.1 man-nis-man .man +./usr/share/man/man1/download-vulnerability-list.1 man-obsolete obsolete +./usr/share/man/man1/dtmfdecode.1 man-isdn-man .man +./usr/share/man/man1/dtrace.1 man-debug-man dtrace,.man +./usr/share/man/man1/du.1 man-util-man .man +./usr/share/man/man1/echo.1 man-util-man .man +./usr/share/man/man1/ed.1 man-util-man .man +./usr/share/man/man1/egrep.1 man-util-man .man +./usr/share/man/man1/eject.1 man-util-man .man +./usr/share/man/man1/env.1 man-util-man .man +./usr/share/man/man1/error.1 man-util-man .man +./usr/share/man/man1/ex.1 man-util-man .man +./usr/share/man/man1/expand.1 man-util-man .man +./usr/share/man/man1/expr.1 man-util-man .man +./usr/share/man/man1/false.1 man-util-man .man +./usr/share/man/man1/fdformat.1 man-util-man .man +./usr/share/man/man1/fg.1 man-util-man .man +./usr/share/man/man1/fgrep.1 man-util-man .man +./usr/share/man/man1/file.1 man-util-man .man +./usr/share/man/man1/fincore.1 man-util-man .man +./usr/share/man/man1/find.1 man-util-man .man +./usr/share/man/man1/finger.1 man-util-man .man +./usr/share/man/man1/fmt.1 man-util-man .man +./usr/share/man/man1/fold.1 man-util-man .man +./usr/share/man/man1/foreach.1 man-util-man .man +./usr/share/man/man1/from.1 man-util-man .man +./usr/share/man/man1/fsplit.1 man-util-man .man +./usr/share/man/man1/fstat.1 man-util-man .man +./usr/share/man/man1/ftp.1 man-netutil-man .man +./usr/share/man/man1/g711conv.1 man-obsolete obsolete +./usr/share/man/man1/gcpp.1 man-util-man gcccmds,.man +./usr/share/man/man1/gencat.1 man-locale-man .man +./usr/share/man/man1/getcap.1 man-util-man .man +./usr/share/man/man1/getconf.1 man-util-man .man +./usr/share/man/man1/getent.1 man-util-man .man +./usr/share/man/man1/getextattr.1 man-util-man .man +./usr/share/man/man1/getopt.1 man-util-man .man +./usr/share/man/man1/gettext.1 man-locale-man .man +./usr/share/man/man1/gkermit.1 man-util-man .man +./usr/share/man/man1/grep.1 man-util-man .man +./usr/share/man/man1/grfinfo.1 man-obsolete obsolete +./usr/share/man/man1/groups.1 man-util-man .man +./usr/share/man/man1/gunzip.1 man-util-man .man +./usr/share/man/man1/gzcat.1 man-util-man .man +./usr/share/man/man1/gzexe.1 man-util-man .man +./usr/share/man/man1/gzip.1 man-util-man .man +./usr/share/man/man1/head.1 man-util-man .man +./usr/share/man/man1/hesinfo.1 man-hesiod-man hesiod,.man +./usr/share/man/man1/hexdump.1 man-util-man .man +./usr/share/man/man1/history.1 man-util-man .man +./usr/share/man/man1/host.1 man-netutil-man .man +./usr/share/man/man1/hostname.1 man-util-man .man +./usr/share/man/man1/hp300/grfinfo.1 man-obsolete obsolete +./usr/share/man/man1/i386 man-obsolete obsolete +./usr/share/man/man1/i386/cursor.1 man-obsolete obsolete +./usr/share/man/man1/i386/fed.1 man-obsolete obsolete +./usr/share/man/man1/i386/fontedit.1 man-obsolete obsolete +./usr/share/man/man1/i386/kcon.1 man-obsolete obsolete +./usr/share/man/man1/i386/loadfont.1 man-obsolete obsolete +./usr/share/man/man1/i386/mcon.1 man-obsolete obsolete +./usr/share/man/man1/i386/scon.1 man-obsolete obsolete +./usr/share/man/man1/i386/vt220keys.1 man-obsolete obsolete +./usr/share/man/man1/i386/vttest.1 man-obsolete obsolete +./usr/share/man/man1/iconv.1 man-util-man .man +./usr/share/man/man1/id.1 man-util-man .man +./usr/share/man/man1/ident.1 man-util-man .man +./usr/share/man/man1/indent.1 man-c-man .man +./usr/share/man/man1/info.1 man-texinfo-man .man +./usr/share/man/man1/infocmp.1 man-util-man .man +./usr/share/man/man1/infokey.1 man-texinfo-man .man +./usr/share/man/man1/innetgr.1 man-nis-man .man +./usr/share/man/man1/install-info.1 man-texinfo-man .man +./usr/share/man/man1/install.1 man-util-man .man +./usr/share/man/man1/intro.1 man-sys-man .man +./usr/share/man/man1/ipcrm.1 man-util-man .man +./usr/share/man/man1/ipcs.1 man-util-man .man +./usr/share/man/man1/ipftest.1 man-ipf-man ipfilter,.man +./usr/share/man/man1/ipresend.1 man-ipf-man ipfilter,.man +./usr/share/man/man1/ipsend.1 man-ipf-man ipfilter,.man +./usr/share/man/man1/iptest.1 man-ipf-man ipfilter,.man +./usr/share/man/man1/jobs.1 man-util-man .man +./usr/share/man/man1/join.1 man-util-man .man +./usr/share/man/man1/jot.1 man-util-man .man +./usr/share/man/man1/kdestroy.1 man-krb5-man kerberos,.man +./usr/share/man/man1/kdump.1 man-debug-man .man +./usr/share/man/man1/kf.1 man-obsolete obsolete +./usr/share/man/man1/kgetcred.1 man-krb5-man kerberos,.man +./usr/share/man/man1/kill.1 man-util-man .man +./usr/share/man/man1/kimpersonate.1 man-obsolete obsolete +./usr/share/man/man1/kinit.1 man-krb5-man kerberos,.man +./usr/share/man/man1/klist.1 man-krb5-man kerberos,.man +./usr/share/man/man1/kpasswd.1 man-krb5-man kerberos,.man +./usr/share/man/man1/krb5-config.1 man-krb5-man kerberos,.man +./usr/share/man/man1/ksh.1 man-util-man .man +./usr/share/man/man1/ktrace.1 man-debug-man .man +./usr/share/man/man1/ktruss.1 man-debug-man .man +./usr/share/man/man1/lam.1 man-util-man .man +./usr/share/man/man1/last.1 man-util-man .man +./usr/share/man/man1/lastcomm.1 man-util-man .man +./usr/share/man/man1/ld.aout_so.1 man-shlib-man .man +./usr/share/man/man1/ld.elf_so.1 man-shlib-man .man +./usr/share/man/man1/ld.so.1 man-shlib-man .man +./usr/share/man/man1/ldapadd.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldapcompare.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldapdelete.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldapexop.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldapmodify.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldapmodrdn.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldappasswd.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldapsearch.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldapurl.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldapwhoami.1 man-ldap-man ldap,.man +./usr/share/man/man1/ldd.1 man-util-man .man +./usr/share/man/man1/leave.1 man-util-man .man +./usr/share/man/man1/less.1 man-util-man .man +./usr/share/man/man1/lessecho.1 man-util-man .man +./usr/share/man/man1/lesskey.1 man-util-man .man +./usr/share/man/man1/limit.1 man-util-man .man +./usr/share/man/man1/linkfarm.1 man-obsolete obsolete +./usr/share/man/man1/ln.1 man-util-man .man +./usr/share/man/man1/locale.1 man-util-man .man +./usr/share/man/man1/locate.1 man-util-man .man +./usr/share/man/man1/lock.1 man-util-man .man +./usr/share/man/man1/logger.1 man-util-man .man +./usr/share/man/man1/login.1 man-util-man .man +./usr/share/man/man1/logname.1 man-util-man .man +./usr/share/man/man1/look.1 man-util-man .man +./usr/share/man/man1/lp.1 man-lpr-man .man +./usr/share/man/man1/lpq.1 man-lpr-man .man +./usr/share/man/man1/lpr.1 man-lpr-man .man +./usr/share/man/man1/lprm.1 man-lpr-man .man +./usr/share/man/man1/lptest.1 man-lpr-man .man +./usr/share/man/man1/ls.1 man-util-man .man +./usr/share/man/man1/lsextattr.1 man-util-man .man +./usr/share/man/man1/lua.1 man-util-man .man +./usr/share/man/man1/lzcat.1 man-util-man .man +./usr/share/man/man1/lzf.1 man-util-man .man +./usr/share/man/man1/lzfcat.1 man-util-man .man +./usr/share/man/man1/lzma.1 man-util-man .man +./usr/share/man/man1/lzmainfo.1 man-util-man .man +./usr/share/man/man1/m4.1 man-util-man .man +./usr/share/man/man1/machine.1 man-util-man .man +./usr/share/man/man1/mail.1 man-mail-man .man +./usr/share/man/man1/mailq.1 man-postfix-man postfix,.man +./usr/share/man/man1/mailx.1 man-mail-man .man +./usr/share/man/man1/make.1 man-util-man .man +./usr/share/man/man1/makeinfo.1 man-texinfo-man .man +./usr/share/man/man1/man.1 man-man-man .man +./usr/share/man/man1/mandoc.1 man-mdocml-man .man +./usr/share/man/man1/md2.1 man-util-man .man +./usr/share/man/man1/md4.1 man-util-man .man +./usr/share/man/man1/md5.1 man-util-man .man +./usr/share/man/man1/merge.1 man-util-man .man +./usr/share/man/man1/mesg.1 man-util-man .man +./usr/share/man/man1/midiplay.1 man-audio-man .man +./usr/share/man/man1/mixerctl.1 man-audio-man .man +./usr/share/man/man1/mkdep.1 man-c-man .man +./usr/share/man/man1/mkdir.1 man-util-man .man +./usr/share/man/man1/mkfifo.1 man-sysutil-man .man +./usr/share/man/man1/mkfilters.1 man-ipf-man ipfilter,.man +./usr/share/man/man1/mklocale.1 man-util-man .man +./usr/share/man/man1/mktemp.1 man-util-man .man +./usr/share/man/man1/mopa.out.1 man-obsolete obsolete +./usr/share/man/man1/mopchk.1 man-bootserver-man .man +./usr/share/man/man1/mopcopy.1 man-bootserver-man .man +./usr/share/man/man1/mopprobe.1 man-bootserver-man .man +./usr/share/man/man1/moptrace.1 man-bootserver-man .man +./usr/share/man/man1/more.1 man-util-man .man +./usr/share/man/man1/mset.1 man-obsolete obsolete +./usr/share/man/man1/msgattrib.1 man-locale-man .man +./usr/share/man/man1/msgcat.1 man-locale-man .man +./usr/share/man/man1/msgcmp.1 man-locale-man .man +./usr/share/man/man1/msgcomm.1 man-locale-man .man +./usr/share/man/man1/msgconv.1 man-locale-man .man +./usr/share/man/man1/msgen.1 man-locale-man .man +./usr/share/man/man1/msgexec.1 man-locale-man .man +./usr/share/man/man1/msgfmt.1 man-locale-man .man +./usr/share/man/man1/msginit.1 man-locale-man .man +./usr/share/man/man1/msgmerge.1 man-locale-man .man +./usr/share/man/man1/msgs.1 man-util-man .man +./usr/share/man/man1/msgunfmt.1 man-locale-man .man +./usr/share/man/man1/msguniq.1 man-locale-man .man +./usr/share/man/man1/mt.1 man-util-man .man +./usr/share/man/man1/mv.1 man-util-man .man +./usr/share/man/man1/nbsvtool.1 man-crypto-man crypto,.man +./usr/share/man/man1/netgroup.1 man-nis-man .man +./usr/share/man/man1/netpgp.1 man-crypto-man crypto,.man +./usr/share/man/man1/netpgpkeys.1 man-crypto-man crypto,.man +./usr/share/man/man1/netpgpverify.1 man-crypto-man crypto,.man +./usr/share/man/man1/netstat.1 man-netutil-man .man +./usr/share/man/man1/newaliases.1 man-postfix-man postfix,.man +./usr/share/man/man1/newgrp.1 man-util-man .man +./usr/share/man/man1/nex.1 man-obsolete obsolete +./usr/share/man/man1/nfsstat.1 man-nfsclient-man .man +./usr/share/man/man1/nice.1 man-util-man .man +./usr/share/man/man1/nl.1 man-util-man .man +./usr/share/man/man1/nohup.1 man-util-man .man +./usr/share/man/man1/nsupdate.1 man-netutil-man .man +./usr/share/man/man1/nvi.1 man-obsolete obsolete +./usr/share/man/man1/nview.1 man-obsolete obsolete +./usr/share/man/man1/od.1 man-util-man .man +./usr/share/man/man1/omshell.1 man-dhcpd-man .man +./usr/share/man/man1/openpgp.1 man-obsolete obsolete +./usr/share/man/man1/openssl.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_CA.pl.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_asn1parse.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_ca.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_ciphers.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_crl.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_crl2pkcs7.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_dgst.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_dhparam.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_dsa.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_dsaparam.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_ec.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_ecparam.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_enc.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_errstr.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_gendsa.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_genrsa.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_nseq.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_passwd.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_pkcs12.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_pkcs7.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_pkcs8.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_rand.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_req.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_rsa.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_rsautl.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_s_client.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_s_server.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_s_time.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_sess_id.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_smime.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_speed.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_spkac.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_verify.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_version.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_x509.1 man-crypto-man crypto,.man +./usr/share/man/man1/openssl_x509v3_config.1 man-crypto-man crypto,.man +./usr/share/man/man1/page.1 man-util-man .man +./usr/share/man/man1/pagesize.1 man-util-man .man +./usr/share/man/man1/passwd.1 man-util-man .man +./usr/share/man/man1/paste.1 man-util-man .man +./usr/share/man/man1/patch.1 man-util-man .man +./usr/share/man/man1/pathchk.1 man-util-man .man +./usr/share/man/man1/pawd.1 man-amd-man .man +./usr/share/man/man1/pax.1 man-util-man .man +./usr/share/man/man1/paxctl.1 man-obsolete obsolete +./usr/share/man/man1/pcap-config.1 man-util-man .man +./usr/share/man/man1/pcc.1 man-util-man pcc,.man +./usr/share/man/man1/pcpp.1 man-util-man pcc,.man +./usr/share/man/man1/pgrep.1 man-util-man .man +./usr/share/man/man1/pigz.1 man-util-man .man +./usr/share/man/man1/pim6stat.1 man-obsolete obsolete +./usr/share/man/man1/pkg_add.1 man-pkgutil-man crypto,.man +./usr/share/man/man1/pkg_admin.1 man-pkgutil-man crypto,.man +./usr/share/man/man1/pkg_create.1 man-pkgutil-man crypto,.man +./usr/share/man/man1/pkg_delete.1 man-pkgutil-man crypto,.man +./usr/share/man/man1/pkg_info.1 man-pkgutil-man crypto,.man +./usr/share/man/man1/pkg_view.1 man-obsolete obsolete +./usr/share/man/man1/pkill.1 man-util-man .man +./usr/share/man/man1/pmap.1 man-util-man .man +./usr/share/man/man1/pmc.1 man-util-man .man +./usr/share/man/man1/popd.1 man-util-man .man +./usr/share/man/man1/postalias.1 man-postfix-man postfix,.man +./usr/share/man/man1/postcat.1 man-postfix-man postfix,.man +./usr/share/man/man1/postconf.1 man-postfix-man postfix,.man +./usr/share/man/man1/postdrop.1 man-postfix-man postfix,.man +./usr/share/man/man1/postfix.1 man-postfix-man postfix,.man +./usr/share/man/man1/postkick.1 man-postfix-man postfix,.man +./usr/share/man/man1/postlock.1 man-postfix-man postfix,.man +./usr/share/man/man1/postlog.1 man-postfix-man postfix,.man +./usr/share/man/man1/postmap.1 man-postfix-man postfix,.man +./usr/share/man/man1/postmulti.1 man-postfix-man postfix,.man +./usr/share/man/man1/postqueue.1 man-postfix-man postfix,.man +./usr/share/man/man1/postsuper.1 man-postfix-man postfix,.man +./usr/share/man/man1/pr.1 man-util-man .man +./usr/share/man/man1/prenice.1 man-util-man .man +./usr/share/man/man1/printenv.1 man-util-man .man +./usr/share/man/man1/printf.1 man-util-man .man +./usr/share/man/man1/progress.1 man-util-man .man +./usr/share/man/man1/ps.1 man-util-man .man +./usr/share/man/man1/pstat.1 man-obsolete obsolete +./usr/share/man/man1/pushd.1 man-util-man .man +./usr/share/man/man1/pwd.1 man-util-man .man +./usr/share/man/man1/pwhash.1 man-util-man .man +./usr/share/man/man1/qsafe.1 man-util-man crypto,.man +./usr/share/man/man1/qsieve.1 man-util-man crypto,.man +./usr/share/man/man1/qsubst.1 man-util-man .man +./usr/share/man/man1/quota.1 man-util-man .man +./usr/share/man/man1/radioctl.1 man-audio-man .man +./usr/share/man/man1/rcmd.1 man-netutil-man .man +./usr/share/man/man1/rcorder.1 man-obsolete obsolete +./usr/share/man/man1/rcp.1 man-netutil-man .man +./usr/share/man/man1/rcs.1 man-rcs-man .man +./usr/share/man/man1/rcsclean.1 man-rcs-man .man +./usr/share/man/man1/rcsdiff.1 man-rcs-man .man +./usr/share/man/man1/rcsfreeze.1 man-rcs-man .man +./usr/share/man/man1/rcsintro.1 man-rcs-man .man +./usr/share/man/man1/rcslog.1 man-rcs-man .man +./usr/share/man/man1/rcsmerge.1 man-rcs-man .man +./usr/share/man/man1/rdist.1 man-netutil-man .man +./usr/share/man/man1/readlink.1 man-util-man .man +./usr/share/man/man1/rehash.1 man-util-man .man +./usr/share/man/man1/repeat.1 man-util-man .man +./usr/share/man/man1/reset.1 man-util-man .man +./usr/share/man/man1/rev.1 man-util-man .man +./usr/share/man/man1/rfcomm_sppd.1 man-util-man .man +./usr/share/man/man1/rlog.1 man-rcs-man .man +./usr/share/man/man1/rlogin.1 man-netutil-man .man +./usr/share/man/man1/rm.1 man-util-man .man +./usr/share/man/man1/rmd160.1 man-util-man .man +./usr/share/man/man1/rmdir.1 man-util-man .man +./usr/share/man/man1/rmextattr.1 man-util-man .man +./usr/share/man/man1/rpc.rquotad.1 man-obsolete obsolete +./usr/share/man/man1/rs.1 man-util-man .man +./usr/share/man/man1/rsh.1 man-netutil-man .man +./usr/share/man/man1/rtld.1 man-shlib-man .man +./usr/share/man/man1/rump.dhcpclient.1 man-netutil-man .man,rump +./usr/share/man/man1/rump.halt.1 man-netutil-man .man,rump +./usr/share/man/man1/rump_allserver.1 man-netutil-man .man,rump +./usr/share/man/man1/rump_server.1 man-netutil-man .man,rump +./usr/share/man/man1/rup.1 man-netutil-man .man +./usr/share/man/man1/ruptime.1 man-netutil-man .man +./usr/share/man/man1/rusers.1 man-netutil-man .man +./usr/share/man/man1/rwall.1 man-netutil-man .man +./usr/share/man/man1/rwho.1 man-netutil-man .man +./usr/share/man/man1/scp.1 man-secsh-man crypto,.man +./usr/share/man/man1/screenblank.1 man-sysutil-man .man +./usr/share/man/man1/script.1 man-util-man .man +./usr/share/man/man1/sdiff.1 man-util-man .man +./usr/share/man/man1/sdpquery.1 man-util-man .man +./usr/share/man/man1/sed.1 man-util-man .man +./usr/share/man/man1/send-pr.1 man-gnats-man .man +./usr/share/man/man1/sendmail.1 man-postfix-man postfix,.man +./usr/share/man/man1/seq.1 man-util-man .man +./usr/share/man/man1/setextattr.1 man-util-man .man +./usr/share/man/man1/sftp.1 man-secsh-man crypto,.man +./usr/share/man/man1/sh.1 man-util-man .man +./usr/share/man/man1/sha1.1 man-util-man .man +./usr/share/man/man1/shar.1 man-util-man .man +./usr/share/man/man1/shlock.1 man-util-man .man +./usr/share/man/man1/shmif_dumpbus.1 man-util-man .man +./usr/share/man/man1/shuffle.1 man-util-man .man +./usr/share/man/man1/skey.1 man-util-man skey,.man +./usr/share/man/man1/skeyaudit.1 man-util-man skey,.man +./usr/share/man/man1/skeyinfo.1 man-util-man skey,.man +./usr/share/man/man1/skeyinit.1 man-util-man skey,.man +./usr/share/man/man1/sleep.1 man-util-man .man +./usr/share/man/man1/slogin.1 man-secsh-man crypto,.man +./usr/share/man/man1/sntp.1 man-ntp-man .man +./usr/share/man/man1/sockstat.1 man-util-man .man +./usr/share/man/man1/sort.1 man-util-man .man +./usr/share/man/man1/source.1 man-util-man .man +./usr/share/man/man1/spell.1 man-util-man .man +./usr/share/man/man1/split.1 man-util-man .man +./usr/share/man/man1/srtconfig.1 man-netutil-man .man +./usr/share/man/man1/ssh-add.1 man-secsh-man crypto,.man +./usr/share/man/man1/ssh-agent.1 man-secsh-man crypto,.man +./usr/share/man/man1/ssh-keygen.1 man-secsh-man crypto,.man +./usr/share/man/man1/ssh-keyscan.1 man-secsh-man crypto,.man +./usr/share/man/man1/ssh.1 man-secsh-man crypto,.man +./usr/share/man/man1/stat.1 man-util-man .man +./usr/share/man/man1/stop.1 man-util-man .man +./usr/share/man/man1/stty.1 man-util-man .man +./usr/share/man/man1/su.1 man-util-man .man +./usr/share/man/man1/sum.1 man-util-man .man +./usr/share/man/man1/sup.1 man-sup-man .man +./usr/share/man/man1/suspend.1 man-util-man .man +./usr/share/man/man1/sysstat.1 man-util-man .man +./usr/share/man/man1/systat.1 man-util-man .man +./usr/share/man/man1/systrace.1 man-obsolete obsolete +./usr/share/man/man1/tabs.1 man-util-man .man +./usr/share/man/man1/tail.1 man-util-man .man +./usr/share/man/man1/talk.1 man-netutil-man .man +./usr/share/man/man1/tar.1 man-util-man .man +./usr/share/man/man1/tcopy.1 man-util-man .man +./usr/share/man/man1/tee.1 man-util-man .man +./usr/share/man/man1/telnet.1 man-netutil-man .man +./usr/share/man/man1/test.1 man-util-man .man +./usr/share/man/man1/texi2dvi.1 man-texinfo-man .man +./usr/share/man/man1/texindex.1 man-texinfo-man .man +./usr/share/man/man1/tftp.1 man-netutil-man .man +./usr/share/man/man1/tic.1 man-util-man .man +./usr/share/man/man1/time.1 man-util-man .man +./usr/share/man/man1/tip.1 man-util-man .man +./usr/share/man/man1/tmux.1 man-util-man .man +./usr/share/man/man1/tn3270.1 man-obsolete obsolete +./usr/share/man/man1/top.1 man-util-man .man +./usr/share/man/man1/touch.1 man-util-man .man +./usr/share/man/man1/tpfmt.1 man-util-man .man +./usr/share/man/man1/tput.1 man-util-man .man +./usr/share/man/man1/tr.1 man-util-man .man +./usr/share/man/man1/true.1 man-util-man .man +./usr/share/man/man1/tset.1 man-util-man .man +./usr/share/man/man1/tty.1 man-util-man .man +./usr/share/man/man1/ttyflags.1 man-obsolete obsolete +./usr/share/man/man1/ul.1 man-util-man .man +./usr/share/man/man1/uname.1 man-util-man .man +./usr/share/man/man1/uncompress.1 man-util-man .man +./usr/share/man/man1/unexpand.1 man-util-man .man +./usr/share/man/man1/uniq.1 man-util-man .man +./usr/share/man/man1/units.1 man-util-man .man +./usr/share/man/man1/unlzf.1 man-util-man .man +./usr/share/man/man1/unlzma.1 man-util-man .man +./usr/share/man/man1/unvis.1 man-util-man .man +./usr/share/man/man1/unxz.1 man-util-man .man +./usr/share/man/man1/unzip.1 man-util-man .man +./usr/share/man/man1/uptime.1 man-util-man .man +./usr/share/man/man1/usbhidaction.1 man-util-man .man +./usr/share/man/man1/usbhidctl.1 man-util-man .man +./usr/share/man/man1/users.1 man-util-man .man +./usr/share/man/man1/utoppya.1 man-util-man .man +./usr/share/man/man1/uucp.1 man-obsolete obsolete +./usr/share/man/man1/uudecode.1 man-util-man .man +./usr/share/man/man1/uuencode.1 man-util-man .man +./usr/share/man/man1/uuidgen.1 man-util-man .man +./usr/share/man/man1/uustat.1 man-obsolete obsolete +./usr/share/man/man1/uux.1 man-obsolete obsolete +./usr/share/man/man1/vacation.1 man-mail-man .man +./usr/share/man/man1/vi.1 man-util-man .man +./usr/share/man/man1/videoctl.1 man-video-man .man +./usr/share/man/man1/view.1 man-util-man .man +./usr/share/man/man1/vis.1 man-util-man .man +./usr/share/man/man1/vmstat.1 man-util-man .man +./usr/share/man/man1/vndcompress.1 man-util-man .man +./usr/share/man/man1/vnduncompress.1 man-util-man .man +./usr/share/man/man1/w.1 man-util-man .man +./usr/share/man/man1/wait.1 man-util-man .man +./usr/share/man/man1/wall.1 man-util-man .man +./usr/share/man/man1/wc.1 man-util-man .man +./usr/share/man/man1/what.1 man-util-man .man +./usr/share/man/man1/whatis.1 man-util-man .man +./usr/share/man/man1/whereis.1 man-util-man .man +./usr/share/man/man1/which.1 man-util-man .man +./usr/share/man/man1/who.1 man-util-man .man +./usr/share/man/man1/whoami.1 man-util-man .man +./usr/share/man/man1/whois.1 man-netutil-man .man +./usr/share/man/man1/window.1 man-obsolete obsolete +./usr/share/man/man1/write.1 man-util-man .man +./usr/share/man/man1/x68k/aout2hux.1 man-util-man .man +./usr/share/man/man1/x68k/bellctrl.1 man-util-man .man +./usr/share/man/man1/x68k/loadfont.1 man-util-man .man +./usr/share/man/man1/x68k/loadkmap.1 man-util-man .man +./usr/share/man/man1/x68k/palette.1 man-util-man .man +./usr/share/man/man1/x68k/tvctrl.1 man-util-man .man +./usr/share/man/man1/xargs.1 man-util-man .man +./usr/share/man/man1/xgettext.1 man-locale-man .man +./usr/share/man/man1/xmlwf.1 man-util-man .man +./usr/share/man/man1/xz.1 man-util-man .man +./usr/share/man/man1/xzcat.1 man-util-man .man +./usr/share/man/man1/yes.1 man-util-man .man +./usr/share/man/man1/ypcat.1 man-nis-man yp,.man +./usr/share/man/man1/ypmatch.1 man-nis-man yp,.man +./usr/share/man/man1/yppasswd.1 man-nis-man use_yp,.man +./usr/share/man/man1/ypwhich.1 man-nis-man yp,.man +./usr/share/man/man1/zcat.1 man-util-man .man +./usr/share/man/man1/zcmp.1 man-util-man .man +./usr/share/man/man1/zdiff.1 man-util-man .man +./usr/share/man/man1/zegrep.1 man-util-man .man +./usr/share/man/man1/zfgrep.1 man-util-man .man +./usr/share/man/man1/zforce.1 man-util-man .man +./usr/share/man/man1/zgrep.1 man-util-man .man +./usr/share/man/man1/zmore.1 man-util-man .man +./usr/share/man/man1/znew.1 man-util-man .man +./usr/share/man/man3/atari/ahdi_buildlabel.3 man-obsolete obsolete +./usr/share/man/man3/atari/ahdi_checklabel.3 man-obsolete obsolete +./usr/share/man/man3/atari/ahdi_readlabel.3 man-obsolete obsolete +./usr/share/man/man3/atari/ahdi_writedisktab.3 man-obsolete obsolete +./usr/share/man/man3/atari/ahdi_writelabel.3 man-obsolete obsolete +./usr/share/man/man3/i386 man-obsolete obsolete +./usr/share/man/man3/i386/keycap.3 man-obsolete obsolete +./usr/share/man/man4/aac.4 man-sys-man .man +./usr/share/man/man4/ac97.4 man-sys-man .man +./usr/share/man/man4/acardide.4 man-sys-man .man +./usr/share/man/man4/aceride.4 man-sys-man .man +./usr/share/man/man4/acorn26/arckbd.4 man-sys-man .man +./usr/share/man/man4/acorn26/arcwskbd.4 man-obsolete obsolete +./usr/share/man/man4/acorn26/arcwsmouse.4 man-obsolete obsolete +./usr/share/man/man4/acorn26/cpu.4 man-sys-man .man +./usr/share/man/man4/acorn26/eca.4 man-sys-man .man +./usr/share/man/man4/acorn26/eh.4 man-sys-man .man +./usr/share/man/man4/acorn26/ei.4 man-obsolete obsolete +./usr/share/man/man4/acorn26/iobus.4 man-sys-man .man +./usr/share/man/man4/acorn26/podulebus.4 man-obsolete obsolete +./usr/share/man/man4/acorn26/unixbp.4 man-sys-man .man +./usr/share/man/man4/acorn32/asc.4 man-sys-man .man +./usr/share/man/man4/acorn32/autoconf.4 man-sys-man .man +./usr/share/man/man4/acorn32/beep.4 man-obsolete obsolete +./usr/share/man/man4/acorn32/busmouse.4 man-obsolete obsolete +./usr/share/man/man4/acorn32/cosc.4 man-sys-man .man +./usr/share/man/man4/acorn32/csc.4 man-sys-man .man +./usr/share/man/man4/acorn32/ie.4 man-sys-man .man +./usr/share/man/man4/acorn32/intro.4 man-sys-man .man +./usr/share/man/man4/acorn32/iomdkbc.4 man-sys-man .man +./usr/share/man/man4/acorn32/kbd.4 man-obsolete obsolete +./usr/share/man/man4/acorn32/kmem.4 man-sys-man .man +./usr/share/man/man4/acorn32/lpa.4 man-sys-man .man +./usr/share/man/man4/acorn32/lpt.4 man-sys-man .man +./usr/share/man/man4/acorn32/mainbus.4 man-sys-man .man +./usr/share/man/man4/acorn32/mem.4 man-sys-man .man +./usr/share/man/man4/acorn32/opms.4 man-obsolete obsolete +./usr/share/man/man4/acorn32/podulebus.4 man-obsolete obsolete +./usr/share/man/man4/acorn32/ptsc.4 man-sys-man .man +./usr/share/man/man4/acorn32/qms.4 man-sys-man .man +./usr/share/man/man4/acorn32/rpckbd.4 man-obsolete obsolete +./usr/share/man/man4/acorn32/vidcaudio.4 man-sys-man .man +./usr/share/man/man4/acorn32/vidcvideo.4 man-sys-man .man +./usr/share/man/man4/acorn32/wsqms.4 man-obsolete obsolete +./usr/share/man/man4/acphy.4 man-sys-man .man +./usr/share/man/man4/acpi.4 man-sys-man .man +./usr/share/man/man4/acpiacad.4 man-sys-man .man +./usr/share/man/man4/acpibat.4 man-sys-man .man +./usr/share/man/man4/acpibut.4 man-sys-man .man +./usr/share/man/man4/acpicpu.4 man-sys-man .man +./usr/share/man/man4/acpidalb.4 man-sys-man .man +./usr/share/man/man4/acpiec.4 man-sys-man .man +./usr/share/man/man4/acpiecdt.4 man-sys-man .man +./usr/share/man/man4/acpifan.4 man-sys-man .man +./usr/share/man/man4/acpilid.4 man-sys-man .man +./usr/share/man/man4/acpiout.4 man-sys-man .man +./usr/share/man/man4/acpipmtr.4 man-sys-man .man +./usr/share/man/man4/acpismbus.4 man-sys-man .man +./usr/share/man/man4/acpitz.4 man-sys-man .man +./usr/share/man/man4/acpivga.4 man-sys-man .man +./usr/share/man/man4/acpiwdrt.4 man-sys-man .man +./usr/share/man/man4/acpiwmi.4 man-sys-man .man +./usr/share/man/man4/adb.4 man-sys-man .man +./usr/share/man/man4/adbbt.4 man-sys-man .man +./usr/share/man/man4/adbkbd.4 man-sys-man .man +./usr/share/man/man4/adbms.4 man-sys-man .man +./usr/share/man/man4/adc.4 man-sys-man .man +./usr/share/man/man4/adm1027.4 man-sys-man .man +./usr/share/man/man4/adm1030.4 man-sys-man .man +./usr/share/man/man4/admtemp.4 man-sys-man .man +./usr/share/man/man4/adt7463.4 man-sys-man .man +./usr/share/man/man4/adt7466.4 man-sys-man .man +./usr/share/man/man4/adt7467.4 man-sys-man .man +./usr/share/man/man4/adt7467c.4 man-obsolete obsolete +./usr/share/man/man4/adt7468.4 man-sys-man .man +./usr/share/man/man4/adt7473.4 man-sys-man .man +./usr/share/man/man4/adt7475.4 man-sys-man .man +./usr/share/man/man4/adt7476.4 man-sys-man .man +./usr/share/man/man4/adv.4 man-sys-man .man +./usr/share/man/man4/adw.4 man-sys-man .man +./usr/share/man/man4/age.4 man-sys-man .man +./usr/share/man/man4/agp.4 man-sys-man .man +./usr/share/man/man4/agr.4 man-sys-man .man +./usr/share/man/man4/aha.4 man-sys-man .man +./usr/share/man/man4/ahb.4 man-sys-man .man +./usr/share/man/man4/ahc.4 man-sys-man .man +./usr/share/man/man4/ahcisata.4 man-sys-man .man +./usr/share/man/man4/ahd.4 man-sys-man .man +./usr/share/man/man4/ai.4 man-sys-man .man +./usr/share/man/man4/aiboost.4 man-sys-man .man +./usr/share/man/man4/aibs.4 man-sys-man .man +./usr/share/man/man4/aic.4 man-sys-man .man +./usr/share/man/man4/akbd.4 man-sys-man .man +./usr/share/man/man4/alc.4 man-sys-man .man +./usr/share/man/man4/ale.4 man-sys-man .man +./usr/share/man/man4/alipm.4 man-sys-man .man +./usr/share/man/man4/alpha/apecs.4 man-sys-man .man +./usr/share/man/man4/alpha/asc.4 man-sys-man .man +./usr/share/man/man4/alpha/autoconf.4 man-sys-man .man +./usr/share/man/man4/alpha/cia.4 man-sys-man .man +./usr/share/man/man4/alpha/dwlpx.4 man-sys-man .man +./usr/share/man/man4/alpha/gbus.4 man-sys-man .man +./usr/share/man/man4/alpha/intro.4 man-sys-man .man +./usr/share/man/man4/alpha/irongate.4 man-sys-man .man +./usr/share/man/man4/alpha/jensenio.4 man-sys-man .man +./usr/share/man/man4/alpha/kft.4 man-sys-man .man +./usr/share/man/man4/alpha/lca.4 man-sys-man .man +./usr/share/man/man4/alpha/mcbus.4 man-sys-man .man +./usr/share/man/man4/alpha/mcmem.4 man-sys-man .man +./usr/share/man/man4/alpha/mcpcia.4 man-sys-man .man +./usr/share/man/man4/alpha/sableio.4 man-sys-man .man +./usr/share/man/man4/alpha/tcasic.4 man-sys-man .man +./usr/share/man/man4/alpha/tlsb.4 man-sys-man .man +./usr/share/man/man4/alpha/tlsbmem.4 man-sys-man .man +./usr/share/man/man4/alpha/tsc.4 man-sys-man .man +./usr/share/man/man4/alpha/tsp.4 man-sys-man .man +./usr/share/man/man4/alpha/ttwoga.4 man-sys-man .man +./usr/share/man/man4/alpha/ttwopci.4 man-sys-man .man +./usr/share/man/man4/altmem.4 man-sys-man .man +./usr/share/man/man4/altq.4 man-sys-man .man +./usr/share/man/man4/amdpm.4 man-sys-man .man +./usr/share/man/man4/amdtemp.4 man-sys-man .man +./usr/share/man/man4/amhphy.4 man-sys-man .man +./usr/share/man/man4/amiga/a1k2cp.4 man-sys-man .man +./usr/share/man/man4/amiga/afsc.4 man-sys-man .man +./usr/share/man/man4/amiga/ahsc.4 man-sys-man .man +./usr/share/man/man4/amiga/amidisplaycc.4 man-sys-man .man +./usr/share/man/man4/amiga/atzsc.4 man-sys-man .man +./usr/share/man/man4/amiga/autoconf.4 man-sys-man .man +./usr/share/man/man4/amiga/bah.4 man-sys-man .man +./usr/share/man/man4/amiga/bppcsc.4 man-sys-man .man +./usr/share/man/man4/amiga/console.4 man-sys-man .man +./usr/share/man/man4/amiga/clockport.4 man-sys-man .man +./usr/share/man/man4/amiga/cv3dpb.4 man-sys-man .man +./usr/share/man/man4/amiga/ed.4 man-sys-man .man +./usr/share/man/man4/amiga/efa.4 man-sys-man .man +./usr/share/man/man4/amiga/empb.4 man-sys-man .man +./usr/share/man/man4/amiga/es.4 man-sys-man .man +./usr/share/man/man4/amiga/fdc.4 man-sys-man .man +./usr/share/man/man4/amiga/grf.4 man-sys-man .man +./usr/share/man/man4/amiga/grfcl.4 man-sys-man .man +./usr/share/man/man4/amiga/grfcv.4 man-sys-man .man +./usr/share/man/man4/amiga/grfcv3d.4 man-sys-man .man +./usr/share/man/man4/amiga/grfet.4 man-sys-man .man +./usr/share/man/man4/amiga/grfrh.4 man-sys-man .man +./usr/share/man/man4/amiga/grfrt.4 man-sys-man .man +./usr/share/man/man4/amiga/grful.4 man-sys-man .man +./usr/share/man/man4/amiga/gtsc.4 man-sys-man .man +./usr/share/man/man4/amiga/intro.4 man-sys-man .man +./usr/share/man/man4/amiga/ite.4 man-sys-man .man +./usr/share/man/man4/amiga/kmem.4 man-sys-man .man +./usr/share/man/man4/amiga/le.4 man-obsolete obsolete +./usr/share/man/man4/amiga/mem.4 man-sys-man .man +./usr/share/man/man4/amiga/mfcs.4 man-sys-man .man +./usr/share/man/man4/amiga/mgnsc.4 man-sys-man .man +./usr/share/man/man4/amiga/mppb.4 man-sys-man .man +./usr/share/man/man4/amiga/p5membar.4 man-sys-man .man +./usr/share/man/man4/amiga/p5pb.4 man-sys-man .man +./usr/share/man/man4/amiga/qn.4 man-sys-man .man +./usr/share/man/man4/amiga/ser.4 man-sys-man .man +./usr/share/man/man4/amiga/wesc.4 man-sys-man .man +./usr/share/man/man4/amiga/xsurf.4 man-sys-man .man +./usr/share/man/man4/amiga/zssc.4 man-sys-man .man +./usr/share/man/man4/amr.4 man-sys-man .man +./usr/share/man/man4/ams.4 man-sys-man .man +./usr/share/man/man4/an.4 man-sys-man .man +./usr/share/man/man4/aps.4 man-sys-man .man +./usr/share/man/man4/arc/intro.4 man-sys-man .man +./usr/share/man/man4/arcmsr.4 man-sys-man .man +./usr/share/man/man4/aria.4 man-sys-man .man +./usr/share/man/man4/arm26/arckbd.4 man-obsolete obsolete +./usr/share/man/man4/arm26/arcwskbd.4 man-obsolete obsolete +./usr/share/man/man4/arm26/arcwsmouse.4 man-obsolete obsolete +./usr/share/man/man4/arm26/cpu.4 man-obsolete obsolete +./usr/share/man/man4/arm26/dtide.4 man-obsolete obsolete +./usr/share/man/man4/arm26/ea.4 man-obsolete obsolete +./usr/share/man/man4/arm26/eca.4 man-obsolete obsolete +./usr/share/man/man4/arm26/eh.4 man-obsolete obsolete +./usr/share/man/man4/arm26/ei.4 man-obsolete obsolete +./usr/share/man/man4/arm26/podulebus.4 man-obsolete obsolete +./usr/share/man/man4/arm26/unixbp.4 man-obsolete obsolete +./usr/share/man/man4/arm32/asc.4 man-obsolete obsolete +./usr/share/man/man4/arm32/autoconf.4 man-obsolete obsolete +./usr/share/man/man4/arm32/beep.4 man-obsolete obsolete +./usr/share/man/man4/arm32/com.4 man-obsolete obsolete +./usr/share/man/man4/arm32/cosc.4 man-obsolete obsolete +./usr/share/man/man4/arm32/csc.4 man-obsolete obsolete +./usr/share/man/man4/arm32/ea.4 man-obsolete obsolete +./usr/share/man/man4/arm32/eb.4 man-obsolete obsolete +./usr/share/man/man4/arm32/eh.4 man-obsolete obsolete +./usr/share/man/man4/arm32/em.4 man-obsolete obsolete +./usr/share/man/man4/arm32/es.4 man-obsolete obsolete +./usr/share/man/man4/arm32/ie.4 man-obsolete obsolete +./usr/share/man/man4/arm32/intro.4 man-obsolete obsolete +./usr/share/man/man4/arm32/kbd.4 man-obsolete obsolete +./usr/share/man/man4/arm32/kmem.4 man-obsolete obsolete +./usr/share/man/man4/arm32/lpt.4 man-obsolete obsolete +./usr/share/man/man4/arm32/mainbus.4 man-obsolete obsolete +./usr/share/man/man4/arm32/mem.4 man-obsolete obsolete +./usr/share/man/man4/arm32/oak.4 man-obsolete obsolete +./usr/share/man/man4/arm32/podulebus.4 man-obsolete obsolete +./usr/share/man/man4/arm32/ptsc.4 man-obsolete obsolete +./usr/share/man/man4/arm32/quadmouse.4 man-obsolete obsolete +./usr/share/man/man4/arm32/wd.4 man-obsolete obsolete +./usr/share/man/man4/arp.4 man-sys-man .man +./usr/share/man/man4/artsata.4 man-sys-man .man +./usr/share/man/man4/ast.4 man-sys-man .man +./usr/share/man/man4/ata.4 man-sys-man .man +./usr/share/man/man4/atabus.4 man-sys-man .man +./usr/share/man/man4/atalk.4 man-sys-man .man +./usr/share/man/man4/atapi.4 man-sys-man .man +./usr/share/man/man4/atapibus.4 man-sys-man .man +./usr/share/man/man4/ataraid.4 man-sys-man .man +./usr/share/man/man4/atari/ahdi.4 man-obsolete obsolete +./usr/share/man/man4/atari/et.4 man-sys-man .man +./usr/share/man/man4/atari/floppy.4 man-sys-man .man +./usr/share/man/man4/atari/intro.4 man-sys-man .man +./usr/share/man/man4/atari/ms.4 man-sys-man .man +./usr/share/man/man4/atari/rtc.4 man-sys-man .man +./usr/share/man/man4/ate.4 man-sys-man .man +./usr/share/man/man4/atf-test-case.4 man-cat-man .man,atf +./usr/share/man/man4/ath.4 man-sys-man .man +./usr/share/man/man4/atphy.4 man-sys-man .man +./usr/share/man/man4/atppc.4 man-sys-man .man +./usr/share/man/man4/attimer.4 man-sys-man .man +./usr/share/man/man4/atu.4 man-sys-man .man +./usr/share/man/man4/atw.4 man-sys-man .man +./usr/share/man/man4/au8522.4 man-sys-man .man +./usr/share/man/man4/auacer.4 man-sys-man .man +./usr/share/man/man4/aubtfwl.4 man-sys-man .man +./usr/share/man/man4/audio.4 man-sys-man .man +./usr/share/man/man4/audiocs.4 man-sys-man .man +./usr/share/man/man4/audioctl.4 man-sys-man .man +./usr/share/man/man4/aue.4 man-sys-man .man +./usr/share/man/man4/auich.4 man-sys-man .man +./usr/share/man/man4/auixp.4 man-sys-man .man +./usr/share/man/man4/autri.4 man-sys-man .man +./usr/share/man/man4/auvia.4 man-sys-man .man +./usr/share/man/man4/auvitek.4 man-sys-man .man +./usr/share/man/man4/awi.4 man-sys-man .man +./usr/share/man/man4/axe.4 man-sys-man .man +./usr/share/man/man4/az.4 man-sys-man .man +./usr/share/man/man4/azalia.4 man-sys-man .man +./usr/share/man/man4/battery_pmu.4 man-sys-man .man +./usr/share/man/man4/bba.4 man-sys-man .man +./usr/share/man/man4/bce.4 man-sys-man .man +./usr/share/man/man4/bcsp.4 man-sys-man .man +./usr/share/man/man4/be.4 man-sys-man .man +./usr/share/man/man4/bge.4 man-sys-man .man +./usr/share/man/man4/bha.4 man-sys-man .man +./usr/share/man/man4/bicc.4 man-sys-man .man +./usr/share/man/man4/bio.4 man-sys-man .man +./usr/share/man/man4/bktr.4 man-sys-man .man +./usr/share/man/man4/bluetooth.4 man-sys-man .man +./usr/share/man/man4/bmtphy.4 man-sys-man .man +./usr/share/man/man4/bnx.4 man-sys-man .man +./usr/share/man/man4/boca.4 man-sys-man .man +./usr/share/man/man4/bpf.4 man-sys-man .man +./usr/share/man/man4/brgphy.4 man-sys-man .man +./usr/share/man/man4/bridge.4 man-sys-man .man +./usr/share/man/man4/bt.4 man-sys-man .man +./usr/share/man/man4/bt3c.4 man-sys-man .man +./usr/share/man/man4/btbc.4 man-sys-man .man +./usr/share/man/man4/btdev.4 man-obsolete obsolete +./usr/share/man/man4/bthidev.4 man-sys-man .man +./usr/share/man/man4/bthset.4 man-obsolete obsolete +./usr/share/man/man4/bthub.4 man-sys-man .man +./usr/share/man/man4/btkbd.4 man-sys-man .man +./usr/share/man/man4/btmagic.4 man-sys-man .man +./usr/share/man/man4/btms.4 man-sys-man .man +./usr/share/man/man4/btsco.4 man-sys-man .man +./usr/share/man/man4/btuart.4 man-sys-man .man +./usr/share/man/man4/bwi.4 man-sys-man .man +./usr/share/man/man4/ca.4 man-obsolete obsolete +./usr/share/man/man4/cac.4 man-sys-man .man +./usr/share/man/man4/cardbus.4 man-sys-man .man +./usr/share/man/man4/cardslot.4 man-sys-man .man +./usr/share/man/man4/carp.4 man-sys-man .man +./usr/share/man/man4/cas.4 man-sys-man .man +./usr/share/man/man4/cbb.4 man-sys-man .man +./usr/share/man/man4/ccd.4 man-sys-man .man +./usr/share/man/man4/cd.4 man-sys-man .man +./usr/share/man/man4/cdce.4 man-sys-man .man +./usr/share/man/man4/cec.4 man-sys-man .man +./usr/share/man/man4/cfb.4 man-sys-man .man +./usr/share/man/man4/cgd.4 man-sys-man .man +./usr/share/man/man4/ch.4 man-sys-man .man +./usr/share/man/man4/chipsfb.4 man-sys-man .man +./usr/share/man/man4/ciphy.4 man-sys-man .man +./usr/share/man/man4/cir.4 man-sys-man .man +./usr/share/man/man4/ciss.4 man-sys-man .man +./usr/share/man/man4/clcs.4 man-sys-man .man +./usr/share/man/man4/clct.4 man-sys-man .man +./usr/share/man/man4/clnp.4 man-sys-man .man +./usr/share/man/man4/clockctl.4 man-sys-man .man +./usr/share/man/man4/cltp.4 man-sys-man .man +./usr/share/man/man4/cmdide.4 man-sys-man .man +./usr/share/man/man4/cmpci.4 man-sys-man .man +./usr/share/man/man4/cms.4 man-sys-man .man +./usr/share/man/man4/cnw.4 man-sys-man .man +./usr/share/man/man4/cobalt/gt.4 man-sys-man .man +./usr/share/man/man4/cobalt/intro.4 man-sys-man .man +./usr/share/man/man4/com.4 man-sys-man .man +./usr/share/man/man4/coretemp.4 man-obsolete obsolete +./usr/share/man/man4/crypto.4 man-sys-man .man +./usr/share/man/man4/cs.4 man-sys-man .man +./usr/share/man/man4/cs80bus.4 man-sys-man .man +./usr/share/man/man4/cuda.4 man-sys-man .man +./usr/share/man/man4/cue.4 man-sys-man .man +./usr/share/man/man4/cx24227.4 man-sys-man .man +./usr/share/man/man4/cy.4 man-sys-man .man +./usr/share/man/man4/cypide.4 man-sys-man .man +./usr/share/man/man4/cz.4 man-sys-man .man +./usr/share/man/man4/daic.4 man-sys-man .man +./usr/share/man/man4/dbCool.4 man-sys-man .man +./usr/share/man/man4/dbcool.4 man-sys-man .man +./usr/share/man/man4/ddb.4 man-sys-man .man +./usr/share/man/man4/ddc.4 man-sys-man .man +./usr/share/man/man4/de.4 man-sys-man .man +./usr/share/man/man4/depca.4 man-sys-man .man +./usr/share/man/man4/dge.4 man-sys-man .man +./usr/share/man/man4/dk.4 man-sys-man .man +./usr/share/man/man4/dm.4 man-sys-man .man +./usr/share/man/man4/dmoverio.4 man-sys-man .man +./usr/share/man/man4/dmphy.4 man-sys-man .man +./usr/share/man/man4/dpt.4 man-sys-man .man +./usr/share/man/man4/dpti.4 man-sys-man .man +./usr/share/man/man4/dreamcast/aica.4 man-sys-man .man +./usr/share/man/man4/dreamcast/g2bus.4 man-sys-man .man +./usr/share/man/man4/dreamcast/gapspci.4 man-sys-man .man +./usr/share/man/man4/dreamcast/gdrom.4 man-sys-man .man +./usr/share/man/man4/dreamcast/intro.4 man-sys-man .man +./usr/share/man/man4/dreamcast/maple.4 man-sys-man .man +./usr/share/man/man4/dreamcast/mkbd.4 man-sys-man .man +./usr/share/man/man4/dreamcast/mlcd.4 man-sys-man .man +./usr/share/man/man4/dreamcast/mmem.4 man-sys-man .man +./usr/share/man/man4/dreamcast/mms.4 man-sys-man .man +./usr/share/man/man4/dreamcast/pvr.4 man-sys-man .man +./usr/share/man/man4/drm.4 man-sys-man .man +./usr/share/man/man4/drum.4 man-sys-man .man +./usr/share/man/man4/dtide.4 man-sys-man .man +./usr/share/man/man4/dtv.4 man-sys-man .man +./usr/share/man/man4/dtviic.4 man-sys-man .man +./usr/share/man/man4/dty.4 man-sys-man .man +./usr/share/man/man4/ea.4 man-sys-man .man +./usr/share/man/man4/eap.4 man-sys-man .man +./usr/share/man/man4/eb.4 man-sys-man .man +./usr/share/man/man4/ebus.4 man-sys-man .man +./usr/share/man/man4/ec.4 man-sys-man .man +./usr/share/man/man4/edc.4 man-sys-man .man +./usr/share/man/man4/ef.4 man-sys-man .man +./usr/share/man/man4/eg.4 man-sys-man .man +./usr/share/man/man4/ehci.4 man-sys-man .man +./usr/share/man/man4/ei.4 man-sys-man .man +./usr/share/man/man4/eisa.4 man-sys-man .man +./usr/share/man/man4/el.4 man-sys-man .man +./usr/share/man/man4/elmc.4 man-sys-man .man +./usr/share/man/man4/emdtv.4 man-sys-man .man +./usr/share/man/man4/emips/ace.4 man-sys-man .man +./usr/share/man/man4/emips/autoconf.4 man-sys-man .man +./usr/share/man/man4/emips/dz.4 man-sys-man .man +./usr/share/man/man4/emips/ebus.4 man-sys-man .man +./usr/share/man/man4/emips/eclock.4 man-sys-man .man +./usr/share/man/man4/emips/enic.4 man-sys-man .man +./usr/share/man/man4/emips/intro.4 man-sys-man .man +./usr/share/man/man4/emuxki.4 man-sys-man .man +./usr/share/man/man4/en.4 man-sys-man .man +./usr/share/man/man4/envsys.4 man-sys-man .man +./usr/share/man/man4/ep.4 man-sys-man .man +./usr/share/man/man4/epic.4 man-sys-man .man +./usr/share/man/man4/esa.4 man-sys-man .man +./usr/share/man/man4/esh.4 man-sys-man .man +./usr/share/man/man4/esiop.4 man-sys-man .man +./usr/share/man/man4/esis.4 man-sys-man .man +./usr/share/man/man4/esl.4 man-obsolete obsolete +./usr/share/man/man4/esm.4 man-sys-man .man +./usr/share/man/man4/eso.4 man-sys-man .man +./usr/share/man/man4/esp.4 man-sys-man .man +./usr/share/man/man4/ess.4 man-sys-man .man +./usr/share/man/man4/et.4 man-sys-man .man +./usr/share/man/man4/etherip.4 man-sys-man .man +./usr/share/man/man4/etphy.4 man-sys-man .man +./usr/share/man/man4/evbarm/epgpio.4 man-sys-man .man +./usr/share/man/man4/evbarm/intro.4 man-sys-man .man +./usr/share/man/man4/evbarm/iopaau.4 man-sys-man .man +./usr/share/man/man4/evbarm/iopwdog.4 man-sys-man .man +./usr/share/man/man4/evbmips/aupci.4 man-sys-man .man +./usr/share/man/man4/evbmips/intro.4 man-sys-man .man +./usr/share/man/man4/evbppc/cpc.4 man-sys-man .man +./usr/share/man/man4/evbppc/intro_pmppc.4 man-sys-man .man +./usr/share/man/man4/evbppc/mainbus.4 man-sys-man .man +./usr/share/man/man4/evbppc/rtc.4 man-sys-man .man +./usr/share/man/man4/ex.4 man-sys-man .man +./usr/share/man/man4/exphy.4 man-sys-man .man +./usr/share/man/man4/faith.4 man-sys-man .man +./usr/share/man/man4/fast_ipsec.4 man-sys-man .man +./usr/share/man/man4/fd.4 man-sys-man .man +./usr/share/man/man4/fea.4 man-sys-man .man +./usr/share/man/man4/filemon.4 man-sys-man .man +./usr/share/man/man4/finsio.4 man-sys-man .man +./usr/share/man/man4/flash.4 man-sys-man .man +./usr/share/man/man4/fms.4 man-sys-man .man +./usr/share/man/man4/fmv.4 man-sys-man .man +./usr/share/man/man4/fpa.4 man-sys-man .man +./usr/share/man/man4/fss.4 man-sys-man .man +./usr/share/man/man4/fssbs.4 man-obsolete obsolete +./usr/share/man/man4/fta.4 man-sys-man .man +./usr/share/man/man4/fujbp.4 man-sys-man .man +./usr/share/man/man4/fujhk.4 man-sys-man .man +./usr/share/man/man4/fujitsu.4 man-obsolete obsolete +./usr/share/man/man4/fwhrng.4 man-obsolete obsolete +./usr/share/man/man4/fwip.4 man-sys-man .man +./usr/share/man/man4/fwiso.4 man-obsolete obsolete +./usr/share/man/man4/fwohci.4 man-sys-man .man +./usr/share/man/man4/fxp.4 man-sys-man .man +./usr/share/man/man4/g760a.4 man-sys-man .man +./usr/share/man/man4/gcscaudio.4 man-sys-man .man +./usr/share/man/man4/gem.4 man-sys-man .man +./usr/share/man/man4/genfb.4 man-sys-man .man +./usr/share/man/man4/gentbi.4 man-sys-man .man +./usr/share/man/man4/geodeide.4 man-sys-man .man +./usr/share/man/man4/gif.4 man-sys-man .man +./usr/share/man/man4/glxtphy.4 man-sys-man .man +./usr/share/man/man4/gphyter.4 man-sys-man .man +./usr/share/man/man4/gpib.4 man-sys-man .man +./usr/share/man/man4/gpio.4 man-sys-man .man +./usr/share/man/man4/gpioiic.4 man-sys-man .man +./usr/share/man/man4/gpiolock.4 man-sys-man .man +./usr/share/man/man4/gpioow.4 man-sys-man .man +./usr/share/man/man4/gpiopwm.4 man-sys-man .man +./usr/share/man/man4/gpiosim.4 man-sys-man .man +./usr/share/man/man4/gre.4 man-sys-man .man +./usr/share/man/man4/gsip.4 man-sys-man .man +./usr/share/man/man4/gtp.4 man-sys-man .man +./usr/share/man/man4/gus.4 man-sys-man .man +./usr/share/man/man4/guspnp.4 man-sys-man .man +./usr/share/man/man4/hcide.4 man-sys-man .man +./usr/share/man/man4/hdafg.4 man-sys-man .man +./usr/share/man/man4/hdaudio.4 man-sys-man .man +./usr/share/man/man4/hdaudiobus.4 man-sys-man .man +./usr/share/man/man4/hifn.4 man-sys-man .man +./usr/share/man/man4/hil.4 man-sys-man .man +./usr/share/man/man4/hilid.4 man-sys-man .man +./usr/share/man/man4/hilkbd.4 man-sys-man .man +./usr/share/man/man4/hilms.4 man-sys-man .man +./usr/share/man/man4/hme.4 man-sys-man .man +./usr/share/man/man4/hp300/apci.4 man-obsolete obsolete +./usr/share/man/man4/hp300/autoconf.4 man-sys-man .man +./usr/share/man/man4/hp300/cons.4 man-sys-man .man +./usr/share/man/man4/hp300/ct.4 man-sys-man .man +./usr/share/man/man4/hp300/dca.4 man-obsolete obsolete +./usr/share/man/man4/hp300/dcl.4 man-obsolete obsolete +./usr/share/man/man4/hp300/dcm.4 man-sys-man .man +./usr/share/man/man4/hp300/dio.4 man-sys-man .man +./usr/share/man/man4/hp300/dnkbd.4 man-sys-man .man +./usr/share/man/man4/hp300/dv.4 man-obsolete obsolete +./usr/share/man/man4/hp300/dvbox.4 man-sys-man .man +./usr/share/man/man4/hp300/fhpib.4 man-sys-man .man +./usr/share/man/man4/hp300/frodo.4 man-sys-man .man +./usr/share/man/man4/hp300/gb.4 man-obsolete obsolete +./usr/share/man/man4/hp300/gbox.4 man-sys-man .man +./usr/share/man/man4/hp300/grf.4 man-obsolete obsolete +./usr/share/man/man4/hp300/hil.4 man-obsolete obsolete +./usr/share/man/man4/hp300/hpib.4 man-sys-man .man +./usr/share/man/man4/hp300/hpibbus.4 man-sys-man .man +./usr/share/man/man4/hp300/hyper.4 man-sys-man .man +./usr/share/man/man4/hp300/intio.4 man-sys-man .man +./usr/share/man/man4/hp300/intro.4 man-sys-man .man +./usr/share/man/man4/hp300/ite.4 man-obsolete obsolete +./usr/share/man/man4/hp300/kmem.4 man-sys-man .man +./usr/share/man/man4/hp300/le.4 man-obsolete obsolete +./usr/share/man/man4/hp300/mem.4 man-sys-man .man +./usr/share/man/man4/hp300/nhpib.4 man-sys-man .man +./usr/share/man/man4/hp300/oscsi.4 man-obsolete obsolete +./usr/share/man/man4/hp300/ppi.4 man-sys-man .man +./usr/share/man/man4/hp300/rb.4 man-obsolete obsolete +./usr/share/man/man4/hp300/rbox.4 man-sys-man .man +./usr/share/man/man4/hp300/rd.4 man-sys-man .man +./usr/share/man/man4/hp300/rmp.4 man-sys-man .man +./usr/share/man/man4/hp300/rtc.4 man-sys-man .man +./usr/share/man/man4/hp300/tc.4 man-obsolete obsolete +./usr/share/man/man4/hp300/topcat.4 man-sys-man .man +./usr/share/man/man4/hp700/asp.4 man-sys-man .man +./usr/share/man/man4/hp700/astro.4 man-sys-man .man +./usr/share/man/man4/hp700/cpu.4 man-sys-man .man +./usr/share/man/man4/hp700/dino.4 man-sys-man .man +./usr/share/man/man4/hp700/elroy.4 man-sys-man .man +./usr/share/man/man4/hp700/gsc.4 man-sys-man .man +./usr/share/man/man4/hp700/gsckbc.4 man-sys-man .man +./usr/share/man/man4/hp700/harmony.4 man-sys-man .man +./usr/share/man/man4/hp700/intro.4 man-sys-man .man +./usr/share/man/man4/hp700/io.4 man-sys-man .man +./usr/share/man/man4/hp700/lasi.4 man-sys-man .man +./usr/share/man/man4/hp700/lcd.4 man-sys-man .man +./usr/share/man/man4/hp700/mem.4 man-sys-man .man +./usr/share/man/man4/hp700/mongoose.4 man-sys-man .man +./usr/share/man/man4/hp700/pdc.4 man-sys-man .man +./usr/share/man/man4/hp700/phantomas.4 man-sys-man .man +./usr/share/man/man4/hp700/ssio.4 man-sys-man .man +./usr/share/man/man4/hp700/uturn.4 man-sys-man .man +./usr/share/man/man4/hp700/wax.4 man-sys-man .man +./usr/share/man/man4/hpacel.4 man-sys-man .man +./usr/share/man/man4/hpcarm/intro.4 man-sys-man .man +./usr/share/man/man4/hpcarm/j720kbd.4 man-sys-man .man +./usr/share/man/man4/hpcarm/j720lcd.4 man-sys-man .man +./usr/share/man/man4/hpcarm/j720tp.4 man-sys-man .man +./usr/share/man/man4/hpcmips/teliosio.4 man-sys-man .man +./usr/share/man/man4/hpcsh/intro.4 man-sys-man .man +./usr/share/man/man4/hpcsh/j6x0lcd.4 man-sys-man .man +./usr/share/man/man4/hpcsh/j6x0tp.4 man-sys-man .man +./usr/share/man/man4/hpcsh/psh3lcd.4 man-sys-man .man +./usr/share/man/man4/hpcsh/psh3tp.4 man-sys-man .man +./usr/share/man/man4/hpqlb.4 man-sys-man .man +./usr/share/man/man4/hptide.4 man-sys-man .man +./usr/share/man/man4/i386/PCIBIOS.4 man-sys-man .man +./usr/share/man/man4/i386/apm.4 man-sys-man .man +./usr/share/man/man4/i386/autoconf.4 man-sys-man .man +./usr/share/man/man4/i386/busmouse.4 man-obsolete obsolete +./usr/share/man/man4/i386/cmos.4 man-sys-man .man +./usr/share/man/man4/i386/com.4 man-obsolete obsolete +./usr/share/man/man4/i386/cons.4 man-sys-man .man +./usr/share/man/man4/i386/console.4 man-sys-man .man +./usr/share/man/man4/i386/ed.4 man-sys-man .man +./usr/share/man/man4/i386/elanpar.4 man-sys-man .man +./usr/share/man/man4/i386/elanpex.4 man-sys-man .man +./usr/share/man/man4/i386/elansc.4 man-sys-man .man +./usr/share/man/man4/i386/fdc.4 man-obsolete obsolete +./usr/share/man/man4/i386/gcscide.4 man-sys-man .man +./usr/share/man/man4/i386/gcscpcib.4 man-sys-man .man +./usr/share/man/man4/i386/geodecntr.4 man-sys-man .man +./usr/share/man/man4/i386/geodewdog.4 man-sys-man .man +./usr/share/man/man4/i386/glxsb.4 man-sys-man .man +./usr/share/man/man4/i386/gscpcib.4 man-sys-man .man +./usr/share/man/man4/i386/ie.4 man-obsolete obsolete +./usr/share/man/man4/i386/intro.4 man-sys-man .man +./usr/share/man/man4/i386/io.4 man-sys-man .man +./usr/share/man/man4/i386/joy.4 man-obsolete obsolete +./usr/share/man/man4/i386/kmem.4 man-obsolete obsolete +./usr/share/man/man4/i386/le.4 man-obsolete obsolete +./usr/share/man/man4/i386/lms.4 man-sys-man .man +./usr/share/man/man4/i386/lpa.4 man-obsolete obsolete +./usr/share/man/man4/i386/lpt.4 man-obsolete obsolete +./usr/share/man/man4/i386/mem.4 man-obsolete obsolete +./usr/share/man/man4/i386/mms.4 man-sys-man .man +./usr/share/man/man4/i386/ndis.4 man-sys-man .man +./usr/share/man/man4/i386/npx.4 man-sys-man .man +./usr/share/man/man4/i386/olms.4 man-obsolete obsolete +./usr/share/man/man4/i386/omms.4 man-obsolete obsolete +./usr/share/man/man4/i386/opms.4 man-obsolete obsolete +./usr/share/man/man4/i386/pcibios.4 man-sys-man .man +./usr/share/man/man4/i386/pcvt.4 man-obsolete obsolete +./usr/share/man/man4/i386/pms.4 man-obsolete obsolete +./usr/share/man/man4/i386/pnpbios.4 man-sys-man .man +./usr/share/man/man4/i386/rdcide.4 man-sys-man .man +./usr/share/man/man4/i386/rdcpcib.4 man-sys-man .man +./usr/share/man/man4/i386/sony.4 man-obsolete obsolete +./usr/share/man/man4/i386/speaker.4 man-obsolete obsolete +./usr/share/man/man4/i386/spic.4 man-sys-man .man +./usr/share/man/man4/i386/vald.4 man-obsolete obsolete +./usr/share/man/man4/i386/vesafb.4 man-obsolete obsolete +./usr/share/man/man4/i386/viac7temp.4 man-sys-man .man +./usr/share/man/man4/i4b.4 man-obsolete obsolete +./usr/share/man/man4/i4bctl.4 man-obsolete obsolete +./usr/share/man/man4/i4bipr.4 man-obsolete obsolete +./usr/share/man/man4/i4bisp.4 man-obsolete obsolete +./usr/share/man/man4/i4bisppp.4 man-obsolete obsolete +./usr/share/man/man4/i4brbch.4 man-obsolete obsolete +./usr/share/man/man4/i4btel.4 man-obsolete obsolete +./usr/share/man/man4/i4btrc.4 man-obsolete obsolete +./usr/share/man/man4/i915drm.4 man-sys-man .man +./usr/share/man/man4/iavc.4 man-sys-man .man +./usr/share/man/man4/ibmhawk.4 man-sys-man .man +./usr/share/man/man4/ichlpcib.4 man-obsolete obsolete +./usr/share/man/man4/ichsmb.4 man-sys-man .man +./usr/share/man/man4/icmp.4 man-sys-man .man +./usr/share/man/man4/icmp6.4 man-sys-man .man +./usr/share/man/man4/icp.4 man-sys-man .man +./usr/share/man/man4/icpsp.4 man-sys-man .man +./usr/share/man/man4/icsphy.4 man-sys-man .man +./usr/share/man/man4/idp.4 man-obsolete obsolete +./usr/share/man/man4/iee.4 man-sys-man .man +./usr/share/man/man4/ieee1394if.4 man-sys-man .man +./usr/share/man/man4/ieee80211.4 man-sys-man .man +./usr/share/man/man4/ifmedia.4 man-sys-man .man +./usr/share/man/man4/ifpci.4 man-sys-man .man +./usr/share/man/man4/igphy.4 man-sys-man .man +./usr/share/man/man4/igsfb.4 man-sys-man .man +./usr/share/man/man4/iha.4 man-sys-man .man +./usr/share/man/man4/ihphy.4 man-sys-man .man +./usr/share/man/man4/iic.4 man-sys-man .man +./usr/share/man/man4/ikphy.4 man-sys-man .man +./usr/share/man/man4/imp.4 man-obsolete obsolete +./usr/share/man/man4/inet.4 man-sys-man .man +./usr/share/man/man4/inet6.4 man-sys-man .man +./usr/share/man/man4/inphy.4 man-sys-man .man +./usr/share/man/man4/intersil7170.4 man-sys-man .man +./usr/share/man/man4/ioasic.4 man-sys-man .man +./usr/share/man/man4/ioat.4 man-sys-man .man +./usr/share/man/man4/iop.4 man-sys-man .man +./usr/share/man/man4/iophy.4 man-sys-man .man +./usr/share/man/man4/iopsp.4 man-sys-man .man +./usr/share/man/man4/ip.4 man-sys-man .man +./usr/share/man/man4/ip6.4 man-sys-man .man +./usr/share/man/man4/ipf.4 man-sys-man ipfilter,.man +./usr/share/man/man4/ipfilter.4 man-sys-man ipfilter,.man +./usr/share/man/man4/ipip.4 man-obsolete obsolete +./usr/share/man/man4/ipkdb.4 man-sys-man .man +./usr/share/man/man4/ipl.4 man-sys-man ipfilter,.man +./usr/share/man/man4/ipmi.4 man-sys-man .man +./usr/share/man/man4/ipnat.4 man-sys-man ipfilter,.man +./usr/share/man/man4/ippp.4 man-sys-man .man +./usr/share/man/man4/ipsec.4 man-sys-man .man +./usr/share/man/man4/ipw.4 man-sys-man .man +./usr/share/man/man4/irda.4 man-sys-man .man +./usr/share/man/man4/irframe.4 man-sys-man .man +./usr/share/man/man4/irframetty.4 man-sys-man .man +./usr/share/man/man4/irip.4 man-sys-man .man +./usr/share/man/man4/irmce.4 man-sys-man .man +./usr/share/man/man4/isa.4 man-sys-man .man +./usr/share/man/man4/isabeep.4 man-sys-man .man +./usr/share/man/man4/isapnp.4 man-sys-man .man +./usr/share/man/man4/isdn.4 man-sys-man .man +./usr/share/man/man4/isdnbchan.4 man-sys-man .man +./usr/share/man/man4/isdncapi.4 man-sys-man .man +./usr/share/man/man4/isdnctl.4 man-sys-man .man +./usr/share/man/man4/isdntel.4 man-sys-man .man +./usr/share/man/man4/isdntrc.4 man-sys-man .man +./usr/share/man/man4/isic.4 man-sys-man .man +./usr/share/man/man4/iso.4 man-sys-man .man +./usr/share/man/man4/isp.4 man-sys-man .man +./usr/share/man/man4/isv.4 man-sys-man .man +./usr/share/man/man4/it.4 man-obsolete obsolete +./usr/share/man/man4/iteide.4 man-sys-man .man +./usr/share/man/man4/itesio.4 man-sys-man .man +./usr/share/man/man4/iwi.4 man-sys-man .man +./usr/share/man/man4/iwic.4 man-sys-man .man +./usr/share/man/man4/iwn.4 man-sys-man .man +./usr/share/man/man4/ix.4 man-sys-man .man +./usr/share/man/man4/ixg.4 man-sys-man .man +./usr/share/man/man4/ixpide.4 man-sys-man .man +./usr/share/man/man4/iy.4 man-sys-man .man +./usr/share/man/man4/jme.4 man-sys-man .man +./usr/share/man/man4/jmide.4 man-sys-man .man +./usr/share/man/man4/joy.4 man-sys-man .man +./usr/share/man/man4/kame_ipsec.4 man-obsolete obsolete +./usr/share/man/man4/kloader.4 man-sys-man .man +./usr/share/man/man4/kse.4 man-sys-man .man +./usr/share/man/man4/ksyms.4 man-sys-man .man +./usr/share/man/man4/kttcp.4 man-sys-man .man +./usr/share/man/man4/kue.4 man-sys-man .man +./usr/share/man/man4/lc.4 man-sys-man .man +./usr/share/man/man4/ld.4 man-sys-man .man +./usr/share/man/man4/le.4 man-sys-man .man +./usr/share/man/man4/lg3303.4 man-sys-man .man +./usr/share/man/man4/lii.4 man-sys-man .man +./usr/share/man/man4/lkm.4 man-obsolete obsolete +./usr/share/man/man4/lm.4 man-sys-man .man +./usr/share/man/man4/lmc.4 man-sys-man .man +./usr/share/man/man4/lmtemp.4 man-sys-man .man +./usr/share/man/man4/lo.4 man-sys-man .man +./usr/share/man/man4/lsu.4 man-obsolete obsolete +./usr/share/man/man4/lxtphy.4 man-sys-man .man +./usr/share/man/man4/m25p.4 man-sys-man .man +./usr/share/man/man4/mac68k/adb.4 man-obsolete obsolete +./usr/share/man/man4/mac68k/ae.4 man-sys-man .man +./usr/share/man/man4/mac68k/autoconf.4 man-sys-man .man +./usr/share/man/man4/mac68k/cpi.4 man-sys-man .man +./usr/share/man/man4/mac68k/intro.4 man-sys-man .man +./usr/share/man/man4/mac68k/iwm.4 man-sys-man .man +./usr/share/man/man4/mac68k/kmem.4 man-sys-man .man +./usr/share/man/man4/mac68k/mainbus.4 man-sys-man .man +./usr/share/man/man4/mac68k/mc.4 man-obsolete obsolete +./usr/share/man/man4/mac68k/mem.4 man-sys-man .man +./usr/share/man/man4/mac68k/netdock.4 man-sys-man .man +./usr/share/man/man4/mac68k/obio.4 man-sys-man .man +./usr/share/man/man4/mac68k/sn.4 man-obsolete obsolete +./usr/share/man/man4/mac68k/zsc.4 man-sys-man .man +./usr/share/man/man4/mach64drm.4 man-sys-man .man +./usr/share/man/man4/macppc/autoconf.4 man-sys-man .man +./usr/share/man/man4/macppc/awacs.4 man-sys-man .man +./usr/share/man/man4/macppc/bm.4 man-sys-man .man +./usr/share/man/man4/macppc/gm.4 man-sys-man .man +./usr/share/man/man4/macppc/intro.4 man-sys-man .man +./usr/share/man/man4/macppc/mc.4 man-obsolete obsolete +./usr/share/man/man4/macppc/mesh.4 man-sys-man .man +./usr/share/man/man4/macppc/obio.4 man-sys-man .man +./usr/share/man/man4/macppc/pbms.4 man-sys-man .man +./usr/share/man/man4/macppc/snapper.4 man-sys-man .man +./usr/share/man/man4/mainbus.4 man-sys-man .man +./usr/share/man/man4/makphy.4 man-sys-man .man +./usr/share/man/man4/malo.4 man-sys-man .man +./usr/share/man/man4/mbe.4 man-sys-man .man +./usr/share/man/man4/mc.4 man-sys-man .man +./usr/share/man/man4/mca.4 man-sys-man .man +./usr/share/man/man4/mcclock.4 man-sys-man .man +./usr/share/man/man4/mcd.4 man-sys-man .man +./usr/share/man/man4/md.4 man-sys-man .man +./usr/share/man/man4/mfb.4 man-sys-man .man +./usr/share/man/man4/mfi.4 man-sys-man .man +./usr/share/man/man4/mgadrm.4 man-sys-man .man +./usr/share/man/man4/mhzc.4 man-sys-man .man +./usr/share/man/man4/midi.4 man-sys-man .man +./usr/share/man/man4/mii.4 man-sys-man .man +./usr/share/man/man4/mixer.4 man-sys-man .man +./usr/share/man/man4/mk48txx.4 man-sys-man .man +./usr/share/man/man4/mlx.4 man-sys-man .man +./usr/share/man/man4/mly.4 man-sys-man .man +./usr/share/man/man4/module.4 man-obsolete obsolete +./usr/share/man/man4/mpls.4 man-sys-man .man +./usr/share/man/man4/mpii.4 man-sys-man .man +./usr/share/man/man4/mpt.4 man-sys-man .man +./usr/share/man/man4/mpu.4 man-sys-man .man +./usr/share/man/man4/mr.4 man-obsolete obsolete +./usr/share/man/man4/msk.4 man-sys-man .man +./usr/share/man/man4/mskc.4 man-sys-man .man +./usr/share/man/man4/mt2131.4 man-sys-man .man +./usr/share/man/man4/mtd.4 man-sys-man .man +./usr/share/man/man4/mtio.4 man-sys-man .man +./usr/share/man/man4/multicast.4 man-sys-man .man +./usr/share/man/man4/music.4 man-sys-man .man +./usr/share/man/man4/mvme68k/autoconf.4 man-sys-man .man +./usr/share/man/man4/mvme68k/clmpcc.4 man-sys-man .man +./usr/share/man/man4/mvme68k/clock.4 man-sys-man .man +./usr/share/man/man4/mvme68k/ie.4 man-sys-man .man +./usr/share/man/man4/mvme68k/intro.4 man-sys-man .man +./usr/share/man/man4/mvme68k/kmem.4 man-sys-man .man +./usr/share/man/man4/mvme68k/le.4 man-obsolete obsolete +./usr/share/man/man4/mvme68k/lpa.4 man-sys-man .man +./usr/share/man/man4/mvme68k/lpt.4 man-sys-man .man +./usr/share/man/man4/mvme68k/mainbus.4 man-sys-man .man +./usr/share/man/man4/mvme68k/mem.4 man-sys-man .man +./usr/share/man/man4/mvme68k/memc.4 man-sys-man .man +./usr/share/man/man4/mvme68k/ncrsc.4 man-sys-man .man +./usr/share/man/man4/mvme68k/pcc.4 man-sys-man .man +./usr/share/man/man4/mvme68k/pcctwo.4 man-sys-man .man +./usr/share/man/man4/mvme68k/wdsc.4 man-sys-man .man +./usr/share/man/man4/mvme68k/zsc.4 man-sys-man .man +./usr/share/man/man4/mvsata.4 man-sys-man .man +./usr/share/man/man4/nadb.4 man-sys-man .man +./usr/share/man/man4/nca.4 man-sys-man .man +./usr/share/man/man4/ncr.4 man-obsolete obsolete +./usr/share/man/man4/ne.4 man-sys-man .man +./usr/share/man/man4/nele.4 man-sys-man .man +./usr/share/man/man4/neo.4 man-sys-man .man +./usr/share/man/man4/netintro.4 man-sys-man .man +./usr/share/man/man4/netsmb.4 man-sys-man .man +./usr/share/man/man4/networking.4 man-sys-man .man +./usr/share/man/man4/nfe.4 man-sys-man .man +./usr/share/man/man4/nfsmb.4 man-sys-man .man +./usr/share/man/man4/nfsmbc.4 man-sys-man .man +./usr/share/man/man4/njata.4 man-sys-man .man +./usr/share/man/man4/njs.4 man-sys-man .man +./usr/share/man/man4/ns.4 man-obsolete obsolete +./usr/share/man/man4/nsclpcsio.4 man-sys-man .man +./usr/share/man/man4/nside.4 man-sys-man .man +./usr/share/man/man4/nsip.4 man-obsolete obsolete +./usr/share/man/man4/nsmb.4 man-sys-man .man +./usr/share/man/man4/nsp.4 man-sys-man .man +./usr/share/man/man4/nsphy.4 man-sys-man .man +./usr/share/man/man4/nsphyter.4 man-sys-man .man +./usr/share/man/man4/ntwo.4 man-sys-man .man +./usr/share/man/man4/ntwoc.4 man-sys-man .man +./usr/share/man/man4/null.4 man-sys-man .man +./usr/share/man/man4/nxt2k.4 man-sys-man .man +./usr/share/man/man4/oak.4 man-sys-man .man +./usr/share/man/man4/oboe.4 man-sys-man .man +./usr/share/man/man4/ofisa.4 man-sys-man .man +./usr/share/man/man4/ohci.4 man-sys-man .man +./usr/share/man/man4/onewire.4 man-sys-man .man +./usr/share/man/man4/oosiop.4 man-sys-man .man +./usr/share/man/man4/opl.4 man-sys-man .man +./usr/share/man/man4/opms.4 man-obsolete obsolete +./usr/share/man/man4/optiide.4 man-sys-man .man +./usr/share/man/man4/options.4 man-sys-man .man +./usr/share/man/man4/osiop.4 man-sys-man .man +./usr/share/man/man4/otus.4 man-sys-man .man +./usr/share/man/man4/owtemp.4 man-sys-man .man +./usr/share/man/man4/pad.4 man-sys-man .man +./usr/share/man/man4/pas.4 man-sys-man .man +./usr/share/man/man4/pc532/intro.4 man-obsolete obsolete +./usr/share/man/man4/pc532/lpt.4 man-obsolete obsolete +./usr/share/man/man4/pc532/mem.4 man-obsolete obsolete +./usr/share/man/man4/pc532/ncr.4 man-obsolete obsolete +./usr/share/man/man4/pc532/plip.4 man-obsolete obsolete +./usr/share/man/man4/pc532/scn.4 man-obsolete obsolete +./usr/share/man/man4/pcdisplay.4 man-sys-man .man +./usr/share/man/man4/pcf8563rtc.4 man-sys-man .man +./usr/share/man/man4/pchb.4 man-sys-man .man +./usr/share/man/man4/pci.4 man-sys-man .man +./usr/share/man/man4/pciback.4 man-sys-man .man +./usr/share/man/man4/pcic.4 man-sys-man .man +./usr/share/man/man4/pciide.4 man-sys-man .man +./usr/share/man/man4/pckbc.4 man-sys-man .man +./usr/share/man/man4/pckbd.4 man-sys-man .man +./usr/share/man/man4/pcmcia.4 man-sys-man .man +./usr/share/man/man4/pcmcom.4 man-sys-man .man +./usr/share/man/man4/pcn.4 man-sys-man .man +./usr/share/man/man4/pcppi.4 man-sys-man .man +./usr/share/man/man4/pcscp.4 man-sys-man .man +./usr/share/man/man4/pcweasel.4 man-sys-man .man +./usr/share/man/man4/pdcide.4 man-sys-man .man +./usr/share/man/man4/pdcsata.4 man-sys-man .man +./usr/share/man/man4/pf.4 man-pf-man pf,.man +./usr/share/man/man4/pflog.4 man-pf-man pf,.man +./usr/share/man/man4/pfsync.4 man-pf-man pf,.man +./usr/share/man/man4/phy.4 man-sys-man .man +./usr/share/man/man4/piixide.4 man-sys-man .man +./usr/share/man/man4/piixpcib.4 man-sys-man .man +./usr/share/man/man4/piixpm.4 man-sys-man .man +./usr/share/man/man4/pim.4 man-sys-man .man +./usr/share/man/man4/plip.4 man-sys-man .man +./usr/share/man/man4/pmax/asc.4 man-sys-man .man +./usr/share/man/man4/pmax/autoconf.4 man-sys-man .man +./usr/share/man/man4/pmax/dc.4 man-obsolete obsolete +./usr/share/man/man4/pmax/dtop.4 man-obsolete obsolete +./usr/share/man/man4/pmax/fb.4 man-obsolete obsolete +./usr/share/man/man4/pmax/ibus.4 man-sys-man .man +./usr/share/man/man4/pmax/intro.4 man-sys-man .man +./usr/share/man/man4/pmax/ioasic.4 man-obsolete obsolete +./usr/share/man/man4/pmax/le.4 man-obsolete obsolete +./usr/share/man/man4/pmax/lk201.4 man-obsolete obsolete +./usr/share/man/man4/pmax/pm.4 man-sys-man .man +./usr/share/man/man4/pmax/px.4 man-obsolete obsolete +./usr/share/man/man4/pmax/scc.4 man-obsolete obsolete +./usr/share/man/man4/pmax/sii.4 man-sys-man .man +./usr/share/man/man4/pmax/tc.4 man-obsolete obsolete +./usr/share/man/man4/pmax/xcfb.4 man-sys-man .man +./usr/share/man/man4/pmppc/cpc.4 man-obsolete obsolete +./usr/share/man/man4/pmppc/intro.4 man-obsolete obsolete +./usr/share/man/man4/pmppc/mainbus.4 man-obsolete obsolete +./usr/share/man/man4/pmppc/rtc.4 man-obsolete obsolete +./usr/share/man/man4/pms.4 man-sys-man .man +./usr/share/man/man4/pmsi.4 man-sys-man .man +./usr/share/man/man4/pmu.4 man-sys-man .man +./usr/share/man/man4/pnaphy.4 man-sys-man .man +./usr/share/man/man4/podulebus.4 man-sys-man .man +./usr/share/man/man4/ppb.4 man-sys-man .man +./usr/share/man/man4/ppbus.4 man-sys-man .man +./usr/share/man/man4/ppi.4 man-obsolete obsolete +./usr/share/man/man4/ppp.4 man-sys-man .man +./usr/share/man/man4/pppoe.4 man-sys-man .man +./usr/share/man/man4/prep/intro.4 man-sys-man .man +./usr/share/man/man4/prep/nvram.4 man-sys-man .man +./usr/share/man/man4/pseye.4 man-sys-man .man +./usr/share/man/man4/pss.4 man-obsolete obsolete +./usr/share/man/man4/ptm.4 man-sys-man .man +./usr/share/man/man4/pty.4 man-sys-man .man +./usr/share/man/man4/puc.4 man-sys-man .man +./usr/share/man/man4/pud.4 man-sys-man .man +./usr/share/man/man4/puffs.4 man-sys-man .man +./usr/share/man/man4/pwdog.4 man-sys-man .man +./usr/share/man/man4/px.4 man-sys-man .man +./usr/share/man/man4/pxg.4 man-sys-man .man +./usr/share/man/man4/qe.4 man-sys-man .man +./usr/share/man/man4/qec.4 man-sys-man .man +./usr/share/man/man4/qsphy.4 man-sys-man .man +./usr/share/man/man4/r128drm.4 man-sys-man .man +./usr/share/man/man4/radeondrm.4 man-sys-man .man +./usr/share/man/man4/radio.4 man-sys-man .man +./usr/share/man/man4/raid.4 man-sys-man .man +./usr/share/man/man4/ral.4 man-sys-man .man +./usr/share/man/man4/random.4 man-sys-man .man +./usr/share/man/man4/rasterconsole.4 man-sys-man .man +./usr/share/man/man4/ray.4 man-sys-man .man +./usr/share/man/man4/rcons.4 man-sys-man .man +./usr/share/man/man4/rdcphy.4 man-sys-man .man +./usr/share/man/man4/re.4 man-sys-man .man +./usr/share/man/man4/rgephy.4 man-sys-man .man +./usr/share/man/man4/rl.4 man-obsolete obsolete +./usr/share/man/man4/rlphy.4 man-sys-man .man +./usr/share/man/man4/rmidi.4 man-sys-man .man +./usr/share/man/man4/rnd.4 man-sys-man .man +./usr/share/man/man4/route.4 man-sys-man .man +./usr/share/man/man4/rs5c372rtc.4 man-sys-man .man +./usr/share/man/man4/rt.4 man-sys-man .man +./usr/share/man/man4/rtfps.4 man-sys-man .man +./usr/share/man/man4/rtii.4 man-sys-man .man +./usr/share/man/man4/rtk.4 man-sys-man .man +./usr/share/man/man4/rtpphy.4 man-obsolete obsolete +./usr/share/man/man4/rtw.4 man-sys-man .man +./usr/share/man/man4/rum.4 man-sys-man .man +./usr/share/man/man4/run.4 man-sys-man .man +./usr/share/man/man4/s390rtc.4 man-sys-man .man +./usr/share/man/man4/sandpoint/nhpow.4 man-sys-man .man +./usr/share/man/man4/sandpoint/satmgr.4 man-sys-man .man +./usr/share/man/man4/satalink.4 man-sys-man .man +./usr/share/man/man4/savagedrm.4 man-sys-man .man +./usr/share/man/man4/sb.4 man-sys-man .man +./usr/share/man/man4/sbp.4 man-sys-man .man +./usr/share/man/man4/sbt.4 man-sys-man .man +./usr/share/man/man4/sbus.4 man-sys-man .man +./usr/share/man/man4/sc.4 man-sys-man .man +./usr/share/man/man4/scc.4 man-sys-man .man +./usr/share/man/man4/schide.4 man-sys-man .man +./usr/share/man/man4/scsi.4 man-sys-man .man +./usr/share/man/man4/scsibus.4 man-sys-man .man +./usr/share/man/man4/sd.4 man-sys-man .man +./usr/share/man/man4/sdhc.4 man-sys-man .man +./usr/share/man/man4/sdmmc.4 man-sys-man .man +./usr/share/man/man4/sdtemp.4 man-sys-man .man +./usr/share/man/man4/se.4 man-sys-man .man +./usr/share/man/man4/sea.4 man-sys-man .man +./usr/share/man/man4/sec.4 man-sys-man .man +./usr/share/man/man4/seeprom.4 man-sys-man .man +./usr/share/man/man4/sem.4 man-sys-man .man +./usr/share/man/man4/sequencer.4 man-sys-man .man +./usr/share/man/man4/ses.4 man-sys-man .man +./usr/share/man/man4/sf.4 man-sys-man .man +./usr/share/man/man4/sf2r.4 man-sys-man .man +./usr/share/man/man4/sfb.4 man-sys-man .man +./usr/share/man/man4/sgimips/crime.4 man-sys-man .man +./usr/share/man/man4/sgimips/dpclock.4 man-sys-man .man +./usr/share/man/man4/sgimips/dsclock.4 man-sys-man .man +./usr/share/man/man4/sgimips/gio.4 man-sys-man .man +./usr/share/man/man4/sgimips/giopci.4 man-sys-man .man +./usr/share/man/man4/sgimips/grtwo.4 man-sys-man .man +./usr/share/man/man4/sgimips/haltwo.4 man-sys-man .man +./usr/share/man/man4/sgimips/hpc.4 man-sys-man .man +./usr/share/man/man4/sgimips/imc.4 man-sys-man .man +./usr/share/man/man4/sgimips/intro.4 man-sys-man .man +./usr/share/man/man4/sgimips/light.4 man-sys-man .man +./usr/share/man/man4/sgimips/mace.4 man-sys-man .man +./usr/share/man/man4/sgimips/mavb.4 man-sys-man .man +./usr/share/man/man4/sgimips/mec.4 man-sys-man .man +./usr/share/man/man4/sgimips/newport.4 man-sys-man .man +./usr/share/man/man4/sgimips/pic.4 man-sys-man .man +./usr/share/man/man4/sgimips/sq.4 man-sys-man .man +./usr/share/man/man4/sgimips/wdsc.4 man-sys-man .man +./usr/share/man/man4/sgsmix.4 man-sys-man .man +./usr/share/man/man4/shb.4 man-sys-man .man +./usr/share/man/man4/shmif.4 man-sys-man .man +./usr/share/man/man4/shpcic.4 man-sys-man .man +./usr/share/man/man4/si.4 man-sys-man .man +./usr/share/man/man4/siisata.4 man-sys-man .man +./usr/share/man/man4/siop.4 man-sys-man .man +./usr/share/man/man4/sip.4 man-sys-man .man +./usr/share/man/man4/sisdrm.4 man-sys-man .man +./usr/share/man/man4/siside.4 man-sys-man .man +./usr/share/man/man4/sk.4 man-sys-man .man +./usr/share/man/man4/skc.4 man-sys-man .man +./usr/share/man/man4/sl.4 man-sys-man .man +./usr/share/man/man4/slhci.4 man-sys-man .man +./usr/share/man/man4/slide.4 man-sys-man .man +./usr/share/man/man4/slip.4 man-sys-man .man +./usr/share/man/man4/sm.4 man-sys-man .man +./usr/share/man/man4/smsc.4 man-sys-man .man +./usr/share/man/man4/smscmon.4 man-sys-man .man +./usr/share/man/man4/smsh.4 man-sys-man .man +./usr/share/man/man4/sn.4 man-sys-man .man +./usr/share/man/man4/sony.4 man-sys-man .man +./usr/share/man/man4/sound.4 man-sys-man .man +./usr/share/man/man4/sp.4 man-obsolete obsolete +./usr/share/man/man4/sparc/audioamd.4 man-sys-man .man +./usr/share/man/man4/sparc/autoconf.4 man-sys-man .man +./usr/share/man/man4/sparc/auxreg.4 man-sys-man .man +./usr/share/man/man4/sparc/bpp.4 man-sys-man .man +./usr/share/man/man4/sparc/bwtwo.4 man-sys-man .man +./usr/share/man/man4/sparc/cgeight.4 man-sys-man .man +./usr/share/man/man4/sparc/cgfour.4 man-sys-man .man +./usr/share/man/man4/sparc/cgfourteen.4 man-sys-man .man +./usr/share/man/man4/sparc/cgsix.4 man-sys-man .man +./usr/share/man/man4/sparc/cgthree.4 man-sys-man .man +./usr/share/man/man4/sparc/cgtwo.4 man-sys-man .man +./usr/share/man/man4/sparc/clock.4 man-sys-man .man +./usr/share/man/man4/sparc/dbri.4 man-sys-man .man +./usr/share/man/man4/sparc/fd.4 man-sys-man .man +./usr/share/man/man4/sparc/fdc.4 man-sys-man .man +./usr/share/man/man4/sparc/ie.4 man-sys-man .man +./usr/share/man/man4/sparc/intro.4 man-sys-man .man +./usr/share/man/man4/sparc/kbd.4 man-sys-man .man +./usr/share/man/man4/sparc/kmem.4 man-sys-man .man +./usr/share/man/man4/sparc/le.4 man-obsolete obsolete +./usr/share/man/man4/sparc/magma.4 man-sys-man .man +./usr/share/man/man4/sparc/mem.4 man-sys-man .man +./usr/share/man/man4/sparc/ms.4 man-sys-man .man +./usr/share/man/man4/sparc/nell.4 man-sys-man .man +./usr/share/man/man4/sparc/openprom.4 man-sys-man .man +./usr/share/man/man4/sparc/pnozz.4 man-sys-man .man +./usr/share/man/man4/sparc/tctrl.4 man-sys-man .man +./usr/share/man/man4/sparc/tcx.4 man-sys-man .man +./usr/share/man/man4/sparc/timer.4 man-sys-man .man +./usr/share/man/man4/sparc/tslot.4 man-sys-man .man +./usr/share/man/man4/sparc/xd.4 man-sys-man .man +./usr/share/man/man4/sparc/xy.4 man-sys-man .man +./usr/share/man/man4/sparc/zx.4 man-sys-man .man +./usr/share/man/man4/sparc64/envctrl.4 man-sys-man .man +./usr/share/man/man4/sparc64/fdc.4 man-sys-man .man +./usr/share/man/man4/sparc64/ffb.4 man-sys-man .man +./usr/share/man/man4/sparc64/intro.4 man-sys-man .man +./usr/share/man/man4/sparc64/lom.4 man-sys-man .man +./usr/share/man/man4/sparc64/sab.4 man-sys-man .man +./usr/share/man/man4/sparc64/sabtty.4 man-sys-man .man +./usr/share/man/man4/spc.4 man-sys-man .man +./usr/share/man/man4/spdmem.4 man-sys-man .man +./usr/share/man/man4/speaker.4 man-sys-man .man +./usr/share/man/man4/spi.4 man-sys-man .man +./usr/share/man/man4/spic.4 man-obsolete obsolete +./usr/share/man/man4/spif.4 man-sys-man .man +./usr/share/man/man4/spkr.4 man-sys-man .man +./usr/share/man/man4/spp.4 man-obsolete obsolete +./usr/share/man/man4/sqphy.4 man-sys-man .man +./usr/share/man/man4/ss.4 man-sys-man .man +./usr/share/man/man4/st.4 man-sys-man .man +./usr/share/man/man4/stderr.4 man-sys-man .man +./usr/share/man/man4/stdin.4 man-sys-man .man +./usr/share/man/man4/stdout.4 man-sys-man .man +./usr/share/man/man4/ste.4 man-sys-man .man +./usr/share/man/man4/stf.4 man-sys-man .man +./usr/share/man/man4/stge.4 man-sys-man .man +./usr/share/man/man4/sti.4 man-sys-man .man +./usr/share/man/man4/stpcide.4 man-sys-man .man +./usr/share/man/man4/strip.4 man-sys-man .man +./usr/share/man/man4/stuirda.4 man-sys-man .man +./usr/share/man/man4/sun2/autoconf.4 man-sys-man .man +./usr/share/man/man4/sun2/bwtwo.4 man-sys-man .man +./usr/share/man/man4/sun2/ec.4 man-sys-man .man +./usr/share/man/man4/sun2/ie.4 man-sys-man .man +./usr/share/man/man4/sun2/intro.4 man-sys-man .man +./usr/share/man/man4/sun2/kbd.4 man-sys-man .man +./usr/share/man/man4/sun2/kmem.4 man-sys-man .man +./usr/share/man/man4/sun2/leds.4 man-sys-man .man +./usr/share/man/man4/sun2/mem.4 man-sys-man .man +./usr/share/man/man4/sun2/ms.4 man-sys-man .man +./usr/share/man/man4/sun3/autoconf.4 man-sys-man .man +./usr/share/man/man4/sun3/bwtwo.4 man-sys-man .man +./usr/share/man/man4/sun3/cgfour.4 man-sys-man .man +./usr/share/man/man4/sun3/cgtwo.4 man-sys-man .man +./usr/share/man/man4/sun3/fd.4 man-sys-man .man +./usr/share/man/man4/sun3/ie.4 man-sys-man .man +./usr/share/man/man4/sun3/intro.4 man-sys-man .man +./usr/share/man/man4/sun3/kbd.4 man-sys-man .man +./usr/share/man/man4/sun3/kmem.4 man-sys-man .man +./usr/share/man/man4/sun3/le.4 man-obsolete obsolete +./usr/share/man/man4/sun3/leds.4 man-sys-man .man +./usr/share/man/man4/sun3/mem.4 man-sys-man .man +./usr/share/man/man4/sun3/ms.4 man-sys-man .man +./usr/share/man/man4/sv.4 man-sys-man .man +./usr/share/man/man4/svwsata.4 man-sys-man .man +./usr/share/man/man4/sw.4 man-sys-man .man +./usr/share/man/man4/swcrypto.4 man-sys-man .man +./usr/share/man/man4/swsensor.4 man-sys-man .man +./usr/share/man/man4/swwdog.4 man-sys-man .man +./usr/share/man/man4/sysbeep.4 man-sys-man .man +./usr/share/man/man4/sysmon.4 man-sys-man .man +./usr/share/man/man4/systrace.4 man-obsolete obsolete +./usr/share/man/man4/tap.4 man-sys-man .man +./usr/share/man/man4/tb.4 man-obsolete obsolete +./usr/share/man/man4/tc.4 man-sys-man .man +./usr/share/man/man4/tcds.4 man-sys-man .man +./usr/share/man/man4/tcic.4 man-sys-man .man +./usr/share/man/man4/tcom.4 man-sys-man .man +./usr/share/man/man4/tcp.4 man-sys-man .man +./usr/share/man/man4/tdfxdrm.4 man-sys-man .man +./usr/share/man/man4/tdvfb.4 man-sys-man .man +./usr/share/man/man4/termios.4 man-sys-man .man +./usr/share/man/man4/tfb.4 man-sys-man .man +./usr/share/man/man4/thinkpad.4 man-sys-man .man +./usr/share/man/man4/ti.4 man-sys-man .man +./usr/share/man/man4/tl.4 man-sys-man .man +./usr/share/man/man4/tlp.4 man-sys-man .man +./usr/share/man/man4/tlphy.4 man-sys-man .man +./usr/share/man/man4/tm121temp.4 man-sys-man .man +./usr/share/man/man4/tp.4 man-sys-man .man +./usr/share/man/man4/tpm.4 man-sys-man .man +./usr/share/man/man4/tprof.4 man-sys-man .man +./usr/share/man/man4/tqphy.4 man-sys-man .man +./usr/share/man/man4/tr.4 man-sys-man .man +./usr/share/man/man4/tra.4 man-sys-man .man +./usr/share/man/man4/trm.4 man-sys-man .man +./usr/share/man/man4/tty.4 man-sys-man .man +./usr/share/man/man4/tun.4 man-sys-man .man +./usr/share/man/man4/tuner.4 man-obsolete obsolete +./usr/share/man/man4/tvpll.4 man-sys-man .man +./usr/share/man/man4/twa.4 man-sys-man .man +./usr/share/man/man4/twe.4 man-sys-man .man +./usr/share/man/man4/txp.4 man-sys-man .man +./usr/share/man/man4/u3g.4 man-sys-man .man +./usr/share/man/man4/uark.4 man-sys-man .man +./usr/share/man/man4/uatp.4 man-sys-man .man +./usr/share/man/man4/uaudio.4 man-sys-man .man +./usr/share/man/man4/uax.4 man-obsolete obsolete +./usr/share/man/man4/uberry.4 man-sys-man .man +./usr/share/man/man4/ubsa.4 man-sys-man .man +./usr/share/man/man4/ubsec.4 man-sys-man .man +./usr/share/man/man4/ubt.4 man-sys-man .man +./usr/share/man/man4/ubtbcmfw.4 man-obsolete obsolete +./usr/share/man/man4/uchcom.4 man-sys-man .man +./usr/share/man/man4/ucom.4 man-sys-man .man +./usr/share/man/man4/ucycom.4 man-sys-man .man +./usr/share/man/man4/udav.4 man-sys-man .man +./usr/share/man/man4/udp.4 man-sys-man .man +./usr/share/man/man4/udsbr.4 man-sys-man .man +./usr/share/man/man4/uep.4 man-sys-man .man +./usr/share/man/man4/uftdi.4 man-sys-man .man +./usr/share/man/man4/ug.4 man-sys-man .man +./usr/share/man/man4/ugen.4 man-sys-man .man +./usr/share/man/man4/ugensa.4 man-sys-man .man +./usr/share/man/man4/uha.4 man-sys-man .man +./usr/share/man/man4/uhci.4 man-sys-man .man +./usr/share/man/man4/uhid.4 man-sys-man .man +./usr/share/man/man4/uhidev.4 man-sys-man .man +./usr/share/man/man4/uhmodem.4 man-sys-man .man +./usr/share/man/man4/uhso.4 man-sys-man .man +./usr/share/man/man4/uhub.4 man-sys-man .man +./usr/share/man/man4/uipaq.4 man-sys-man .man +./usr/share/man/man4/uirda.4 man-sys-man .man +./usr/share/man/man4/uk.4 man-sys-man .man +./usr/share/man/man4/ukbd.4 man-sys-man .man +./usr/share/man/man4/ukphy.4 man-sys-man .man +./usr/share/man/man4/ukyopon.4 man-sys-man .man +./usr/share/man/man4/ulpt.4 man-sys-man .man +./usr/share/man/man4/umass.4 man-sys-man .man +./usr/share/man/man4/umct.4 man-sys-man .man +./usr/share/man/man4/umidi.4 man-sys-man .man +./usr/share/man/man4/umodem.4 man-sys-man .man +./usr/share/man/man4/ums.4 man-sys-man .man +./usr/share/man/man4/unix.4 man-sys-man .man +./usr/share/man/man4/upgt.4 man-sys-man .man +./usr/share/man/man4/upl.4 man-sys-man .man +./usr/share/man/man4/uplcom.4 man-sys-man .man +./usr/share/man/man4/urandom.4 man-sys-man .man +./usr/share/man/man4/urio.4 man-sys-man .man +./usr/share/man/man4/url.4 man-sys-man .man +./usr/share/man/man4/urlphy.4 man-sys-man .man +./usr/share/man/man4/urndis.4 man-sys-man .man +./usr/share/man/man4/urtw.4 man-sys-man .man +./usr/share/man/man4/urtwn.4 man-sys-man .man +./usr/share/man/man4/usb.4 man-sys-man .man +./usr/share/man/man4/usbtask.4 man-sys-man .man +./usr/share/man/man4/uscanner.4 man-sys-man .man +./usr/share/man/man4/userconf.4 man-sys-man .man +./usr/share/man/man4/uslsa.4 man-sys-man .man +./usr/share/man/man4/usscanner.4 man-sys-man .man +./usr/share/man/man4/ustir.4 man-sys-man .man +./usr/share/man/man4/uthum.4 man-sys-man .man +./usr/share/man/man4/utoppy.4 man-sys-man .man +./usr/share/man/man4/uts.4 man-sys-man .man +./usr/share/man/man4/uvideo.4 man-sys-man .man +./usr/share/man/man4/uvisor.4 man-sys-man .man +./usr/share/man/man4/uvscom.4 man-sys-man .man +./usr/share/man/man4/uyap.4 man-sys-man .man +./usr/share/man/man4/uyurex.4 man-sys-man .man +./usr/share/man/man4/vald.4 man-sys-man .man +./usr/share/man/man4/vax/acc.4 man-sys-man .man +./usr/share/man/man4/vax/ad.4 man-sys-man .man +./usr/share/man/man4/vax/asc.4 man-sys-man .man +./usr/share/man/man4/vax/autoconf.4 man-sys-man .man +./usr/share/man/man4/vax/cons.4 man-sys-man .man +./usr/share/man/man4/vax/crl.4 man-sys-man .man +./usr/share/man/man4/vax/css.4 man-sys-man .man +./usr/share/man/man4/vax/ct.4 man-sys-man .man +./usr/share/man/man4/vax/ddn.4 man-sys-man .man +./usr/share/man/man4/vax/de.4 man-sys-man .man +./usr/share/man/man4/vax/dh.4 man-sys-man .man +./usr/share/man/man4/vax/dhu.4 man-sys-man .man +./usr/share/man/man4/vax/dl.4 man-sys-man .man +./usr/share/man/man4/vax/dmc.4 man-sys-man .man +./usr/share/man/man4/vax/dmf.4 man-sys-man .man +./usr/share/man/man4/vax/dmz.4 man-sys-man .man +./usr/share/man/man4/vax/dn.4 man-sys-man .man +./usr/share/man/man4/vax/dz.4 man-sys-man .man +./usr/share/man/man4/vax/ec.4 man-sys-man .man +./usr/share/man/man4/vax/en.4 man-sys-man .man +./usr/share/man/man4/vax/ex.4 man-sys-man .man +./usr/share/man/man4/vax/fl.4 man-sys-man .man +./usr/share/man/man4/vax/hdh.4 man-sys-man .man +./usr/share/man/man4/vax/hk.4 man-sys-man .man +./usr/share/man/man4/vax/hp.4 man-sys-man .man +./usr/share/man/man4/vax/ht.4 man-sys-man .man +./usr/share/man/man4/vax/hy.4 man-sys-man .man +./usr/share/man/man4/vax/ik.4 man-sys-man .man +./usr/share/man/man4/vax/il.4 man-sys-man .man +./usr/share/man/man4/vax/intro.4 man-sys-man .man +./usr/share/man/man4/vax/ix.4 man-sys-man .man +./usr/share/man/man4/vax/kg.4 man-sys-man .man +./usr/share/man/man4/vax/kmem.4 man-sys-man .man +./usr/share/man/man4/vax/lp.4 man-sys-man .man +./usr/share/man/man4/vax/mem.4 man-sys-man .man +./usr/share/man/man4/vax/mt.4 man-sys-man .man +./usr/share/man/man4/vax/mtc.4 man-sys-man .man +./usr/share/man/man4/vax/np.4 man-sys-man .man +./usr/share/man/man4/vax/pcl.4 man-sys-man .man +./usr/share/man/man4/vax/ps.4 man-sys-man .man +./usr/share/man/man4/vax/qe.4 man-sys-man .man +./usr/share/man/man4/vax/qt.4 man-sys-man .man +./usr/share/man/man4/vax/rf.4 man-sys-man .man +./usr/share/man/man4/vax/rl.4 man-sys-man .man +./usr/share/man/man4/vax/rx.4 man-obsolete obsolete +./usr/share/man/man4/vax/tm.4 man-sys-man .man +./usr/share/man/man4/vax/ts.4 man-sys-man .man +./usr/share/man/man4/vax/tu.4 man-sys-man .man +./usr/share/man/man4/vax/uda.4 man-sys-man .man +./usr/share/man/man4/vax/up.4 man-sys-man .man +./usr/share/man/man4/vax/ut.4 man-sys-man .man +./usr/share/man/man4/vax/uu.4 man-sys-man .man +./usr/share/man/man4/vax/va.4 man-sys-man .man +./usr/share/man/man4/vax/vp.4 man-sys-man .man +./usr/share/man/man4/vax/vv.4 man-sys-man .man +./usr/share/man/man4/vbi.4 man-sys-man .man +./usr/share/man/man4/veriexec.4 man-sys-man .man +./usr/share/man/man4/verifiedexec.4 man-obsolete obsolete +./usr/share/man/man4/vga.4 man-sys-man .man +./usr/share/man/man4/vge.4 man-sys-man .man +./usr/share/man/man4/viadrm.4 man-sys-man .man +./usr/share/man/man4/viaenv.4 man-sys-man .man +./usr/share/man/man4/viaide.4 man-sys-man .man +./usr/share/man/man4/viapm.4 man-obsolete obsolete +./usr/share/man/man4/video.4 man-sys-man .man +./usr/share/man/man4/vinum.4 man-obsolete obsolete +./usr/share/man/man4/vioif.4 man-sys-man .man +./usr/share/man/man4/viomb.4 man-sys-man .man +./usr/share/man/man4/virt.4 man-sys-man .man +./usr/share/man/man4/virtio.4 man-sys-man .man +./usr/share/man/man4/vlan.4 man-sys-man .man +./usr/share/man/man4/vmmon.4 man-sys-man .man +./usr/share/man/man4/vmnet.4 man-sys-man .man +./usr/share/man/man4/vnd.4 man-sys-man .man +./usr/share/man/man4/voodoofb.4 man-sys-man .man +./usr/share/man/man4/vr.4 man-sys-man .man +./usr/share/man/man4/vte.4 man-sys-man .man +./usr/share/man/man4/wapbl.4 man-sys-man .man +./usr/share/man/man4/wb.4 man-sys-man .man +./usr/share/man/man4/wbsio.4 man-sys-man .man +./usr/share/man/man4/wd.4 man-sys-man .man +./usr/share/man/man4/wdc.4 man-sys-man .man +./usr/share/man/man4/wds.4 man-sys-man .man +./usr/share/man/man4/we.4 man-sys-man .man +./usr/share/man/man4/wedge.4 man-sys-man .man +./usr/share/man/man4/wi.4 man-sys-man .man +./usr/share/man/man4/wm.4 man-sys-man .man +./usr/share/man/man4/wmidell.4 man-sys-man .man +./usr/share/man/man4/wmieeepc.4 man-sys-man .man +./usr/share/man/man4/wmihp.4 man-sys-man .man +./usr/share/man/man4/wmimsi.4 man-sys-man .man +./usr/share/man/man4/wpi.4 man-sys-man .man +./usr/share/man/man4/wscons.4 man-sys-man .man +./usr/share/man/man4/wsdisplay.4 man-sys-man .man +./usr/share/man/man4/wsfont.4 man-sys-man .man +./usr/share/man/man4/wskbd.4 man-sys-man .man +./usr/share/man/man4/wsmouse.4 man-sys-man .man +./usr/share/man/man4/wsmux.4 man-sys-man .man +./usr/share/man/man4/wsmuxctl.4 man-sys-man .man +./usr/share/man/man4/wss.4 man-sys-man .man +./usr/share/man/man4/wt.4 man-sys-man .man +./usr/share/man/man4/x68k/bmd.4 man-sys-man .man +./usr/share/man/man4/x68k/intio.4 man-sys-man .man +./usr/share/man/man4/x68k/intro.4 man-sys-man .man +./usr/share/man/man4/x68k/mfp.4 man-sys-man .man +./usr/share/man/man4/x68k/neptune.4 man-sys-man .man +./usr/share/man/man4/x68k/pow.4 man-obsolete obsolete +./usr/share/man/man4/x68k/powsw.4 man-sys-man .man +./usr/share/man/man4/x68k/vs.4 man-sys-man .man +./usr/share/man/man4/x86/amdpcib.4 man-sys-man .man +./usr/share/man/man4/x86/apic.4 man-sys-man .man +./usr/share/man/man4/x86/balloon.4 man-sys-man .man +./usr/share/man/man4/x86/coretemp.4 man-sys-man .man +./usr/share/man/man4/x86/est.4 man-sys-man .man +./usr/share/man/man4/x86/fdc.4 man-sys-man .man +./usr/share/man/man4/x86/fwhrng.4 man-sys-man .man +./usr/share/man/man4/x86/hpet.4 man-sys-man .man +./usr/share/man/man4/x86/ichlpcib.4 man-sys-man .man +./usr/share/man/man4/x86/ioapic.4 man-sys-man .man +./usr/share/man/man4/x86/kmem.4 man-sys-man .man +./usr/share/man/man4/x86/lapic.4 man-sys-man .man +./usr/share/man/man4/x86/lpa.4 man-sys-man .man +./usr/share/man/man4/x86/lpt.4 man-sys-man .man +./usr/share/man/man4/x86/mem.4 man-sys-man .man +./usr/share/man/man4/x86/odcm.4 man-sys-man .man +./usr/share/man/man4/x86/powernow.4 man-sys-man .man +./usr/share/man/man4/x86/tprof_amdpmi.4 man-sys-man .man +./usr/share/man/man4/x86/tprof_pmi.4 man-sys-man .man +./usr/share/man/man4/x86/vmt.4 man-sys-man .man +./usr/share/man/man4/xbd.4 man-sys-man .man +./usr/share/man/man4/xbdback.4 man-sys-man .man +./usr/share/man/man4/xbox.4 man-sys-man .man +./usr/share/man/man4/xc3028.4 man-sys-man .man +./usr/share/man/man4/xc5k.4 man-sys-man .man +./usr/share/man/man4/xenbus.4 man-sys-man .man +./usr/share/man/man4/xennet.4 man-sys-man .man +./usr/share/man/man4/xge.4 man-sys-man .man +./usr/share/man/man4/xi.4 man-sys-man .man +./usr/share/man/man4/xirc.4 man-sys-man .man +./usr/share/man/man4/xpci.4 man-sys-man .man +./usr/share/man/man4/xvif.4 man-sys-man .man +./usr/share/man/man4/yds.4 man-sys-man .man +./usr/share/man/man4/ym.4 man-sys-man .man +./usr/share/man/man4/zero.4 man-sys-man .man +./usr/share/man/man4/zl10353.4 man-sys-man .man +./usr/share/man/man4/zs.4 man-sys-man .man +./usr/share/man/man4/zsc.4 man-sys-man .man +./usr/share/man/man4/zstty.4 man-sys-man .man +./usr/share/man/man4/zyd.4 man-sys-man .man +./usr/share/man/man5/a.out.5 man-sys-man .man +./usr/share/man/man5/access.5 man-postfix-man postfix,.man +./usr/share/man/man5/acct.5 man-sys-man .man +./usr/share/man/man5/aliases.5 man-postfix-man postfix,.man +./usr/share/man/man5/altq.conf.5 man-router-man .man +./usr/share/man/man5/amd.conf.5 man-amd-man .man +./usr/share/man/man5/ar.5 man-sys-man .man +./usr/share/man/man5/atf-formats.5 man-atf-man .man,atf +./usr/share/man/man5/audit-packages.conf.5 man-obsolete obsolete +./usr/share/man/man5/bluetooth.conf.5 man-obsolete obsolete +./usr/share/man/man5/body_checks.5 man-postfix-man postfix,.man +./usr/share/man/man5/boot.cfg.5 man-sys-man .man +./usr/share/man/man5/bootparams.5 man-bootserver-man .man +./usr/share/man/man5/bootptab.5 man-bootserver-man .man +./usr/share/man/man5/bounce.5 man-postfix-man postfix,.man +./usr/share/man/man5/canonical.5 man-postfix-man postfix,.man +./usr/share/man/man5/capfile.5 man-sys-man .man +./usr/share/man/man5/ccd.conf.5 man-sysutil-man .man +./usr/share/man/man5/cdb.5 man-sys-man .man +./usr/share/man/man5/cidr_table.5 man-postfix-man postfix,.man +./usr/share/man/man5/core.5 man-sys-man .man +./usr/share/man/man5/crontab.5 man-cron-man .man +./usr/share/man/man5/daily.5 man-sys-man .man +./usr/share/man/man5/daily.conf.5 man-sys-man .man +./usr/share/man/man5/dhclient.conf.5 man-dhclient-man .man +./usr/share/man/man5/dhclient.leases.5 man-dhclient-man .man +./usr/share/man/man5/dhcp-eval.5 man-dhclient-man .man +./usr/share/man/man5/dhcp-options.5 man-dhcpd-man .man +./usr/share/man/man5/dhcpcd.conf.5 man-dhcpcd-man .man +./usr/share/man/man5/dhcpd.conf.5 man-dhcpd-man .man +./usr/share/man/man5/dhcpd.leases.5 man-dhcpd-man .man +./usr/share/man/man5/dir.5 man-obsolete obsolete +./usr/share/man/man5/dirent.5 man-obsolete obsolete +./usr/share/man/man5/disklabel.5 man-sys-man .man +./usr/share/man/man5/disktab.5 man-sys-man .man +./usr/share/man/man5/editrc.5 man-sys-man .man +./usr/share/man/man5/elf.5 man-sys-man .man +./usr/share/man/man5/envsys.conf.5 man-sys-man .man +./usr/share/man/man5/ethers.5 man-net-man .man +./usr/share/man/man5/exports.5 man-nfsserver-man .man +./usr/share/man/man5/floppytab.5 man-sys-man .man +./usr/share/man/man5/forward.5 man-sys-man .man +./usr/share/man/man5/fs.5 man-sys-man .man +./usr/share/man/man5/fstab.5 man-sys-man .man +./usr/share/man/man5/ftpchroot.5 man-netutil-man .man +./usr/share/man/man5/ftpd.conf.5 man-netutil-man .man +./usr/share/man/man5/ftpusers.5 man-netutil-man .man +./usr/share/man/man5/genassym.cf.5 man-sys-man .man +./usr/share/man/man5/generic.5 man-postfix-man postfix,.man +./usr/share/man/man5/gettytab.5 man-sysutil-man .man +./usr/share/man/man5/gpio.conf.5 man-sys-man .man +./usr/share/man/man5/group.5 man-sys-man .man +./usr/share/man/man5/header_checks.5 man-postfix-man postfix,.man +./usr/share/man/man5/hesiod.conf.5 man-hesiod-man .man +./usr/share/man/man5/hostapd.conf.5 man-sysutil-man .man +./usr/share/man/man5/hosts.5 man-net-man .man +./usr/share/man/man5/hosts.allow.5 man-net-man .man +./usr/share/man/man5/hosts.deny.5 man-net-man .man +./usr/share/man/man5/hosts.equiv.5 man-netutil-man .man +./usr/share/man/man5/hosts_access.5 man-net-man .man +./usr/share/man/man5/hosts_options.5 man-net-man .man +./usr/share/man/man5/i386 man-obsolete obsolete +./usr/share/man/man5/i386/keycap.5 man-obsolete obsolete +./usr/share/man/man5/ifaliases.5 man-net-man .man +./usr/share/man/man5/ifconfig.if.5 man-net-man .man +./usr/share/man/man5/inetd.5 man-obsolete obsolete +./usr/share/man/man5/inetd.conf.5 man-netutil-man .man +./usr/share/man/man5/info.5 man-texinfo-man .man +./usr/share/man/man5/inode.5 man-sys-man .man +./usr/share/man/man5/intro.5 man-sys-man .man +./usr/share/man/man5/ipf.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/ipf.conf.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/ipf6.conf.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/ipmon.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/ipnat.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/ipnat.conf.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/ippool.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/ippool.conf.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/ipsec.conf.5 man-netutil-man .man +./usr/share/man/man5/ipsend.5 man-ipf-man ipfilter,.man +./usr/share/man/man5/isdnd.acct.5 man-isdn-man .man +./usr/share/man/man5/isdnd.rates.5 man-isdn-man .man +./usr/share/man/man5/isdnd.rc.5 man-isdn-man .man +./usr/share/man/man5/krb.conf.5 man-obsolete obsolete +./usr/share/man/man5/krb.equiv.5 man-obsolete obsolete +./usr/share/man/man5/krb.extra.5 man-obsolete obsolete +./usr/share/man/man5/krb.realms.5 man-obsolete obsolete +./usr/share/man/man5/krb5.conf.5 man-krb5-man kerberos,.man +./usr/share/man/man5/lastlog.5 man-sys-man .man +./usr/share/man/man5/lastlogx.5 man-sys-man .man +./usr/share/man/man5/ld.so.conf.5 man-sys-man .man +./usr/share/man/man5/ldap_table.5 man-postfix-man postfix,.man +./usr/share/man/man5/link.5 man-sys-man .man +./usr/share/man/man5/lkm.conf.5 man-obsolete obsolete +./usr/share/man/man5/locale.alias.5 man-sys-man .man +./usr/share/man/man5/locate.conf.5 man-sys-man .man +./usr/share/man/man5/login.access.5 man-sys-man .man,pam +./usr/share/man/man5/login.conf.5 man-sys-man .man +./usr/share/man/man5/lvm.conf.5 man-lvm-man lvm,.man +./usr/share/man/man5/magic.5 man-util-man .man +./usr/share/man/man5/mailer.conf.5 man-mailwrapper-man .man +./usr/share/man/man5/man.conf.5 man-man-man .man +./usr/share/man/man5/map3270.5 man-obsolete obsolete +./usr/share/man/man5/master.5 man-postfix-man postfix,.man +./usr/share/man/man5/master.passwd.5 man-sys-man .man +./usr/share/man/man5/mixerctl.conf.5 man-audio-man .man +./usr/share/man/man5/moduli.5 man-secsh-man crypto,.man +./usr/share/man/man5/monthly.5 man-sys-man .man +./usr/share/man/man5/monthly.conf.5 man-sys-man .man +./usr/share/man/man5/motd.5 man-sys-man .man +./usr/share/man/man5/named.conf.5 man-bind-man .man +./usr/share/man/man5/netconfig.5 man-net-man .man +./usr/share/man/man5/netgroup.5 man-nis-man .man +./usr/share/man/man5/netid.5 man-nis-man yp,.man +./usr/share/man/man5/networks.5 man-net-man .man +./usr/share/man/man5/newsyslog.conf.5 man-sysutil-man .man +./usr/share/man/man5/nicknames.5 man-nis-man yp,.man +./usr/share/man/man5/nisplus_table.5 man-postfix-man postfix,.man +./usr/share/man/man5/nologin.5 man-sysutil-man .man +./usr/share/man/man5/npf.conf.5 man-npf-man .man,npf +./usr/share/man/man5/nsswitch.conf.5 man-net-man .man +./usr/share/man/man5/openssl.cnf.5 man-crypto-man crypto,.man +./usr/share/man/man5/pam.conf.5 man-sys-man .man +./usr/share/man/man5/passwd.5 man-sys-man .man +./usr/share/man/man5/passwd.conf.5 man-sys-man .man +./usr/share/man/man5/pcap-savefile.5 man-netutil-man .man +./usr/share/man/man5/pcfs.5 man-obsolete obsolete +./usr/share/man/man5/pcre_table.5 man-obsolete obsolete +./usr/share/man/man5/pf.boot.conf.5 man-pf-man pf,.man +./usr/share/man/man5/pf.conf.5 man-pf-man pf,.man +./usr/share/man/man5/pf.os.5 man-pf-man pf,.man +./usr/share/man/man5/pfspamd.conf.5 man-obsolete obsolete +./usr/share/man/man5/phones.5 man-sys-man .man +./usr/share/man/man5/pim6dd.conf.5 man-obsolete obsolete +./usr/share/man/man5/pim6sd.conf.5 man-obsolete obsolete +./usr/share/man/man5/pkg_install.conf.5 man-pkgutil-man crypto,.man +./usr/share/man/man5/pkg_summary.5 man-pkgutil-man crypto,.man +./usr/share/man/man5/postconf.5 man-postfix-man postfix,.man +./usr/share/man/man5/postfix-wrapper.5 man-postfix-man postfix,.man +./usr/share/man/man5/primes.5 man-obsolete obsolete +./usr/share/man/man5/printcap.5 man-lpr-man .man +./usr/share/man/man5/protocols.5 man-net-man .man +./usr/share/man/man5/racoon.conf.5 man-netutil-man crypto,.man +./usr/share/man/man5/radius.conf.5 man-netutil-man .man +./usr/share/man/man5/rc.conf.5 man-sys-man .man +./usr/share/man/man5/rcsfile.5 man-rcs-man .man +./usr/share/man/man5/regexp_table.5 man-postfix-man postfix,.man +./usr/share/man/man5/relocated.5 man-postfix-man postfix,.man +./usr/share/man/man5/remote.5 man-sys-man .man +./usr/share/man/man5/resolv.conf.5 man-net-man .man +./usr/share/man/man5/resolvconf.conf.5 man-resolvconf-man .man +./usr/share/man/man5/resolver.5 man-net-man .man +./usr/share/man/man5/rhosts.5 man-netutil-man .man +./usr/share/man/man5/rndc.conf.5 man-bind-man .man +./usr/share/man/man5/route.conf.5 man-sys-man .man +./usr/share/man/man5/rpc.5 man-net-man .man +./usr/share/man/man5/rtadvd.conf.5 man-router-man use_inet6,.man +./usr/share/man/man5/securenet.5 man-obsolete obsolete +./usr/share/man/man5/security.conf.5 man-sys-man .man +./usr/share/man/man5/services.5 man-net-man .man +./usr/share/man/man5/shells.5 man-sys-man .man +./usr/share/man/man5/siginfo.5 man-obsolete obsolete +./usr/share/man/man5/spamd.conf.5 man-obsolete obsolete +./usr/share/man/man5/ssh_config.5 man-secsh-man crypto,.man +./usr/share/man/man5/sshd_config.5 man-secsh-man crypto,.man +./usr/share/man/man5/sqlite_table.5 man-postfix-man postfix,.man +./usr/share/man/man5/stab.5 man-sys-man .man +./usr/share/man/man5/sysctl.conf.5 man-sys-man .man +./usr/share/man/man5/syslog.conf.5 man-sysutil-man .man +./usr/share/man/man5/targets.5 man-iscsi-man iscsi,.man +./usr/share/man/man5/termcap.5 man-sys-man .man +./usr/share/man/man5/terminfo.5 man-sys-man .man +./usr/share/man/man5/texinfo.5 man-texinfo-man .man +./usr/share/man/man5/transport.5 man-postfix-man postfix,.man +./usr/share/man/man5/ttyaction.5 man-sys-man .man +./usr/share/man/man5/ttys.5 man-sys-man .man +./usr/share/man/man5/types.5 man-obsolete obsolete +./usr/share/man/man5/tzfile.5 man-sys-man .man +./usr/share/man/man5/ucontext.5 man-obsolete obsolete +./usr/share/man/man5/usermgmt.conf.5 man-sys-man .man +./usr/share/man/man5/utmp.5 man-sys-man .man +./usr/share/man/man5/utmpx.5 man-sys-man .man +./usr/share/man/man5/uuencode.5 man-util-man .man +./usr/share/man/man5/uuencode.format.5 man-obsolete obsolete +./usr/share/man/man5/veriexec.5 man-sys-man .man +./usr/share/man/man5/vgrindefs.5 man-groff-man .man +./usr/share/man/man5/virtual.5 man-postfix-man postfix,.man +./usr/share/man/man5/weekly.5 man-sys-man .man +./usr/share/man/man5/weekly.conf.5 man-sys-man .man +./usr/share/man/man5/wpa_supplicant.conf.5 man-net-man .man +./usr/share/man/man5/wscons.conf.5 man-sys-man .man +./usr/share/man/man5/wsmoused.conf.5 man-sys-man .man +./usr/share/man/man5/wtmp.5 man-sys-man .man +./usr/share/man/man5/wtmpx.5 man-sys-man .man +./usr/share/man/man5/ypserv.acl.5 man-obsolete obsolete +./usr/share/man/man7/ascii.7 man-reference-man .man +./usr/share/man/man7/atf.7 man-atf-man .man,atf +./usr/share/man/man7/c.7 man-reference-man .man +./usr/share/man/man7/c78.7 man-reference-man .man +./usr/share/man/man7/c89.7 man-reference-man .man +./usr/share/man/man7/c90.7 man-reference-man .man +./usr/share/man/man7/c99.7 man-reference-man .man +./usr/share/man/man7/des_modes.7 man-reference-man crypto,.man +./usr/share/man/man7/environ.7 man-reference-man .man +./usr/share/man/man7/glob.7 man-reference-man .man +./usr/share/man/man7/hier.7 man-reference-man .man +./usr/share/man/man7/hostname.7 man-reference-man .man +./usr/share/man/man7/intro.7 man-reference-man .man +./usr/share/man/man7/lint.7 man-reference-man .man +./usr/share/man/man7/mailaddr.7 man-reference-man .man +./usr/share/man/man7/mandoc.7 man-obsolete obsolete +./usr/share/man/man7/mdoc.7 man-groff-man .man,groff +./usr/share/man/man7/module.7 man-reference-man .man +./usr/share/man/man7/msafer.7 man-obsolete obsolete +./usr/share/man/man7/nls.7 man-reference-man .man +./usr/share/man/man7/orders.7 man-reference-man .man +./usr/share/man/man7/packages.7 man-obsolete obsolete +./usr/share/man/man7/pcap-filter.7 man-netutil-man .man +./usr/share/man/man7/pcap-linktype.7 man-netutil-man .man +./usr/share/man/man7/pkgsrc.7 man-reference-man .man +./usr/share/man/man7/re_format.7 man-reference-man .man +./usr/share/man/man7/release.7 man-reference-man .man +./usr/share/man/man7/rfc6056.7 man-reference-man .man +./usr/share/man/man7/rump_sp.7 man-reference-man .man,rump +./usr/share/man/man7/script.7 man-reference-man .man +./usr/share/man/man7/security.7 man-reference-man .man +./usr/share/man/man7/setuid.7 man-reference-man .man +./usr/share/man/man7/signal.7 man-reference-man .man +./usr/share/man/man7/sticky.7 man-reference-man .man +./usr/share/man/man7/symlink.7 man-reference-man .man +./usr/share/man/man7/sysctl.7 man-reference-man .man +./usr/share/man/man7/tests.7 man-reference-man .man +./usr/share/man/man8/MAKEDEV.8 man-sysutil-man .man +./usr/share/man/man8/MAKEDEV.local.8 man-sysutil-man .man +./usr/share/man/man8/ac.8 man-sysutil-man .man +./usr/share/man/man8/accton.8 man-sysutil-man .man +./usr/share/man/man8/acorn26/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/acorn26/boot.8 man-sys-man .man +./usr/share/man/man8/acorn26/boot26.8 man-sys-man .man +./usr/share/man/man8/acorn26/makedev.8 man-obsolete obsolete +./usr/share/man/man8/acorn32/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/acorn32/boot.8 man-sys-man .man +./usr/share/man/man8/acorn32/boot32.8 man-sys-man .man +./usr/share/man/man8/acorn32/makedev.8 man-obsolete obsolete +./usr/share/man/man8/acorn32/nbfs.8 man-sys-man .man +./usr/share/man/man8/acpidump.8 man-sysutil-man .man +./usr/share/man/man8/adduser.8 man-sysutil-man .man +./usr/share/man/man8/afterboot.8 man-sysutil-man .man +./usr/share/man/man8/algor/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/algor/makedev.8 man-obsolete obsolete +./usr/share/man/man8/alpha/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/alpha/boot.8 man-sys-man .man +./usr/share/man/man8/alpha/installboot.8 man-obsolete obsolete +./usr/share/man/man8/alpha/installboot.old.8 man-obsolete obsolete +./usr/share/man/man8/alpha/makedev.8 man-obsolete obsolete +./usr/share/man/man8/alpha/mkbootimage.8 man-sysutil-man .man +./usr/share/man/man8/alpha/setnetbootinfo.8 man-sysutil-man .man +./usr/share/man/man8/altqd.8 man-router-man .man +./usr/share/man/man8/amd.8 man-amd-man .man +./usr/share/man/man8/amd64/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/amd64/boot.8 man-sys-man .man +./usr/share/man/man8/amd64/makedev.8 man-obsolete obsolete +./usr/share/man/man8/amiga/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/amiga/binpatch.8 man-sysutil-man .man +./usr/share/man/man8/amiga/boot.8 man-sys-man .man +./usr/share/man/man8/amiga/grfconfig.8 man-sysutil-man .man +./usr/share/man/man8/amiga/installboot.8 man-sysutil-man .man +./usr/share/man/man8/amiga/makedev.8 man-obsolete obsolete +./usr/share/man/man8/amldb.8 man-sysutil-man .man +./usr/share/man/man8/amq.8 man-amd-man .man +./usr/share/man/man8/amrctl.8 man-sysutil-man .man +./usr/share/man/man8/anvil.8 man-postfix-man postfix,.man +./usr/share/man/man8/apm.8 man-sysutil-man .man +./usr/share/man/man8/apmd.8 man-sysutil-man .man +./usr/share/man/man8/apmlabel.8 man-sysutil-man .man +./usr/share/man/man8/arc/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/arc/makedev.8 man-obsolete obsolete +./usr/share/man/man8/arm26/BBBB.8 man-obsolete obsolete +./usr/share/man/man8/arm26/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/arm26/bbbb.8 man-obsolete obsolete +./usr/share/man/man8/arm26/boot.8 man-obsolete obsolete +./usr/share/man/man8/arm26/boot26.8 man-obsolete obsolete +./usr/share/man/man8/arm26/makedev.8 man-obsolete obsolete +./usr/share/man/man8/arm32/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/arm32/makedev.8 man-obsolete obsolete +./usr/share/man/man8/arp.8 man-netutil-man .man +./usr/share/man/man8/atactl.8 man-sysutil-man .man +./usr/share/man/man8/atari/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/atari/ahdilabel.8 man-sysutil-man .man +./usr/share/man/man8/atari/binpatch.8 man-sysutil-man .man +./usr/share/man/man8/atari/boot.8 man-sys-man .man +./usr/share/man/man8/atari/bootpref.8 man-sysutil-man .man +./usr/share/man/man8/atari/installboot.8 man-sysutil-man .man +./usr/share/man/man8/atari/makedev.8 man-obsolete obsolete +./usr/share/man/man8/atrun.8 man-cron-man .man +./usr/share/man/man8/authpf.8 man-pf-man pf,.man +./usr/share/man/man8/bad144.8 man-sysutil-man .man +./usr/share/man/man8/badsect.8 man-sysutil-man .man +./usr/share/man/man8/bebox/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/bebox/makedev.8 man-obsolete obsolete +./usr/share/man/man8/bioctl.8 man-sysutil-man .man +./usr/share/man/man8/boot.8 man-sysutil-man .man +./usr/share/man/man8/bootparamd.8 man-bootserver-man .man +./usr/share/man/man8/bootpd.8 man-bootserver-man .man +./usr/share/man/man8/bootpef.8 man-bootserver-man .man +./usr/share/man/man8/bootpgw.8 man-bootserver-man .man +./usr/share/man/man8/bootptest.8 man-bootserver-man .man +./usr/share/man/man8/bootselect.8 man-obsolete obsolete +./usr/share/man/man8/bounce.8 man-postfix-man postfix,.man +./usr/share/man/man8/brconfig.8 man-netutil-man .man +./usr/share/man/man8/btattach.8 man-sysutil-man .man +./usr/share/man/man8/btconfig.8 man-sysutil-man .man +./usr/share/man/man8/btcontrol.8 man-obsolete obsolete +./usr/share/man/man8/btdevctl.8 man-sysutil-man .man +./usr/share/man/man8/bthcid.8 man-sysutil-man .man +./usr/share/man/man8/btpand.8 man-sysutil-man .man +./usr/share/man/man8/btuartd.8 man-obsolete obsolete +./usr/share/man/man8/catman.8 man-man-man .man +./usr/share/man/man8/cats/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/cats/makedev.8 man-obsolete obsolete +./usr/share/man/man8/ccdconfig.8 man-sysutil-man .man +./usr/share/man/man8/cesfic/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/cesfic/makedev.8 man-obsolete obsolete +./usr/share/man/man8/cgdconfig.8 man-sysutil-man crypto,.man +./usr/share/man/man8/chat.8 man-ppp-man .man +./usr/share/man/man8/chown.8 man-sysutil-man .man +./usr/share/man/man8/chroot.8 man-sysutil-man .man +./usr/share/man/man8/chrtbl.8 man-obsolete obsolete +./usr/share/man/man8/cleanup.8 man-postfix-man postfix,.man +./usr/share/man/man8/clri.8 man-sysutil-man .man +./usr/share/man/man8/cnwctl.8 man-sysutil-man .man +./usr/share/man/man8/cobalt/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/cobalt/boot.8 man-sys-man .man +./usr/share/man/man8/cobalt/makedev.8 man-obsolete obsolete +./usr/share/man/man8/compat_30.8 man-sys-man .man +./usr/share/man/man8/compat_darwin.8 man-obsolete obsolete +./usr/share/man/man8/compat_freebsd.8 man-sys-man .man +./usr/share/man/man8/compat_hpux.8 man-obsolete obsolete +./usr/share/man/man8/compat_ibcs2.8 man-sys-man .man +./usr/share/man/man8/compat_linux.8 man-sys-man .man +./usr/share/man/man8/compat_netbsd32.8 man-sys-man .man +./usr/share/man/man8/compat_osf1.8 man-sys-man .man +./usr/share/man/man8/compat_pecoff.8 man-obsolete obsolete +./usr/share/man/man8/compat_sco.8 man-sys-man .man +./usr/share/man/man8/compat_solaris.8 man-sys-man .man +./usr/share/man/man8/compat_sunos.8 man-sys-man .man +./usr/share/man/man8/compat_svr4.8 man-sys-man .man +./usr/share/man/man8/compat_svr4_32.8 man-sys-man .man +./usr/share/man/man8/compat_ultrix.8 man-sys-man .man +./usr/share/man/man8/compat_win32.8 man-obsolete obsolete +./usr/share/man/man8/compat_xenix.8 man-sys-man .man +./usr/share/man/man8/comsat.8 man-man-man .man +./usr/share/man/man8/cpuctl.8 man-sysutil-man .man +./usr/share/man/man8/crash.8 man-crash-man .man +./usr/share/man/man8/cron.8 man-cron-man .man +./usr/share/man/man8/dbsym.8 man-sysutil-man binutils,.man +./usr/share/man/man8/ddns-confgen.8 man-bind-man .man +./usr/share/man/man8/defer.8 man-postfix-man postfix,.man +./usr/share/man/man8/dev_mkdb.8 man-sysutil-man .man +./usr/share/man/man8/devpubd.8 man-sysutil-man .man +./usr/share/man/man8/dhclient-script.8 man-dhclient-man .man +./usr/share/man/man8/dhclient.8 man-dhclient-man .man +./usr/share/man/man8/dhcpcd-run-hooks.8 man-dhcpcd-man .man +./usr/share/man/man8/dhcpcd.8 man-dhcpcd-man .man +./usr/share/man/man8/dhcpd.8 man-dhcpd-man .man +./usr/share/man/man8/dhcrelay.8 man-dhcpd-man .man +./usr/share/man/man8/discard.8 man-postfix-man postfix,.man +./usr/share/man/man8/disklabel.8 man-sysutil-man .man +./usr/share/man/man8/diskless.8 man-sysutil-man .man +./usr/share/man/man8/diskpart.8 man-sysutil-man .man +./usr/share/man/man8/dkctl.8 man-sysutil-man .man +./usr/share/man/man8/dkscan_bsdlabel.8 man-sysutil-man .man +./usr/share/man/man8/dmctl.8 man-sysutil-man .man +./usr/share/man/man8/dmesg.8 man-sysutil-man .man +./usr/share/man/man8/dmsetup.8 man-lvm-man lvm,.man +./usr/share/man/man8/dnsblog.8 man-postfix-man postfix,.man +./usr/share/man/man8/dnssec-dsfromkey.8 man-bind-man .man +./usr/share/man/man8/dnssec-keyfromlabel.8 man-bind-man .man +./usr/share/man/man8/dnssec-keygen.8 man-bind-man .man +./usr/share/man/man8/dnssec-makekeyset.8 man-obsolete obsolete +./usr/share/man/man8/dnssec-revoke.8 man-bind-man .man +./usr/share/man/man8/dnssec-settime.8 man-bind-man .man +./usr/share/man/man8/dnssec-signkey.8 man-obsolete obsolete +./usr/share/man/man8/dnssec-signzone.8 man-bind-man .man +./usr/share/man/man8/dreamcast/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/dreamcast/boot.8 man-sysutil-man .man +./usr/share/man/man8/dreamcast/makedev.8 man-obsolete obsolete +./usr/share/man/man8/drvctl.8 man-sysutil-man .man +./usr/share/man/man8/dump.8 man-sysutil-man .man +./usr/share/man/man8/dump_lfs.8 man-sysutil-man .man +./usr/share/man/man8/dumpfs.8 man-sysutil-man .man +./usr/share/man/man8/dumplfs.8 man-sysutil-man .man +./usr/share/man/man8/editmap.8 man-obsolete obsolete +./usr/share/man/man8/edquota.8 man-sysutil-man .man +./usr/share/man/man8/eeprom.8 man-sysutil-man .man +./usr/share/man/man8/emips/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/emips/boot.8 man-sys-man .man +./usr/share/man/man8/emips/installboot.8 man-obsolete obsolete +./usr/share/man/man8/emips/makedev.8 man-obsolete obsolete +./usr/share/man/man8/evbarm/bootmini2440.8 man-sysutils-man .man +./usr/share/man/man8/envstat.8 man-sysutil-man .man +./usr/share/man/man8/error.8 man-postfix-man postfix,.man +./usr/share/man/man8/eshconfig.8 man-sysutil-man .man +./usr/share/man/man8/etcupdate.8 man-sysutil-man .man +./usr/share/man/man8/evbarm/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/evbarm/makedev.8 man-obsolete obsolete +./usr/share/man/man8/evbmips/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/evbmips/makedev.8 man-obsolete obsolete +./usr/share/man/man8/evbppc/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/evbppc/makedev.8 man-obsolete obsolete +./usr/share/man/man8/evbsh3/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/evbsh3/makedev.8 man-obsolete obsolete +./usr/share/man/man8/evbsh5/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/evbsh5/makedev.8 man-obsolete obsolete +./usr/share/man/man8/extattrctl.8 man-sysutil-man .man +./usr/share/man/man8/faithd.8 man-router-man inet6,.man +./usr/share/man/man8/fastboot.8 man-sysutil-man .man +./usr/share/man/man8/fasthalt.8 man-sysutil-man .man +./usr/share/man/man8/fdisk.8 man-sysutil-man .man +./usr/share/man/man8/fingerd.8 man-sysutil-man .man +./usr/share/man/man8/fixmount.8 man-sysutil-man .man +./usr/share/man/man8/flashctl.8 man-sysutil-man .man +./usr/share/man/man8/flush.8 man-postfix-man postfix,.man +./usr/share/man/man8/fsck.8 man-sysutil-man .man +./usr/share/man/man8/fsck_ext2fs.8 man-ext2fs-man .man +./usr/share/man/man8/fsck_ffs.8 man-sysutil-man .man +./usr/share/man/man8/fsck_lfs.8 man-sysutil-man .man +./usr/share/man/man8/fsck_msdos.8 man-sysutil-man .man +./usr/share/man/man8/fsck_v7fs.8 man-sysutil-man .man +./usr/share/man/man8/fsdb.8 man-sysutil-man .man +./usr/share/man/man8/fsinfo.8 man-sysutil-man .man +./usr/share/man/man8/fsirand.8 man-sysutil-man .man +./usr/share/man/man8/fssconfig.8 man-sysutil-man .man +./usr/share/man/man8/ftp-proxy.8 man-pf-man pf,.man +./usr/share/man/man8/ftpd.8 man-netutil-man .man +./usr/share/man/man8/fusermount.8 man-refuse-man .man +./usr/share/man/man8/fwctl.8 man-sysutil-man .man +./usr/share/man/man8/genassym.sh.8 man-obsolete obsolete +./usr/share/man/man8/getNAME.8 man-man-man !makemandb,.man +./usr/share/man/man8/getencstat.8 man-sysutil-man .man +./usr/share/man/man8/gettable.8 man-obsolete obsolete +./usr/share/man/man8/getty.8 man-sysutil-man .man +./usr/share/man/man8/gpioctl.8 man-sysutil-man .man +./usr/share/man/man8/gpt.8 man-sysutil-man .man +./usr/share/man/man8/greconfig.8 man-obsolete obsolete +./usr/share/man/man8/grfconfig.8 man-obsolete obsolete +./usr/share/man/man8/group.8 man-sysutil-man .man +./usr/share/man/man8/groupadd.8 man-sysutil-man .man +./usr/share/man/man8/groupdel.8 man-sysutil-man .man +./usr/share/man/man8/groupinfo.8 man-sysutil-man .man +./usr/share/man/man8/groupmod.8 man-sysutil-man .man +./usr/share/man/man8/gspa.8 man-sysutil-man .man +./usr/share/man/man8/halt.8 man-sysutil-man .man +./usr/share/man/man8/hdaudioctl.8 man-sysutil-man .man +./usr/share/man/man8/hlfsd.8 man-amd-man .man +./usr/share/man/man8/hostapd.8 man-sysutil-man .man +./usr/share/man/man8/hostapd_cli.8 man-sysutil-man .man +./usr/share/man/man8/hp300/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/hp300/boot.8 man-sys-man .man +./usr/share/man/man8/hp300/crash.8 man-sys-man .man +./usr/share/man/man8/hp300/format.8 man-sys-man .man +./usr/share/man/man8/hp300/makedev.8 man-obsolete obsolete +./usr/share/man/man8/hp700/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/hp700/boot.8 man-sys-man .man +./usr/share/man/man8/hp700/mkboot.8 man-sys-man .man +./usr/share/man/man8/hp700/makedev.8 man-obsolete obsolete +./usr/share/man/man8/hpcarm/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/hpcarm/boot.8 man-sys-man .man +./usr/share/man/man8/hpcarm/makedev.8 man-obsolete obsolete +./usr/share/man/man8/hpcboot.8 man-sys-man .man +./usr/share/man/man8/hpcmips/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/hpcmips/boot.8 man-sys-man .man +./usr/share/man/man8/hpcmips/makedev.8 man-obsolete obsolete +./usr/share/man/man8/hpcmips/pbsdboot.8 man-sys-man .man +./usr/share/man/man8/hpcsh/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/hpcsh/boot.8 man-sys-man .man +./usr/share/man/man8/hpcsh/makedev.8 man-obsolete obsolete +./usr/share/man/man8/hprop.8 man-krb5-man kerberos,.man +./usr/share/man/man8/hpropd.8 man-krb5-man kerberos,.man +./usr/share/man/man8/htable.8 man-obsolete obsolete +./usr/share/man/man8/httpd.8 man-netutil-man .man +./usr/share/man/man8/i2cscan.8 man-sysutil-man .man +./usr/share/man/man8/i386/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/i386/apm.8 man-obsolete obsolete +./usr/share/man/man8/i386/apmd.8 man-obsolete obsolete +./usr/share/man/man8/i386/bad144.8 man-obsolete obsolete +./usr/share/man/man8/i386/boot.8 man-sys-man .man +./usr/share/man/man8/i386/boot_console.8 man-sys-man .man +./usr/share/man/man8/i386/bootselect.8 man-sys-man .man +./usr/share/man/man8/i386/dosboot.8 man-sys-man .man +./usr/share/man/man8/i386/installboot.8 man-obsolete obsolete +./usr/share/man/man8/i386/ispcvt.8 man-obsolete obsolete +./usr/share/man/man8/i386/kbdio.8 man-obsolete obsolete +./usr/share/man/man8/i386/makedev.8 man-obsolete obsolete +./usr/share/man/man8/i386/mbr.8 man-sys-man .man +./usr/share/man/man8/i386/multiboot.8 man-sys-man .man +./usr/share/man/man8/i386/ndiscvt.8 man-netutil-man .man +./usr/share/man/man8/i386/pxeboot.8 man-sys-man .man +./usr/share/man/man8/i386/reboot.8 man-obsolete obsolete +./usr/share/man/man8/i386/reboot_i386.8 man-obsolete obsolete +./usr/share/man/man8/i386/vgaio.8 man-obsolete obsolete +./usr/share/man/man8/i386/w95boot.8 man-obsolete obsolete +./usr/share/man/man8/i386/zzz.8 man-obsolete obsolete +./usr/share/man/man8/iasl.8 man-sysutil-man .man +./usr/share/man/man8/ibmnws/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/ibmnws/makedev.8 man-obsolete obsolete +./usr/share/man/man8/identd.8 man-netutil-man .man +./usr/share/man/man8/ifconfig.8 man-netutil-man .man +./usr/share/man/man8/ifmcstat.8 man-netutil-man inet6,.man +./usr/share/man/man8/ifwatchd.8 man-netutil-man .man +./usr/share/man/man8/inetd.8 man-netutil-man .man +./usr/share/man/man8/init.8 man-sysutil-man .man +./usr/share/man/man8/installboot.8 man-sysutil-man .man +./usr/share/man/man8/intro.8 man-sys-man .man +./usr/share/man/man8/iopctl.8 man-sysutil-man .man +./usr/share/man/man8/iostat.8 man-sysutil-man .man +./usr/share/man/man8/ipf.8 man-ipf-man ipfilter,.man +./usr/share/man/man8/ipfs.8 man-ipf-man ipfilter,.man +./usr/share/man/man8/ipfstat.8 man-ipf-man ipfilter,.man +./usr/share/man/man8/ipmon.8 man-ipf-man ipfilter,.man +./usr/share/man/man8/ipnat.8 man-ipf-man ipfilter,.man +./usr/share/man/man8/ippool.8 man-ipf-man ipfilter,.man +./usr/share/man/man8/ipppctl.8 man-isdn-man .man +./usr/share/man/man8/iprop-log.8 man-krb5-man kerberos,.man +./usr/share/man/man8/iprop.8 man-krb5-man kerberos,.man +./usr/share/man/man8/ipropd-master.8 man-krb5-man kerberos,.man +./usr/share/man/man8/ipropd-slave.8 man-krb5-man kerberos,.man +./usr/share/man/man8/ipwctl.8 man-sysutil-man .man +./usr/share/man/man8/irda.8 man-sysutil-man .man +./usr/share/man/man8/irdaattach.8 man-sysutil-man .man +./usr/share/man/man8/iscsi-initiator.8 man-iscsi-man iscsi,.man +./usr/share/man/man8/iscsi-target.8 man-iscsi-man iscsi,.man +./usr/share/man/man8/iscsictl.8 man-iscsi-man iscsi,.man +./usr/share/man/man8/iscsid.8 man-iscsi-man iscsi,.man +./usr/share/man/man8/isdnd.8 man-isdn-man .man +./usr/share/man/man8/isdnmonitor.8 man-isdn-man .man +./usr/share/man/man8/isdntel.8 man-isdn-man .man +./usr/share/man/man8/isdntelctl.8 man-isdn-man .man +./usr/share/man/man8/isdntrace.8 man-isdn-man .man +./usr/share/man/man8/isibootd.8 man-bootserver-man .man +./usr/share/man/man8/ispppcontrol.8 man-obsolete obsolete +./usr/share/man/man8/iteconfig.8 man-sysutil-man .man +./usr/share/man/man8/iwictl.8 man-sysutil-man .man +./usr/share/man/man8/kadmin.8 man-krb5-man kerberos,.man +./usr/share/man/man8/kadmind.8 man-krb5-man kerberos,.man +./usr/share/man/man8/kcm.8 man-krb5-man kerberos,.man +./usr/share/man/man8/kdc.8 man-krb5-man kerberos,.man +./usr/share/man/man8/kerberos.8 man-krb5-man kerberos,.man +./usr/share/man/man8/kfd.8 man-obsolete obsolete +./usr/share/man/man8/kimpersonate.8 man-krb5-man kerberos,.man +./usr/share/man/man8/kpasswdd.8 man-krb5-man kerberos,.man +./usr/share/man/man8/kstash.8 man-krb5-man kerberos,.man +./usr/share/man/man8/ktutil.8 man-krb5-man kerberos,.man +./usr/share/man/man8/kvm_mkdb.8 man-obsolete obsolete +./usr/share/man/man8/lastlogin.8 man-sysutil-man .man +./usr/share/man/man8/ldconfig.8 man-sysutil-man .man +./usr/share/man/man8/ldpd.8 man-router-man .man +./usr/share/man/man8/lfs_cleanerd.8 man-sysutil-man .man +./usr/share/man/man8/link.8 man-sysutil-man .man +./usr/share/man/man8/lmcconfig.8 man-sysutil-man .man +./usr/share/man/man8/lmcctl.8 man-obsolete obsolete +./usr/share/man/man8/lmtp.8 man-postfix-man postfix,.man +./usr/share/man/man8/local.8 man-postfix-man postfix,.man +./usr/share/man/man8/locate.updatedb.8 man-sysutil-man .man +./usr/share/man/man8/lockd.8 man-nfsserver-man .man +./usr/share/man/man8/lockstat.8 man-sysutil-man .man +./usr/share/man/man8/lpc.8 man-lpr-man .man +./usr/share/man/man8/lpd.8 man-lpr-man .man +./usr/share/man/man8/luna68k/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/luna68k/makedev.8 man-obsolete obsolete +./usr/share/man/man8/lvchange.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvconvert.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvcreate.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvdisplay.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvextend.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvm.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvmchange.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvmdiskscan.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvmdump.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvreduce.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvremove.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvrename.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvresize.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvs.8 man-lvm-man lvm,.man +./usr/share/man/man8/lvscan.8 man-lvm-man lvm,.man +./usr/share/man/man8/lwresd.8 man-bind-man .man +./usr/share/man/man8/mac68k/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/mac68k/boot.8 man-sys-man .man +./usr/share/man/man8/mac68k/makedev.8 man-obsolete obsolete +./usr/share/man/man8/macppc/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/macppc/boot.8 man-sys-man .man +./usr/share/man/man8/macppc/makedev.8 man-obsolete obsolete +./usr/share/man/man8/macppc/ofwboot.8 man-sysutil-man .man +./usr/share/man/man8/macppc/ofwboot.elf.8 man-sysutil-man .man +./usr/share/man/man8/macppc/ofwboot.xcf.8 man-sysutil-man .man +./usr/share/man/man8/mail.local.8 man-mail-man .man +./usr/share/man/man8/mailstats.8 man-obsolete obsolete +./usr/share/man/man8/mailwrapper.8 man-mailwrapper-man .man +./usr/share/man/man8/makedbm.8 man-nis-man yp,.man +./usr/share/man/man8/makedev.8 man-sysutil-man .man +./usr/share/man/man8/makedev.local.8 man-sysutil-man .man +./usr/share/man/man8/makefs.8 man-sysutil-man .man +./usr/share/man/man8/makekey.8 man-crypto-man .man +./usr/share/man/man8/makemandb.8 man-man-man makemandb,.man +./usr/share/man/man8/makemap.8 man-obsolete obsolete +./usr/share/man/man8/makewhatis.8 man-man-man !makemandb,.man +./usr/share/man/man8/map-mbone.8 man-netutil-man .man +./usr/share/man/man8/master.8 man-postfix-man postfix,.man +./usr/share/man/man8/mbr.8 man-obsolete obsolete +./usr/share/man/man8/mbrlabel.8 man-sysutil-man .man +./usr/share/man/man8/mdconfig.8 man-sysutil-man .man +./usr/share/man/man8/mdnsd.8 man-mdns-man mdns,.man +./usr/share/man/man8/mdsetimage.8 man-sysutil-man binutils,.man +./usr/share/man/man8/mfs.8 man-sys-man .man +./usr/share/man/man8/mipsco/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/mipsco/makedev.8 man-obsolete obsolete +./usr/share/man/man8/mk-amd-map.8 man-amd-man .man +./usr/share/man/man8/mkalias.8 man-nis-man yp,.man +./usr/share/man/man8/mknetid.8 man-nis-man yp,.man +./usr/share/man/man8/mknod.8 man-sysutil-man .man +./usr/share/man/man8/mld6query.8 man-netutil-man use_inet6,.man +./usr/share/man/man8/mlxctl.8 man-sysutil-man .man +./usr/share/man/man8/mmcformat.8 man-sysutil-man .man +./usr/share/man/man8/mmeye/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/mmeye/makedev.8 man-obsolete obsolete +./usr/share/man/man8/modload.8 man-sysutil-man .man +./usr/share/man/man8/modstat.8 man-sysutil-man .man +./usr/share/man/man8/modunload.8 man-sysutil-man .man +./usr/share/man/man8/mopd.8 man-bootserver-man .man +./usr/share/man/man8/mount.8 man-sysutil-man .man +./usr/share/man/man8/mount_9p.8 man-puffs-man .man,rump +./usr/share/man/man8/mount_ados.8 man-adosfs-man .man +./usr/share/man/man8/mount_cd9660.8 man-sysutil-man .man +./usr/share/man/man8/mount_chfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_efs.8 man-efs-man .man +./usr/share/man/man8/mount_ext2fs.8 man-ext2fs-man .man +./usr/share/man/man8/mount_fdesc.8 man-miscfs-man .man +./usr/share/man/man8/mount_ffs.8 man-sysutil-man .man +./usr/share/man/man8/mount_filecore.8 man-filecorefs-man .man +./usr/share/man/man8/mount_hfs.8 man-hfs-man .man +./usr/share/man/man8/mount_hfsp.8 man-obsolete obsolete +./usr/share/man/man8/mount_kernfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_lfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_mfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_msdos.8 man-sysutil-man .man +./usr/share/man/man8/mount_nfs.8 man-nfsclient-man .man +./usr/share/man/man8/mount_nilfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_ntfs.8 man-ntfs-man .man +./usr/share/man/man8/mount_null.8 man-miscfs-man .man +./usr/share/man/man8/mount_overlay.8 man-miscfs-man .man +./usr/share/man/man8/mount_portal.8 man-miscfs-man .man +./usr/share/man/man8/mount_procfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_psshfs.8 man-puffs-man .man,rump +./usr/share/man/man8/mount_ptyfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_puffs.8 man-sysutil-man .man +./usr/share/man/man8/mount_smbfs.8 man-smbfs-man .man +./usr/share/man/man8/mount_sysctlfs.8 man-puffs-man .man,rump +./usr/share/man/man8/mount_sysvbfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_tmpfs.8 man-sysutil-man .man +./usr/share/man/man8/mount_udf.8 man-sysutil-man .man +./usr/share/man/man8/mount_ufs.8 man-sysutil-man .man +./usr/share/man/man8/mount_umap.8 man-miscfs-man .man +./usr/share/man/man8/mount_union.8 man-miscfs-man .man +./usr/share/man/man8/mount_v7fs.8 man-sysutil-man .man +./usr/share/man/man8/mountd.8 man-nfsserver-man .man +./usr/share/man/man8/moused.8 man-sysutil-man .man +./usr/share/man/man8/mrinfo.8 man-netutil-man .man +./usr/share/man/man8/mrouted.8 man-router-man .man +./usr/share/man/man8/mscdlabel.8 man-sysutil-man .man +./usr/share/man/man8/mtrace.8 man-netutil-man .man +./usr/share/man/man8/mtrace6.8 man-obsolete obsolete +./usr/share/man/man8/mtree.8 man-sysutil-man .man +./usr/share/man/man8/mvme68k/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/mvme68k/boot.8 man-sys-man .man +./usr/share/man/man8/mvme68k/installboot.8 man-sysutil-man .man +./usr/share/man/man8/mvme68k/makedev.8 man-obsolete obsolete +./usr/share/man/man8/mvmeppc/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/mvmeppc/makedev.8 man-obsolete obsolete +./usr/share/man/man8/named-bootconf.8 man-obsolete obsolete +./usr/share/man/man8/named-checkconf.8 man-bind-man .man +./usr/share/man/man8/named-checkzone.8 man-bind-man .man +./usr/share/man/man8/named-compilezone.8 man-bind-man .man +./usr/share/man/man8/named-journalprint.8 man-bind-man .man +./usr/share/man/man8/named-xfer.8 man-obsolete obsolete +./usr/share/man/man8/named.8 man-bind-man .man +./usr/share/man/man8/named.reload.8 man-obsolete obsolete +./usr/share/man/man8/named.restart.8 man-obsolete obsolete +./usr/share/man/man8/ncdcs.8 man-sysutil-man binutils,.man +./usr/share/man/man8/ndbootd.8 man-bootserver-man .man +./usr/share/man/man8/ndc.8 man-obsolete obsolete +./usr/share/man/man8/ndiscvt.8 man-obsolete obsolete +./usr/share/man/man8/ndp.8 man-netutil-man inet6,.man +./usr/share/man/man8/netbsd32.8 man-sys-man .man +./usr/share/man/man8/netgroup_mkdb.8 man-nis-man .man +./usr/share/man/man8/netwinder/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/netwinder/makedev.8 man-obsolete obsolete +./usr/share/man/man8/newbtconf.8 man-sysutil-man .man +./usr/share/man/man8/newfs.8 man-sysutil-man .man +./usr/share/man/man8/newfs_ext2fs.8 man-sysutil-man .man +./usr/share/man/man8/newfs_lfs.8 man-sysutil-man .man +./usr/share/man/man8/newfs_msdos.8 man-sysutil-man .man +./usr/share/man/man8/newfs_sysvbfs.8 man-sysutil-man .man +./usr/share/man/man8/newfs_udf.8 man-sysutil-man .man +./usr/share/man/man8/newfs_v7fs.8 man-sysutil-man .man +./usr/share/man/man8/newlfs.8 man-obsolete obsolete +./usr/share/man/man8/news68k/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/news68k/makedev.8 man-obsolete obsolete +./usr/share/man/man8/newsmips/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/newsmips/makedev.8 man-obsolete obsolete +./usr/share/man/man8/newsyslog.8 man-sysutil-man .man +./usr/share/man/man8/next68k/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/next68k/boot.8 man-sys-man .man +./usr/share/man/man8/next68k/makedev.8 man-obsolete obsolete +./usr/share/man/man8/nfsd.8 man-nfsserver-man .man +./usr/share/man/man8/nfsiod.8 man-obsolete obsolete +./usr/share/man/man8/nis.8 man-nis-man .man +./usr/share/man/man8/nologin.8 man-sysutil-man .man +./usr/share/man/man8/npf.conf.8 man-obsolete obsolete +./usr/share/man/man8/npfctl.8 man-npf-man .man,npf +./usr/share/man/man8/nqmgr.8 man-obsolete obsolete +./usr/share/man/man8/nsec3hash.8 man-bind-man .man +./usr/share/man/man8/nslookup.8 man-netutil-man .man +./usr/share/man/man8/nsupdate.8 man-obsolete obsolete +./usr/share/man/man8/ntalkd.8 man-netutil-man .man +./usr/share/man/man8/ntp-keygen.8 man-ntp-man crypto,.man +./usr/share/man/man8/ntpd.8 man-ntp-man .man +./usr/share/man/man8/ntpdate.8 man-ntp-man .man +./usr/share/man/man8/ntpdc.8 man-ntp-man .man +./usr/share/man/man8/ntpq.8 man-ntp-man .man +./usr/share/man/man8/ntptime.8 man-ntp-man .man +./usr/share/man/man8/ntptrace.8 man-ntp-man .man +./usr/share/man/man8/ofctl.8 man-sysutil-man .man +./usr/share/man/man8/ofppc/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/ofppc/makedev.8 man-obsolete obsolete +./usr/share/man/man8/oqmgr.8 man-postfix-man postfix,.man +./usr/share/man/man8/pac.8 man-sysutil-man .man +./usr/share/man/man8/pam.8 man-sysutil-man .man +./usr/share/man/man8/pam_afslog.8 man-sysutil-man kerberos,.man,pam +./usr/share/man/man8/pam_chroot.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_deny.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_echo.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_exec.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_ftpusers.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_group.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_guest.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_krb5.8 man-sysutil-man kerberos,.man,pam +./usr/share/man/man8/pam_ksu.8 man-sysutil-man kerberos,.man,pam +./usr/share/man/man8/pam_lastlog.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_login_access.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_nologin.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_permit.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_radius.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_rhosts.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_rootok.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_securetty.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_self.8 man-sysutil-man .man,pam +./usr/share/man/man8/pam_skey.8 man-sysutil-man skey,.man,pam +./usr/share/man/man8/pam_ssh.8 man-sysutil-man crypto,.man,pam +./usr/share/man/man8/pam_unix.8 man-sysutil-man .man,pam +./usr/share/man/man8/paxctl.8 man-sysutil-man .man +./usr/share/man/man8/pc532/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/pc532/bim.8 man-obsolete obsolete +./usr/share/man/man8/pc532/makedev.8 man-obsolete obsolete +./usr/share/man/man8/pcictl.8 man-sysutil-man .man +./usr/share/man/man8/pcnfsd.8 man-nfsserver-man .man +./usr/share/man/man8/pdisk.8 man-sysutil-man .man +./usr/share/man/man8/peace.8 man-obsolete obsolete +./usr/share/man/man8/perfused.8 man-perfuse-man .man +./usr/share/man/man8/pfctl.8 man-pf-man pf,.man +./usr/share/man/man8/pflogd.8 man-pf-man pf,.man +./usr/share/man/man8/pfs.8 man-pf-man pf,.man +./usr/share/man/man8/pfspamd-setup.8 man-obsolete obsolete +./usr/share/man/man8/pfspamd.8 man-obsolete obsolete +./usr/share/man/man8/pfspamdb.8 man-obsolete obsolete +./usr/share/man/man8/pfspamlogd.8 man-obsolete obsolete +./usr/share/man/man8/pickup.8 man-postfix-man postfix,.man +./usr/share/man/man8/pim6dd.8 man-obsolete obsolete +./usr/share/man/man8/pim6sd.8 man-obsolete obsolete +./usr/share/man/man8/ping.8 man-netutil-man .man +./usr/share/man/man8/ping6.8 man-netutil-man use_inet6,.man +./usr/share/man/man8/pipe.8 man-postfix-man postfix,.man +./usr/share/man/man8/playstation2/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/playstation2/makedev.8 man-obsolete obsolete +./usr/share/man/man8/pmax/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/pmax/boot.8 man-sys-man .man +./usr/share/man/man8/pmax/installboot.8 man-obsolete obsolete +./usr/share/man/man8/pmax/makedev.8 man-obsolete obsolete +./usr/share/man/man8/pmppc/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/pmppc/boot.8 man-obsolete obsolete +./usr/share/man/man8/pmppc/makedev.8 man-obsolete obsolete +./usr/share/man/man8/portmap.8 man-obsolete obsolete +./usr/share/man/man8/postinstall.8 man-sys-man .man +./usr/share/man/man8/postscreen.8 man-postfix-man postfix,crypto,.man +./usr/share/man/man8/powerd.8 man-sysutil-man .man +./usr/share/man/man8/poweroff.8 man-sysutil-man .man +./usr/share/man/man8/pppd.8 man-ppp-man .man +./usr/share/man/man8/pppd.cbcp.8 man-obsolete obsolete +./usr/share/man/man8/pppdump.8 man-ppp-man .man +./usr/share/man/man8/pppoectl.8 man-isdn-man .man +./usr/share/man/man8/pppstats.8 man-ppp-man .man +./usr/share/man/man8/praliases.8 man-obsolete obsolete +./usr/share/man/man8/prep/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/prep/boot.8 man-sys-man .man +./usr/share/man/man8/prep/makedev.8 man-obsolete obsolete +./usr/share/man/man8/prep/mkbootimage.8 man-sys-man .man +./usr/share/man/man8/proxymap.8 man-postfix-man postfix,.man +./usr/share/man/man8/psrset.8 man-sysutil-man .man +./usr/share/man/man8/pstat.8 man-sysutil-man .man +./usr/share/man/man8/pvchange.8 man-lvm-man lvm,.man +./usr/share/man/man8/pvck.8 man-lvm-man lvm,.man +./usr/share/man/man8/pvcreate.8 man-lvm-man lvm,.man +./usr/share/man/man8/pvcsif.8 man-netutil-man .man +./usr/share/man/man8/pvctxctl.8 man-netutil-man .man +./usr/share/man/man8/pvdisplay.8 man-lvm-man lvm,.man +./usr/share/man/man8/pvmove.8 man-lvm-man lvm,.man +./usr/share/man/man8/pvremove.8 man-lvm-man lvm,.man +./usr/share/man/man8/pvresize.8 man-lvm-man lvm,.man +./usr/share/man/man8/pvs.8 man-lvm-man lvm,.man +./usr/share/man/man8/pvscan.8 man-lvm-man lvm,.man +./usr/share/man/man8/pwd_mkdb.8 man-sysutil-man .man +./usr/share/man/man8/qmgr.8 man-postfix-man postfix,.man +./usr/share/man/man8/qmqpd.8 man-obsolete obsolete +./usr/share/man/man8/quot.8 man-sysutil-man .man +./usr/share/man/man8/quotacheck.8 man-sysutil-man .man +./usr/share/man/man8/quotactl.8 man-obsolete obsolete +./usr/share/man/man8/quotadump.8 man-sysutil-man .man +./usr/share/man/man8/quotaoff.8 man-sysutil-man .man +./usr/share/man/man8/quotaon.8 man-sysutil-man .man +./usr/share/man/man8/quotarestore.8 man-sysutil-man .man +./usr/share/man/man8/racoon.8 man-netutil-man crypto,.man +./usr/share/man/man8/racoonctl.8 man-netutil-man crypto,.man +./usr/share/man/man8/raidctl.8 man-sysutil-man .man +./usr/share/man/man8/rarpd.8 man-bootserver-man .man +./usr/share/man/man8/rbootd.8 man-bootserver-man .man +./usr/share/man/man8/rc.8 man-rc-man .man +./usr/share/man/man8/rc.d.8 man-rc-man .man +./usr/share/man/man8/rc.local.8 man-rc-man .man +./usr/share/man/man8/rc.shutdown.8 man-rc-man .man +./usr/share/man/man8/rc.subr.8 man-rc-man .man +./usr/share/man/man8/rcorder.8 man-sysutil-man .man +./usr/share/man/man8/rdate.8 man-netutil-man .man +./usr/share/man/man8/rdconfig.8 man-obsolete obsolete +./usr/share/man/man8/rdisc.8 man-netutil-man .man +./usr/share/man/man8/rdump.8 man-netutil-man .man +./usr/share/man/man8/rdump_lfs.8 man-netutil-man .man +./usr/share/man/man8/reboot.8 man-sysutil-man .man +./usr/share/man/man8/renice.8 man-sysutil-man .man +./usr/share/man/man8/repquota.8 man-sysutil-man .man +./usr/share/man/man8/rescue.8 man-sysutil-man .man +./usr/share/man/man8/resize_ffs.8 man-sysutil-man .man +./usr/share/man/man8/resize_lfs.8 man-sysutil-man .man +./usr/share/man/man8/resolvconf.8 man-resolvconf-man .man +./usr/share/man/man8/restore.8 man-sysutil-man .man +./usr/share/man/man8/revnetgroup.8 man-nis-man yp,.man +./usr/share/man/man8/revoke.8 man-sysutil-man .man +./usr/share/man/man8/rexecd.8 man-netutil-man .man +./usr/share/man/man8/rip6query.8 man-netutil-man inet6,.man +./usr/share/man/man8/rlogind.8 man-netutil-man .man +./usr/share/man/man8/rmail.8 man-obsolete obsolete +./usr/share/man/man8/rmt.8 man-sysutil-man .man +./usr/share/man/man8/rndc-confgen.8 man-bind-man .man +./usr/share/man/man8/rndc.8 man-bind-man .man +./usr/share/man/man8/rndctl.8 man-sysutil-man .man +./usr/share/man/man8/route.8 man-netutil-man .man +./usr/share/man/man8/route6d.8 man-router-man use_inet6,.man +./usr/share/man/man8/routed.8 man-router-man .man +./usr/share/man/man8/rpc.bootparamd.8 man-bootserver-man .man +./usr/share/man/man8/rpc.lockd.8 man-nfsserver-man .man +./usr/share/man/man8/rpc.pcnfsd.8 man-nfsserver-man .man +./usr/share/man/man8/rpc.rquotad.8 man-nfsserver-man .man +./usr/share/man/man8/rpc.rstatd.8 man-rpcserver-man .man +./usr/share/man/man8/rpc.rusersd.8 man-rpcserver-man .man +./usr/share/man/man8/rpc.rwalld.8 man-rpcserver-man .man +./usr/share/man/man8/rpc.sprayd.8 man-rpcserver-man .man +./usr/share/man/man8/rpc.statd.8 man-nfsserver-man .man +./usr/share/man/man8/rpc.yppasswdd.8 man-nis-man yp,.man +./usr/share/man/man8/rpcbind.8 man-rpcserver-man .man +./usr/share/man/man8/rpcinfo.8 man-rpcutil-man .man +./usr/share/man/man8/rquotad.8 man-nfsserver-man .man +./usr/share/man/man8/rrestore.8 man-netutil-man .man +./usr/share/man/man8/rshd.8 man-netutil-man .man +./usr/share/man/man8/rstatd.8 man-netutil-man .man +./usr/share/man/man8/rtadvd.8 man-router-man use_inet6,.man +./usr/share/man/man8/rtquery.8 man-netutil-man .man +./usr/share/man/man8/rtsol.8 man-netutil-man inet6,.man +./usr/share/man/man8/rtsold.8 man-netutil-man inet6,.man +./usr/share/man/man8/rump_cd9660.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_efs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_ext2fs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_ffs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_hfs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_lfs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_msdos.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_nfs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_ntfs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_smbfs.8 man-puffs-man crypto,.man,rump +./usr/share/man/man8/rump_syspuffs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_sysvbfs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_tmpfs.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_udf.8 man-puffs-man .man,rump +./usr/share/man/man8/rump_v7fs.8 man-puffs-man .man,rump +./usr/share/man/man8/rusersd.8 man-netutil-man .man +./usr/share/man/man8/rwalld.8 man-netutil-man .man +./usr/share/man/man8/rwhod.8 man-netutil-man .man +./usr/share/man/man8/sa.8 man-sysutil-man .man +./usr/share/man/man8/sandpoint/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/sandpoint/altboot.8 man-sysutils-man .man +./usr/share/man/man8/sandpoint/makedev.8 man-obsolete obsolete +./usr/share/man/man8/savecore.8 man-sysutil-man .man +./usr/share/man/man8/sbmips/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/sbmips/makedev.8 man-obsolete obsolete +./usr/share/man/man8/scache.8 man-postfix-man postfix,.man +./usr/share/man/man8/scan_ffs.8 man-sysutil-man .man +./usr/share/man/man8/scan_lfs.8 man-sysutil-man .man +./usr/share/man/man8/schedctl.8 man-sysutil-man .man +./usr/share/man/man8/scsictl.8 man-sysutil-man .man +./usr/share/man/man8/sdpd.8 man-sysutil-man .man +./usr/share/man/man8/security.8 man-obsolete obsolete +./usr/share/man/man8/sendmail.8 man-obsolete obsolete +./usr/share/man/man8/services_mkdb.8 man-sysutil-man .man +./usr/share/man/man8/sesd.8 man-sysutil-man .man +./usr/share/man/man8/setencstat.8 man-sysutil-man .man +./usr/share/man/man8/setkey.8 man-netutil-man .man +./usr/share/man/man8/setobjstat.8 man-sysutil-man .man +./usr/share/man/man8/sftp-server.8 man-secsh-man crypto,.man +./usr/share/man/man8/sgimips/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/sgimips/boot.8 man-sys-man .man +./usr/share/man/man8/sgimips/makedev.8 man-obsolete obsolete +./usr/share/man/man8/sgimips/sgivol.8 man-sys-man .man +./usr/share/man/man8/shark/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/shark/makedev.8 man-obsolete obsolete +./usr/share/man/man8/showmount.8 man-nfsclient-man .man +./usr/share/man/man8/showq.8 man-postfix-man postfix,.man +./usr/share/man/man8/shutdown.8 man-sysutil-man .man +./usr/share/man/man8/slattach.8 man-slip-man .man +./usr/share/man/man8/slip.8 man-obsolete obsolete +./usr/share/man/man8/sliplogin.8 man-slip-man .man +./usr/share/man/man8/slstats.8 man-slip-man .man +./usr/share/man/man8/smrsh.8 man-obsolete obsolete +./usr/share/man/man8/smtp.8 man-postfix-man postfix,.man +./usr/share/man/man8/smtpd.8 man-postfix-man postfix,.man +./usr/share/man/man8/spamd-setup.8 man-obsolete obsolete +./usr/share/man/man8/spamd.8 man-obsolete obsolete +./usr/share/man/man8/spamdb.8 man-obsolete obsolete +./usr/share/man/man8/spamlogd.8 man-obsolete obsolete +./usr/share/man/man8/sparc/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/sparc/binstall.8 man-sys-man .man +./usr/share/man/man8/sparc/boot.8 man-sys-man .man +./usr/share/man/man8/sparc/installboot.8 man-obsolete obsolete +./usr/share/man/man8/sparc/makedev.8 man-obsolete obsolete +./usr/share/man/man8/sparc/tadpolectl.8 man-sysutil-man .man +./usr/share/man/man8/sparc64/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/sparc64/boot.8 man-sys-man .man +./usr/share/man/man8/sparc64/installboot.8 man-obsolete obsolete +./usr/share/man/man8/sparc64/makedev.8 man-obsolete obsolete +./usr/share/man/man8/sparc64/ofwboot.8 man-sys-man .man +./usr/share/man/man8/spawn.8 man-postfix-man postfix,.man +./usr/share/man/man8/spray.8 man-rpcutil-man .man +./usr/share/man/man8/sprayd.8 man-rpcserver-man .man +./usr/share/man/man8/ssh-keysign.8 man-secsh-man crypto,.man +./usr/share/man/man8/ssh-pkcs11-helper.8 man-secsh-man crypto,.man +./usr/share/man/man8/sshd.8 man-secsh-man crypto,.man +./usr/share/man/man8/statd.8 man-nfsserver-man .man +./usr/share/man/man8/statmsg.8 man-obsolete obsolete +./usr/share/man/man8/stdethers.8 man-nis-man yp,.man +./usr/share/man/man8/stdhosts.8 man-nis-man yp,.man +./usr/share/man/man8/sti.8 man-sysutil-man .man +./usr/share/man/man8/sticky.8 man-obsolete obsolete +./usr/share/man/man8/string2key.8 man-krb5-man kerberos,.man +./usr/share/man/man8/sun2/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/sun2/boot.8 man-sys-man .man +./usr/share/man/man8/sun2/makedev.8 man-obsolete obsolete +./usr/share/man/man8/sun3/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/sun3/boot.8 man-sys-man .man +./usr/share/man/man8/sun3/installboot.8 man-obsolete obsolete +./usr/share/man/man8/sun3/makedev.8 man-obsolete obsolete +./usr/share/man/man8/sun3x man-obsolete obsolete +./usr/share/man/man8/sun3x/installboot.8 man-obsolete obsolete +./usr/share/man/man8/sunlabel.8 man-sysutil-man .man +./usr/share/man/man8/supfilesrv.8 man-sup-man .man +./usr/share/man/man8/supscan.8 man-sup-man .man +./usr/share/man/man8/supservers.8 man-sup-man .man +./usr/share/man/man8/sushi.8 man-obsolete obsolete +./usr/share/man/man8/svhlabel.8 man-sysutil-man .man +./usr/share/man/man8/swapctl.8 man-sysutil-man .man +./usr/share/man/man8/swapon.8 man-sysutil-man .man +./usr/share/man/man8/sync.8 man-sysutil-man .man +./usr/share/man/man8/sysconfd.8 man-obsolete obsolete +./usr/share/man/man8/sysctl.8 man-sysutil-man .man +./usr/share/man/man8/sysinst.8 man-sysutil-man .man +./usr/share/man/man8/syslogd.8 man-sysutil-man .man +./usr/share/man/man8/talkd.8 man-netutil-man .man +./usr/share/man/man8/tbrconfig.8 man-router-man .man +./usr/share/man/man8/tcpdchk.8 man-netutil-man .man +./usr/share/man/man8/tcpdmatch.8 man-netutil-man .man +./usr/share/man/man8/tcpdrop.8 man-netutil-man .man +./usr/share/man/man8/tcpdump.8 man-netutil-man .man +./usr/share/man/man8/telnetd.8 man-netutil-man .man +./usr/share/man/man8/tftp-proxy.8 man-pf-man pf,.man +./usr/share/man/man8/tftpd.8 man-netutil-man .man +./usr/share/man/man8/timed.8 man-timed-man .man +./usr/share/man/man8/timedc.8 man-timed-man .man +./usr/share/man/man8/tlsmgr.8 man-postfix-man postfix,crypto,.man +./usr/share/man/man8/tlsproxy.8 man-postfix-man postfix,crypto,.man +./usr/share/man/man8/tpctl.8 man-sysutil-man .man +./usr/share/man/man8/trace.8 man-postfix-man postfix,.man +./usr/share/man/man8/traceroute.8 man-netutil-man .man +./usr/share/man/man8/traceroute6.8 man-netutil-man use_inet6,.man +./usr/share/man/man8/trivial-rewrite.8 man-postfix-man postfix,.man +./usr/share/man/man8/tprof.8 man-sysutil-man .man +./usr/share/man/man8/trpt.8 man-netutil-man .man +./usr/share/man/man8/trsp.8 man-obsolete obsolete +./usr/share/man/man8/ttyflags.8 man-sysutil-man .man +./usr/share/man/man8/tunefs.8 man-sysutil-man .man +./usr/share/man/man8/umount.8 man-sysutil-man .man +./usr/share/man/man8/unlink.8 man-sysutil-man .man +./usr/share/man/man8/update.8 man-obsolete obsolete +./usr/share/man/man8/usbd.8 man-obsolete obsolete +./usr/share/man/man8/usbdevs.8 man-sysutil-man .man +./usr/share/man/man8/user.8 man-sysutil-man .man +./usr/share/man/man8/useradd.8 man-sysutil-man .man +./usr/share/man/man8/userdel.8 man-sysutil-man .man +./usr/share/man/man8/userinfo.8 man-sysutil-man .man +./usr/share/man/man8/usermod.8 man-sysutil-man .man +./usr/share/man/man8/utmp_update.8 man-sysutil-man .man +./usr/share/man/man8/uucico.8 man-obsolete obsolete +./usr/share/man/man8/uucpd.8 man-obsolete obsolete +./usr/share/man/man8/uugetty.8 man-obsolete obsolete +./usr/share/man/man8/uuxqt.8 man-obsolete obsolete +./usr/share/man/man8/vax/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/vax/boot.8 man-sys-man .man +./usr/share/man/man8/vax/crash.8 man-sys-man .man +./usr/share/man/man8/vax/drtest.8 man-sys-man .man +./usr/share/man/man8/vax/format.8 man-sys-man .man +./usr/share/man/man8/vax/installboot.8 man-obsolete obsolete +./usr/share/man/man8/vax/makedev.8 man-obsolete obsolete +./usr/share/man/man8/veriexec.8 man-sys-man .man +./usr/share/man/man8/veriexecctl.8 man-sysutil-man .man +./usr/share/man/man8/veriexecgen.8 man-sysutil-man .man +./usr/share/man/man8/verifiedexec_load.8 man-obsolete obsolete +./usr/share/man/man8/verify.8 man-postfix-man postfix,.man +./usr/share/man/man8/verify_krb5_conf.8 man-krb5-man kerberos,.man +./usr/share/man/man8/vgcfgbackup.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgcfgrestore.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgchange.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgck.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgconvert.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgcreate.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgdisplay.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgexport.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgextend.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgimport.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgmerge.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgmknodes.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgreduce.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgremove.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgrename.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgs.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgscan.8 man-lvm-man lvm,.man +./usr/share/man/man8/vgsplit.8 man-lvm-man lvm,.man +./usr/share/man/man8/vinum.8 man-obsolete obsolete +./usr/share/man/man8/vipw.8 man-sysutil-man .man +./usr/share/man/man8/virecover.8 man-sysutil-man .man +./usr/share/man/man8/virtual.8 man-postfix-man postfix,.man +./usr/share/man/man8/vmstat.8 man-obsolete obsolete +./usr/share/man/man8/vnconfig.8 man-sysutil-man .man +./usr/share/man/man8/wake.8 man-obsolete obsolete +./usr/share/man/man8/wakeonlan.8 man-netutil-man .man +./usr/share/man/man8/walnut/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/walnut/makedev.8 man-obsolete obsolete +./usr/share/man/man8/wdogctl.8 man-sysutil-man .man +./usr/share/man/man8/wiconfig.8 man-netutil-man .man +./usr/share/man/man8/wire-test.8 man-netutil-man .man +./usr/share/man/man8/wizd.8 man-sysutil-man .man +./usr/share/man/man8/wlanctl.8 man-netutil-man .man +./usr/share/man/man8/wpa_cli.8 man-netutil-man .man +./usr/share/man/man8/wpa_passphrase.8 man-netutil-man .man +./usr/share/man/man8/wpa_supplicant.8 man-netutil-man .man +./usr/share/man/man8/wsconscfg.8 man-sysutil-man .man +./usr/share/man/man8/wsconsctl.8 man-sysutil-man .man +./usr/share/man/man8/wsfontload.8 man-sysutil-man .man +./usr/share/man/man8/wsmoused.8 man-sysutil-man .man +./usr/share/man/man8/wsmuxctl.8 man-sysutil-man .man +./usr/share/man/man8/x68k/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/x68k/boot.8 man-sys-man .man +./usr/share/man/man8/x68k/loadbsd.8 man-sys-man .man +./usr/share/man/man8/x68k/loadbsd.x.8 man-sys-man .man +./usr/share/man/man8/x68k/makedev.8 man-obsolete obsolete +./usr/share/man/man8/x68k/memswitch.8 man-sysutil-man .man +./usr/share/man/man8/x68k/newdisk.8 man-sysutil-man .man +./usr/share/man/man8/x68k/poffd.8 man-obsolete obsolete +./usr/share/man/man8/x68k/rtcalarm.8 man-obsolete obsolete +./usr/share/man/man8/x86_64/MAKEDEV.8 man-obsolete obsolete +./usr/share/man/man8/x86_64/makedev.8 man-obsolete obsolete +./usr/share/man/man8/xntpd.8 man-obsolete obsolete +./usr/share/man/man8/xntpdc.8 man-obsolete obsolete +./usr/share/man/man8/yp.8 man-nis-man .man +./usr/share/man/man8/ypbind.8 man-nis-man yp,.man +./usr/share/man/man8/ypinit.8 man-nis-man yp,.man +./usr/share/man/man8/yppasswdd.8 man-nis-man yp,.man +./usr/share/man/man8/yppoll.8 man-nis-man yp,.man +./usr/share/man/man8/yppush.8 man-nis-man yp,.man +./usr/share/man/man8/ypserv.8 man-nis-man yp,.man +./usr/share/man/man8/ypset.8 man-nis-man yp,.man +./usr/share/man/man8/yptest.8 man-nis-man yp,.man +./usr/share/man/man8/ypxfr.8 man-nis-man yp,.man +./usr/share/man/man8/zdb.8 man-zfs-man zfs,.man +./usr/share/man/man8/zdump.8 man-sysutil-man .man +./usr/share/man/man8/zfs.8 man-zfs-man zfs,.man +./usr/share/man/man8/zic.8 man-sysutil-man .man +./usr/share/man/man8/zpool.8 man-zfs-man zfs,.man +./usr/share/man/man8/zzz.8 man-sysutil-man .man +./usr/share/man/man9/boot.9 man-obsolete obsolete +./usr/share/man/style.css man-mdocml-htmlman html diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/insn-constants.h b/distrib/sets/lists/minix/md.i386 similarity index 100% rename from external/gpl3/gcc/lib/libgcc/libgcc/insn-constants.h rename to distrib/sets/lists/minix/md.i386 diff --git a/distrib/sets/lists/minix/mi b/distrib/sets/lists/minix/mi new file mode 100644 index 000000000..bf737105d --- /dev/null +++ b/distrib/sets/lists/minix/mi @@ -0,0 +1,4509 @@ +. minix-sys +./bin/cat minix-sys +./bin/cd minix-sys +./bin/chmod minix-sys +./bin/clone minix-sys +./bin/command minix-sys +./bin/cpdir minix-sys +./bin/cpio minix-sys +./bin/cp minix-sys +./bin/date minix-sys +./bin/dev2name minix-sys +./bin/echo minix-sys +./bin/ed minix-sys +./bin/expr minix-sys +./bin/false minix-sys +./bin/getopts minix-sys +./bin/getty minix-sys +./bin/halt minix-sys +./bin/intr minix-sys +./bin/ln minix-sys +./bin/loadkeys minix-sys +./bin/ls minix-sys +./bin/[ minix-sys +./bin minix-sys +./bin/mkdir minix-sys +./bin/mount minix-sys +./bin/mv minix-sys +./bin/netconf minix-sys +./bin/pax minix-sys +./bin/printconfig minix-sys +./bin/printroot minix-sys +./bin/pwd minix-sys +./bin/readclock minix-sys +./bin/read minix-sys +./bin/reboot minix-sys +./bin/rmdir minix-sys +./bin/rm minix-sys +./bin/sed minix-sys +./bin/service minix-sys +./bin/setup minix-sys +./bin/sh minix-sys +./bin/shutdown minix-sys +./bin/sync minix-sys +./bin/sysenv minix-sys +./bin/test minix-sys +./bin/true minix-sys +./bin/umask minix-sys +./bin/umount minix-sys +./bin/update_bootcfg minix-sys +./bin/updateboot minix-sys +./bin/wait minix-sys +./boot/minix_default minix-sys +./boot/minix minix-sys +./boot minix-sys +./dev minix-sys +./etc/boot.cfg.default minix-sys +./etc/defaults/minix.rc.conf minix-sys +./etc/defaults minix-sys +./etc/defaults/rc.conf minix-sys +./etc/devmand minix-sys +./etc/devmand/scripts/block minix-sys +./etc/devmand/scripts minix-sys +./etc/devmand/scripts/singlechar minix-sys +./etc/group minix-sys +./etc/hostname.file minix-sys +./etc/inet.conf minix-sys +./etc/make.conf minix-sys +./etc/man.conf minix-sys +./etc/master.passwd minix-sys +./etc minix-sys +./etc/motd minix-sys +./etc/mtab minix-sys +./etc/mtree minix-sys +./etc/mtree/NetBSD.dist minix-sys +./etc/mtree/special minix-sys +./etc/passwd minix-sys +./etc/profile minix-sys +./etc/protocols minix-sys +./etc/pwd.db minix-sys +./etc/rc.cd minix-sys +./etc/rc.conf minix-sys +./etc/rc.daemons.dist minix-sys +./etc/rc minix-sys +./etc/rc.subr minix-sys +./etc/release minix-sys +./etc/resolv.conf minix-sys +./etc/rs.inet minix-sys +./etc/rs.single minix-sys +./etc/services minix-sys +./etc/shells minix-sys +./etc/spwd.db minix-sys +./etc/syslog.conf minix-sys +./etc/system.conf.d/atl2 minix-sys +./etc/system.conf.d/dec21140A minix-sys +./etc/system.conf.d/e1000 minix-sys +./etc/system.conf.d/fxp minix-sys +./etc/system.conf.d/ipc minix-sys +./etc/system.conf.d/lance minix-sys +./etc/system.conf.d minix-sys +./etc/system.conf.d/rtl8139 minix-sys +./etc/system.conf.d/rtl8169 minix-sys +./etc/system.conf minix-sys +./etc/termcap minix-sys +./etc/ttys minix-sys +./etc/utmp minix-sys +./home minix-sys +./libexec/ld-elf.so.1 minix-sys +./libexec minix-sys +./lib minix-sys +./mnt minix-sys +./proc minix-sys +./root/.ashrc minix-sys +./root/.exrc minix-sys +./root minix-sys +./root/.profile minix-sys +./sbin/ahci minix-sys +./sbin/at_wini minix-sys +./sbin/devman minix-sys +./sbin/ext2 minix-sys +./sbin/floppy minix-sys +./sbin/fsck_ext2fs minix-sys +./sbin/fsck.ext2 minix-sys +./sbin/fsck.mfs minix-sys +./sbin/fsck minix-sys +./sbin/hgfs minix-sys +./sbin/is minix-sys +./sbin/isofs minix-sys +./sbin/mfs minix-sys +./sbin minix-sys +./sbin/mkfs.ext2 minix-sys +./sbin/mkfs.mfs minix-sys +./sbin/mknod minix-sys +./sbin/newfs_ext2fs minix-sys +./sbin/newfs_ext2 minix-sys +./sbin/procfs minix-sys +./sbin/readclock.drv minix-sys +./sbin/vbfs minix-sys +./sys minix-sys +./tmp minix-sys +./usr/adm minix-sys +./usr/adm/old minix-sys +./usr/ast/.ashrc minix-sys +./usr/ast/.exrc minix-sys +./usr/ast minix-sys +./usr/ast/.profile minix-sys +./usr/bin/acknm minix-sys +./usr/bin/acksize minix-sys +./usr/bin/add_route minix-sys +./usr/bin/apropos minix-sys +./usr/bin/arch minix-sys +./usr/bin/arp minix-sys +./usr/bin/at minix-sys +./usr/bin/atnormalize minix-sys +./usr/bin/autopart minix-sys +./usr/bin/awk minix-sys +./usr/bin/backup minix-sys +./usr/bin/badblocks minix-sys obsolete +./usr/bin/banner minix-sys +./usr/bin/basename minix-sys +./usr/bin/bsdtar minix-sys +./usr/bin/bsfilt minix-sys +./usr/bin/btrace minix-sys +./usr/bin/bunzip2 minix-sys +./usr/bin/bzcat minix-sys +./usr/bin/bzip2 minix-sys +./usr/bin/bzip2recover minix-sys +./usr/bin/cal minix-sys +./usr/bin/cawf minix-sys +./usr/bin/cdprobe minix-sys +./usr/bin/checkhier minix-sys obsolete +./usr/bin/chfn minix-sys +./usr/bin/chgrp minix-sys +./usr/bin/chmod minix-sys +./usr/bin/chown minix-sys +./usr/bin/chpass minix-sys +./usr/bin/chsh minix-sys +./usr/bin/ci minix-sys +./usr/bin/cksum minix-sys +./usr/bin/cleantmp minix-sys +./usr/bin/clear minix-sys +./usr/bin/clr minix-sys +./usr/bin/cmp minix-sys +./usr/bin/colcrt minix-sys +./usr/bin/co minix-sys +./usr/bin/comm minix-sys +./usr/bin/compress minix-sys +./usr/bin/cprofalyze minix-sys +./usr/bin/crc minix-sys +./usr/bin/cron minix-sys +./usr/bin/crontab minix-sys +./usr/bin/ctags minix-sys +./usr/bin/cut minix-sys +./usr/bin/datasizes minix-sys +./usr/bin/dd minix-sys +./usr/bin/decomp16 minix-sys +./usr/bin/del_route minix-sys +./usr/bin/DESCRIBE minix-sys +./usr/bin/devmand minix-sys +./usr/bin/devsize minix-sys +./usr/bin/df minix-sys +./usr/bin/dhcpd minix-sys +./usr/bin/dhrystone minix-sys +./usr/bin/diff minix-sys +./usr/bin/dirname minix-sys +./usr/bin/diskctl minix-sys +./usr/bin/dosdir minix-sys +./usr/bin/dosread minix-sys +./usr/bin/doswrite minix-sys +./usr/bin/du minix-sys +./usr/bin/dumpcore minix-sys +./usr/bin/egrep minix-sys +./usr/bin/eject minix-sys +./usr/bin/elvis minix-sys +./usr/bin/elvprsv minix-sys +./usr/bin/elvrec minix-sys +./usr/bin/env minix-sys +./usr/bin/ex minix-sys +./usr/bin/expand minix-sys +./usr/bin/factor minix-sys +./usr/bin/fbdctl minix-sys +./usr/bin/fdisk minix-sys +./usr/bin/fetch minix-sys +./usr/bin/fgrep minix-sys +./usr/bin/file minix-sys +./usr/bin/find minix-sys +./usr/bin/finger minix-sys +./usr/bin/fix minix-sys +./usr/bin/flex++ minix-sys +./usr/bin/flex minix-sys +./usr/bin/fmt minix-sys +./usr/bin/fold minix-sys +./usr/bin/format minix-sys +./usr/bin/fortune minix-sys +./usr/bin/fstat minix-sys +./usr/bin/ftp minix-sys +./usr/bin/gcore minix-sys +./usr/bin/gcov-pull minix-sys +./usr/bin/genassym minix-sys +./usr/bin/grep minix-sys +./usr/bin/groups minix-sys +./usr/bin/gunzip minix-sys +./usr/bin/gzcat minix-sys +./usr/bin/gzexe minix-sys +./usr/bin/gzip minix-sys +./usr/bin/halt minix-sys +./usr/bin/head minix-sys +./usr/bin/hexdump minix-sys +./usr/bin/hostaddr minix-sys +./usr/bin/host minix-sys +./usr/bin/id minix-sys +./usr/bin/ifconfig minix-sys +./usr/bin/ifdef minix-sys +./usr/bin/indent minix-sys +./usr/bin/in.fingerd minix-sys +./usr/bin/in.rshd minix-sys +./usr/bin/install minix-sys +./usr/bin/in.telnetd minix-sys +./usr/bin/ipcrm minix-sys +./usr/bin/ipcs minix-sys +./usr/bin/irdpd minix-sys +./usr/bin/isodir minix-sys +./usr/bin/isoinfo minix-sys +./usr/bin/isoread minix-sys +./usr/bin/join minix-sys +./usr/bin/kill minix-sys +./usr/bin/last minix-sys +./usr/bin/ldd minix-sys +./usr/bin/lessecho minix-sys +./usr/bin/lesskey minix-sys +./usr/bin/less minix-sys +./usr/bin/lex minix-sys +./usr/bin/loadfont minix-sys +./usr/bin/loadramdisk minix-sys +./usr/bin/logger minix-sys +./usr/bin/login minix-sys +./usr/bin/look minix-sys +./usr/bin/lpd minix-sys +./usr/bin/lp minix-sys +./usr/bin/lspci minix-sys +./usr/bin/lstat minix-sys +./usr/bin/m4 minix-sys +./usr/bin/mail minix-sys +./usr/bin/MAKEDEV minix-sys +./usr/bin/make minix-sys +./usr/bin/mandoc minix-sys +./usr/bin/man minix-sys +./usr/bin/mesg minix-sys +./usr/bin/mined minix-sys +./usr/bin/ministat minix-sys +./usr/bin minix-sys +./usr/bin/mkdep minix-sys +./usr/bin/mkdir minix-sys +./usr/bin/mkfifo minix-sys +./usr/bin/mkproto minix-sys +./usr/bin/mktemp minix-sys +./usr/bin/more minix-sys +./usr/bin/mt minix-sys +./usr/bin/newgrp minix-sys +./usr/bin/nice minix-sys +./usr/bin/nohup minix-sys +./usr/bin/nonamed minix-sys +./usr/bin/nroff minix-sys +./usr/bin/od minix-sys +./usr/bin/page minix-sys +./usr/bin/partition minix-sys +./usr/bin/part minix-sys +./usr/bin/passwd minix-sys +./usr/bin/paste minix-sys +./usr/bin/patch minix-sys +./usr/bin/pax minix-sys obsolete +./usr/bin/ping minix-sys +./usr/bin/pkgin_cd minix-sys +./usr/bin/playwave minix-sys +./usr/bin/postinstall minix-sys +./usr/bin/poweroff minix-sys +./usr/bin/prep minix-sys +./usr/bin/printenv minix-sys +./usr/bin/printf minix-sys +./usr/bin/pr minix-sys +./usr/bin/profile minix-sys +./usr/bin/progressbar minix-sys +./usr/bin/pr_routes minix-sys +./usr/bin/ps minix-sys +./usr/bin/ramdisk minix-sys +./usr/bin/rarpd minix-sys +./usr/bin/rawspeed minix-sys +./usr/bin/rcp minix-sys +./usr/bin/rdate minix-sys +./usr/bin/readall minix-sys obsolete +./usr/bin/readlink minix-sys +./usr/bin/reboot minix-sys +./usr/bin/recwave minix-sys +./usr/bin/ref minix-sys +./usr/bin/remsync minix-sys +./usr/bin/repartition minix-sys +./usr/bin/restore minix-sys +./usr/bin/rev minix-sys +./usr/bin/rget minix-sys +./usr/bin/rlogin minix-sys +./usr/bin/rotate minix-sys +./usr/bin/rput minix-sys +./usr/bin/rsh minix-sys +./usr/bin/rz minix-sys +./usr/bin/screendump minix-sys +./usr/bin/sed minix-sys +./usr/bin/seq minix-sys +./usr/bin/shar minix-sys +./usr/bin/shutdown minix-sys +./usr/bin/sleep minix-sys +./usr/bin/slip minix-sys +./usr/bin/sort minix-sys +./usr/bin/spell minix-sys +./usr/bin/split minix-sys +./usr/bin/sprofalyze minix-sys +./usr/bin/sprofdiff minix-sys +./usr/bin/srccrc minix-sys +./usr/bin/stat minix-sys +./usr/bin/stty minix-sys +./usr/bin/su minix-sys +./usr/bin/sum minix-sys +./usr/bin/svclog minix-sys +./usr/bin/svrctl minix-sys +./usr/bin/swifi minix-sys +./usr/bin/synctree minix-sys +./usr/bin/syslogd minix-sys +./usr/bin/sz minix-sys +./usr/bin/tail minix-sys +./usr/bin/tcpd minix-sys +./usr/bin/tcpdp minix-sys +./usr/bin/tcpstat minix-sys +./usr/bin/tee minix-sys +./usr/bin/termcap minix-sys +./usr/bin/term minix-sys +./usr/bin/tget minix-sys +./usr/bin/tic minix-sys +./usr/bin/time minix-sys +./usr/bin/top minix-sys +./usr/bin/touch minix-sys +./usr/bin/tr minix-sys +./usr/bin/truncate minix-sys +./usr/bin/tsort minix-sys +./usr/bin/ttn minix-sys +./usr/bin/tty minix-sys +./usr/bin/udpstat minix-sys +./usr/bin/uname minix-sys +./usr/bin/uncompress minix-sys +./usr/bin/unexpand minix-sys +./usr/bin/uniq minix-sys +./usr/bin/unstack minix-sys +./usr/bin/update minix-sys +./usr/bin/uptime minix-sys +./usr/bin/uudecode minix-sys +./usr/bin/uud minix-sys +./usr/bin/uue minix-sys +./usr/bin/uuencode minix-sys +./usr/bin/version minix-sys +./usr/bin/vol minix-sys +./usr/bin/vi minix-sys +./usr/bin/wc minix-sys +./usr/bin/whereis minix-sys +./usr/bin/which minix-sys +./usr/bin/whoami minix-sys +./usr/bin/who minix-sys +./usr/bin/worldstone minix-sys +./usr/bin/writeisofs minix-sys +./usr/bin/write minix-sys +./usr/bin/xargs minix-sys +./usr/bin/yacc minix-sys +./usr/bin/yes minix-sys +./usr/bin/zcat minix-sys +./usr/bin/zcmp minix-sys +./usr/bin/zdiff minix-sys +./usr/bin/zdump minix-sys +./usr/bin/zegrep minix-sys +./usr/bin/zfgrep minix-sys +./usr/bin/zforce minix-sys +./usr/bin/zgrep minix-sys +./usr/bin/zmore minix-sys +./usr/bin/znew minix-sys +./usr/etc/daily minix-sys +./usr/etc/dhcptags.conf minix-sys +./usr/etc minix-sys +./usr/etc/rc minix-sys +./usr/include/aio.h minix-sys +./usr/include/a.out.h minix-sys +./usr/include/archive_entry.h minix-sys +./usr/include/archive.h minix-sys +./usr/include/ar.h minix-sys +./usr/include/arpa/ftp.h minix-sys +./usr/include/arpa/inet.h minix-sys +./usr/include/arpa minix-sys +./usr/include/arpa/nameser_compat.h minix-sys +./usr/include/arpa/nameser.h minix-sys +./usr/include/arpa/telnet.h minix-sys +./usr/include/arpa/tftp.h minix-sys +./usr/include/assert.h minix-sys +./usr/include/atomic.h minix-sys +./usr/include/bitstring.h minix-sys +./usr/include/bm.h minix-sys +./usr/include/bzlib.h minix-sys +./usr/include/cdbr.h minix-sys +./usr/include/cdbw.h minix-sys +./usr/include/compat/a.out.h minix-sys +./usr/include/compat/machine minix-sys +./usr/include/compat minix-sys +./usr/include/complex.h minix-sys +./usr/include/configfile.h minix-sys +./usr/include/cpio.h minix-sys +./usr/include/ctype.h minix-sys +./usr/include/curses.h minix-sys +./usr/include/db.h minix-sys +./usr/include/ddekit/assert.h minix-sys +./usr/include/ddekit/attribs.h minix-sys +./usr/include/ddekit/condvar.h minix-sys +./usr/include/ddekit/ddekit.h minix-sys +./usr/include/ddekit/debug.h minix-sys +./usr/include/ddekit/initcall.h minix-sys +./usr/include/ddekit/inline.h minix-sys +./usr/include/ddekit/interrupt.h minix-sys +./usr/include/ddekit/lock.h minix-sys +./usr/include/ddekit/memory.h minix-sys +./usr/include/ddekit/minix minix-sys +./usr/include/ddekit/minix/msg_queue.h minix-sys +./usr/include/ddekit/minix/pci.h minix-sys +./usr/include/ddekit minix-sys +./usr/include/ddekit/panic.h minix-sys +./usr/include/ddekit/pci.h minix-sys +./usr/include/ddekit/pgtab.h minix-sys +./usr/include/ddekit/printf.h minix-sys +./usr/include/ddekit/resources.h minix-sys +./usr/include/ddekit/semaphore.h minix-sys +./usr/include/ddekit/thread.h minix-sys +./usr/include/ddekit/timer.h minix-sys +./usr/include/ddekit/types.h minix-sys +./usr/include/ddekit/usb.h minix-sys +./usr/include/dirent.h minix-sys +./usr/include/disktab.h minix-sys +./usr/include/dlfcn.h minix-sys +./usr/include/elfdefinitions.h minix-sys +./usr/include/env.h minix-sys +./usr/include/err.h minix-sys +./usr/include/errno.h minix-sys +./usr/include/fcntl.h minix-sys +./usr/include/fenv.h minix-sys +./usr/include/fetch.h minix-sys +./usr/include/float.h minix-sys +./usr/include/fmtmsg.h minix-sys +./usr/include/fnmatch.h minix-sys +./usr/include/fstab.h minix-sys +./usr/include/fts.h minix-sys +./usr/include/ftw.h minix-sys +./usr/include/fuse.h minix-sys +./usr/include/fuse_opt.h minix-sys +./usr/include/gelf.h minix-sys +./usr/include/getopt.h minix-sys +./usr/include/g++/FlexLexer.h minix-sys +./usr/include/glob.h minix-sys +./usr/include/g++ minix-sys +./usr/include/grp.h minix-sys +./usr/include/hesiod.h minix-sys +./usr/include/i386/ansi.h minix-sys +./usr/include/i386/archconst.h minix-sys +./usr/include/i386/archtypes.h minix-sys +./usr/include/i386/asm.h minix-sys +./usr/include/i386/bios.h minix-sys +./usr/include/i386/bswap.h minix-sys +./usr/include/i386/byte_swap.h minix-sys +./usr/include/i386/cdefs.h minix-sys +./usr/include/i386/cmos.h minix-sys +./usr/include/i386/compat_jmp_buf.h minix-sys +./usr/include/i386/cpu.h minix-sys +./usr/include/i386/disklabel.h minix-sys +./usr/include/i386/diskparm.h minix-sys +./usr/include/i386/elf.h minix-sys +./usr/include/i386/elf_machdep.h minix-sys +./usr/include/i386/endian.h minix-sys +./usr/include/i386/endian_machdep.h minix-sys +./usr/include/i386/fenv.h minix-sys +./usr/include/i386/float.h minix-sys +./usr/include/i386/fpu.h minix-sys +./usr/include/i386/ieeefp.h minix-sys +./usr/include/i386/ieee.h minix-sys +./usr/include/i386/int86.h minix-sys +./usr/include/i386/int_const.h minix-sys +./usr/include/i386/interrupt.h minix-sys +./usr/include/i386/int_fmtio.h minix-sys +./usr/include/i386/int_limits.h minix-sys +./usr/include/i386/int_mwgwtypes.h minix-sys +./usr/include/i386/int_types.h minix-sys +./usr/include/i386/ipcconst.h minix-sys +./usr/include/i386/limits.h minix-sys +./usr/include/i386/math.h minix-sys +./usr/include/i386/mcontext.h minix-sys +./usr/include/i386/memory.h minix-sys +./usr/include/i386 minix-sys +./usr/include/i386/multiboot.h minix-sys +./usr/include/i386/mutex.h minix-sys +./usr/include/i386/npx.h minix-sys +./usr/include/i386/param.h minix-sys +./usr/include/i386/partition.h minix-sys +./usr/include/i386/pci_amd.h minix-sys +./usr/include/i386/pci.h minix-sys +./usr/include/i386/pci_intel.h minix-sys +./usr/include/i386/pci_sis.h minix-sys +./usr/include/i386/pci_via.h minix-sys +./usr/include/i386/ports.h minix-sys +./usr/include/i386/profile.h minix-sys +./usr/include/i386/setjmp.h minix-sys +./usr/include/i386/signal.h minix-sys +./usr/include/i386/stackframe.h minix-sys +./usr/include/i386/stdarg.h minix-sys +./usr/include/i386/types.h minix-sys +./usr/include/i386/vm.h minix-sys +./usr/include/i386/vmparam.h minix-sys +./usr/include/i386/wchar_limits.h minix-sys +./usr/include/iconv.h minix-sys +./usr/include/ieeefp.h minix-sys +./usr/include/ifaddrs.h minix-sys +./usr/include/inttypes.h minix-sys +./usr/include/iso646.h minix-sys +./usr/include/langinfo.h minix-sys +./usr/include/libelf.h minix-sys +./usr/include/libexec.h minix-sys +./usr/include/libgen.h minix-sys +./usr/include/lib.h minix-sys +./usr/include/libutil.h minix-sys +./usr/include/limits.h minix-sys +./usr/include/link_aout.h minix-sys +./usr/include/link_elf.h minix-sys +./usr/include/link.h minix-sys +./usr/include/locale.h minix-sys +./usr/include/login_cap.h minix-sys +./usr/include/lzma/base.h minix-sys +./usr/include/lzma/bcj.h minix-sys +./usr/include/lzma/block.h minix-sys +./usr/include/lzma/check.h minix-sys +./usr/include/lzma/container.h minix-sys +./usr/include/lzma/delta.h minix-sys +./usr/include/lzma/filter.h minix-sys +./usr/include/lzma/hardware.h minix-sys +./usr/include/lzma.h minix-sys +./usr/include/lzma/index_hash.h minix-sys +./usr/include/lzma/index.h minix-sys +./usr/include/lzma/lzma.h minix-sys +./usr/include/lzma minix-sys +./usr/include/lzma/stream_flags.h minix-sys +./usr/include/lzma/version.h minix-sys +./usr/include/lzma/vli.h minix-sys +./usr/include/machine minix-sys +./usr/include/magic.h minix-sys +./usr/include/malloc.h minix-sys +./usr/include/math.h minix-sys +./usr/include/md2.h minix-sys +./usr/include/md4.h minix-sys +./usr/include/md5.h minix-sys +./usr/include/memory.h minix-sys +./usr/include/minix/acpi.h minix-sys +./usr/include/minix/audio_fw.h minix-sys +./usr/include/minix/bdev.h minix-sys +./usr/include/minix/bitmap.h minix-sys +./usr/include/minix/blockdriver.h minix-sys +./usr/include/minix/blockdriver_mt.h minix-sys +./usr/include/minix/btrace.h minix-sys +./usr/include/minix/callnr.h minix-sys +./usr/include/minix/chardriver.h minix-sys +./usr/include/minix/com.h minix-sys +./usr/include/minix/compiler.h minix-sys +./usr/include/minix/config.h minix-sys +./usr/include/minix/const.h minix-sys +./usr/include/minix/cpufeature.h minix-sys +./usr/include/minix/crtso.h minix-sys +./usr/include/minix/debug.h minix-sys +./usr/include/minix/devio.h minix-sys +./usr/include/minix/devman.h minix-sys +./usr/include/minix/dirent.h minix-sys +./usr/include/minix/dmap.h minix-sys +./usr/include/minix/driver.h minix-sys +./usr/include/minix/drivers.h minix-sys +./usr/include/minix/drvlib.h minix-sys +./usr/include/minix/ds.h minix-sys +./usr/include/minix/endpoint.h minix-sys +./usr/include/minix/fslib.h minix-sys +./usr/include/minix/gcov.h minix-sys +./usr/include/minix/hash.h minix-sys +./usr/include/minix/hgfs.h minix-sys +./usr/include/minix/input.h minix-sys +./usr/include/minix/ioctl.h minix-sys +./usr/include/minix/ipcconst.h minix-sys +./usr/include/minix/ipc.h minix-sys +./usr/include/minix/keymap.h minix-sys +./usr/include/minix/libminixfs.h minix-sys +./usr/include/minix/limits.h minix-sys +./usr/include/minix minix-sys +./usr/include/minix/minlib.h minix-sys +./usr/include/minix/mount.h minix-sys +./usr/include/minix/mthread.h minix-sys +./usr/include/minix/netdriver.h minix-sys +./usr/include/minix/netsock.h minix-sys +./usr/include/minix/optset.h minix-sys +./usr/include/minix/param.h minix-sys +./usr/include/minix/partition.h minix-sys +./usr/include/minix/paths.h minix-sys +./usr/include/minix/portio.h minix-sys +./usr/include/minix/priv.h minix-sys +./usr/include/minix/procfs.h minix-sys +./usr/include/minix/profile.h minix-sys +./usr/include/minix/queryparam.h minix-sys +./usr/include/minix/rs.h minix-sys +./usr/include/minix/safecopies.h minix-sys +./usr/include/minix/sched.h minix-sys +./usr/include/minix/sef.h minix-sys +./usr/include/minix/sffs.h minix-sys +./usr/include/minix/sound.h minix-sys +./usr/include/minix/spin.h minix-sys +./usr/include minix-sys +./usr/include/minix/sys_config.h minix-sys +./usr/include/minix/sysinfo.h minix-sys +./usr/include/minix/syslib.h minix-sys +./usr/include/minix/sysutil.h minix-sys +./usr/include/minix/termios.h minix-sys +./usr/include/minix/timers.h minix-sys +./usr/include/minix/tty.h minix-sys +./usr/include/minix/type.h minix-sys +./usr/include/minix/types.h minix-sys +./usr/include/minix/u64.h minix-sys +./usr/include/minix/usb_ch9.h minix-sys +./usr/include/minix/usb.h minix-sys +./usr/include/minix/vassert.h minix-sys +./usr/include/minix/vboxfs.h minix-sys +./usr/include/minix/vbox.h minix-sys +./usr/include/minix/vboxif.h minix-sys +./usr/include/minix/vboxtype.h minix-sys +./usr/include/minix/vfsif.h minix-sys +./usr/include/minix/vm.h minix-sys +./usr/include/minix/vtreefs.h minix-sys +./usr/include/mntopts.h minix-sys +./usr/include/monetary.h minix-sys +./usr/include/mpool.h minix-sys +./usr/include/mqueue.h minix-sys +./usr/include/ndbm.h minix-sys +./usr/include/netconfig.h minix-sys +./usr/include/netdb.h minix-sys +./usr/include/net/ethertypes.h minix-sys +./usr/include/net/gen/arp_io.h minix-sys +./usr/include/net/gen/dhcp.h minix-sys +./usr/include/net/gen/ether.h minix-sys +./usr/include/net/gen/eth_hdr.h minix-sys +./usr/include/net/gen/eth_io.h minix-sys +./usr/include/net/gen/icmp_hdr.h minix-sys +./usr/include/net/gen/icmp.h minix-sys +./usr/include/net/gen/if_ether.h minix-sys +./usr/include/net/gen/inet.h minix-sys +./usr/include/net/gen/in.h minix-sys +./usr/include/net/gen/ip_hdr.h minix-sys +./usr/include/net/gen/ip_io.h minix-sys +./usr/include/net/gen minix-sys +./usr/include/net/gen/nameser.h minix-sys +./usr/include/net/gen/netdb.h minix-sys +./usr/include/net/gen/oneCsum.h minix-sys +./usr/include/net/gen/psip_hdr.h minix-sys +./usr/include/net/gen/psip_io.h minix-sys +./usr/include/net/gen/resolv.h minix-sys +./usr/include/net/gen/rip.h minix-sys +./usr/include/net/gen/route.h minix-sys +./usr/include/net/gen/socket.h minix-sys +./usr/include/net/gen/tcp_hdr.h minix-sys +./usr/include/net/gen/tcp.h minix-sys +./usr/include/net/gen/tcp_io.h minix-sys +./usr/include/net/gen/udp_hdr.h minix-sys +./usr/include/net/gen/udp.h minix-sys +./usr/include/net/gen/udp_io_hdr.h minix-sys +./usr/include/net/gen/udp_io.h minix-sys +./usr/include/net/gen/vjhc.h minix-sys +./usr/include/netgroup.h minix-sys +./usr/include/net/hton.h minix-sys +./usr/include/net/if_ether.h minix-sys +./usr/include/net/if.h minix-sys +./usr/include/netinet6/in6.h minix-sys +./usr/include/netinet6 minix-sys +./usr/include/netinet/in.h minix-sys +./usr/include/netinet minix-sys +./usr/include/netinet/tcp.h minix-sys +./usr/include/net minix-sys +./usr/include/net/netlib.h minix-sys +./usr/include/nlist.h minix-sys +./usr/include/nl_types.h minix-sys +./usr/include/nsswitch.h minix-sys +./usr/include/objc minix-sys obsolete +./usr/include/paths.h minix-sys +./usr/include/poll.h minix-sys +./usr/include/prop minix-sys +./usr/include/prop/plistref.h minix-sys +./usr/include/prop/prop_array.h minix-sys +./usr/include/prop/prop_bool.h minix-sys +./usr/include/prop/prop_data.h minix-sys +./usr/include/prop/prop_dictionary.h minix-sys +./usr/include/prop/prop_ingest.h minix-sys +./usr/include/prop/proplib.h minix-sys +./usr/include/prop/prop_number.h minix-sys +./usr/include/prop/prop_object.h minix-sys +./usr/include/prop/prop_string.h minix-sys +./usr/include/protocols/dumprestore.h minix-sys +./usr/include/protocols minix-sys +./usr/include/protocols/routed.h minix-sys +./usr/include/protocols/rwhod.h minix-sys +./usr/include/protocols/talkd.h minix-sys +./usr/include/protocols/timed.h minix-sys +./usr/include/puffs.h minix-sys +./usr/include/puffs_msgif.h minix-sys +./usr/include/pwd.h minix-sys +./usr/include/randomid.h minix-sys +./usr/include/ranlib.h minix-sys +./usr/include/re_comp.h minix-sys +./usr/include/regex.h minix-sys +./usr/include/regexp.h minix-sys +./usr/include/resolv.h minix-sys +./usr/include/res_update.h minix-sys +./usr/include/rmd160.h minix-sys +./usr/include/rmt.h minix-sys +./usr/include/rpcsvc minix-sys +./usr/include/rpcsvc/ypclnt.h minix-sys +./usr/include/rpcsvc/yp_prot.h minix-sys +./usr/include/sched.h minix-sys +./usr/include/search.h minix-sys +./usr/include/semaphore.h minix-sys +./usr/include/setjmp.h minix-sys +./usr/include/sgtty.h minix-sys +./usr/include/sha1.h minix-sys +./usr/include/sha2.h minix-sys +./usr/include/signal.h minix-sys +./usr/include/ssp minix-sys +./usr/include/ssp/ssp.h minix-sys +./usr/include/ssp/stdio.h minix-sys +./usr/include/ssp/string.h minix-sys +./usr/include/ssp/strings.h minix-sys +./usr/include/ssp/unistd.h minix-sys +./usr/include/stab.h minix-sys +./usr/include/stdarg.h minix-sys +./usr/include/stdbool.h minix-sys +./usr/include/stddef.h minix-sys +./usr/include/stdint.h minix-sys +./usr/include/stdio.h minix-sys +./usr/include/stdlib.h minix-sys +./usr/include/string.h minix-sys +./usr/include/stringlist.h minix-sys +./usr/include/strings.h minix-sys +./usr/include/struct.h minix-sys +./usr/include/sys/ansi.h minix-sys +./usr/include/sys/asynchio.h minix-sys +./usr/include/sys/atomic.h minix-sys +./usr/include/sys/bitops.h minix-sys +./usr/include/sys/bootblock.h minix-sys +./usr/include/sys/bswap.h minix-sys +./usr/include/sys/cdefs_aout.h minix-sys +./usr/include/sys/cdefs_elf.h minix-sys +./usr/include/sys/cdefs.h minix-sys +./usr/include/sys/ctype_bits.h minix-sys +./usr/include/sys/ctype_inline.h minix-sys +./usr/include/sys/dirent.h minix-sys +./usr/include/sys/disk.h minix-sys +./usr/include/sys/disklabel_gpt.h minix-sys +./usr/include/sys/disklabel.h minix-sys +./usr/include/sys/dkbad.h minix-sys +./usr/include/sys/dkio.h minix-sys +./usr/include/sys/elf64.h minix-sys +./usr/include/sys/elf_common.h minix-sys +./usr/include/sys/elf_core.h minix-sys +./usr/include/sys/elf_generic.h minix-sys +./usr/include/sys/endian.h minix-sys +./usr/include/sys/errno.h minix-sys +./usr/include/sys/exec_elf.h minix-sys +./usr/include/sys/exec.h minix-sys +./usr/include/sysexits.h minix-sys +./usr/include/sys/extattr.h minix-sys +./usr/include/sys/fcntl.h minix-sys +./usr/include/sys/fd_set.h minix-sys +./usr/include/sys/featuretest.h minix-sys +./usr/include/sys/file.h minix-sys +./usr/include/sys/float_ieee754.h minix-sys +./usr/include/sys/gcq.h minix-sys +./usr/include/sys/gmon.h minix-sys +./usr/include/sys/hash.h minix-sys +./usr/include/sys/ieee754.h minix-sys +./usr/include/sys/inttypes.h minix-sys +./usr/include/sys/ioc_block.h minix-sys +./usr/include/sys/ioccom.h minix-sys +./usr/include/sys/ioc_disk.h minix-sys +./usr/include/sys/ioc_fbd.h minix-sys +./usr/include/sys/ioc_file.h minix-sys +./usr/include/sys/ioc_memory.h minix-sys +./usr/include/sys/ioc_net.h minix-sys +./usr/include/sys/ioc_sound.h minix-sys +./usr/include/sys/ioc_tape.h minix-sys +./usr/include/sys/ioctl.h minix-sys +./usr/include/sys/ioc_tty.h minix-sys +./usr/include/sys/iostat.h minix-sys +./usr/include/sys/ipc.h minix-sys +./usr/include/sys/jmp_buf.h minix-sys +./usr/include/sys/kbdio.h minix-sys +./usr/include/sys/localedef.h minix-sys +./usr/include/sys/lock.h minix-sys +./usr/include/syslog.h minix-sys +./usr/include/sys/md4.h minix-sys +./usr/include/sys/md5.h minix-sys +./usr/include/sys minix-sys +./usr/include/sys/mman.h minix-sys +./usr/include/sys/mount.h minix-sys +./usr/include/sys/mtio.h minix-sys +./usr/include/sys/mutex.h minix-sys +./usr/include/sys/null.h minix-sys +./usr/include/sys/param.h minix-sys +./usr/include/sys/poll.h minix-sys +./usr/include/sys/procfs.h minix-sys +./usr/include/sys/ptrace.h minix-sys +./usr/include/sys/ptree.h minix-sys +./usr/include/sys/queue.h minix-sys +./usr/include/sys/ras.h minix-sys +./usr/include/sys/rbtree.h minix-sys +./usr/include/sys/reboot.h minix-sys +./usr/include/sys/resource.h minix-sys +./usr/include/sys/rmd160.h minix-sys +./usr/include/sys/select.h minix-sys +./usr/include/sys/sem.h minix-sys +./usr/include/sys/sha1.h minix-sys +./usr/include/sys/sha2.h minix-sys +./usr/include/sys/shm.h minix-sys +./usr/include/sys/siginfo.h minix-sys +./usr/include/sys/signal.h minix-sys +./usr/include/sys/sigtypes.h minix-sys +./usr/include/sys/socket.h minix-sys +./usr/include/sys/statfs.h minix-sys +./usr/include/sys/stat.h minix-sys +./usr/include/sys/statvfs.h minix-sys +./usr/include/sys/stdint.h minix-sys +./usr/include/sys/svrctl.h minix-sys +./usr/include/sys/sysctl.h minix-sys +./usr/include/sys/syslimits.h minix-sys +./usr/include/sys/syslog.h minix-sys +./usr/include/sys/termios.h minix-sys +./usr/include/sys/time.h minix-sys +./usr/include/sys/times.h minix-sys +./usr/include/sys/tree.h minix-sys +./usr/include/sys/ttycom.h minix-sys +./usr/include/sys/ttydefaults.h minix-sys +./usr/include/sys/types.h minix-sys +./usr/include/sys/ucontext.h minix-sys +./usr/include/sys/ucred.h minix-sys +./usr/include/sys/uio.h minix-sys +./usr/include/sys/un.h minix-sys +./usr/include/sys/unistd.h minix-sys +./usr/include/sys/utsname.h minix-sys +./usr/include/sys/uuid.h minix-sys +./usr/include/sys/video.h minix-sys +./usr/include/sys/vm.h minix-sys +./usr/include/sys/wait.h minix-sys +./usr/include/tar.h minix-sys +./usr/include/termcap.h minix-sys +./usr/include/term.h minix-sys +./usr/include/termios.h minix-sys +./usr/include/time.h minix-sys +./usr/include/timers.h minix-sys +./usr/include/tools.h minix-sys obsolete +./usr/include/ttyent.h minix-sys +./usr/include/tzfile.h minix-sys +./usr/include/ucontext.h minix-sys +./usr/include/ucontextoffsets.h minix-sys +./usr/include/ufs/chfs minix-sys +./usr/include/ufs/ext2fs/ext2fs_dinode.h minix-sys +./usr/include/ufs/ext2fs/ext2fs_dir.h minix-sys +./usr/include/ufs/ext2fs/ext2fs_extern.h minix-sys +./usr/include/ufs/ext2fs/ext2fs.h minix-sys +./usr/include/ufs/ext2fs minix-sys +./usr/include/ufs/ffs/ffs_extern.h minix-sys +./usr/include/ufs/ffs/fs.h minix-sys +./usr/include/ufs/ffs minix-sys +./usr/include/ufs/lfs/lfs_extern.h minix-sys +./usr/include/ufs/lfs/lfs.h minix-sys +./usr/include/ufs/lfs minix-sys +./usr/include/ufs/mfs/mfs_extern.h minix-sys +./usr/include/ufs/mfs/mfsnode.h minix-sys +./usr/include/ufs/mfs minix-sys +./usr/include/ufs minix-sys +./usr/include/ufs/ufs/dinode.h minix-sys +./usr/include/ufs/ufs/dir.h minix-sys +./usr/include/ufs/ufs/extattr.h minix-sys +./usr/include/ufs/ufs/inode.h minix-sys +./usr/include/ufs/ufs minix-sys +./usr/include/ufs/ufs/quota1.h minix-sys +./usr/include/ufs/ufs/quota2.h minix-sys +./usr/include/ufs/ufs/quota.h minix-sys +./usr/include/ufs/ufs/ufs_bswap.h minix-sys +./usr/include/ufs/ufs/ufs_extern.h minix-sys +./usr/include/ufs/ufs/ufsmount.h minix-sys +./usr/include/ufs/ufs/ufs_wapbl.h minix-sys +./usr/include/ulimit.h minix-sys +./usr/include/unctrl.h minix-sys +./usr/include/unistd.h minix-sys +./usr/include/util.h minix-sys +./usr/include/utime.h minix-sys +./usr/include/utmp.h minix-sys +./usr/include/utmpx.h minix-sys +./usr/include/uuid.h minix-sys +./usr/include/varargs.h minix-sys +./usr/include/vis.h minix-sys +./usr/include/wchar.h minix-sys +./usr/include/wctype.h minix-sys +./usr/include/wordexp.h minix-sys +./usr/include/x86/float.h minix-sys +./usr/include/x86/ieeefp.h minix-sys +./usr/include/x86/ieee.h minix-sys +./usr/include/x86/math.h minix-sys +./usr/include/x86 minix-sys +./usr/include/x86/mutex.h minix-sys +./usr/include/zconf.h minix-sys +./usr/include/zlib.h minix-sys +./usr/lib/cawf/common minix-sys +./usr/lib/cawf/device.cf minix-sys +./usr/lib/cawf/dumb.dev minix-sys +./usr/lib/cawf/man.mac minix-sys +./usr/lib/cawf/me.mac minix-sys +./usr/lib/cawf minix-sys +./usr/lib/cawf/mnx.mac minix-sys +./usr/lib/cawf/ms.mac minix-sys +./usr/lib/compat_minix.pc minix-sys +./usr/lib/cpp minix-sys +./usr/lib/crt0.o minix-sys +./usr/lib/crt1.o minix-sys +./usr/lib/crtbegin.o minix-sys +./usr/lib/crtbeginS.o minix-sys +./usr/lib/crtbeginT.o minix-sys +./usr/lib/crtend.o minix-sys +./usr/lib/crtendS.o minix-sys +./usr/lib/crti.o minix-sys +./usr/lib/crtn.o minix-sys +./usr/lib/dict minix-sys +./usr/libexec/ld.elf_so minix-sys +./usr/libexec/makewhatis minix-sys +./usr/libexec minix-sys +./usr/lib/flex minix-sys +./usr/lib/fonts/cp1251.fnt minix-sys +./usr/lib/fonts/cp437.fnt minix-sys +./usr/lib/fonts/cp850.fnt minix-sys +./usr/lib/fonts/cp865.fnt minix-sys +./usr/lib/fonts/cp866.fnt minix-sys +./usr/lib/fonts/iso1.fnt minix-sys +./usr/lib/fonts/koi8-r.fnt minix-sys +./usr/lib/fonts/koi8-u.fnt minix-sys +./usr/lib/fonts minix-sys +./usr/lib/fonts/polish.fnt minix-sys +./usr/lib/fortune.dat minix-sys +./usr/lib/gcrt0.o minix-sys +./usr/lib/keymaps/abnt2.map minix-sys +./usr/lib/keymaps/dvorak.map minix-sys +./usr/lib/keymaps/french.map minix-sys +./usr/lib/keymaps/german.map minix-sys +./usr/lib/keymaps/italian.map minix-sys +./usr/lib/keymaps/japanese.map minix-sys +./usr/lib/keymaps/latin-america.map minix-sys +./usr/lib/keymaps minix-sys +./usr/lib/keymaps/olivetti.map minix-sys +./usr/lib/keymaps/polish.map minix-sys +./usr/lib/keymaps/portuguese.map minix-sys +./usr/lib/keymaps/russian-cp1251.map minix-sys +./usr/lib/keymaps/russian-cp866.map minix-sys +./usr/lib/keymaps/russian.map minix-sys +./usr/lib/keymaps/scandinavian.map minix-sys +./usr/lib/keymaps/spanish.map minix-sys +./usr/lib/keymaps/uk.map minix-sys +./usr/lib/keymaps/ukraine-koi8-u.map minix-sys +./usr/lib/keymaps/us-std-esc.map minix-sys +./usr/lib/keymaps/us-std.map minix-sys +./usr/lib/keymaps/us-swap.map minix-sys +./usr/lib/libarchive.a minix-sys +./usr/lib/libarchive_pic.a minix-sys +./usr/lib/libarchive.so.0.0 minix-sys +./usr/lib/libarchive.so.0 minix-sys +./usr/lib/libarchive.so minix-sys +./usr/lib/libasyn.a minix-sys +./usr/lib/libasyn_pic.a minix-sys +./usr/lib/libaudiodriver.a minix-sys +./usr/lib/libaudiodriver_pic.a minix-sys +./usr/lib/libbdev.a minix-sys +./usr/lib/libbdev_pic.a minix-sys +./usr/lib/libblockdriver.a minix-sys +./usr/lib/libblockdriver_pic.a minix-sys +./usr/lib/libbz2.a minix-sys +./usr/lib/libbz2_pic.a minix-sys +./usr/lib/libbz2.so.0.0 minix-sys +./usr/lib/libbz2.so.0 minix-sys +./usr/lib/libbz2.so minix-sys +./usr/lib/libc.a minix-sys +./usr/lib/libchardriver.a minix-sys +./usr/lib/libchardriver_pic.a minix-sys +./usr/lib/libcompat_minix.a minix-sys +./usr/lib/libcompat_minix_pic.a minix-sys +./usr/lib/libcompat_minix.so.0.0 minix-sys +./usr/lib/libcompat_minix.so.0 minix-sys +./usr/lib/libcompat_minix.so minix-sys +./usr/lib/libc.pc minix-sys +./usr/lib/libc_pic.a minix-sys +./usr/lib/libcrypt.a minix-sys +./usr/lib/libcrypt_pic.a minix-sys +./usr/lib/libcrypt.so.0.0 minix-sys +./usr/lib/libcrypt.so.0 minix-sys +./usr/lib/libcrypt.so minix-sys +./usr/lib/libc.so.0.0 minix-sys +./usr/lib/libc.so.0 minix-sys +./usr/lib/libc.so minix-sys +./usr/lib/libcurses.a minix-sys +./usr/lib/libcurses_pic.a minix-sys +./usr/lib/libcurses.so.0.0 minix-sys +./usr/lib/libcurses.so.0 minix-sys +./usr/lib/libcurses.so minix-sys +./usr/lib/libddekit.a minix-sys +./usr/lib/libddekit_pic.a minix-sys +./usr/lib/libddekit_usb_client.a minix-sys +./usr/lib/libddekit_usb_client_pic.a minix-sys +./usr/lib/libddekit_usb_server.a minix-sys +./usr/lib/libddekit_usb_server_pic.a minix-sys +./usr/lib/libdevman.a minix-sys +./usr/lib/libdevman_pic.a minix-sys +./usr/lib/libedit.a minix-sys +./usr/lib/libedit_pic.a minix-sys +./usr/lib/libelf.a minix-sys +./usr/lib/libelf_pic.a minix-sys +./usr/lib/libelf.so.0 minix-sys +./usr/lib/libelf.so minix-sys +./usr/lib/libexec.a minix-sys +./usr/lib/libexec_pic.a minix-sys +./usr/lib/libfetch.a minix-sys +./usr/lib/libfl.a minix-sys +./usr/lib/libgcc.a minix-sys +./usr/lib/libhgfs.a minix-sys +./usr/lib/libhgfs_pic.a minix-sys +./usr/lib/libl.a minix-sys +./usr/lib/liblzma.a minix-sys +./usr/lib/liblzma_pic.a minix-sys +./usr/lib/liblzma.so.0.0 minix-sys +./usr/lib/liblzma.so.0 minix-sys +./usr/lib/liblzma.so minix-sys +./usr/lib/libm387.a minix-sys +./usr/lib/libm387_pic.a minix-sys +./usr/lib/libm387.so.0.0 minix-sys +./usr/lib/libm387.so.0 minix-sys +./usr/lib/libm387.so minix-sys +./usr/lib/libmagic.a minix-sys +./usr/lib/libmagic_pic.a minix-sys +./usr/lib/libmagic.so.0.0 minix-sys +./usr/lib/libmagic.so.0 minix-sys +./usr/lib/libmagic.so minix-sys +./usr/lib/libm.a minix-sys +./usr/lib/libminc.a minix-sys +./usr/lib/libminc_pic.a minix-sys +./usr/lib/libminixfs.a minix-sys +./usr/lib/libminixfs_pic.a minix-sys +./usr/lib/libminlib.a minix-sys +./usr/lib/libminlib_pic.a minix-sys +./usr/lib/libminlib.so.0.0 minix-sys +./usr/lib/libminlib.so.0 minix-sys +./usr/lib/libminlib.so minix-sys +./usr/lib/libm_pic.a minix-sys +./usr/lib/libm.so.0.0 minix-sys +./usr/lib/libm.so.0 minix-sys +./usr/lib/libm.so minix-sys +./usr/lib/libmthread.a minix-sys +./usr/lib/libmthread_pic.a minix-sys +./usr/lib/libnetdriver.a minix-sys +./usr/lib/libnetdriver_pic.a minix-sys +./usr/lib/libnetsock.a minix-sys +./usr/lib/libnetsock_pic.a minix-sys +./usr/lib/libprop.a minix-sys +./usr/lib/libprop_pic.a minix-sys +./usr/lib/libprop.so.0.0 minix-sys +./usr/lib/libprop.so.0 minix-sys +./usr/lib/libprop.so minix-sys +./usr/lib/libpuffs.a minix-sys +./usr/lib/libpuffs_pic.a minix-sys +./usr/lib/libpuffs.so.0.0 minix-sys +./usr/lib/libpuffs.so.0 minix-sys +./usr/lib/libpuffs.so minix-sys +./usr/lib/librefuse.a minix-sys +./usr/lib/librefuse_pic.a minix-sys +./usr/lib/librefuse.so.0.0 minix-sys +./usr/lib/librefuse.so.0 minix-sys +./usr/lib/librefuse.so minix-sys +./usr/lib/libsffs.a minix-sys +./usr/lib/libsffs_pic.a minix-sys +./usr/lib/libsys.a minix-sys +./usr/lib/libsys_pic.a minix-sys +./usr/lib/libsys.so.0.0 minix-sys +./usr/lib/libsys.so.0 minix-sys +./usr/lib/libsys.so minix-sys +./usr/lib/libtermcap.a minix-sys +./usr/lib/libtermcap_pic.a minix-sys +./usr/lib/libtermcap.so.0.6 minix-sys +./usr/lib/libtermcap.so.0 minix-sys +./usr/lib/libtermcap.so minix-sys +./usr/lib/libterminfo.a minix-sys +./usr/lib/libterminfo_pic.a minix-sys +./usr/lib/libterminfo.so.0.0 minix-sys +./usr/lib/libterminfo.so.0 minix-sys +./usr/lib/libterminfo.so minix-sys +./usr/lib/libtermlib.a minix-sys +./usr/lib/libtermlib_pic.a minix-sys +./usr/lib/libtermlib.so.0.6 minix-sys +./usr/lib/libtermlib.so.0 minix-sys +./usr/lib/libtermlib.so minix-sys +./usr/lib/libtimers.a minix-sys +./usr/lib/libtimers_pic.a minix-sys +./usr/lib/libusb.a minix-sys +./usr/lib/libusb_pic.a minix-sys +./usr/lib/libutil.a minix-sys +./usr/lib/libutil_pic.a minix-sys +./usr/lib/libutil.so.0.0 minix-sys +./usr/lib/libutil.so.0 minix-sys +./usr/lib/libutil.so minix-sys +./usr/lib/libvassert.a minix-sys +./usr/lib/libvboxfs.a minix-sys +./usr/lib/libvboxfs_pic.a minix-sys +./usr/lib/libvtreefs.a minix-sys +./usr/lib/libvtreefs_pic.a minix-sys +./usr/lib/libz.a minix-sys +./usr/lib/libz_pic.a minix-sys +./usr/lib/libz.so.0.0 minix-sys +./usr/lib/libz.so.0 minix-sys +./usr/lib/libz.so minix-sys +./usr/lib minix-sys +./usr/lib/minlib.pc minix-sys +./usr/lib/pwdauth minix-sys +./usr/log minix-sys +./usr/Makefile minix-sys +./usr/man/man1/..1 minix-sys +./usr/man/man1/[.1 minix-sys +./usr/man/man1/acksize.1 minix-sys +./usr/man/man1/apropos.1 minix-sys +./usr/man/man1/ash.1 minix-sys +./usr/man/man1/at.1 minix-sys +./usr/man/man1/awk.1 minix-sys +./usr/man/man1/banner.1 minix-sys +./usr/man/man1/basename.1 minix-sys +./usr/man/man1/break.1 minix-sys +./usr/man/man1/bsdtar.1 minix-sys +./usr/man/man1/bsfilt.1 minix-sys +./usr/man/man1/bunzip2.1 minix-sys +./usr/man/man1/bzcat.1 minix-sys +./usr/man/man1/bzip2.1 minix-sys +./usr/man/man1/bzip2recover.1 minix-sys +./usr/man/man1/cal.1 minix-sys +./usr/man/man1/case.1 minix-sys +./usr/man/man1/cat.1 minix-sys +./usr/man/man1/cawf.1 minix-sys +./usr/man/man1/cd.1 minix-sys +./usr/man/man1/chfn.1 minix-sys +./usr/man/man1/chgrp.1 minix-sys +./usr/man/man1/chmod.1 minix-sys +./usr/man/man1/chpass.1 minix-sys +./usr/man/man1/chsh.1 minix-sys +./usr/man/man1/ci.1 minix-sys +./usr/man/man1/cksum.1 minix-sys +./usr/man/man1/clear.1 minix-sys +./usr/man/man1/cmp.1 minix-sys +./usr/man/man1/co.1 minix-sys +./usr/man/man1/comm.1 minix-sys +./usr/man/man1/command.1 minix-sys +./usr/man/man1/compress.1 minix-sys +./usr/man/man1/continue.1 minix-sys +./usr/man/man1/cp.1 minix-sys +./usr/man/man1/cpdir.1 minix-sys +./usr/man/man1/cpio.1 minix-sys +./usr/man/man1/crc.1 minix-sys +./usr/man/man1/crontab.1 minix-sys +./usr/man/man1/ctags.1 minix-sys +./usr/man/man1/cut.1 minix-sys +./usr/man/man1/date.1 minix-sys +./usr/man/man1/dd.1 minix-sys +./usr/man/man1/dev2name.1 minix-sys +./usr/man/man1/df.1 minix-sys +./usr/man/man1/dhrystone.1 minix-sys +./usr/man/man1/diff.1 minix-sys +./usr/man/man1/dosdir.1 minix-sys +./usr/man/man1/dosread.1 minix-sys +./usr/man/man1/doswrite.1 minix-sys +./usr/man/man1/du.1 minix-sys +./usr/man/man1/dumpcore.1 minix-sys +./usr/man/man1/echo.1 minix-sys +./usr/man/man1/ed.1 minix-sys +./usr/man/man1/egrep.1 minix-sys +./usr/man/man1/eject.1 minix-sys +./usr/man/man1/elvis.1 minix-sys +./usr/man/man1/elvrec.1 minix-sys +./usr/man/man1/env.1 minix-sys +./usr/man/man1/eval.1 minix-sys +./usr/man/man1/ex.1 minix-sys +./usr/man/man1/exec.1 minix-sys +./usr/man/man1/exit.1 minix-sys +./usr/man/man1/expand.1 minix-sys +./usr/man/man1/export.1 minix-sys +./usr/man/man1/expr.1 minix-sys +./usr/man/man1/factor.1 minix-sys +./usr/man/man1/fetch.1 minix-sys +./usr/man/man1/fgrep.1 minix-sys +./usr/man/man1/file.1 minix-sys +./usr/man/man1/find.1 minix-sys +./usr/man/man1/finger.1 minix-sys +./usr/man/man1/flex.1 minix-sys +./usr/man/man1/flexdoc.1 minix-sys +./usr/man/man1/fmt.1 minix-sys +./usr/man/man1/fold.1 minix-sys +./usr/man/man1/for.1 minix-sys +./usr/man/man1/format.1 minix-sys +./usr/man/man1/fortune.1 minix-sys +./usr/man/man1/fsck.mfs.1 minix-sys +./usr/man/man1/ftp.1 minix-sys +./usr/man/man1/genassym.1 minix-sys +./usr/man/man1/getopts.1 minix-sys +./usr/man/man1/grep.1 minix-sys +./usr/man/man1/groups.1 minix-sys +./usr/man/man1/gunzip.1 minix-sys +./usr/man/man1/gzcat.1 minix-sys +./usr/man/man1/gzexe.1 minix-sys +./usr/man/man1/gzip.1 minix-sys +./usr/man/man1/hash.1 minix-sys +./usr/man/man1/head.1 minix-sys +./usr/man/man1/hexdump.1 minix-sys +./usr/man/man1/host.1 minix-sys +./usr/man/man1/hostaddr.1 minix-sys +./usr/man/man1/id.1 minix-sys +./usr/man/man1/if.1 minix-sys +./usr/man/man1/ifdef.1 minix-sys +./usr/man/man1/indent.1 minix-sys +./usr/man/man1/install.1 minix-sys +./usr/man/man1/isodir.1 minix-sys +./usr/man/man1/isoinfo.1 minix-sys +./usr/man/man1/isoread.1 minix-sys +./usr/man/man1/jobs.1 minix-sys +./usr/man/man1/join.1 minix-sys +./usr/man/man1/kill.1 minix-sys +./usr/man/man1/last.1 minix-sys +./usr/man/man1/ldd.1 minix-sys +./usr/man/man1/ld.elf_so.1 minix-sys +./usr/man/man1/less.1 minix-sys +./usr/man/man1/lesskey.1 minix-sys +./usr/man/man1/lex.1 minix-sys +./usr/man/man1/linkfarm.1 minix-sys +./usr/man/man1/ln.1 minix-sys +./usr/man/man1/loadfont.1 minix-sys +./usr/man/man1/loadkeys.1 minix-sys +./usr/man/man1/local.1 minix-sys +./usr/man/man1/logger.1 minix-sys +./usr/man/man1/login.1 minix-sys +./usr/man/man1/look.1 minix-sys +./usr/man/man1/lp.1 minix-sys +./usr/man/man1/ls.1 minix-sys +./usr/man/man1/lspci.1 minix-sys +./usr/man/man1/m4.1 minix-sys +./usr/man/man1/mail.1 minix-sys +./usr/man/man1/make.1 minix-sys +./usr/man/man1/man.1 minix-sys +./usr/man/man1/mandoc.1 minix-sys +./usr/man/man1/mesg.1 minix-sys +./usr/man/man1/ministat.1 minix-sys +./usr/man/man1 minix-sys +./usr/man/man1/mixer.1 minix-sys +./usr/man/man1/mkdep.1 minix-sys +./usr/man/man1/mkdir.1 minix-sys +./usr/man/man1/mkfifo.1 minix-sys +./usr/man/man1/mkfs.1 minix-sys +./usr/man/man1/mkproto.1 minix-sys +./usr/man/man1/mktemp.1 minix-sys +./usr/man/man1/more.1 minix-sys +./usr/man/man1/mount.1 minix-sys +./usr/man/man1/mt.1 minix-sys +./usr/man/man1/mv.1 minix-sys +./usr/man/man1/newgrp.1 minix-sys +./usr/man/man1/nice.1 minix-sys +./usr/man/man1/nm.1 minix-sys +./usr/man/man1/nohup.1 minix-sys +./usr/man/man1/od.1 minix-sys +./usr/man/man1/page.1 minix-sys +./usr/man/man1/passwd.1 minix-sys +./usr/man/man1/paste.1 minix-sys +./usr/man/man1/patch.1 minix-sys +./usr/man/man1/pax.1 minix-sys +./usr/man/man1/ping.1 minix-sys +./usr/man/man1/pkg_view.1 minix-sys +./usr/man/man1/playwave.1 minix-sys +./usr/man/man1/pr.1 minix-sys +./usr/man/man1/prep.1 minix-sys +./usr/man/man1/printf.1 minix-sys +./usr/man/man1/profile.1 minix-sys +./usr/man/man1/ps.1 minix-sys +./usr/man/man1/pwd.1 minix-sys +./usr/man/man1/rcp.1 minix-sys +./usr/man/man1/read.1 minix-sys +./usr/man/man1/readall.1 minix-sys obsolete +./usr/man/man1/readlink.1 minix-sys +./usr/man/man1/readonly.1 minix-sys +./usr/man/man1/recwave.1 minix-sys +./usr/man/man1/ref.1 minix-sys +./usr/man/man1/remsync.1 minix-sys +./usr/man/man1/return.1 minix-sys +./usr/man/man1/rget.1 minix-sys +./usr/man/man1/rlogin.1 minix-sys +./usr/man/man1/rm.1 minix-sys +./usr/man/man1/rmdir.1 minix-sys +./usr/man/man1/rsh.1 minix-sys +./usr/man/man1/rz.1 minix-sys +./usr/man/man1/sed.1 minix-sys +./usr/man/man1/seq.1 minix-sys +./usr/man/man1/set.1 minix-sys +./usr/man/man1/setvar.1 minix-sys +./usr/man/man1/sh.1 minix-sys +./usr/man/man1/shar.1 minix-sys +./usr/man/man1/shift.1 minix-sys +./usr/man/man1/sleep.1 minix-sys +./usr/man/man1/sort.1 minix-sys +./usr/man/man1/spell.1 minix-sys +./usr/man/man1/split.1 minix-sys +./usr/man/man1/stat.1 minix-sys +./usr/man/man1/stty.1 minix-sys +./usr/man/man1/su.1 minix-sys +./usr/man/man1/sum.1 minix-sys +./usr/man/man1/svc.1 minix-sys +./usr/man/man1/svrctl.1 minix-sys +./usr/man/man1/synctree.1 minix-sys +./usr/man/man1/sysenv.1 minix-sys +./usr/man/man1/sz.1 minix-sys +./usr/man/man1/tail.1 minix-sys +./usr/man/man1/tar.1 minix-sys +./usr/man/man1/tee.1 minix-sys +./usr/man/man1/telnet.1 minix-sys +./usr/man/man1/template.1 minix-sys +./usr/man/man1/term.1 minix-sys +./usr/man/man1/termcap.1 minix-sys +./usr/man/man1/test.1 minix-sys +./usr/man/man1/tget.1 minix-sys +./usr/man/man1/tic.1 minix-sys +./usr/man/man1/time.1 minix-sys +./usr/man/man1/touch.1 minix-sys +./usr/man/man1/tr.1 minix-sys +./usr/man/man1/trap.1 minix-sys +./usr/man/man1/true.1 minix-sys +./usr/man/man1/truncate.1 minix-sys +./usr/man/man1/tsort.1 minix-sys +./usr/man/man1/tty.1 minix-sys +./usr/man/man1/umask.1 minix-sys +./usr/man/man1/umount.1 minix-sys +./usr/man/man1/uname.1 minix-sys +./usr/man/man1/uncompress.1 minix-sys +./usr/man/man1/unexpand.1 minix-sys +./usr/man/man1/uniq.1 minix-sys +./usr/man/man1/unset.1 minix-sys +./usr/man/man1/uud.1 minix-sys +./usr/man/man1/uue.1 minix-sys +./usr/man/man1/vol.1 minix-sys +./usr/man/man1/wait.1 minix-sys +./usr/man/man1/wc.1 minix-sys +./usr/man/man1/whereis.1 minix-sys +./usr/man/man1/which.1 minix-sys +./usr/man/man1/who.1 minix-sys +./usr/man/man1/whoami.1 minix-sys +./usr/man/man1/worldstone.1 minix-sys +./usr/man/man1/write.1 minix-sys +./usr/man/man1/xargs.1 minix-sys +./usr/man/man1x/awk.1x minix-sys +./usr/man/man1x/elvis.1x minix-sys +./usr/man/man1x/kermit.1x minix-sys +./usr/man/man1x/macros.1x minix-sys +./usr/man/man1x/mined.1x minix-sys +./usr/man/man1x minix-sys +./usr/man/man1/yacc.1 minix-sys +./usr/man/man1/yap.1 minix-sys +./usr/man/man1/yes.1 minix-sys +./usr/man/man1/zcat.1 minix-sys +./usr/man/man1/zcmp.1 minix-sys +./usr/man/man1/zdiff.1 minix-sys +./usr/man/man1/zegrep.1 minix-sys +./usr/man/man1/zfgrep.1 minix-sys +./usr/man/man1/zforce.1 minix-sys +./usr/man/man1/zgrep.1 minix-sys +./usr/man/man1/zmore.1 minix-sys +./usr/man/man1/znew.1 minix-sys +./usr/man/man2/accept.2 minix-sys +./usr/man/man2/access.2 minix-sys +./usr/man/man2/alarm.2 minix-sys +./usr/man/man2/bind.2 minix-sys +./usr/man/man2/brk.2 minix-sys +./usr/man/man2/chdir.2 minix-sys +./usr/man/man2/chmod.2 minix-sys +./usr/man/man2/chown.2 minix-sys +./usr/man/man2/chroot.2 minix-sys +./usr/man/man2/close.2 minix-sys +./usr/man/man2/connect.2 minix-sys +./usr/man/man2/creat.2 minix-sys +./usr/man/man2/dup.2 minix-sys +./usr/man/man2/execve.2 minix-sys +./usr/man/man2/exit.2 minix-sys +./usr/man/man2/fcntl.2 minix-sys +./usr/man/man2/FD_CLR.2 minix-sys +./usr/man/man2/FD_ISSET.2 minix-sys +./usr/man/man2/FD_SET.2 minix-sys +./usr/man/man2/fork.2 minix-sys +./usr/man/man2/fstatvfs.2 minix-sys +./usr/man/man2/getgid.2 minix-sys +./usr/man/man2/getitimer.2 minix-sys +./usr/man/man2/getnucred.2 minix-sys +./usr/man/man2/getpeereid.2 minix-sys +./usr/man/man2/getpeername.2 minix-sys +./usr/man/man2/getpid.2 minix-sys +./usr/man/man2/getpriority.2 minix-sys +./usr/man/man2/getsockname.2 minix-sys +./usr/man/man2/getsockopt.2 minix-sys +./usr/man/man2/gettimeofday.2 minix-sys +./usr/man/man2/getuid.2 minix-sys +./usr/man/man2/intro.2 minix-sys +./usr/man/man2/ioctl.2 minix-sys +./usr/man/man2/kill.2 minix-sys +./usr/man/man2/link.2 minix-sys +./usr/man/man2/listen.2 minix-sys +./usr/man/man2/lseek.2 minix-sys +./usr/man/man2 minix-sys +./usr/man/man2/mkdir.2 minix-sys +./usr/man/man2/mknod.2 minix-sys +./usr/man/man2/mount.2 minix-sys +./usr/man/man2/open.2 minix-sys +./usr/man/man2/pause.2 minix-sys +./usr/man/man2/pipe.2 minix-sys +./usr/man/man2/ptrace.2 minix-sys +./usr/man/man2/read.2 minix-sys +./usr/man/man2/readlink.2 minix-sys +./usr/man/man2/reboot.2 minix-sys +./usr/man/man2/recv.2 minix-sys +./usr/man/man2/recvfrom.2 minix-sys +./usr/man/man2/recvmsg.2 minix-sys +./usr/man/man2/rename.2 minix-sys +./usr/man/man2/rmdir.2 minix-sys +./usr/man/man2/select.2 minix-sys +./usr/man/man2/send.2 minix-sys +./usr/man/man2/sendmsg.2 minix-sys +./usr/man/man2/sendto.2 minix-sys +./usr/man/man2/seteuid.2 minix-sys +./usr/man/man2/setgid.2 minix-sys +./usr/man/man2/setsid.2 minix-sys +./usr/man/man2/setsockopt.2 minix-sys +./usr/man/man2/setuid.2 minix-sys +./usr/man/man2/shutdown.2 minix-sys +./usr/man/man2/sigaction.2 minix-sys +./usr/man/man2/sigpending.2 minix-sys +./usr/man/man2/sigprocmask.2 minix-sys +./usr/man/man2/sigsuspend.2 minix-sys +./usr/man/man2/socket.2 minix-sys +./usr/man/man2/socketpair.2 minix-sys +./usr/man/man2/statvfs.2 minix-sys +./usr/man/man2/svrctl.2 minix-sys +./usr/man/man2/symlink.2 minix-sys +./usr/man/man2/sync.2 minix-sys +./usr/man/man2/time.2 minix-sys +./usr/man/man2/times.2 minix-sys +./usr/man/man2/truncate.2 minix-sys +./usr/man/man2/umask.2 minix-sys +./usr/man/man2/uname.2 minix-sys +./usr/man/man2/unlink.2 minix-sys +./usr/man/man2/utime.2 minix-sys +./usr/man/man2/wait.2 minix-sys +./usr/man/man2/write.2 minix-sys +./usr/man/man3/a64l.3 minix-sys +./usr/man/man3/abort.3 minix-sys +./usr/man/man3/abs.3 minix-sys +./usr/man/man3/acos.3 minix-sys +./usr/man/man3/acosf.3 minix-sys +./usr/man/man3/acosh.3 minix-sys +./usr/man/man3/acoshf.3 minix-sys +./usr/man/man3/addch.3 minix-sys +./usr/man/man3/addchnstr.3 minix-sys +./usr/man/man3/addchstr.3 minix-sys +./usr/man/man3/addnstr.3 minix-sys +./usr/man/man3/addr.3 minix-sys +./usr/man/man3/addstr.3 minix-sys +./usr/man/man3/alarm.3 minix-sys +./usr/man/man3/alloca.3 minix-sys +./usr/man/man3/allocaddrinfo.3 minix-sys +./usr/man/man3/alphasort.3 minix-sys +./usr/man/man3/arc4random.3 minix-sys +./usr/man/man3/archive.3 minix-sys +./usr/man/man3/archive_clear_error.3 minix-sys +./usr/man/man3/archive_compression.3 minix-sys +./usr/man/man3/archive_compression_name.3 minix-sys +./usr/man/man3/archive_copy_error.3 minix-sys +./usr/man/man3/archive_entry.3 minix-sys +./usr/man/man3/archive_entry_acl_add_entry.3 minix-sys +./usr/man/man3/archive_entry_acl_add_entry_w.3 minix-sys +./usr/man/man3/archive_entry_acl_clear.3 minix-sys +./usr/man/man3/archive_entry_acl_count.3 minix-sys +./usr/man/man3/archive_entry_acl_next.3 minix-sys +./usr/man/man3/archive_entry_acl_next_w.3 minix-sys +./usr/man/man3/archive_entry_acl_reset.3 minix-sys +./usr/man/man3/archive_entry_acl_text_w.3 minix-sys +./usr/man/man3/archive_entry_atime.3 minix-sys +./usr/man/man3/archive_entry_atime_nsec.3 minix-sys +./usr/man/man3/archive_entry_clear.3 minix-sys +./usr/man/man3/archive_entry_clone.3 minix-sys +./usr/man/man3/archive_entry_copy_fflags_text.3 minix-sys +./usr/man/man3/archive_entry_copy_fflags_text_w.3 minix-sys +./usr/man/man3/archive_entry_copy_gname.3 minix-sys +./usr/man/man3/archive_entry_copy_gname_w.3 minix-sys +./usr/man/man3/archive_entry_copy_hardlink.3 minix-sys +./usr/man/man3/archive_entry_copy_hardlink_w.3 minix-sys +./usr/man/man3/archive_entry_copy_link.3 minix-sys +./usr/man/man3/archive_entry_copy_link_w.3 minix-sys +./usr/man/man3/archive_entry_copy_pathname_w.3 minix-sys +./usr/man/man3/archive_entry_copy_sourcepath.3 minix-sys +./usr/man/man3/archive_entry_copy_stat.3 minix-sys +./usr/man/man3/archive_entry_copy_symlink.3 minix-sys +./usr/man/man3/archive_entry_copy_symlink_w.3 minix-sys +./usr/man/man3/archive_entry_copy_uname.3 minix-sys +./usr/man/man3/archive_entry_copy_uname_w.3 minix-sys +./usr/man/man3/archive_entry_dev.3 minix-sys +./usr/man/man3/archive_entry_devmajor.3 minix-sys +./usr/man/man3/archive_entry_devminor.3 minix-sys +./usr/man/man3/archive_entry_fflags.3 minix-sys +./usr/man/man3/archive_entry_fflags_text.3 minix-sys +./usr/man/man3/archive_entry_filetype.3 minix-sys +./usr/man/man3/archive_entry_free.3 minix-sys +./usr/man/man3/archive_entry_gid.3 minix-sys +./usr/man/man3/archive_entry_gname.3 minix-sys +./usr/man/man3/archive_entry_hardlink.3 minix-sys +./usr/man/man3/archive_entry_ino.3 minix-sys +./usr/man/man3/archive_entry_mode.3 minix-sys +./usr/man/man3/archive_entry_mtime.3 minix-sys +./usr/man/man3/archive_entry_mtime_nsec.3 minix-sys +./usr/man/man3/archive_entry_new.3 minix-sys +./usr/man/man3/archive_entry_nlink.3 minix-sys +./usr/man/man3/archive_entry_pathname.3 minix-sys +./usr/man/man3/archive_entry_pathname_w.3 minix-sys +./usr/man/man3/archive_entry_rdev.3 minix-sys +./usr/man/man3/archive_entry_rdevmajor.3 minix-sys +./usr/man/man3/archive_entry_rdevminor.3 minix-sys +./usr/man/man3/archive_entry_set_atime.3 minix-sys +./usr/man/man3/archive_entry_set_ctime.3 minix-sys +./usr/man/man3/archive_entry_set_dev.3 minix-sys +./usr/man/man3/archive_entry_set_devmajor.3 minix-sys +./usr/man/man3/archive_entry_set_devminor.3 minix-sys +./usr/man/man3/archive_entry_set_fflags.3 minix-sys +./usr/man/man3/archive_entry_set_filetype.3 minix-sys +./usr/man/man3/archive_entry_set_gid.3 minix-sys +./usr/man/man3/archive_entry_set_gname.3 minix-sys +./usr/man/man3/archive_entry_set_hardlink.3 minix-sys +./usr/man/man3/archive_entry_set_link.3 minix-sys +./usr/man/man3/archive_entry_set_mode.3 minix-sys +./usr/man/man3/archive_entry_set_mtime.3 minix-sys +./usr/man/man3/archive_entry_set_pathname.3 minix-sys +./usr/man/man3/archive_entry_set_rdevmajor.3 minix-sys +./usr/man/man3/archive_entry_set_rdevminor.3 minix-sys +./usr/man/man3/archive_entry_set_size.3 minix-sys +./usr/man/man3/archive_entry_set_symlink.3 minix-sys +./usr/man/man3/archive_entry_set_uid.3 minix-sys +./usr/man/man3/archive_entry_set_uname.3 minix-sys +./usr/man/man3/archive_entry_size.3 minix-sys +./usr/man/man3/archive_entry_sourcepath.3 minix-sys +./usr/man/man3/archive_entry_stat.3 minix-sys +./usr/man/man3/archive_entry_symlink.3 minix-sys +./usr/man/man3/archive_entry_uid.3 minix-sys +./usr/man/man3/archive_entry_uname.3 minix-sys +./usr/man/man3/archive_errno.3 minix-sys +./usr/man/man3/archive_error_string.3 minix-sys +./usr/man/man3/archive_file_count.3 minix-sys +./usr/man/man3/archive_format.3 minix-sys +./usr/man/man3/archive_format_name.3 minix-sys +./usr/man/man3/archive_read.3 minix-sys +./usr/man/man3/archive_read_close.3 minix-sys +./usr/man/man3/archive_read_data.3 minix-sys +./usr/man/man3/archive_read_data_block.3 minix-sys +./usr/man/man3/archive_read_data_into_buffer.3 minix-sys +./usr/man/man3/archive_read_data_into_fd.3 minix-sys +./usr/man/man3/archive_read_data_skip.3 minix-sys +./usr/man/man3/archive_read_disk.3 minix-sys +./usr/man/man3/archive_read_disk_gname.3 minix-sys +./usr/man/man3/archive_read_disk_new.3 minix-sys +./usr/man/man3/archive_read_disk_set_entry_from_file.3 minix-sys +./usr/man/man3/archive_read_disk_set_gname_lookup.3 minix-sys +./usr/man/man3/archive_read_disk_set_standard_lookup.3 minix-sys +./usr/man/man3/archive_read_disk_set_symlink_hybrid.3 minix-sys +./usr/man/man3/archive_read_disk_set_symlink_logical.3 minix-sys +./usr/man/man3/archive_read_disk_set_symlink_physical.3 minix-sys +./usr/man/man3/archive_read_disk_set_uname_lookup.3 minix-sys +./usr/man/man3/archive_read_disk_uname.3 minix-sys +./usr/man/man3/archive_read_extract2.3 minix-sys +./usr/man/man3/archive_read_extract.3 minix-sys +./usr/man/man3/archive_read_extract_set_progress_callback.3 minix-sys +./usr/man/man3/archive_read_finish.3 minix-sys +./usr/man/man3/archive_read_new.3 minix-sys +./usr/man/man3/archive_read_next_header2.3 minix-sys +./usr/man/man3/archive_read_next_header.3 minix-sys +./usr/man/man3/archive_read_open2.3 minix-sys +./usr/man/man3/archive_read_open.3 minix-sys +./usr/man/man3/archive_read_open_fd.3 minix-sys +./usr/man/man3/archive_read_open_file.3 minix-sys +./usr/man/man3/archive_read_open_FILE.3 minix-sys +./usr/man/man3/archive_read_open_filename.3 minix-sys +./usr/man/man3/archive_read_open_memory.3 minix-sys +./usr/man/man3/archive_read_set_filter_options.3 minix-sys +./usr/man/man3/archive_read_set_format_options.3 minix-sys +./usr/man/man3/archive_read_set_options.3 minix-sys +./usr/man/man3/archive_read_support_compression_all.3 minix-sys +./usr/man/man3/archive_read_support_compression_bzip2.3 minix-sys +./usr/man/man3/archive_read_support_compression_compress.3 minix-sys +./usr/man/man3/archive_read_support_compression_gzip.3 minix-sys +./usr/man/man3/archive_read_support_compression_lzma.3 minix-sys +./usr/man/man3/archive_read_support_compression_none.3 minix-sys +./usr/man/man3/archive_read_support_compression_program.3 minix-sys +./usr/man/man3/archive_read_support_compression_program_signature.3 minix-sys +./usr/man/man3/archive_read_support_compression_xz.3 minix-sys +./usr/man/man3/archive_read_support_format_all.3 minix-sys +./usr/man/man3/archive_read_support_format_ar.3 minix-sys +./usr/man/man3/archive_read_support_format_cpio.3 minix-sys +./usr/man/man3/archive_read_support_format_empty.3 minix-sys +./usr/man/man3/archive_read_support_format_iso9660.3 minix-sys +./usr/man/man3/archive_read_support_format_mtree.3 minix-sys +./usr/man/man3/archive_read_support_format_raw.3 minix-sys +./usr/man/man3/archive_read_support_format_tar.3 minix-sys +./usr/man/man3/archive_read_support_format_zip.3 minix-sys +./usr/man/man3/archive_set_error.3 minix-sys +./usr/man/man3/archive_util.3 minix-sys +./usr/man/man3/archive_write.3 minix-sys +./usr/man/man3/archive_write_close.3 minix-sys +./usr/man/man3/archive_write_data.3 minix-sys +./usr/man/man3/archive_write_disk.3 minix-sys +./usr/man/man3/archive_write_disk_new.3 minix-sys +./usr/man/man3/archive_write_disk_set_group_lookup.3 minix-sys +./usr/man/man3/archive_write_disk_set_options.3 minix-sys +./usr/man/man3/archive_write_disk_set_skip_file.3 minix-sys +./usr/man/man3/archive_write_disk_set_standard_lookup.3 minix-sys +./usr/man/man3/archive_write_disk_set_user_lookup.3 minix-sys +./usr/man/man3/archive_write_finish.3 minix-sys +./usr/man/man3/archive_write_finish_entry.3 minix-sys +./usr/man/man3/archive_write_get_bytes_per_block.3 minix-sys +./usr/man/man3/archive_write_header.3 minix-sys +./usr/man/man3/archive_write_new.3 minix-sys +./usr/man/man3/archive_write_open.3 minix-sys +./usr/man/man3/archive_write_open_fd.3 minix-sys +./usr/man/man3/archive_write_open_FILE.3 minix-sys +./usr/man/man3/archive_write_open_filename.3 minix-sys +./usr/man/man3/archive_write_open_memory.3 minix-sys +./usr/man/man3/archive_write_options.3 minix-sys +./usr/man/man3/archive_write_set_bytes_in_last_block.3 minix-sys +./usr/man/man3/archive_write_set_bytes_per_block.3 minix-sys +./usr/man/man3/archive_write_set_callbacks.3 minix-sys +./usr/man/man3/archive_write_set_compression_bzip2.3 minix-sys +./usr/man/man3/archive_write_set_compression_compress.3 minix-sys +./usr/man/man3/archive_write_set_compression_gzip.3 minix-sys +./usr/man/man3/archive_write_set_compression_none.3 minix-sys +./usr/man/man3/archive_write_set_compression_program.3 minix-sys +./usr/man/man3/archive_write_set_compressor_options.3 minix-sys +./usr/man/man3/archive_write_set_format_cpio.3 minix-sys +./usr/man/man3/archive_write_set_format_pax.3 minix-sys +./usr/man/man3/archive_write_set_format_pax_restricted.3 minix-sys +./usr/man/man3/archive_write_set_format_shar.3 minix-sys +./usr/man/man3/archive_write_set_format_shar_binary.3 minix-sys +./usr/man/man3/archive_write_set_format_ustar.3 minix-sys +./usr/man/man3/asctime.3 minix-sys +./usr/man/man3/asctime_r.3 minix-sys +./usr/man/man3/asin.3 minix-sys +./usr/man/man3/asinf.3 minix-sys +./usr/man/man3/asinh.3 minix-sys +./usr/man/man3/asinhf.3 minix-sys +./usr/man/man3/asprintf.3 minix-sys +./usr/man/man3/assume_default_colors.3 minix-sys +./usr/man/man3/atan2.3 minix-sys +./usr/man/man3/atan2f.3 minix-sys +./usr/man/man3/atan.3 minix-sys +./usr/man/man3/atanf.3 minix-sys +./usr/man/man3/atanh.3 minix-sys +./usr/man/man3/atanhf.3 minix-sys +./usr/man/man3/atexit.3 minix-sys +./usr/man/man3/atof.3 minix-sys +./usr/man/man3/atoi.3 minix-sys +./usr/man/man3/atol.3 minix-sys +./usr/man/man3/atoll.3 minix-sys +./usr/man/man3/atomic_add_32.3 minix-sys +./usr/man/man3/atomic_add_32_nv.3 minix-sys +./usr/man/man3/atomic_add.3 minix-sys +./usr/man/man3/atomic_add_64.3 minix-sys +./usr/man/man3/atomic_add_64_nv.3 minix-sys +./usr/man/man3/atomic_add_int.3 minix-sys +./usr/man/man3/atomic_add_int_nv.3 minix-sys +./usr/man/man3/atomic_add_long.3 minix-sys +./usr/man/man3/atomic_add_long_nv.3 minix-sys +./usr/man/man3/atomic_add_ptr.3 minix-sys +./usr/man/man3/atomic_add_ptr_nv.3 minix-sys +./usr/man/man3/atomic_and_32.3 minix-sys +./usr/man/man3/atomic_and_32_nv.3 minix-sys +./usr/man/man3/atomic_and.3 minix-sys +./usr/man/man3/atomic_and_64.3 minix-sys +./usr/man/man3/atomic_and_64_nv.3 minix-sys +./usr/man/man3/atomic_and_uint.3 minix-sys +./usr/man/man3/atomic_and_uint_nv.3 minix-sys +./usr/man/man3/atomic_and_ulong.3 minix-sys +./usr/man/man3/atomic_and_ulong_nv.3 minix-sys +./usr/man/man3/atomic_cas_32.3 minix-sys +./usr/man/man3/atomic_cas_32_ni.3 minix-sys +./usr/man/man3/atomic_cas.3 minix-sys +./usr/man/man3/atomic_cas_64.3 minix-sys +./usr/man/man3/atomic_cas_64_ni.3 minix-sys +./usr/man/man3/atomic_cas_ptr.3 minix-sys +./usr/man/man3/atomic_cas_ptr_ni.3 minix-sys +./usr/man/man3/atomic_cas_uint.3 minix-sys +./usr/man/man3/atomic_cas_uint_ni.3 minix-sys +./usr/man/man3/atomic_cas_ulong.3 minix-sys +./usr/man/man3/atomic_cas_ulong_ni.3 minix-sys +./usr/man/man3/atomic_dec_32.3 minix-sys +./usr/man/man3/atomic_dec_32_nv.3 minix-sys +./usr/man/man3/atomic_dec.3 minix-sys +./usr/man/man3/atomic_dec_64.3 minix-sys +./usr/man/man3/atomic_dec_64_nv.3 minix-sys +./usr/man/man3/atomic_dec_ptr.3 minix-sys +./usr/man/man3/atomic_dec_ptr_nv.3 minix-sys +./usr/man/man3/atomic_dec_uint.3 minix-sys +./usr/man/man3/atomic_dec_uint_nv.3 minix-sys +./usr/man/man3/atomic_dec_ulong.3 minix-sys +./usr/man/man3/atomic_dec_ulong_nv.3 minix-sys +./usr/man/man3/atomic_inc_32.3 minix-sys +./usr/man/man3/atomic_inc_32_nv.3 minix-sys +./usr/man/man3/atomic_inc.3 minix-sys +./usr/man/man3/atomic_inc_64.3 minix-sys +./usr/man/man3/atomic_inc_64_nv.3 minix-sys +./usr/man/man3/atomic_inc_ptr.3 minix-sys +./usr/man/man3/atomic_inc_ptr_nv.3 minix-sys +./usr/man/man3/atomic_inc_uint.3 minix-sys +./usr/man/man3/atomic_inc_uint_nv.3 minix-sys +./usr/man/man3/atomic_inc_ulong.3 minix-sys +./usr/man/man3/atomic_inc_ulong_nv.3 minix-sys +./usr/man/man3/atomic_ops.3 minix-sys +./usr/man/man3/atomic_or_32.3 minix-sys +./usr/man/man3/atomic_or_32_nv.3 minix-sys +./usr/man/man3/atomic_or.3 minix-sys +./usr/man/man3/atomic_or_64.3 minix-sys +./usr/man/man3/atomic_or_64_nv.3 minix-sys +./usr/man/man3/atomic_or_uint.3 minix-sys +./usr/man/man3/atomic_or_uint_nv.3 minix-sys +./usr/man/man3/atomic_or_ulong.3 minix-sys +./usr/man/man3/atomic_or_ulong_nv.3 minix-sys +./usr/man/man3/atomic_swap_32.3 minix-sys +./usr/man/man3/atomic_swap.3 minix-sys +./usr/man/man3/atomic_swap_64.3 minix-sys +./usr/man/man3/atomic_swap_ptr.3 minix-sys +./usr/man/man3/atomic_swap_uint.3 minix-sys +./usr/man/man3/atomic_swap_ulong.3 minix-sys +./usr/man/man3/attr_get.3 minix-sys +./usr/man/man3/attr_off.3 minix-sys +./usr/man/man3/attroff.3 minix-sys +./usr/man/man3/attr_on.3 minix-sys +./usr/man/man3/attron.3 minix-sys +./usr/man/man3/attr_set.3 minix-sys +./usr/man/man3/attrset.3 minix-sys +./usr/man/man3/basename.3 minix-sys +./usr/man/man3/bcmp.3 minix-sys +./usr/man/man3/bcopy.3 minix-sys +./usr/man/man3/beep.3 minix-sys +./usr/man/man3/bkgd.3 minix-sys +./usr/man/man3/bkgdset.3 minix-sys +./usr/man/man3/bm.3 minix-sys +./usr/man/man3/bm_comp.3 minix-sys +./usr/man/man3/bm_exec.3 minix-sys +./usr/man/man3/bm_free.3 minix-sys +./usr/man/man3/border.3 minix-sys +./usr/man/man3/box.3 minix-sys +./usr/man/man3/bsearch.3 minix-sys +./usr/man/man3/bstring.3 minix-sys +./usr/man/man3/bswap16.3 minix-sys +./usr/man/man3/bswap32.3 minix-sys +./usr/man/man3/bswap.3 minix-sys +./usr/man/man3/bswap64.3 minix-sys +./usr/man/man3/btowc.3 minix-sys +./usr/man/man3/btree.3 minix-sys +./usr/man/man3/__builtin_object_size.3 minix-sys +./usr/man/man3/byteorder.3 minix-sys +./usr/man/man3/bzero.3 minix-sys +./usr/man/man3/cabs.3 minix-sys +./usr/man/man3/cabsf.3 minix-sys +./usr/man/man3/cacos.3 minix-sys +./usr/man/man3/cacosf.3 minix-sys +./usr/man/man3/cacosh.3 minix-sys +./usr/man/man3/cacoshf.3 minix-sys +./usr/man/man3/calloc.3 minix-sys +./usr/man/man3/can_change_color.3 minix-sys +./usr/man/man3/carg.3 minix-sys +./usr/man/man3/cargf.3 minix-sys +./usr/man/man3/casin.3 minix-sys +./usr/man/man3/casinf.3 minix-sys +./usr/man/man3/casinh.3 minix-sys +./usr/man/man3/casinhf.3 minix-sys +./usr/man/man3/catan.3 minix-sys +./usr/man/man3/catanf.3 minix-sys +./usr/man/man3/catanh.3 minix-sys +./usr/man/man3/catanhf.3 minix-sys +./usr/man/man3/catclose.3 minix-sys +./usr/man/man3/catgets.3 minix-sys +./usr/man/man3/catopen.3 minix-sys +./usr/man/man3/cbreak.3 minix-sys +./usr/man/man3/cbrt.3 minix-sys +./usr/man/man3/cbrtf.3 minix-sys +./usr/man/man3/ccos.3 minix-sys +./usr/man/man3/ccosf.3 minix-sys +./usr/man/man3/ccosh.3 minix-sys +./usr/man/man3/ccoshf.3 minix-sys +./usr/man/man3/cdbr.3 minix-sys +./usr/man/man3/cdbr_close.3 minix-sys +./usr/man/man3/cdbr_entries.3 minix-sys +./usr/man/man3/cdbr_find.3 minix-sys +./usr/man/man3/cdbr_get.3 minix-sys +./usr/man/man3/cdbr_open.3 minix-sys +./usr/man/man3/cdbw.3 minix-sys +./usr/man/man3/cdbw_close.3 minix-sys +./usr/man/man3/cdbw_open.3 minix-sys +./usr/man/man3/cdbw_output.3 minix-sys +./usr/man/man3/cdbw_put.3 minix-sys +./usr/man/man3/cdbw_put_data.3 minix-sys +./usr/man/man3/cdbw_put_key.3 minix-sys +./usr/man/man3/ceil.3 minix-sys +./usr/man/man3/ceilf.3 minix-sys +./usr/man/man3/cexp.3 minix-sys +./usr/man/man3/cexpf.3 minix-sys +./usr/man/man3/cfgetispeed.3 minix-sys +./usr/man/man3/cfgetospeed.3 minix-sys +./usr/man/man3/cfmakeraw.3 minix-sys +./usr/man/man3/cfsetispeed.3 minix-sys +./usr/man/man3/cfsetospeed.3 minix-sys +./usr/man/man3/cfsetspeed.3 minix-sys +./usr/man/man3/cgetcap.3 minix-sys +./usr/man/man3/cgetclose.3 minix-sys +./usr/man/man3/cgetent.3 minix-sys +./usr/man/man3/cgetfirst.3 minix-sys +./usr/man/man3/cgetmatch.3 minix-sys +./usr/man/man3/cgetnext.3 minix-sys +./usr/man/man3/cgetnum.3 minix-sys +./usr/man/man3/cgetset.3 minix-sys +./usr/man/man3/cgetstr.3 minix-sys +./usr/man/man3/cgetustr.3 minix-sys +./usr/man/man3/chgat.3 minix-sys +./usr/man/man3/cimag.3 minix-sys +./usr/man/man3/cimagf.3 minix-sys +./usr/man/man3/cimagl.3 minix-sys +./usr/man/man3/clear.3 minix-sys +./usr/man/man3/clearerr.3 minix-sys +./usr/man/man3/clearok.3 minix-sys +./usr/man/man3/clock.3 minix-sys +./usr/man/man3/clog.3 minix-sys +./usr/man/man3/clogf.3 minix-sys +./usr/man/man3/closedir.3 minix-sys +./usr/man/man3/closefrom.3 minix-sys +./usr/man/man3/closelog.3 minix-sys +./usr/man/man3/closelog_r.3 minix-sys +./usr/man/man3/clrtobot.3 minix-sys +./usr/man/man3/clrtoeol.3 minix-sys +./usr/man/man3/color_content.3 minix-sys +./usr/man/man3/color_set.3 minix-sys +./usr/man/man3/confstr.3 minix-sys +./usr/man/man3/conj.3 minix-sys +./usr/man/man3/conjf.3 minix-sys +./usr/man/man3/copysign.3 minix-sys +./usr/man/man3/copysignf.3 minix-sys +./usr/man/man3/copysignl.3 minix-sys +./usr/man/man3/copywin.3 minix-sys +./usr/man/man3/cos.3 minix-sys +./usr/man/man3/cosf.3 minix-sys +./usr/man/man3/cosh.3 minix-sys +./usr/man/man3/coshf.3 minix-sys +./usr/man/man3/cpow.3 minix-sys +./usr/man/man3/cpowf.3 minix-sys +./usr/man/man3/cproj.3 minix-sys +./usr/man/man3/cpuset.3 minix-sys +./usr/man/man3/cpuset_clr.3 minix-sys +./usr/man/man3/cpuset_create.3 minix-sys +./usr/man/man3/cpuset_destroy.3 minix-sys +./usr/man/man3/cpuset_isset.3 minix-sys +./usr/man/man3/cpuset_set.3 minix-sys +./usr/man/man3/cpuset_size.3 minix-sys +./usr/man/man3/cpuset_zero.3 minix-sys +./usr/man/man3/creal.3 minix-sys +./usr/man/man3/crealf.3 minix-sys +./usr/man/man3/creall.3 minix-sys +./usr/man/man3/creat.3 minix-sys +./usr/man/man3/crypt.3 minix-sys +./usr/man/man3/csin.3 minix-sys +./usr/man/man3/csinf.3 minix-sys +./usr/man/man3/csinh.3 minix-sys +./usr/man/man3/csinhf.3 minix-sys +./usr/man/man3/csqrt.3 minix-sys +./usr/man/man3/csqrtf.3 minix-sys +./usr/man/man3/ctan.3 minix-sys +./usr/man/man3/ctanf.3 minix-sys +./usr/man/man3/ctanh.3 minix-sys +./usr/man/man3/ctanhf.3 minix-sys +./usr/man/man3/ctermid.3 minix-sys +./usr/man/man3/ctime.3 minix-sys +./usr/man/man3/ctime_r.3 minix-sys +./usr/man/man3/ctime_rz.3 minix-sys +./usr/man/man3/ctype.3 minix-sys +./usr/man/man3/curses.3 minix-sys +./usr/man/man3/curses_addch.3 minix-sys +./usr/man/man3/curses_addchstr.3 minix-sys +./usr/man/man3/curses_addstr.3 minix-sys +./usr/man/man3/curses_attributes.3 minix-sys +./usr/man/man3/curses_background.3 minix-sys +./usr/man/man3/curses_border.3 minix-sys +./usr/man/man3/curses_chgat.3 minix-sys +./usr/man/man3/curses_clear.3 minix-sys +./usr/man/man3/curses_color.3 minix-sys +./usr/man/man3/curses_cursor.3 minix-sys +./usr/man/man3/curses_default_colors.3 minix-sys +./usr/man/man3/curses_delch.3 minix-sys +./usr/man/man3/curses_deleteln.3 minix-sys +./usr/man/man3/curses_echochar.3 minix-sys +./usr/man/man3/curses_fileio.3 minix-sys +./usr/man/man3/curses_inch.3 minix-sys +./usr/man/man3/curses_input.3 minix-sys +./usr/man/man3/curses_insdelln.3 minix-sys +./usr/man/man3/curses_insertch.3 minix-sys +./usr/man/man3/curses_insertln.3 minix-sys +./usr/man/man3/curses_keyname.3 minix-sys +./usr/man/man3/curses_line.3 minix-sys +./usr/man/man3/curses_pad.3 minix-sys +./usr/man/man3/curses_print.3 minix-sys +./usr/man/man3/curses_refresh.3 minix-sys +./usr/man/man3/curses_scanw.3 minix-sys +./usr/man/man3/curses_screen.3 minix-sys +./usr/man/man3/curses_scroll.3 minix-sys +./usr/man/man3/curses_standout.3 minix-sys +./usr/man/man3/curses_termcap.3 minix-sys +./usr/man/man3/curses_touch.3 minix-sys +./usr/man/man3/curses_tty.3 minix-sys +./usr/man/man3/curses_underscore.3 minix-sys +./usr/man/man3/curses_window.3 minix-sys +./usr/man/man3/curs_set.3 minix-sys +./usr/man/man3/daemon.3 minix-sys +./usr/man/man3/daylight.3 minix-sys +./usr/man/man3/db.3 minix-sys +./usr/man/man3/dbm_clearerr.3 minix-sys +./usr/man/man3/dbm_close.3 minix-sys +./usr/man/man3/dbm_delete.3 minix-sys +./usr/man/man3/dbm_dirfno.3 minix-sys +./usr/man/man3/dbm_error.3 minix-sys +./usr/man/man3/dbm_fetch.3 minix-sys +./usr/man/man3/dbm_firstkey.3 minix-sys +./usr/man/man3/dbm_nextkey.3 minix-sys +./usr/man/man3/dbm_open.3 minix-sys +./usr/man/man3/dbm_store.3 minix-sys +./usr/man/man3/dbopen.3 minix-sys +./usr/man/man3/def_prog_mode.3 minix-sys +./usr/man/man3/def_shell_mode.3 minix-sys +./usr/man/man3/dehumanize_number.3 minix-sys +./usr/man/man3/delay_output.3 minix-sys +./usr/man/man3/delch.3 minix-sys +./usr/man/man3/del_curterm.3 minix-sys +./usr/man/man3/deleteln.3 minix-sys +./usr/man/man3/delscreen.3 minix-sys +./usr/man/man3/delwin.3 minix-sys +./usr/man/man3/derwin.3 minix-sys +./usr/man/man3/devname.3 minix-sys +./usr/man/man3/difftime.3 minix-sys +./usr/man/man3/directory.3 minix-sys +./usr/man/man3/dirfd.3 minix-sys +./usr/man/man3/dirname.3 minix-sys +./usr/man/man3/div.3 minix-sys +./usr/man/man3/dn_comp.3 minix-sys +./usr/man/man3/dn_expand.3 minix-sys +./usr/man/man3/doupdate.3 minix-sys +./usr/man/man3/dprintf.3 minix-sys +./usr/man/man3/drand48.3 minix-sys +./usr/man/man3/dupwin.3 minix-sys +./usr/man/man3/easprintf.3 minix-sys +./usr/man/man3/ecalloc.3 minix-sys +./usr/man/man3/echo.3 minix-sys +./usr/man/man3/echochar.3 minix-sys +./usr/man/man3/efopen.3 minix-sys +./usr/man/man3/efun.3 minix-sys +./usr/man/man3/elf32_checksum.3 minix-sys +./usr/man/man3/elf32_fsize.3 minix-sys +./usr/man/man3/elf32_getehdr.3 minix-sys +./usr/man/man3/elf32_getphdr.3 minix-sys +./usr/man/man3/elf32_getshdr.3 minix-sys +./usr/man/man3/elf32_newehdr.3 minix-sys +./usr/man/man3/elf32_newphdr.3 minix-sys +./usr/man/man3/elf32_xlatetof.3 minix-sys +./usr/man/man3/elf32_xlatetom.3 minix-sys +./usr/man/man3/elf.3 minix-sys +./usr/man/man3/elf64_checksum.3 minix-sys +./usr/man/man3/elf64_fsize.3 minix-sys +./usr/man/man3/elf64_getehdr.3 minix-sys +./usr/man/man3/elf64_getphdr.3 minix-sys +./usr/man/man3/elf64_getshdr.3 minix-sys +./usr/man/man3/elf64_newehdr.3 minix-sys +./usr/man/man3/elf64_newphdr.3 minix-sys +./usr/man/man3/elf64_xlatetof.3 minix-sys +./usr/man/man3/elf64_xlatetom.3 minix-sys +./usr/man/man3/elf_begin.3 minix-sys +./usr/man/man3/elf_cntl.3 minix-sys +./usr/man/man3/elf_end.3 minix-sys +./usr/man/man3/elf_errmsg.3 minix-sys +./usr/man/man3/elf_errno.3 minix-sys +./usr/man/man3/elf_fill.3 minix-sys +./usr/man/man3/elf_flagarhdr.3 minix-sys +./usr/man/man3/elf_flagdata.3 minix-sys +./usr/man/man3/elf_flagehdr.3 minix-sys +./usr/man/man3/elf_flagelf.3 minix-sys +./usr/man/man3/elf_flagphdr.3 minix-sys +./usr/man/man3/elf_flagscn.3 minix-sys +./usr/man/man3/elf_flagshdr.3 minix-sys +./usr/man/man3/elf_getarhdr.3 minix-sys +./usr/man/man3/elf_getarsym.3 minix-sys +./usr/man/man3/elf_getbase.3 minix-sys +./usr/man/man3/elf_getdata.3 minix-sys +./usr/man/man3/elf_getident.3 minix-sys +./usr/man/man3/elf_getphdrnum.3 minix-sys +./usr/man/man3/elf_getphnum.3 minix-sys +./usr/man/man3/elf_getscn.3 minix-sys +./usr/man/man3/elf_getshdrnum.3 minix-sys +./usr/man/man3/elf_getshdrstrndx.3 minix-sys +./usr/man/man3/elf_getshnum.3 minix-sys +./usr/man/man3/elf_getshstrndx.3 minix-sys +./usr/man/man3/elf_hash.3 minix-sys +./usr/man/man3/elf_kind.3 minix-sys +./usr/man/man3/elf_memory.3 minix-sys +./usr/man/man3/elf_ndxscn.3 minix-sys +./usr/man/man3/elf_newdata.3 minix-sys +./usr/man/man3/elf_newscn.3 minix-sys +./usr/man/man3/elf_next.3 minix-sys +./usr/man/man3/elf_nextscn.3 minix-sys +./usr/man/man3/elf_rand.3 minix-sys +./usr/man/man3/elf_rawdata.3 minix-sys +./usr/man/man3/elf_rawfile.3 minix-sys +./usr/man/man3/elf_setshstrndx.3 minix-sys +./usr/man/man3/elf_strptr.3 minix-sys +./usr/man/man3/elf_update.3 minix-sys +./usr/man/man3/elf_version.3 minix-sys +./usr/man/man3/emalloc.3 minix-sys +./usr/man/man3/encrypt.3 minix-sys +./usr/man/man3/endfsent.3 minix-sys +./usr/man/man3/endgrent.3 minix-sys +./usr/man/man3/endhostent.3 minix-sys +./usr/man/man3/endnetent.3 minix-sys +./usr/man/man3/endnetgrent.3 minix-sys +./usr/man/man3/endprotoent.3 minix-sys +./usr/man/man3/endpwent.3 minix-sys +./usr/man/man3/endservent.3 minix-sys +./usr/man/man3/endttyent.3 minix-sys +./usr/man/man3/endusershell.3 minix-sys +./usr/man/man3/endutxent.3 minix-sys +./usr/man/man3/endwin.3 minix-sys +./usr/man/man3/erand48.3 minix-sys +./usr/man/man3/erase.3 minix-sys +./usr/man/man3/erasechar.3 minix-sys +./usr/man/man3/erealloc.3 minix-sys +./usr/man/man3/erf.3 minix-sys +./usr/man/man3/erfc.3 minix-sys +./usr/man/man3/erfcf.3 minix-sys +./usr/man/man3/erff.3 minix-sys +./usr/man/man3/err.3 minix-sys +./usr/man/man3/errx.3 minix-sys +./usr/man/man3/esetfunc.3 minix-sys +./usr/man/man3/estrdup.3 minix-sys +./usr/man/man3/estrlcat.3 minix-sys +./usr/man/man3/estrlcpy.3 minix-sys +./usr/man/man3/estrndup.3 minix-sys +./usr/man/man3/ether_aton.3 minix-sys +./usr/man/man3/ether_hostton.3 minix-sys +./usr/man/man3/ether_line.3 minix-sys +./usr/man/man3/ether_ntoa.3 minix-sys +./usr/man/man3/ether_ntohost.3 minix-sys +./usr/man/man3/ethers.3 minix-sys +./usr/man/man3/evasprintf.3 minix-sys +./usr/man/man3/exec.3 minix-sys +./usr/man/man3/execl.3 minix-sys +./usr/man/man3/execle.3 minix-sys +./usr/man/man3/execlp.3 minix-sys +./usr/man/man3/exect.3 minix-sys +./usr/man/man3/execv.3 minix-sys +./usr/man/man3/execvp.3 minix-sys +./usr/man/man3/exit.3 minix-sys +./usr/man/man3/exp2.3 minix-sys +./usr/man/man3/exp2f.3 minix-sys +./usr/man/man3/exp.3 minix-sys +./usr/man/man3/expf.3 minix-sys +./usr/man/man3/expm1.3 minix-sys +./usr/man/man3/expm1f.3 minix-sys +./usr/man/man3/extattr.3 minix-sys +./usr/man/man3/extattr_namespace_to_string.3 minix-sys +./usr/man/man3/extattr_string_to_namespace.3 minix-sys +./usr/man/man3/fabs.3 minix-sys +./usr/man/man3/fabsf.3 minix-sys +./usr/man/man3/fclose.3 minix-sys +./usr/man/man3/fdim.3 minix-sys +./usr/man/man3/fdimf.3 minix-sys +./usr/man/man3/fdiml.3 minix-sys +./usr/man/man3/fdopen.3 minix-sys +./usr/man/man3/fdopendir.3 minix-sys +./usr/man/man3/feclearexcept.3 minix-sys +./usr/man/man3/fedisableexcept.3 minix-sys +./usr/man/man3/feenableexcept.3 minix-sys +./usr/man/man3/fegetenv.3 minix-sys +./usr/man/man3/fegetexcept.3 minix-sys +./usr/man/man3/fegetexceptflag.3 minix-sys +./usr/man/man3/fegetround.3 minix-sys +./usr/man/man3/feholdexcept.3 minix-sys +./usr/man/man3/fenv.3 minix-sys +./usr/man/man3/feof.3 minix-sys +./usr/man/man3/feraiseexcept.3 minix-sys +./usr/man/man3/ferror.3 minix-sys +./usr/man/man3/fesetenv.3 minix-sys +./usr/man/man3/fesetexceptflag.3 minix-sys +./usr/man/man3/fesetround.3 minix-sys +./usr/man/man3/fetestexcept.3 minix-sys +./usr/man/man3/feupdateenv.3 minix-sys +./usr/man/man3/fflush.3 minix-sys +./usr/man/man3/ffs.3 minix-sys +./usr/man/man3/fgetc.3 minix-sys +./usr/man/man3/fgetln.3 minix-sys +./usr/man/man3/fgetpos.3 minix-sys +./usr/man/man3/fgets.3 minix-sys +./usr/man/man3/fgetwc.3 minix-sys +./usr/man/man3/fgetwln.3 minix-sys +./usr/man/man3/fgetws.3 minix-sys +./usr/man/man3/fileno.3 minix-sys +./usr/man/man3/finite.3 minix-sys +./usr/man/man3/finitef.3 minix-sys +./usr/man/man3/flags_to_string.3 minix-sys +./usr/man/man3/flash.3 minix-sys +./usr/man/man3/flockfile.3 minix-sys +./usr/man/man3/floor.3 minix-sys +./usr/man/man3/floorf.3 minix-sys +./usr/man/man3/flushinp.3 minix-sys +./usr/man/man3/flushok.3 minix-sys +./usr/man/man3/fmax.3 minix-sys +./usr/man/man3/fmaxf.3 minix-sys +./usr/man/man3/fmaxl.3 minix-sys +./usr/man/man3/fmemopen.3 minix-sys +./usr/man/man3/fmin.3 minix-sys +./usr/man/man3/fminf.3 minix-sys +./usr/man/man3/fminl.3 minix-sys +./usr/man/man3/fmod.3 minix-sys +./usr/man/man3/fmodf.3 minix-sys +./usr/man/man3/fmtcheck.3 minix-sys +./usr/man/man3/fmtmsg.3 minix-sys +./usr/man/man3/fnmatch.3 minix-sys +./usr/man/man3/fopen.3 minix-sys +./usr/man/man3/forkpty.3 minix-sys +./usr/man/man3/fparseln.3 minix-sys +./usr/man/man3/fpclassify.3 minix-sys +./usr/man/man3/fpgetmask.3 minix-sys +./usr/man/man3/fpgetround.3 minix-sys +./usr/man/man3/fpgetsticky.3 minix-sys +./usr/man/man3/fp_nquery.3 minix-sys +./usr/man/man3/fp_resstat.3 minix-sys +./usr/man/man3/fprintf.3 minix-sys +./usr/man/man3/fpsetmask.3 minix-sys +./usr/man/man3/fpsetround.3 minix-sys +./usr/man/man3/fpsetsticky.3 minix-sys +./usr/man/man3/fpurge.3 minix-sys +./usr/man/man3/fputc.3 minix-sys +./usr/man/man3/fputs.3 minix-sys +./usr/man/man3/fputwc.3 minix-sys +./usr/man/man3/fputws.3 minix-sys +./usr/man/man3/fread.3 minix-sys +./usr/man/man3/free.3 minix-sys +./usr/man/man3/freeaddrinfo.3 minix-sys +./usr/man/man3/freeifaddrs.3 minix-sys +./usr/man/man3/freopen.3 minix-sys +./usr/man/man3/frexp.3 minix-sys +./usr/man/man3/fropen.3 minix-sys +./usr/man/man3/fscanf.3 minix-sys +./usr/man/man3/fseek.3 minix-sys +./usr/man/man3/fseeko.3 minix-sys +./usr/man/man3/fsetpos.3 minix-sys +./usr/man/man3/ftell.3 minix-sys +./usr/man/man3/ftello.3 minix-sys +./usr/man/man3/ftok.3 minix-sys +./usr/man/man3/ftrylockfile.3 minix-sys +./usr/man/man3/fts.3 minix-sys +./usr/man/man3/fts_children.3 minix-sys +./usr/man/man3/fts_close.3 minix-sys +./usr/man/man3/fts_open.3 minix-sys +./usr/man/man3/fts_read.3 minix-sys +./usr/man/man3/fts_set.3 minix-sys +./usr/man/man3/ftw.3 minix-sys +./usr/man/man3/fullname.3 minix-sys +./usr/man/man3/funlockfile.3 minix-sys +./usr/man/man3/funopen.3 minix-sys +./usr/man/man3/fwide.3 minix-sys +./usr/man/man3/fwopen.3 minix-sys +./usr/man/man3/fwprintf.3 minix-sys +./usr/man/man3/fwrite.3 minix-sys +./usr/man/man3/fwscanf.3 minix-sys +./usr/man/man3/gai_strerror.3 minix-sys +./usr/man/man3/gamma.3 minix-sys +./usr/man/man3/gammaf.3 minix-sys +./usr/man/man3/gammaf_r.3 minix-sys +./usr/man/man3/gamma_r.3 minix-sys +./usr/man/man3/gelf.3 minix-sys +./usr/man/man3/gelf_checksum.3 minix-sys +./usr/man/man3/gelf_fsize.3 minix-sys +./usr/man/man3/gelf_getcap.3 minix-sys +./usr/man/man3/gelf_getclass.3 minix-sys +./usr/man/man3/gelf_getdyn.3 minix-sys +./usr/man/man3/gelf_getehdr.3 minix-sys +./usr/man/man3/gelf_getmove.3 minix-sys +./usr/man/man3/gelf_getphdr.3 minix-sys +./usr/man/man3/gelf_getrel.3 minix-sys +./usr/man/man3/gelf_getrela.3 minix-sys +./usr/man/man3/gelf_getshdr.3 minix-sys +./usr/man/man3/gelf_getsym.3 minix-sys +./usr/man/man3/gelf_getsyminfo.3 minix-sys +./usr/man/man3/gelf_getsymshndx.3 minix-sys +./usr/man/man3/gelf_newehdr.3 minix-sys +./usr/man/man3/gelf_newphdr.3 minix-sys +./usr/man/man3/gelf_update_cap.3 minix-sys +./usr/man/man3/gelf_update_dyn.3 minix-sys +./usr/man/man3/gelf_update_ehdr.3 minix-sys +./usr/man/man3/gelf_update_move.3 minix-sys +./usr/man/man3/gelf_update_phdr.3 minix-sys +./usr/man/man3/gelf_update_rel.3 minix-sys +./usr/man/man3/gelf_update_rela.3 minix-sys +./usr/man/man3/gelf_update_shdr.3 minix-sys +./usr/man/man3/gelf_update_sym.3 minix-sys +./usr/man/man3/gelf_update_syminfo.3 minix-sys +./usr/man/man3/gelf_update_symshndx.3 minix-sys +./usr/man/man3/gelf_xlatetof.3 minix-sys +./usr/man/man3/gelf_xlatetom.3 minix-sys +./usr/man/man3/getaddrinfo.3 minix-sys +./usr/man/man3/getattrs.3 minix-sys +./usr/man/man3/getbegx.3 minix-sys +./usr/man/man3/getbegy.3 minix-sys +./usr/man/man3/getbkgd.3 minix-sys +./usr/man/man3/getbootfile.3 minix-sys +./usr/man/man3/getbsize.3 minix-sys +./usr/man/man3/getc.3 minix-sys +./usr/man/man3/getcap.3 minix-sys +./usr/man/man3/getch.3 minix-sys +./usr/man/man3/getchar.3 minix-sys +./usr/man/man3/getchar_unlocked.3 minix-sys +./usr/man/man3/getc_unlocked.3 minix-sys +./usr/man/man3/getcurx.3 minix-sys +./usr/man/man3/getcury.3 minix-sys +./usr/man/man3/getcwd.3 minix-sys +./usr/man/man3/getdate.3 minix-sys +./usr/man/man3/getdate_err.3 minix-sys +./usr/man/man3/getdelim.3 minix-sys +./usr/man/man3/getdevmajor.3 minix-sys +./usr/man/man3/getdiskbyname.3 minix-sys +./usr/man/man3/getdomainname.3 minix-sys +./usr/man/man3/getdtablesize.3 minix-sys +./usr/man/man3/getenv.3 minix-sys +./usr/man/man3/getenv_r.3 minix-sys +./usr/man/man3/getfsent.3 minix-sys +./usr/man/man3/getfsfile.3 minix-sys +./usr/man/man3/getfsspec.3 minix-sys +./usr/man/man3/getgrent.3 minix-sys +./usr/man/man3/getgrent_r.3 minix-sys +./usr/man/man3/getgrgid.3 minix-sys +./usr/man/man3/getgrgid_r.3 minix-sys +./usr/man/man3/getgrnam.3 minix-sys +./usr/man/man3/getgrnam_r.3 minix-sys +./usr/man/man3/getgrouplist.3 minix-sys +./usr/man/man3/getgroupmembership.3 minix-sys +./usr/man/man3/gethostbyaddr.3 minix-sys +./usr/man/man3/gethostbyname2.3 minix-sys +./usr/man/man3/gethostbyname.3 minix-sys +./usr/man/man3/gethostent.3 minix-sys +./usr/man/man3/gethostid.3 minix-sys +./usr/man/man3/gethostname.3 minix-sys +./usr/man/man3/getifaddrs.3 minix-sys +./usr/man/man3/getlastlogx.3 minix-sys +./usr/man/man3/getline.3 minix-sys +./usr/man/man3/getloadavg.3 minix-sys +./usr/man/man3/getmaxx.3 minix-sys +./usr/man/man3/getmaxy.3 minix-sys +./usr/man/man3/getmaxyx.3 minix-sys +./usr/man/man3/getmntinfo.3 minix-sys +./usr/man/man3/getmntopts.3 minix-sys +./usr/man/man3/getmode.3 minix-sys +./usr/man/man3/getnameinfo.3 minix-sys +./usr/man/man3/getnetbyaddr.3 minix-sys +./usr/man/man3/getnetbyname.3 minix-sys +./usr/man/man3/getnetent.3 minix-sys +./usr/man/man3/getnetgrent.3 minix-sys +./usr/man/man3/getnstr.3 minix-sys +./usr/man/man3/getopt.3 minix-sys +./usr/man/man3/getopt_long.3 minix-sys +./usr/man/man3/getpagesize.3 minix-sys +./usr/man/man3/getparx.3 minix-sys +./usr/man/man3/getpary.3 minix-sys +./usr/man/man3/getparyx.3 minix-sys +./usr/man/man3/getpass.3 minix-sys +./usr/man/man3/getpeereid.3 minix-sys +./usr/man/man3/getprogname.3 minix-sys +./usr/man/man3/getprotobyname.3 minix-sys +./usr/man/man3/getprotobynumber.3 minix-sys +./usr/man/man3/getprotoent.3 minix-sys +./usr/man/man3/getpwent.3 minix-sys +./usr/man/man3/getpwent_r.3 minix-sys +./usr/man/man3/getpwnam.3 minix-sys +./usr/man/man3/getpwnam_r.3 minix-sys +./usr/man/man3/getpwuid.3 minix-sys +./usr/man/man3/getpwuid_r.3 minix-sys +./usr/man/man3/gets.3 minix-sys +./usr/man/man3/getservbyname.3 minix-sys +./usr/man/man3/getservbyport.3 minix-sys +./usr/man/man3/getservent.3 minix-sys +./usr/man/man3/getstr.3 minix-sys +./usr/man/man3/getsubopt.3 minix-sys +./usr/man/man3/gettmode.3 minix-sys +./usr/man/man3/getttyent.3 minix-sys +./usr/man/man3/getttynam.3 minix-sys +./usr/man/man3/getusershell.3 minix-sys +./usr/man/man3/getutmp.3 minix-sys +./usr/man/man3/getutmpx.3 minix-sys +./usr/man/man3/getutxent.3 minix-sys +./usr/man/man3/getutxid.3 minix-sys +./usr/man/man3/getutxline.3 minix-sys +./usr/man/man3/getw.3 minix-sys +./usr/man/man3/getwc.3 minix-sys +./usr/man/man3/getwchar.3 minix-sys +./usr/man/man3/getwd.3 minix-sys +./usr/man/man3/getwin.3 minix-sys +./usr/man/man3/getyx.3 minix-sys +./usr/man/man3/gid_from_group.3 minix-sys +./usr/man/man3/glob.3 minix-sys +./usr/man/man3/globfree.3 minix-sys +./usr/man/man3/glob_pattern_p.3 minix-sys +./usr/man/man3/gmtime.3 minix-sys +./usr/man/man3/gmtime_r.3 minix-sys +./usr/man/man3/grantpt.3 minix-sys +./usr/man/man3/group_from_gid.3 minix-sys +./usr/man/man3/halfdelay.3 minix-sys +./usr/man/man3/has_colors.3 minix-sys +./usr/man/man3/hash.3 minix-sys +./usr/man/man3/has_ic.3 minix-sys +./usr/man/man3/has_il.3 minix-sys +./usr/man/man3/hcreate.3 minix-sys +./usr/man/man3/hdestroy.3 minix-sys +./usr/man/man3/heapsort.3 minix-sys +./usr/man/man3/herror.3 minix-sys +./usr/man/man3/hesiod.3 minix-sys +./usr/man/man3/hesiod_end.3 minix-sys +./usr/man/man3/hesiod_free_list.3 minix-sys +./usr/man/man3/hesiod_init.3 minix-sys +./usr/man/man3/hesiod_resolve.3 minix-sys +./usr/man/man3/hesiod_to_bind.3 minix-sys +./usr/man/man3/hline.3 minix-sys +./usr/man/man3/hostalias.3 minix-sys +./usr/man/man3/hsearch.3 minix-sys +./usr/man/man3/hstrerror.3 minix-sys +./usr/man/man3/htonl.3 minix-sys +./usr/man/man3/htons.3 minix-sys +./usr/man/man3/humanize_number.3 minix-sys +./usr/man/man3/hypot.3 minix-sys +./usr/man/man3/hypotf.3 minix-sys +./usr/man/man3/iconv.3 minix-sys +./usr/man/man3/iconv_close.3 minix-sys +./usr/man/man3/iconv_open.3 minix-sys +./usr/man/man3/idcok.3 minix-sys +./usr/man/man3/idlok.3 minix-sys +./usr/man/man3/ieee.3 minix-sys +./usr/man/man3/ieee_test.3 minix-sys +./usr/man/man3/if_freenameindex.3 minix-sys +./usr/man/man3/if_indextoname.3 minix-sys +./usr/man/man3/if_nameindex.3 minix-sys +./usr/man/man3/if_nametoindex.3 minix-sys +./usr/man/man3/ilogb.3 minix-sys +./usr/man/man3/ilogbf.3 minix-sys +./usr/man/man3/imaxabs.3 minix-sys +./usr/man/man3/imaxdiv.3 minix-sys +./usr/man/man3/inch.3 minix-sys +./usr/man/man3/inchnstr.3 minix-sys +./usr/man/man3/inchstr.3 minix-sys +./usr/man/man3/index.3 minix-sys +./usr/man/man3/inet.3 minix-sys +./usr/man/man3/inet6_opt_append.3 minix-sys +./usr/man/man3/inet6_opt_find.3 minix-sys +./usr/man/man3/inet6_opt_finish.3 minix-sys +./usr/man/man3/inet6_opt_get_val.3 minix-sys +./usr/man/man3/inet6_opt_init.3 minix-sys +./usr/man/man3/inet6_option_alloc.3 minix-sys +./usr/man/man3/inet6_option_append.3 minix-sys +./usr/man/man3/inet6_option_find.3 minix-sys +./usr/man/man3/inet6_option_init.3 minix-sys +./usr/man/man3/inet6_option_next.3 minix-sys +./usr/man/man3/inet6_option_space.3 minix-sys +./usr/man/man3/inet6_opt_next.3 minix-sys +./usr/man/man3/inet6_opt_set_val.3 minix-sys +./usr/man/man3/inet6_rth_add.3 minix-sys +./usr/man/man3/inet6_rthdr_add.3 minix-sys +./usr/man/man3/inet6_rthdr_getaddr.3 minix-sys +./usr/man/man3/inet6_rthdr_getflags.3 minix-sys +./usr/man/man3/inet6_rthdr_init.3 minix-sys +./usr/man/man3/inet6_rthdr_lasthop.3 minix-sys +./usr/man/man3/inet6_rthdr_reverse.3 minix-sys +./usr/man/man3/inet6_rthdr_segments.3 minix-sys +./usr/man/man3/inet6_rthdr_space.3 minix-sys +./usr/man/man3/inet6_rth_getaddr.3 minix-sys +./usr/man/man3/inet6_rth_init.3 minix-sys +./usr/man/man3/inet6_rth_reverse.3 minix-sys +./usr/man/man3/inet6_rth_segments.3 minix-sys +./usr/man/man3/inet6_rth_space.3 minix-sys +./usr/man/man3/inet_addr.3 minix-sys +./usr/man/man3/inet_aton.3 minix-sys +./usr/man/man3/inet_lnaof.3 minix-sys +./usr/man/man3/inet_makeaddr.3 minix-sys +./usr/man/man3/inet_net.3 minix-sys +./usr/man/man3/inet_net_ntop.3 minix-sys +./usr/man/man3/inet_netof.3 minix-sys +./usr/man/man3/inet_net_pton.3 minix-sys +./usr/man/man3/inet_network.3 minix-sys +./usr/man/man3/inet_ntoa.3 minix-sys +./usr/man/man3/inet_ntop.3 minix-sys +./usr/man/man3/inet_pton.3 minix-sys +./usr/man/man3/init_color.3 minix-sys +./usr/man/man3/initgroups.3 minix-sys +./usr/man/man3/init_pair.3 minix-sys +./usr/man/man3/initscr.3 minix-sys +./usr/man/man3/initstate.3 minix-sys +./usr/man/man3/innetgr.3 minix-sys +./usr/man/man3/innstr.3 minix-sys +./usr/man/man3/insch.3 minix-sys +./usr/man/man3/insdelln.3 minix-sys +./usr/man/man3/insertln.3 minix-sys +./usr/man/man3/insque.3 minix-sys +./usr/man/man3/instr.3 minix-sys +./usr/man/man3/intrflush.3 minix-sys +./usr/man/man3/iruserok.3 minix-sys +./usr/man/man3/iruserok_sa.3 minix-sys +./usr/man/man3/isalnum.3 minix-sys +./usr/man/man3/isalpha.3 minix-sys +./usr/man/man3/isascii.3 minix-sys +./usr/man/man3/isatty.3 minix-sys +./usr/man/man3/isblank.3 minix-sys +./usr/man/man3/iscntrl.3 minix-sys +./usr/man/man3/isdigit.3 minix-sys +./usr/man/man3/isendwin.3 minix-sys +./usr/man/man3/isfinite.3 minix-sys +./usr/man/man3/isgraph.3 minix-sys +./usr/man/man3/isgreater.3 minix-sys +./usr/man/man3/isinf.3 minix-sys +./usr/man/man3/isinff.3 minix-sys +./usr/man/man3/is_linetouched.3 minix-sys +./usr/man/man3/islower.3 minix-sys +./usr/man/man3/isnan.3 minix-sys +./usr/man/man3/isnanf.3 minix-sys +./usr/man/man3/isnormal.3 minix-sys +./usr/man/man3/iso_addr.3 minix-sys +./usr/man/man3/isprint.3 minix-sys +./usr/man/man3/ispunct.3 minix-sys +./usr/man/man3/isspace.3 minix-sys +./usr/man/man3/isupper.3 minix-sys +./usr/man/man3/iswalnum.3 minix-sys +./usr/man/man3/iswalpha.3 minix-sys +./usr/man/man3/iswblank.3 minix-sys +./usr/man/man3/iswcntrl.3 minix-sys +./usr/man/man3/iswctype.3 minix-sys +./usr/man/man3/iswdigit.3 minix-sys +./usr/man/man3/iswgraph.3 minix-sys +./usr/man/man3/is_wintouched.3 minix-sys +./usr/man/man3/iswlower.3 minix-sys +./usr/man/man3/iswprint.3 minix-sys +./usr/man/man3/iswpunct.3 minix-sys +./usr/man/man3/iswspace.3 minix-sys +./usr/man/man3/iswupper.3 minix-sys +./usr/man/man3/iswxdigit.3 minix-sys +./usr/man/man3/isxdigit.3 minix-sys +./usr/man/man3/j0.3 minix-sys +./usr/man/man3/j0f.3 minix-sys +./usr/man/man3/j1.3 minix-sys +./usr/man/man3/j1f.3 minix-sys +./usr/man/man3/jemalloc.3 minix-sys +./usr/man/man3/jn.3 minix-sys +./usr/man/man3/jnf.3 minix-sys +./usr/man/man3/jrand48.3 minix-sys +./usr/man/man3/keyname.3 minix-sys +./usr/man/man3/keypad.3 minix-sys +./usr/man/man3/killchar.3 minix-sys +./usr/man/man3/killpg.3 minix-sys +./usr/man/man3/l64a.3 minix-sys +./usr/man/man3/l64a_r.3 minix-sys +./usr/man/man3/labs.3 minix-sys +./usr/man/man3/lcong48.3 minix-sys +./usr/man/man3/ldexp.3 minix-sys +./usr/man/man3/ldiv.3 minix-sys +./usr/man/man3/leaveok.3 minix-sys +./usr/man/man3/lfind.3 minix-sys +./usr/man/man3/lgamma.3 minix-sys +./usr/man/man3/lgammaf.3 minix-sys +./usr/man/man3/lgammaf_r.3 minix-sys +./usr/man/man3/lgamma_r.3 minix-sys +./usr/man/man3/libarchive.3 minix-sys +./usr/man/man3/libarchive_internals.3 minix-sys +./usr/man/man3/libmagic.3 minix-sys +./usr/man/man3/link_addr.3 minix-sys +./usr/man/man3/linkaddr.3 minix-sys +./usr/man/man3/link_ntoa.3 minix-sys +./usr/man/man3/linkntoa.3 minix-sys +./usr/man/man3/llabs.3 minix-sys +./usr/man/man3/lldiv.3 minix-sys +./usr/man/man3/llrint.3 minix-sys +./usr/man/man3/llrintf.3 minix-sys +./usr/man/man3/localeconv.3 minix-sys +./usr/man/man3/localtime.3 minix-sys +./usr/man/man3/localtime_r.3 minix-sys +./usr/man/man3/localtime_rz.3 minix-sys +./usr/man/man3/lockf.3 minix-sys +./usr/man/man3/log10.3 minix-sys +./usr/man/man3/log10f.3 minix-sys +./usr/man/man3/log1p.3 minix-sys +./usr/man/man3/log1pf.3 minix-sys +./usr/man/man3/log2.3 minix-sys +./usr/man/man3/log2f.3 minix-sys +./usr/man/man3/log.3 minix-sys +./usr/man/man3/logb.3 minix-sys +./usr/man/man3/logbf.3 minix-sys +./usr/man/man3/logf.3 minix-sys +./usr/man/man3/login.3 minix-sys +./usr/man/man3/login_cap.3 minix-sys +./usr/man/man3/login_close.3 minix-sys +./usr/man/man3/login_getcapbool.3 minix-sys +./usr/man/man3/login_getcapnum.3 minix-sys +./usr/man/man3/login_getcapsize.3 minix-sys +./usr/man/man3/login_getcapstr.3 minix-sys +./usr/man/man3/login_getcaptime.3 minix-sys +./usr/man/man3/login_getclass.3 minix-sys +./usr/man/man3/login_tty.3 minix-sys +./usr/man/man3/loginx.3 minix-sys +./usr/man/man3/logout.3 minix-sys +./usr/man/man3/logoutx.3 minix-sys +./usr/man/man3/logwtmp.3 minix-sys +./usr/man/man3/logwtmpx.3 minix-sys +./usr/man/man3/_longjmp.3 minix-sys +./usr/man/man3/longjmp.3 minix-sys +./usr/man/man3/longjmperror.3 minix-sys +./usr/man/man3/longname.3 minix-sys +./usr/man/man3/lrand48.3 minix-sys +./usr/man/man3/lrint.3 minix-sys +./usr/man/man3/lrintf.3 minix-sys +./usr/man/man3/lsearch.3 minix-sys +./usr/man/man3/_lwp_makecontext.3 minix-sys +./usr/man/man3/magic_buffer.3 minix-sys +./usr/man/man3/magic_check.3 minix-sys +./usr/man/man3/magic_close.3 minix-sys +./usr/man/man3/magic_compile.3 minix-sys +./usr/man/man3/magic_error.3 minix-sys +./usr/man/man3/magic_file.3 minix-sys +./usr/man/man3/magic_load.3 minix-sys +./usr/man/man3/magic_open.3 minix-sys +./usr/man/man3/magic_setflags.3 minix-sys +./usr/man/man3/makecontext.3 minix-sys +./usr/man/man3/malloc.3 minix-sys +./usr/man/man3/man.3 minix-sys +./usr/man/man3/math.3 minix-sys +./usr/man/man3/mblen.3 minix-sys +./usr/man/man3/mbrlen.3 minix-sys +./usr/man/man3/mbrtowc.3 minix-sys +./usr/man/man3/mbsinit.3 minix-sys +./usr/man/man3/mbsrtowcs.3 minix-sys +./usr/man/man3/mbstowcs.3 minix-sys +./usr/man/man3/mbtowc.3 minix-sys +./usr/man/man3/md2.3 minix-sys +./usr/man/man3/MD2Data.3 minix-sys +./usr/man/man3/MD2End.3 minix-sys +./usr/man/man3/MD2File.3 minix-sys +./usr/man/man3/MD2FileChunk.3 minix-sys +./usr/man/man3/MD2Final.3 minix-sys +./usr/man/man3/MD2Init.3 minix-sys +./usr/man/man3/MD2Transform.3 minix-sys +./usr/man/man3/MD2Update.3 minix-sys +./usr/man/man3/mdoc.3 minix-sys +./usr/man/man3/membar_consumer.3 minix-sys +./usr/man/man3/membar_enter.3 minix-sys +./usr/man/man3/membar_exit.3 minix-sys +./usr/man/man3/membar_ops.3 minix-sys +./usr/man/man3/membar_producer.3 minix-sys +./usr/man/man3/membar_sync.3 minix-sys +./usr/man/man3/memccpy.3 minix-sys +./usr/man/man3/memchr.3 minix-sys +./usr/man/man3/memcmp.3 minix-sys +./usr/man/man3/memcpy.3 minix-sys +./usr/man/man3/memmem.3 minix-sys +./usr/man/man3/memmove.3 minix-sys +./usr/man/man3/memory.3 minix-sys +./usr/man/man3/memrchr.3 minix-sys +./usr/man/man3/memset.3 minix-sys +./usr/man/man3/mergesort.3 minix-sys +./usr/man/man3/meta.3 minix-sys +./usr/man/man3 minix-sys +./usr/man/man3/mi_vector_hash.3 minix-sys +./usr/man/man3/mkdtemp.3 minix-sys +./usr/man/man3/mkstemp.3 minix-sys +./usr/man/man3/mktemp.3 minix-sys +./usr/man/man3/mktime.3 minix-sys +./usr/man/man3/mktime_z.3 minix-sys +./usr/man/man3/modf.3 minix-sys +./usr/man/man3/move.3 minix-sys +./usr/man/man3/mpool.3 minix-sys +./usr/man/man3/mpool_close.3 minix-sys +./usr/man/man3/mpool_filter.3 minix-sys +./usr/man/man3/mpool_get.3 minix-sys +./usr/man/man3/mpool_new.3 minix-sys +./usr/man/man3/mpool_open.3 minix-sys +./usr/man/man3/mpool_put.3 minix-sys +./usr/man/man3/mpool_sync.3 minix-sys +./usr/man/man3/mrand48.3 minix-sys +./usr/man/man3/mvaddch.3 minix-sys +./usr/man/man3/mvaddchnstr.3 minix-sys +./usr/man/man3/mvaddchstr.3 minix-sys +./usr/man/man3/mvaddnstr.3 minix-sys +./usr/man/man3/mvaddstr.3 minix-sys +./usr/man/man3/mvchgat.3 minix-sys +./usr/man/man3/mvcur.3 minix-sys +./usr/man/man3/mvderwin.3 minix-sys +./usr/man/man3/mvgetch.3 minix-sys +./usr/man/man3/mvgetnstr.3 minix-sys +./usr/man/man3/mvgetstr.3 minix-sys +./usr/man/man3/mvhline.3 minix-sys +./usr/man/man3/mvinchnstr.3 minix-sys +./usr/man/man3/mvinchstr.3 minix-sys +./usr/man/man3/mvinnstr.3 minix-sys +./usr/man/man3/mvinstr.3 minix-sys +./usr/man/man3/mvprintw.3 minix-sys +./usr/man/man3/mvvline.3 minix-sys +./usr/man/man3/mvwaddch.3 minix-sys +./usr/man/man3/mvwaddchnstr.3 minix-sys +./usr/man/man3/mvwaddchstr.3 minix-sys +./usr/man/man3/mvwaddnstr.3 minix-sys +./usr/man/man3/mvwaddstr.3 minix-sys +./usr/man/man3/mvwchgat.3 minix-sys +./usr/man/man3/mvwgetch.3 minix-sys +./usr/man/man3/mvwgetnstr.3 minix-sys +./usr/man/man3/mvwgetstr.3 minix-sys +./usr/man/man3/mvwhline.3 minix-sys +./usr/man/man3/mvwin.3 minix-sys +./usr/man/man3/mvwinchnstr.3 minix-sys +./usr/man/man3/mvwinchstr.3 minix-sys +./usr/man/man3/mvwinnstr.3 minix-sys +./usr/man/man3/mvwinstr.3 minix-sys +./usr/man/man3/mvwprintw.3 minix-sys +./usr/man/man3/mvwvline.3 minix-sys +./usr/man/man3/nan.3 minix-sys +./usr/man/man3/nanf.3 minix-sys +./usr/man/man3/nanl.3 minix-sys +./usr/man/man3/napms.3 minix-sys +./usr/man/man3/ndbm.3 minix-sys +./usr/man/man3/network.3 minix-sys +./usr/man/man3/newpad.3 minix-sys +./usr/man/man3/newterm.3 minix-sys +./usr/man/man3/newwin.3 minix-sys +./usr/man/man3/nextafter.3 minix-sys +./usr/man/man3/nextafterf.3 minix-sys +./usr/man/man3/nextafterl.3 minix-sys +./usr/man/man3/nexttoward.3 minix-sys +./usr/man/man3/nftw.3 minix-sys +./usr/man/man3/nice.3 minix-sys +./usr/man/man3/nl.3 minix-sys +./usr/man/man3/nlist.3 minix-sys +./usr/man/man3/nl_langinfo.3 minix-sys +./usr/man/man3/nocbreak.3 minix-sys +./usr/man/man3/nodelay.3 minix-sys +./usr/man/man3/noecho.3 minix-sys +./usr/man/man3/nonl.3 minix-sys +./usr/man/man3/noqiflush.3 minix-sys +./usr/man/man3/noraw.3 minix-sys +./usr/man/man3/notimeout.3 minix-sys +./usr/man/man3/nrand48.3 minix-sys +./usr/man/man3/nsdispatch.3 minix-sys +./usr/man/man3/ntoa.3 minix-sys +./usr/man/man3/ntohl.3 minix-sys +./usr/man/man3/ntohs.3 minix-sys +./usr/man/man3/offtime.3 minix-sys +./usr/man/man3/offtime_r.3 minix-sys +./usr/man/man3/opendir.3 minix-sys +./usr/man/man3/opendisk.3 minix-sys +./usr/man/man3/openlog.3 minix-sys +./usr/man/man3/openlog_r.3 minix-sys +./usr/man/man3/openpty.3 minix-sys +./usr/man/man3/orcmd.3 minix-sys +./usr/man/man3/orcmd_af.3 minix-sys +./usr/man/man3/overlay.3 minix-sys +./usr/man/man3/overwrite.3 minix-sys +./usr/man/man3/pair_content.3 minix-sys +./usr/man/man3/pause.3 minix-sys +./usr/man/man3/pclose.3 minix-sys +./usr/man/man3/pechochar.3 minix-sys +./usr/man/man3/perror.3 minix-sys +./usr/man/man3/pidfile.3 minix-sys +./usr/man/man3/pidlock.3 minix-sys +./usr/man/man3/pnoutrefresh.3 minix-sys +./usr/man/man3/popcount32.3 minix-sys +./usr/man/man3/popcount.3 minix-sys +./usr/man/man3/popcount64.3 minix-sys +./usr/man/man3/popcountl.3 minix-sys +./usr/man/man3/popcountll.3 minix-sys +./usr/man/man3/popen.3 minix-sys +./usr/man/man3/posix2time.3 minix-sys +./usr/man/man3/posix2time_z.3 minix-sys +./usr/man/man3/posix_memalign.3 minix-sys +./usr/man/man3/posix_openpt.3 minix-sys +./usr/man/man3/pow.3 minix-sys +./usr/man/man3/powf.3 minix-sys +./usr/man/man3/p_query.3 minix-sys +./usr/man/man3/prefresh.3 minix-sys +./usr/man/man3/printf.3 minix-sys +./usr/man/man3/printw.3 minix-sys +./usr/man/man3/prop_array.3 minix-sys +./usr/man/man3/prop_array_add.3 minix-sys +./usr/man/man3/prop_array_capacity.3 minix-sys +./usr/man/man3/prop_array_copy.3 minix-sys +./usr/man/man3/prop_array_copy_mutable.3 minix-sys +./usr/man/man3/prop_array_count.3 minix-sys +./usr/man/man3/prop_array_create.3 minix-sys +./usr/man/man3/prop_array_create_with_capacity.3 minix-sys +./usr/man/man3/prop_array_ensure_capacity.3 minix-sys +./usr/man/man3/prop_array_equals.3 minix-sys +./usr/man/man3/prop_array_externalize.3 minix-sys +./usr/man/man3/prop_array_externalize_to_file.3 minix-sys +./usr/man/man3/prop_array_externalize_to_pref.3 minix-sys +./usr/man/man3/prop_array_get.3 minix-sys +./usr/man/man3/prop_array_get_bool.3 minix-sys +./usr/man/man3/prop_array_get_cstring.3 minix-sys +./usr/man/man3/prop_array_get_cstring_nocopy.3 minix-sys +./usr/man/man3/prop_array_get_int16.3 minix-sys +./usr/man/man3/prop_array_get_int32.3 minix-sys +./usr/man/man3/prop_array_get_int64.3 minix-sys +./usr/man/man3/prop_array_get_int8.3 minix-sys +./usr/man/man3/prop_array_get_uint16.3 minix-sys +./usr/man/man3/prop_array_get_uint32.3 minix-sys +./usr/man/man3/prop_array_get_uint64.3 minix-sys +./usr/man/man3/prop_array_get_uint8.3 minix-sys +./usr/man/man3/prop_array_internalize.3 minix-sys +./usr/man/man3/prop_array_internalize_from_file.3 minix-sys +./usr/man/man3/prop_array_internalize_from_pref.3 minix-sys +./usr/man/man3/prop_array_iterator.3 minix-sys +./usr/man/man3/prop_array_make_immutable.3 minix-sys +./usr/man/man3/prop_array_mutable.3 minix-sys +./usr/man/man3/prop_array_recv_ioctl.3 minix-sys +./usr/man/man3/prop_array_recv_syscall.3 minix-sys +./usr/man/man3/prop_array_remove.3 minix-sys +./usr/man/man3/prop_array_send_ioctl.3 minix-sys +./usr/man/man3/prop_array_send_syscall.3 minix-sys +./usr/man/man3/prop_array_set.3 minix-sys +./usr/man/man3/prop_array_set_bool.3 minix-sys +./usr/man/man3/prop_array_set_cstring.3 minix-sys +./usr/man/man3/prop_array_set_cstring_nocopy.3 minix-sys +./usr/man/man3/prop_array_set_int16.3 minix-sys +./usr/man/man3/prop_array_set_int32.3 minix-sys +./usr/man/man3/prop_array_set_int64.3 minix-sys +./usr/man/man3/prop_array_set_int8.3 minix-sys +./usr/man/man3/prop_array_set_uint16.3 minix-sys +./usr/man/man3/prop_array_set_uint32.3 minix-sys +./usr/man/man3/prop_array_set_uint64.3 minix-sys +./usr/man/man3/prop_array_set_uint8.3 minix-sys +./usr/man/man3/prop_array_util.3 minix-sys +./usr/man/man3/prop_bool.3 minix-sys +./usr/man/man3/prop_bool_copy.3 minix-sys +./usr/man/man3/prop_bool_create.3 minix-sys +./usr/man/man3/prop_bool_true.3 minix-sys +./usr/man/man3/prop_data.3 minix-sys +./usr/man/man3/prop_data_copy.3 minix-sys +./usr/man/man3/prop_data_create_data.3 minix-sys +./usr/man/man3/prop_data_create_data_nocopy.3 minix-sys +./usr/man/man3/prop_data_data.3 minix-sys +./usr/man/man3/prop_data_data_nocopy.3 minix-sys +./usr/man/man3/prop_data_equals.3 minix-sys +./usr/man/man3/prop_data_equals_data.3 minix-sys +./usr/man/man3/prop_data_size.3 minix-sys +./usr/man/man3/prop_dictionary.3 minix-sys +./usr/man/man3/prop_dictionary_all_keys.3 minix-sys +./usr/man/man3/prop_dictionary_capacity.3 minix-sys +./usr/man/man3/prop_dictionary_copy.3 minix-sys +./usr/man/man3/prop_dictionary_copy_mutable.3 minix-sys +./usr/man/man3/prop_dictionary_count.3 minix-sys +./usr/man/man3/prop_dictionary_create.3 minix-sys +./usr/man/man3/prop_dictionary_create_with_capacity.3 minix-sys +./usr/man/man3/prop_dictionary_ensure_capacity.3 minix-sys +./usr/man/man3/prop_dictionary_equals.3 minix-sys +./usr/man/man3/prop_dictionary_externalize.3 minix-sys +./usr/man/man3/prop_dictionary_externalize_to_file.3 minix-sys +./usr/man/man3/prop_dictionary_externalize_to_pref.3 minix-sys +./usr/man/man3/prop_dictionary_get.3 minix-sys +./usr/man/man3/prop_dictionary_get_bool.3 minix-sys +./usr/man/man3/prop_dictionary_get_cstring.3 minix-sys +./usr/man/man3/prop_dictionary_get_cstring_nocopy.3 minix-sys +./usr/man/man3/prop_dictionary_get_int16.3 minix-sys +./usr/man/man3/prop_dictionary_get_int32.3 minix-sys +./usr/man/man3/prop_dictionary_get_int64.3 minix-sys +./usr/man/man3/prop_dictionary_get_int8.3 minix-sys +./usr/man/man3/prop_dictionary_get_keysym.3 minix-sys +./usr/man/man3/prop_dictionary_get_uint16.3 minix-sys +./usr/man/man3/prop_dictionary_get_uint32.3 minix-sys +./usr/man/man3/prop_dictionary_get_uint64.3 minix-sys +./usr/man/man3/prop_dictionary_get_uint8.3 minix-sys +./usr/man/man3/prop_dictionary_ingest.3 minix-sys +./usr/man/man3/prop_dictionary_internalize.3 minix-sys +./usr/man/man3/prop_dictionary_internalize_from_file.3 minix-sys +./usr/man/man3/prop_dictionary_internalize_from_pref.3 minix-sys +./usr/man/man3/prop_dictionary_iterator.3 minix-sys +./usr/man/man3/prop_dictionary_keysym_cstring_nocopy.3 minix-sys +./usr/man/man3/prop_dictionary_keysym_equals.3 minix-sys +./usr/man/man3/prop_dictionary_make_immutable.3 minix-sys +./usr/man/man3/prop_dictionary_mutable.3 minix-sys +./usr/man/man3/prop_dictionary_recv_ioctl.3 minix-sys +./usr/man/man3/prop_dictionary_recv_syscall.3 minix-sys +./usr/man/man3/prop_dictionary_remove.3 minix-sys +./usr/man/man3/prop_dictionary_remove_keysym.3 minix-sys +./usr/man/man3/prop_dictionary_send_ioctl.3 minix-sys +./usr/man/man3/prop_dictionary_sendrecv_ioctl.3 minix-sys +./usr/man/man3/prop_dictionary_send_syscall.3 minix-sys +./usr/man/man3/prop_dictionary_set.3 minix-sys +./usr/man/man3/prop_dictionary_set_bool.3 minix-sys +./usr/man/man3/prop_dictionary_set_cstring.3 minix-sys +./usr/man/man3/prop_dictionary_set_cstring_nocopy.3 minix-sys +./usr/man/man3/prop_dictionary_set_int16.3 minix-sys +./usr/man/man3/prop_dictionary_set_int32.3 minix-sys +./usr/man/man3/prop_dictionary_set_int64.3 minix-sys +./usr/man/man3/prop_dictionary_set_int8.3 minix-sys +./usr/man/man3/prop_dictionary_set_keysym.3 minix-sys +./usr/man/man3/prop_dictionary_set_uint16.3 minix-sys +./usr/man/man3/prop_dictionary_set_uint32.3 minix-sys +./usr/man/man3/prop_dictionary_set_uint64.3 minix-sys +./usr/man/man3/prop_dictionary_set_uint8.3 minix-sys +./usr/man/man3/prop_dictionary_util.3 minix-sys +./usr/man/man3/prop_ingest.3 minix-sys +./usr/man/man3/prop_ingest_context_alloc.3 minix-sys +./usr/man/man3/prop_ingest_context_error.3 minix-sys +./usr/man/man3/prop_ingest_context_free.3 minix-sys +./usr/man/man3/prop_ingest_context_key.3 minix-sys +./usr/man/man3/prop_ingest_context_private.3 minix-sys +./usr/man/man3/prop_ingest_context_type.3 minix-sys +./usr/man/man3/proplib.3 minix-sys +./usr/man/man3/prop_number.3 minix-sys +./usr/man/man3/prop_number_copy.3 minix-sys +./usr/man/man3/prop_number_create_integer.3 minix-sys +./usr/man/man3/prop_number_create_unsigned_integer.3 minix-sys +./usr/man/man3/prop_number_equals.3 minix-sys +./usr/man/man3/prop_number_equals_integer.3 minix-sys +./usr/man/man3/prop_number_equals_unsigned_integer.3 minix-sys +./usr/man/man3/prop_number_integer_value.3 minix-sys +./usr/man/man3/prop_number_size.3 minix-sys +./usr/man/man3/prop_number_unsigned.3 minix-sys +./usr/man/man3/prop_number_unsigned_integer_value.3 minix-sys +./usr/man/man3/prop_object.3 minix-sys +./usr/man/man3/prop_object_equals.3 minix-sys +./usr/man/man3/prop_object_iterator_next.3 minix-sys +./usr/man/man3/prop_object_iterator_release.3 minix-sys +./usr/man/man3/prop_object_iterator_reset.3 minix-sys +./usr/man/man3/prop_object_release.3 minix-sys +./usr/man/man3/prop_object_retain.3 minix-sys +./usr/man/man3/prop_object_type.3 minix-sys +./usr/man/man3/prop_send_ioctl.3 minix-sys +./usr/man/man3/prop_send_syscall.3 minix-sys +./usr/man/man3/prop_string.3 minix-sys +./usr/man/man3/prop_string_append.3 minix-sys +./usr/man/man3/prop_string_append_cstring.3 minix-sys +./usr/man/man3/prop_string_copy.3 minix-sys +./usr/man/man3/prop_string_copy_mutable.3 minix-sys +./usr/man/man3/prop_string_create.3 minix-sys +./usr/man/man3/prop_string_create_cstring.3 minix-sys +./usr/man/man3/prop_string_create_cstring_nocopy.3 minix-sys +./usr/man/man3/prop_string_cstring.3 minix-sys +./usr/man/man3/prop_string_cstring_nocopy.3 minix-sys +./usr/man/man3/prop_string_equals.3 minix-sys +./usr/man/man3/prop_string_equals_cstring.3 minix-sys +./usr/man/man3/prop_string_mutable.3 minix-sys +./usr/man/man3/prop_string_size.3 minix-sys +./usr/man/man3/psiginfo.3 minix-sys +./usr/man/man3/psignal.3 minix-sys +./usr/man/man3/pthread_atfork.3 minix-sys +./usr/man/man3/ptsname.3 minix-sys +./usr/man/man3/puffs.3 minix-sys +./usr/man/man3/puffs_cc.3 minix-sys +./usr/man/man3/puffs_cred.3 minix-sys +./usr/man/man3/puffs_node.3 minix-sys +./usr/man/man3/puffs_ops.3 minix-sys +./usr/man/man3/puffs_path.3 minix-sys +./usr/man/man3/putc.3 minix-sys +./usr/man/man3/putchar.3 minix-sys +./usr/man/man3/putchar_unlocked.3 minix-sys +./usr/man/man3/putc_unlocked.3 minix-sys +./usr/man/man3/putenv.3 minix-sys +./usr/man/man3/putp.3 minix-sys +./usr/man/man3/puts.3 minix-sys +./usr/man/man3/pututxline.3 minix-sys +./usr/man/man3/putw.3 minix-sys +./usr/man/man3/putwc.3 minix-sys +./usr/man/man3/putwchar.3 minix-sys +./usr/man/man3/putwin.3 minix-sys +./usr/man/man3/pw_abort.3 minix-sys +./usr/man/man3/pwcache.3 minix-sys +./usr/man/man3/pwcache_groupdb.3 minix-sys +./usr/man/man3/pwcache_userdb.3 minix-sys +./usr/man/man3/pw_copy.3 minix-sys +./usr/man/man3/pw_copyx.3 minix-sys +./usr/man/man3/pw_edit.3 minix-sys +./usr/man/man3/pw_error.3 minix-sys +./usr/man/man3/pw_getconf.3 minix-sys +./usr/man/man3/pw_getprefix.3 minix-sys +./usr/man/man3/pw_getpwconf.3 minix-sys +./usr/man/man3/pw_init.3 minix-sys +./usr/man/man3/pw_lock.3 minix-sys +./usr/man/man3/pw_mkdb.3 minix-sys +./usr/man/man3/pw_prompt.3 minix-sys +./usr/man/man3/pw_scan.3 minix-sys +./usr/man/man3/pw_setprefix.3 minix-sys +./usr/man/man3/qabs.3 minix-sys +./usr/man/man3/qdiv.3 minix-sys +./usr/man/man3/qiflush.3 minix-sys +./usr/man/man3/qsort.3 minix-sys +./usr/man/man3/radixsort.3 minix-sys +./usr/man/man3/raise.3 minix-sys +./usr/man/man3/raise_default_signal.3 minix-sys +./usr/man/man3/rand.3 minix-sys +./usr/man/man3/rand48.3 minix-sys +./usr/man/man3/random.3 minix-sys +./usr/man/man3/randomid.3 minix-sys +./usr/man/man3/randomid_delete.3 minix-sys +./usr/man/man3/randomid_new.3 minix-sys +./usr/man/man3/rand_r.3 minix-sys +./usr/man/man3/raw.3 minix-sys +./usr/man/man3/rcmd.3 minix-sys +./usr/man/man3/rcmd_af.3 minix-sys +./usr/man/man3/readdir.3 minix-sys +./usr/man/man3/readdir_r.3 minix-sys +./usr/man/man3/realloc.3 minix-sys +./usr/man/man3/realpath.3 minix-sys +./usr/man/man3/recno.3 minix-sys +./usr/man/man3/refresh.3 minix-sys +./usr/man/man3/refuse.3 minix-sys +./usr/man/man3/regcomp.3 minix-sys +./usr/man/man3/regerror.3 minix-sys +./usr/man/man3/regex.3 minix-sys +./usr/man/man3/regexec.3 minix-sys +./usr/man/man3/regfree.3 minix-sys +./usr/man/man3/remainder.3 minix-sys +./usr/man/man3/remainderf.3 minix-sys +./usr/man/man3/remove.3 minix-sys +./usr/man/man3/remque.3 minix-sys +./usr/man/man3/res_close.3 minix-sys +./usr/man/man3/reset_prog_mode.3 minix-sys +./usr/man/man3/reset_shell_mode.3 minix-sys +./usr/man/man3/resetty.3 minix-sys +./usr/man/man3/res_findzonecut.3 minix-sys +./usr/man/man3/res_getservers.3 minix-sys +./usr/man/man3/res_hostalias.3 minix-sys +./usr/man/man3/res_init.3 minix-sys +./usr/man/man3/res_isourserver.3 minix-sys +./usr/man/man3/resizeterm.3 minix-sys +./usr/man/man3/res_mkquery.3 minix-sys +./usr/man/man3/res_nclose.3 minix-sys +./usr/man/man3/res_ndestroy.3 minix-sys +./usr/man/man3/res_ninit.3 minix-sys +./usr/man/man3/res_nmkquery.3 minix-sys +./usr/man/man3/res_nmkupdate.3 minix-sys +./usr/man/man3/res_nquery.3 minix-sys +./usr/man/man3/res_nquerydomain.3 minix-sys +./usr/man/man3/res_nsearch.3 minix-sys +./usr/man/man3/res_nsend.3 minix-sys +./usr/man/man3/res_nsendsigned.3 minix-sys +./usr/man/man3/res_nupdate.3 minix-sys +./usr/man/man3/resolver.3 minix-sys +./usr/man/man3/res_ourserver_p.3 minix-sys +./usr/man/man3/res_pquery.3 minix-sys +./usr/man/man3/res_query.3 minix-sys +./usr/man/man3/res_querydomain.3 minix-sys +./usr/man/man3/res_search.3 minix-sys +./usr/man/man3/res_send.3 minix-sys +./usr/man/man3/res_setservers.3 minix-sys +./usr/man/man3/res_update.3 minix-sys +./usr/man/man3/rewind.3 minix-sys +./usr/man/man3/rewinddir.3 minix-sys +./usr/man/man3/rindex.3 minix-sys +./usr/man/man3/rint.3 minix-sys +./usr/man/man3/rintf.3 minix-sys +./usr/man/man3/rmd160.3 minix-sys +./usr/man/man3/RMD160Data.3 minix-sys +./usr/man/man3/RMD160End.3 minix-sys +./usr/man/man3/RMD160File.3 minix-sys +./usr/man/man3/RMD160Final.3 minix-sys +./usr/man/man3/RMD160Init.3 minix-sys +./usr/man/man3/RMD160Transform.3 minix-sys +./usr/man/man3/RMD160Update.3 minix-sys +./usr/man/man3/round.3 minix-sys +./usr/man/man3/roundf.3 minix-sys +./usr/man/man3/rresvport.3 minix-sys +./usr/man/man3/rresvport_af.3 minix-sys +./usr/man/man3/ruserok.3 minix-sys +./usr/man/man3/savetty.3 minix-sys +./usr/man/man3/scalb.3 minix-sys +./usr/man/man3/scalbf.3 minix-sys +./usr/man/man3/scalbn.3 minix-sys +./usr/man/man3/scalbnf.3 minix-sys +./usr/man/man3/scandir.3 minix-sys +./usr/man/man3/scanf.3 minix-sys +./usr/man/man3/scanw.3 minix-sys +./usr/man/man3/scrl.3 minix-sys +./usr/man/man3/scroll.3 minix-sys +./usr/man/man3/scrollok.3 minix-sys +./usr/man/man3/secure_path.3 minix-sys +./usr/man/man3/seed48.3 minix-sys +./usr/man/man3/seekdir.3 minix-sys +./usr/man/man3/setbuf.3 minix-sys +./usr/man/man3/setbuffer.3 minix-sys +./usr/man/man3/setclasscontext.3 minix-sys +./usr/man/man3/set_curterm.3 minix-sys +./usr/man/man3/setdisktab.3 minix-sys +./usr/man/man3/setdomainname.3 minix-sys +./usr/man/man3/setenv.3 minix-sys +./usr/man/man3/setfsent.3 minix-sys +./usr/man/man3/setgrent.3 minix-sys +./usr/man/man3/setgroupent.3 minix-sys +./usr/man/man3/sethostent.3 minix-sys +./usr/man/man3/sethostid.3 minix-sys +./usr/man/man3/sethostname.3 minix-sys +./usr/man/man3/_setjmp.3 minix-sys +./usr/man/man3/setjmp.3 minix-sys +./usr/man/man3/setkey.3 minix-sys +./usr/man/man3/setlinebuf.3 minix-sys +./usr/man/man3/setlocale.3 minix-sys +./usr/man/man3/setlogmask.3 minix-sys +./usr/man/man3/setlogmask_r.3 minix-sys +./usr/man/man3/setmode.3 minix-sys +./usr/man/man3/setnetent.3 minix-sys +./usr/man/man3/setnetgrent.3 minix-sys +./usr/man/man3/setpassent.3 minix-sys +./usr/man/man3/setproctitle.3 minix-sys +./usr/man/man3/setprogname.3 minix-sys +./usr/man/man3/setprotoent.3 minix-sys +./usr/man/man3/setpwent.3 minix-sys +./usr/man/man3/setrgid.3 minix-sys +./usr/man/man3/setruid.3 minix-sys +./usr/man/man3/setscrreg.3 minix-sys +./usr/man/man3/setservent.3 minix-sys +./usr/man/man3/setstate.3 minix-sys +./usr/man/man3/set_term.3 minix-sys +./usr/man/man3/setterm.3 minix-sys +./usr/man/man3/setttyent.3 minix-sys +./usr/man/man3/setttyentpath.3 minix-sys +./usr/man/man3/setupterm.3 minix-sys +./usr/man/man3/setusercontext.3 minix-sys +./usr/man/man3/setusershell.3 minix-sys +./usr/man/man3/setutxent.3 minix-sys +./usr/man/man3/setvbuf.3 minix-sys +./usr/man/man3/sha1.3 minix-sys +./usr/man/man3/SHA1Data.3 minix-sys +./usr/man/man3/SHA1End.3 minix-sys +./usr/man/man3/SHA1File.3 minix-sys +./usr/man/man3/SHA1FileChunk.3 minix-sys +./usr/man/man3/SHA1Final.3 minix-sys +./usr/man/man3/SHA1Init.3 minix-sys +./usr/man/man3/SHA1Transform.3 minix-sys +./usr/man/man3/SHA1Update.3 minix-sys +./usr/man/man3/SHA224_Data.3 minix-sys +./usr/man/man3/SHA224_End.3 minix-sys +./usr/man/man3/SHA224_File.3 minix-sys +./usr/man/man3/SHA224_FileChunk.3 minix-sys +./usr/man/man3/SHA224_Final.3 minix-sys +./usr/man/man3/SHA224_Init.3 minix-sys +./usr/man/man3/SHA224_Transform.3 minix-sys +./usr/man/man3/SHA224_Update.3 minix-sys +./usr/man/man3/sha2.3 minix-sys +./usr/man/man3/SHA256_Data.3 minix-sys +./usr/man/man3/SHA256_End.3 minix-sys +./usr/man/man3/SHA256_File.3 minix-sys +./usr/man/man3/SHA256_FileChunk.3 minix-sys +./usr/man/man3/SHA256_Final.3 minix-sys +./usr/man/man3/SHA256_Init.3 minix-sys +./usr/man/man3/SHA256_Transform.3 minix-sys +./usr/man/man3/SHA256_Update.3 minix-sys +./usr/man/man3/SHA384_Data.3 minix-sys +./usr/man/man3/SHA384_End.3 minix-sys +./usr/man/man3/SHA384_File.3 minix-sys +./usr/man/man3/SHA384_FileChunk.3 minix-sys +./usr/man/man3/SHA384_Final.3 minix-sys +./usr/man/man3/SHA384_Init.3 minix-sys +./usr/man/man3/SHA384_Transform.3 minix-sys +./usr/man/man3/SHA384_Update.3 minix-sys +./usr/man/man3/SHA512_Data.3 minix-sys +./usr/man/man3/SHA512_End.3 minix-sys +./usr/man/man3/SHA512_File.3 minix-sys +./usr/man/man3/SHA512_FileChunk.3 minix-sys +./usr/man/man3/SHA512_Final.3 minix-sys +./usr/man/man3/SHA512_Init.3 minix-sys +./usr/man/man3/SHA512_Transform.3 minix-sys +./usr/man/man3/SHA512_Update.3 minix-sys +./usr/man/man3/shquote.3 minix-sys +./usr/man/man3/shquotev.3 minix-sys +./usr/man/man3/sigaddset.3 minix-sys +./usr/man/man3/sigblock.3 minix-sys +./usr/man/man3/sigdelset.3 minix-sys +./usr/man/man3/sigemptyset.3 minix-sys +./usr/man/man3/sigfillset.3 minix-sys +./usr/man/man3/sighold.3 minix-sys +./usr/man/man3/sigignore.3 minix-sys +./usr/man/man3/siginterrupt.3 minix-sys +./usr/man/man3/sigismember.3 minix-sys +./usr/man/man3/siglongjmp.3 minix-sys +./usr/man/man3/signal.3 minix-sys +./usr/man/man3/signbit.3 minix-sys +./usr/man/man3/significand.3 minix-sys +./usr/man/man3/significandf.3 minix-sys +./usr/man/man3/sigpause.3 minix-sys +./usr/man/man3/sigrelse.3 minix-sys +./usr/man/man3/sigset.3 minix-sys +./usr/man/man3/sigsetjmp.3 minix-sys +./usr/man/man3/sigsetmask.3 minix-sys +./usr/man/man3/sigsetops.3 minix-sys +./usr/man/man3/sigvec.3 minix-sys +./usr/man/man3/sin.3 minix-sys +./usr/man/man3/sinf.3 minix-sys +./usr/man/man3/sinh.3 minix-sys +./usr/man/man3/sinhf.3 minix-sys +./usr/man/man3/sl_add.3 minix-sys +./usr/man/man3/sleep.3 minix-sys +./usr/man/man3/sl_find.3 minix-sys +./usr/man/man3/sl_free.3 minix-sys +./usr/man/man3/sl_init.3 minix-sys +./usr/man/man3/snprintb.3 minix-sys +./usr/man/man3/snprintb_m.3 minix-sys +./usr/man/man3/snprintf.3 minix-sys +./usr/man/man3/sockatmark.3 minix-sys +./usr/man/man3/sprintf.3 minix-sys +./usr/man/man3/sqrt.3 minix-sys +./usr/man/man3/sqrtf.3 minix-sys +./usr/man/man3/sradixsort.3 minix-sys +./usr/man/man3/srand.3 minix-sys +./usr/man/man3/srand48.3 minix-sys +./usr/man/man3/srandom.3 minix-sys +./usr/man/man3/sscanf.3 minix-sys +./usr/man/man3/ssp.3 minix-sys +./usr/man/man3/standend.3 minix-sys +./usr/man/man3/standout.3 minix-sys +./usr/man/man3/start_color.3 minix-sys +./usr/man/man3/stat_flags.3 minix-sys +./usr/man/man3/stdio.3 minix-sys +./usr/man/man3/stpcpy.3 minix-sys +./usr/man/man3/stpncpy.3 minix-sys +./usr/man/man3/strcasecmp.3 minix-sys +./usr/man/man3/strcasestr.3 minix-sys +./usr/man/man3/strcat.3 minix-sys +./usr/man/man3/strchr.3 minix-sys +./usr/man/man3/strcmp.3 minix-sys +./usr/man/man3/strcoll.3 minix-sys +./usr/man/man3/strcpy.3 minix-sys +./usr/man/man3/strcspn.3 minix-sys +./usr/man/man3/strdup.3 minix-sys +./usr/man/man3/strerror.3 minix-sys +./usr/man/man3/strerror_r.3 minix-sys +./usr/man/man3/stresep.3 minix-sys +./usr/man/man3/strfmon.3 minix-sys +./usr/man/man3/strftime.3 minix-sys +./usr/man/man3/strftime_z.3 minix-sys +./usr/man/man3/string.3 minix-sys +./usr/man/man3/stringlist.3 minix-sys +./usr/man/man3/strings.3 minix-sys +./usr/man/man3/string_to_flags.3 minix-sys +./usr/man/man3/strlcat.3 minix-sys +./usr/man/man3/strlcpy.3 minix-sys +./usr/man/man3/strlen.3 minix-sys +./usr/man/man3/strmode.3 minix-sys +./usr/man/man3/strncasecmp.3 minix-sys +./usr/man/man3/strncat.3 minix-sys +./usr/man/man3/strncmp.3 minix-sys +./usr/man/man3/strncpy.3 minix-sys +./usr/man/man3/strndup.3 minix-sys +./usr/man/man3/strnlen.3 minix-sys +./usr/man/man3/strpbrk.3 minix-sys +./usr/man/man3/strptime.3 minix-sys +./usr/man/man3/strrchr.3 minix-sys +./usr/man/man3/strsep.3 minix-sys +./usr/man/man3/strsignal.3 minix-sys +./usr/man/man3/strspn.3 minix-sys +./usr/man/man3/strstr.3 minix-sys +./usr/man/man3/strsuftoll.3 minix-sys +./usr/man/man3/strsuftollx.3 minix-sys +./usr/man/man3/strsvis.3 minix-sys +./usr/man/man3/strsvisx.3 minix-sys +./usr/man/man3/strtod.3 minix-sys +./usr/man/man3/strtof.3 minix-sys +./usr/man/man3/strtoimax.3 minix-sys +./usr/man/man3/strtok.3 minix-sys +./usr/man/man3/strtok_r.3 minix-sys +./usr/man/man3/strtol.3 minix-sys +./usr/man/man3/strtold.3 minix-sys +./usr/man/man3/strtoll.3 minix-sys +./usr/man/man3/strtoq.3 minix-sys +./usr/man/man3/strtoul.3 minix-sys +./usr/man/man3/strtoull.3 minix-sys +./usr/man/man3/strtoumax.3 minix-sys +./usr/man/man3/strtouq.3 minix-sys +./usr/man/man3/strunvis.3 minix-sys +./usr/man/man3/strunvisx.3 minix-sys +./usr/man/man3/strvis.3 minix-sys +./usr/man/man3/strvisx.3 minix-sys +./usr/man/man3/strxfrm.3 minix-sys +./usr/man/man3/subpad.3 minix-sys +./usr/man/man3/subwin.3 minix-sys +./usr/man/man3/svis.3 minix-sys +./usr/man/man3/swab.3 minix-sys +./usr/man/man3/swapcontext.3 minix-sys +./usr/man/man3/swprintf.3 minix-sys +./usr/man/man3/swscanf.3 minix-sys +./usr/man/man3/sysconf.3 minix-sys +./usr/man/man3/sysctl.3 minix-sys +./usr/man/man3/sysctlbyname.3 minix-sys +./usr/man/man3/sysctlgetmibinfo.3 minix-sys +./usr/man/man3/sysctlnametomib.3 minix-sys +./usr/man/man3/sys_errlist.3 minix-sys +./usr/man/man3/syslog.3 minix-sys +./usr/man/man3/syslogp.3 minix-sys +./usr/man/man3/syslogp_r.3 minix-sys +./usr/man/man3/syslog_r.3 minix-sys +./usr/man/man3/sys_nerr.3 minix-sys +./usr/man/man3/sys_siglist.3 minix-sys +./usr/man/man3/sys_signame.3 minix-sys +./usr/man/man3/system.3 minix-sys +./usr/man/man3/tan.3 minix-sys +./usr/man/man3/tanf.3 minix-sys +./usr/man/man3/tanh.3 minix-sys +./usr/man/man3/tanhf.3 minix-sys +./usr/man/man3/tcdrain.3 minix-sys +./usr/man/man3/tcflow.3 minix-sys +./usr/man/man3/tcflush.3 minix-sys +./usr/man/man3/tcgetattr.3 minix-sys +./usr/man/man3/tcgetpgrp.3 minix-sys +./usr/man/man3/tcgetsid.3 minix-sys +./usr/man/man3/tcsendbreak.3 minix-sys +./usr/man/man3/tcsetattr.3 minix-sys +./usr/man/man3/tcsetpgrp.3 minix-sys +./usr/man/man3/tdelete.3 minix-sys +./usr/man/man3/telldir.3 minix-sys +./usr/man/man3/tempnam.3 minix-sys +./usr/man/man3/termcap.3 minix-sys +./usr/man/man3/terminfo.3 minix-sys +./usr/man/man3/tfind.3 minix-sys +./usr/man/man3/tgetent.3 minix-sys +./usr/man/man3/tgetflag.3 minix-sys +./usr/man/man3/tgetnum.3 minix-sys +./usr/man/man3/tgetstr.3 minix-sys +./usr/man/man3/tgoto.3 minix-sys +./usr/man/man3/ti_getflag.3 minix-sys +./usr/man/man3/tigetflag.3 minix-sys +./usr/man/man3/ti_getnum.3 minix-sys +./usr/man/man3/tigetnum.3 minix-sys +./usr/man/man3/ti_getstr.3 minix-sys +./usr/man/man3/tigetstr.3 minix-sys +./usr/man/man3/time2posix.3 minix-sys +./usr/man/man3/time2posix_z.3 minix-sys +./usr/man/man3/time.3 minix-sys +./usr/man/man3/timegm.3 minix-sys +./usr/man/man3/timelocal.3 minix-sys +./usr/man/man3/timeoff.3 minix-sys +./usr/man/man3/timeout.3 minix-sys +./usr/man/man3/times.3 minix-sys +./usr/man/man3/timezone.3 minix-sys +./usr/man/man3/ti_putp.3 minix-sys +./usr/man/man3/ti_puts.3 minix-sys +./usr/man/man3/ti_setupterm.3 minix-sys +./usr/man/man3/tmpfile.3 minix-sys +./usr/man/man3/tmpnam.3 minix-sys +./usr/man/man3/toascii.3 minix-sys +./usr/man/man3/tolower.3 minix-sys +./usr/man/man3/touchline.3 minix-sys +./usr/man/man3/touchoverlap.3 minix-sys +./usr/man/man3/touchwin.3 minix-sys +./usr/man/man3/toupper.3 minix-sys +./usr/man/man3/towctrans.3 minix-sys +./usr/man/man3/towlower.3 minix-sys +./usr/man/man3/towupper.3 minix-sys +./usr/man/man3/t_parm.3 minix-sys +./usr/man/man3/tparm.3 minix-sys +./usr/man/man3/tputs.3 minix-sys +./usr/man/man3/trunc.3 minix-sys +./usr/man/man3/truncf.3 minix-sys +./usr/man/man3/tsearch.3 minix-sys +./usr/man/man3/ttyaction.3 minix-sys +./usr/man/man3/ttylock.3 minix-sys +./usr/man/man3/ttyname.3 minix-sys +./usr/man/man3/ttyname_r.3 minix-sys +./usr/man/man3/ttyslot.3 minix-sys +./usr/man/man3/ttyunlock.3 minix-sys +./usr/man/man3/t_vparm.3 minix-sys +./usr/man/man3/twalk.3 minix-sys +./usr/man/man3/tzalloc.3 minix-sys +./usr/man/man3/tzfree.3 minix-sys +./usr/man/man3/tzgetname.3 minix-sys +./usr/man/man3/tzset.3 minix-sys +./usr/man/man3/tzsetwall.3 minix-sys +./usr/man/man3/ualarm.3 minix-sys +./usr/man/man3/uid_from_user.3 minix-sys +./usr/man/man3/ulimit.3 minix-sys +./usr/man/man3/uname.3 minix-sys +./usr/man/man3/unctrl.3 minix-sys +./usr/man/man3/underend.3 minix-sys +./usr/man/man3/underscore.3 minix-sys +./usr/man/man3/ungetc.3 minix-sys +./usr/man/man3/ungetch.3 minix-sys +./usr/man/man3/ungetwc.3 minix-sys +./usr/man/man3/unlockpt.3 minix-sys +./usr/man/man3/unsetenv.3 minix-sys +./usr/man/man3/untouchwin.3 minix-sys +./usr/man/man3/unvis.3 minix-sys +./usr/man/man3/updlastlogx.3 minix-sys +./usr/man/man3/updwtmpx.3 minix-sys +./usr/man/man3/use_default_colors.3 minix-sys +./usr/man/man3/user_from_uid.3 minix-sys +./usr/man/man3/usleep.3 minix-sys +./usr/man/man3/util.3 minix-sys +./usr/man/man3/utime.3 minix-sys +./usr/man/man3/utmpxname.3 minix-sys +./usr/man/man3/uuid.3 minix-sys +./usr/man/man3/uuid_compare.3 minix-sys +./usr/man/man3/uuid_create.3 minix-sys +./usr/man/man3/uuid_create_nil.3 minix-sys +./usr/man/man3/uuid_dec_be.3 minix-sys +./usr/man/man3/uuid_dec_le.3 minix-sys +./usr/man/man3/uuid_enc_be.3 minix-sys +./usr/man/man3/uuid_enc_le.3 minix-sys +./usr/man/man3/uuid_equal.3 minix-sys +./usr/man/man3/uuid_from_string.3 minix-sys +./usr/man/man3/uuid_hash.3 minix-sys +./usr/man/man3/uuid_is_nil.3 minix-sys +./usr/man/man3/uuid_to_string.3 minix-sys +./usr/man/man3/valloc.3 minix-sys +./usr/man/man3/vasprintf.3 minix-sys +./usr/man/man3/vdprintf.3 minix-sys +./usr/man/man3/verr.3 minix-sys +./usr/man/man3/verrx.3 minix-sys +./usr/man/man3/vfprintf.3 minix-sys +./usr/man/man3/vfscanf.3 minix-sys +./usr/man/man3/vfwprintf.3 minix-sys +./usr/man/man3/vfwscanf.3 minix-sys +./usr/man/man3/vis.3 minix-sys +./usr/man/man3/vline.3 minix-sys +./usr/man/man3/vprintf.3 minix-sys +./usr/man/man3/vscanf.3 minix-sys +./usr/man/man3/vsnprintf.3 minix-sys +./usr/man/man3/vsnprintf_ss.3 minix-sys +./usr/man/man3/vsprintf.3 minix-sys +./usr/man/man3/vsscanf.3 minix-sys +./usr/man/man3/vswprintf.3 minix-sys +./usr/man/man3/vswscanf.3 minix-sys +./usr/man/man3/vsyslog.3 minix-sys +./usr/man/man3/vsyslogp.3 minix-sys +./usr/man/man3/vsyslogp_r.3 minix-sys +./usr/man/man3/vsyslog_r.3 minix-sys +./usr/man/man3/vwarn.3 minix-sys +./usr/man/man3/vwarnx.3 minix-sys +./usr/man/man3/vwprintf.3 minix-sys +./usr/man/man3/vwscanf.3 minix-sys +./usr/man/man3/waddch.3 minix-sys +./usr/man/man3/waddchnstr.3 minix-sys +./usr/man/man3/waddchstr.3 minix-sys +./usr/man/man3/waddnstr.3 minix-sys +./usr/man/man3/waddstr.3 minix-sys +./usr/man/man3/warn.3 minix-sys +./usr/man/man3/warnx.3 minix-sys +./usr/man/man3/wattr_get.3 minix-sys +./usr/man/man3/wattr_off.3 minix-sys +./usr/man/man3/wattroff.3 minix-sys +./usr/man/man3/wattr_on.3 minix-sys +./usr/man/man3/wattron.3 minix-sys +./usr/man/man3/wattr_set.3 minix-sys +./usr/man/man3/wattrset.3 minix-sys +./usr/man/man3/wbkgd.3 minix-sys +./usr/man/man3/wbkgdset.3 minix-sys +./usr/man/man3/wborder.3 minix-sys +./usr/man/man3/wchgat.3 minix-sys +./usr/man/man3/wclear.3 minix-sys +./usr/man/man3/wclrtobot.3 minix-sys +./usr/man/man3/wclrtoeol.3 minix-sys +./usr/man/man3/wcolor_set.3 minix-sys +./usr/man/man3/wcrtomb.3 minix-sys +./usr/man/man3/wcscasecmp.3 minix-sys +./usr/man/man3/wcscat.3 minix-sys +./usr/man/man3/wcschr.3 minix-sys +./usr/man/man3/wcscmp.3 minix-sys +./usr/man/man3/wcscoll.3 minix-sys +./usr/man/man3/wcscpy.3 minix-sys +./usr/man/man3/wcscspn.3 minix-sys +./usr/man/man3/wcsdup.3 minix-sys +./usr/man/man3/wcsftime.3 minix-sys +./usr/man/man3/wcslcat.3 minix-sys +./usr/man/man3/wcslcpy.3 minix-sys +./usr/man/man3/wcslen.3 minix-sys +./usr/man/man3/wcsncasecmp.3 minix-sys +./usr/man/man3/wcsncat.3 minix-sys +./usr/man/man3/wcsncmp.3 minix-sys +./usr/man/man3/wcsncpy.3 minix-sys +./usr/man/man3/wcspbrk.3 minix-sys +./usr/man/man3/wcsrchr.3 minix-sys +./usr/man/man3/wcsrtombs.3 minix-sys +./usr/man/man3/wcsspn.3 minix-sys +./usr/man/man3/wcsstr.3 minix-sys +./usr/man/man3/wcstod.3 minix-sys +./usr/man/man3/wcstof.3 minix-sys +./usr/man/man3/wcstoimax.3 minix-sys +./usr/man/man3/wcstok.3 minix-sys +./usr/man/man3/wcstol.3 minix-sys +./usr/man/man3/wcstold.3 minix-sys +./usr/man/man3/wcstoll.3 minix-sys +./usr/man/man3/wcstombs.3 minix-sys +./usr/man/man3/wcstoul.3 minix-sys +./usr/man/man3/wcstoull.3 minix-sys +./usr/man/man3/wcstoumax.3 minix-sys +./usr/man/man3/wcswcs.3 minix-sys +./usr/man/man3/wcswidth.3 minix-sys +./usr/man/man3/wcsxfrm.3 minix-sys +./usr/man/man3/wctob.3 minix-sys +./usr/man/man3/wctomb.3 minix-sys +./usr/man/man3/wctrans.3 minix-sys +./usr/man/man3/wctype.3 minix-sys +./usr/man/man3/wcwidth.3 minix-sys +./usr/man/man3/wdelch.3 minix-sys +./usr/man/man3/wdeleteln.3 minix-sys +./usr/man/man3/wechochar.3 minix-sys +./usr/man/man3/werase.3 minix-sys +./usr/man/man3/wgetch.3 minix-sys +./usr/man/man3/wgetnstr.3 minix-sys +./usr/man/man3/wgetstr.3 minix-sys +./usr/man/man3/whline.3 minix-sys +./usr/man/man3/winch.3 minix-sys +./usr/man/man3/winchnstr.3 minix-sys +./usr/man/man3/winchstr.3 minix-sys +./usr/man/man3/winnstr.3 minix-sys +./usr/man/man3/winsch.3 minix-sys +./usr/man/man3/winsdelln.3 minix-sys +./usr/man/man3/winsertln.3 minix-sys +./usr/man/man3/winstr.3 minix-sys +./usr/man/man3/wmemchr.3 minix-sys +./usr/man/man3/wmemcmp.3 minix-sys +./usr/man/man3/wmemcpy.3 minix-sys +./usr/man/man3/wmemmove.3 minix-sys +./usr/man/man3/wmemset.3 minix-sys +./usr/man/man3/wmove.3 minix-sys +./usr/man/man3/wnoutrefresh.3 minix-sys +./usr/man/man3/wordexp.3 minix-sys +./usr/man/man3/wprintf.3 minix-sys +./usr/man/man3/wprintw.3 minix-sys +./usr/man/man3/wrefresh.3 minix-sys +./usr/man/man3/wresize.3 minix-sys +./usr/man/man3/wscanf.3 minix-sys +./usr/man/man3/wscanw.3 minix-sys +./usr/man/man3/wscrl.3 minix-sys +./usr/man/man3/wsetscrreg.3 minix-sys +./usr/man/man3/wstandend.3 minix-sys +./usr/man/man3/wstandout.3 minix-sys +./usr/man/man3/wtimeout.3 minix-sys +./usr/man/man3/wtouchln.3 minix-sys +./usr/man/man3/wunderend.3 minix-sys +./usr/man/man3/wunderscore.3 minix-sys +./usr/man/man3/wvline.3 minix-sys +./usr/man/man3/y0.3 minix-sys +./usr/man/man3/y0f.3 minix-sys +./usr/man/man3/y1.3 minix-sys +./usr/man/man3/y1f.3 minix-sys +./usr/man/man3/yn.3 minix-sys +./usr/man/man3/ynf.3 minix-sys +./usr/man/man4/aha1540.4 minix-sys +./usr/man/man4/at.4 minix-sys +./usr/man/man4/bios.4 minix-sys +./usr/man/man4/console.4 minix-sys +./usr/man/man4/controller.4 minix-sys +./usr/man/man4/dev.4 minix-sys +./usr/man/man4/disk.4 minix-sys +./usr/man/man4/dosfile.4 minix-sys +./usr/man/man4/esdi.4 minix-sys +./usr/man/man4/eth.4 minix-sys +./usr/man/man4/fd.4 minix-sys +./usr/man/man4/ip.4 minix-sys +./usr/man/man4/keyboard.4 minix-sys +./usr/man/man4/lp.4 minix-sys +./usr/man/man4 minix-sys +./usr/man/man4/mtio.4 minix-sys +./usr/man/man4/ncr810.4 minix-sys +./usr/man/man4/psip.4 minix-sys +./usr/man/man4/tape.4 minix-sys +./usr/man/man4/tty.4 minix-sys +./usr/man/man4/udp.4 minix-sys +./usr/man/man4/uds.4 minix-sys +./usr/man/man5/boot.cfg.5 minix-sys +./usr/man/man5/cdb.5 minix-sys +./usr/man/man5/configfile.5 minix-sys +./usr/man/man5/cpio.5 minix-sys +./usr/man/man5/crontab.5 minix-sys +./usr/man/man5/dhcp.conf.5 minix-sys +./usr/man/man5/dir.5 minix-sys +./usr/man/man5/ethers.5 minix-sys +./usr/man/man5/fstab.5 minix-sys +./usr/man/man5/group.5 minix-sys +./usr/man/man5/hosts.5 minix-sys +./usr/man/man5/httpd.conf.5 minix-sys +./usr/man/man5/http_status.5 minix-sys +./usr/man/man5/keymap.5 minix-sys +./usr/man/man5/libarchive-formats.5 minix-sys +./usr/man/man5/magic.5 minix-sys +./usr/man/man5/man.conf.5 minix-sys +./usr/man/man5 minix-sys +./usr/man/man5/mtree.5 minix-sys +./usr/man/man5/passwd.5 minix-sys +./usr/man/man5/pkg_install.conf.5 minix-sys +./usr/man/man5/pkg_summary.5 minix-sys +./usr/man/man5/resolv.conf.5 minix-sys +./usr/man/man5/resolver.5 minix-sys +./usr/man/man5/rhosts.5 minix-sys +./usr/man/man5/serv.access.5 minix-sys +./usr/man/man5/statvfs.5 minix-sys +./usr/man/man5/syslog.conf.5 minix-sys +./usr/man/man5/system.conf.5 minix-sys +./usr/man/man5/tar.5 minix-sys +./usr/man/man5/termcap.5 minix-sys +./usr/man/man5/terminfo.5 minix-sys +./usr/man/man5/ttytab.5 minix-sys +./usr/man/man5/TZ.5 minix-sys +./usr/man/man5/tzfile.5 minix-sys +./usr/man/man5/usermgmt.conf.5 minix-sys +./usr/man/man5/utmp.5 minix-sys +./usr/man/man5/whatis.5 minix-sys +./usr/man/man6 minix-sys +./usr/man/man7/ascii.7 minix-sys +./usr/man/man7/environ.7 minix-sys +./usr/man/man7/hier.7 minix-sys +./usr/man/man7/man.7 minix-sys +./usr/man/man7/mandoc_char.7 minix-sys +./usr/man/man7/mandoc_man.7 minix-sys +./usr/man/man7/mandoc_mdoc.7 minix-sys +./usr/man/man7/mandoc_roff.7 minix-sys +./usr/man/man7/mandoc_tbl.7 minix-sys +./usr/man/man7 minix-sys +./usr/man/man7/pkgsrc.7 minix-sys +./usr/man/man7/re_format.7 minix-sys +./usr/man/man8/add_route.8 minix-sys +./usr/man/man8/adduser.8 minix-sys +./usr/man/man8/backup.8 minix-sys +./usr/man/man8/badblocks.8 minix-sys obsolete +./usr/man/man8/boot.8 minix-sys +./usr/man/man8/btrace.8 minix-sys +./usr/man/man8/cdprobe.8 minix-sys +./usr/man/man8/checkhier.8 minix-sys obsolete +./usr/man/man8/chown.8 minix-sys +./usr/man/man8/chroot.8 minix-sys +./usr/man/man8/cleantmp.8 minix-sys +./usr/man/man8/config.8 minix-sys +./usr/man/man8/cron.8 minix-sys +./usr/man/man8/dhcpd.8 minix-sys +./usr/man/man8/diskctl.8 minix-sys +./usr/man/man8/elvprsv.8 minix-sys +./usr/man/man8/fbdctl.8 minix-sys +./usr/man/man8/fdisk.8 minix-sys +./usr/man/man8/fingerd.8 minix-sys +./usr/man/man8/fsck.8 minix-sys +./usr/man/man8/fsck_ext2fs.8 minix-sys +./usr/man/man8/getty.8 minix-sys +./usr/man/man8/group.8 minix-sys +./usr/man/man8/groupadd.8 minix-sys +./usr/man/man8/groupdel.8 minix-sys +./usr/man/man8/groupinfo.8 minix-sys +./usr/man/man8/groupmod.8 minix-sys +./usr/man/man8/halt.8 minix-sys +./usr/man/man8/hgfs.8 minix-sys +./usr/man/man8/httpd.8 minix-sys +./usr/man/man8/ifconfig.8 minix-sys +./usr/man/man8/inet.8 minix-sys +./usr/man/man8/in.httpd.8 minix-sys +./usr/man/man8/init.8 minix-sys +./usr/man/man8/installboot_nbsd.8 minix-sys +./usr/man/man8/intr.8 minix-sys +./usr/man/man8/irdpd.8 minix-sys +./usr/man/man8/loadramdisk.8 minix-sys +./usr/man/man8/MAKEDEV.8 minix-sys +./usr/man/man8/makewhatis.8 minix-sys +./usr/man/man8 minix-sys +./usr/man/man8/mknod.8 minix-sys +./usr/man/man8/mtree.8 minix-sys +./usr/man/man8/netconf.8 minix-sys +./usr/man/man8/newfs_ext2fs.8 minix-sys +./usr/man/man8/newroot.8 minix-sys +./usr/man/man8/nonamed.8 minix-sys +./usr/man/man8/ossdevlinks.8 minix-sys +./usr/man/man8/part.8 minix-sys +./usr/man/man8/partition.8 minix-sys +./usr/man/man8/postinstall.8 minix-sys +./usr/man/man8/poweroff.8 minix-sys +./usr/man/man8/printroot.8 minix-sys +./usr/man/man8/pr_routes.8 minix-sys +./usr/man/man8/pwdauth.8 minix-sys +./usr/man/man8/pwd_mkdb.8 minix-sys +./usr/man/man8/rarpd.8 minix-sys +./usr/man/man8/rdate.8 minix-sys +./usr/man/man8/readclock.8 minix-sys +./usr/man/man8/reboot.8 minix-sys +./usr/man/man8/repartition.8 minix-sys +./usr/man/man8/rshd.8 minix-sys +./usr/man/man8/screendump.8 minix-sys +./usr/man/man8/serial-ip.8 minix-sys +./usr/man/man8/service.8 minix-sys +./usr/man/man8/setup.8 minix-sys +./usr/man/man8/shutdown.8 minix-sys +./usr/man/man8/slip.8 minix-sys +./usr/man/man8/srccrc.8 minix-sys +./usr/man/man8/sync.8 minix-sys +./usr/man/man8/syslogd.8 minix-sys +./usr/man/man8/tcpd.8 minix-sys +./usr/man/man8/unix.8 minix-sys +./usr/man/man8/update.8 minix-sys +./usr/man/man8/usage.8 minix-sys +./usr/man/man8/user.8 minix-sys +./usr/man/man8/useradd.8 minix-sys +./usr/man/man8/userdel.8 minix-sys +./usr/man/man8/userinfo.8 minix-sys +./usr/man/man8/usermod.8 minix-sys +./usr/man/man8/vbfs.8 minix-sys +./usr/man/man8/vipw.8 minix-sys +./usr/man/man8/zdump.8 minix-sys +./usr/man/man8/zic.8 minix-sys +./usr/man/man9/macros.9 minix-sys +./usr/man/man9 minix-sys +./usr/man/man9/prop_array_copyin_ioctl.9 minix-sys +./usr/man/man9/prop_array_copyout_ioctl.9 minix-sys +./usr/man/man9/prop_copyin_ioctl.9 minix-sys +./usr/man/man9/prop_dictionary_copyin_ioctl.9 minix-sys +./usr/man/man9/prop_dictionary_copyout_ioctl.9 minix-sys +./usr/man minix-sys +./usr/man/whatis.db minix-sys +./usr/mdec/boot_monitor minix-sys +./usr/mdec/bootxx_cd9660 minix-sys +./usr/mdec/bootxx_ext2fs minix-sys +./usr/mdec/bootxx_minixfs3 minix-sys +./usr/mdec/gptmbr.bin minix-sys +./usr/mdec/mbr_bootsel minix-sys +./usr/mdec/mbr_com0_9600 minix-sys +./usr/mdec/mbr_com0 minix-sys +./usr/mdec/mbr_ext minix-sys +./usr/mdec/mbr minix-sys +./usr/mdec minix-sys +./usr minix-sys +./usr/pkg/etc minix-sys +./usr/pkg/etc/rc.d minix-sys +./usr/pkg minix-sys +./usr/preserve minix-sys +./usr/run minix-sys +./usr/sbin/acpi minix-sys +./usr/sbin/amddev minix-sys +./usr/sbin/atl2 minix-sys +./usr/sbin/chroot minix-sys +./usr/sbin/dec21140A minix-sys +./usr/sbin/dp8390 minix-sys +./usr/sbin/dpeth minix-sys +./usr/sbin/ds minix-sys +./usr/sbin/e1000 minix-sys +./usr/sbin/es1370 minix-sys +./usr/sbin/es1371 minix-sys +./usr/sbin/fbd minix-sys +./usr/sbin/filter minix-sys +./usr/sbin/fxp minix-sys +./usr/sbin/groupadd minix-sys +./usr/sbin/groupdel minix-sys +./usr/sbin/groupinfo minix-sys +./usr/sbin/group minix-sys +./usr/sbin/groupmod minix-sys +./usr/sbin/hello minix-sys +./usr/sbin/inet minix-sys +./usr/sbin/init minix-sys +./usr/sbin/installboot_nbsd minix-sys +./usr/sbin/ipc minix-sys +./usr/sbin/kernel minix-sys +./usr/sbin/lance minix-sys +./usr/sbin/log minix-sys +./usr/sbin/memory minix-sys +./usr/sbin minix-sys +./usr/sbin/mtree minix-sys +./usr/sbin/orinoco minix-sys +./usr/sbin/pci minix-sys +./usr/sbin/pfs minix-sys +./usr/sbin/pm minix-sys +./usr/sbin/postinstall minix-sys +./usr/sbin/printer minix-sys +./usr/sbin/pwd_mkdb minix-sys +./usr/sbin/random minix-sys +./usr/sbin/rs minix-sys +./usr/sbin/rtl8139 minix-sys +./usr/sbin/rtl8169 minix-sys +./usr/sbin/sb16 minix-sys +./usr/sbin/sched minix-sys +./usr/sbin/ti1225 minix-sys +./usr/sbin/tty minix-sys +./usr/sbin/useradd minix-sys +./usr/sbin/userdel minix-sys +./usr/sbin/userinfo minix-sys +./usr/sbin/user minix-sys +./usr/sbin/usermod minix-sys +./usr/sbin/vbox minix-sys +./usr/sbin/vfs minix-sys +./usr/sbin/vipw minix-sys +./usr/sbin/vm minix-sys +./usr/sbin/zic minix-sys +./usr/share/doc/html/bzip2/manual.html minix-sys +./usr/share/doc/html/bzip2 minix-sys +./usr/share/doc/html minix-sys +./usr/share/doc minix-sys +./usr/share/doc/psd/19.curses/appen.A minix-sys +./usr/share/doc/psd/19.curses/appen.B minix-sys +./usr/share/doc/psd/19.curses/appen.C minix-sys +./usr/share/doc/psd/19.curses/c_macros minix-sys +./usr/share/doc/psd/19.curses/doc.III minix-sys +./usr/share/doc/psd/19.curses/doc.II minix-sys +./usr/share/doc/psd/19.curses/doc.I minix-sys +./usr/share/doc/psd/19.curses/doc.IV minix-sys +./usr/share/doc/psd/19.curses/ex1.c minix-sys +./usr/share/doc/psd/19.curses/ex2.c minix-sys +./usr/share/doc/psd/19.curses/fns.doc minix-sys +./usr/share/doc/psd/19.curses/intro.0 minix-sys +./usr/share/doc/psd/19.curses/intro.1 minix-sys +./usr/share/doc/psd/19.curses/intro.2 minix-sys +./usr/share/doc/psd/19.curses/intro.3 minix-sys +./usr/share/doc/psd/19.curses/intro.4 minix-sys +./usr/share/doc/psd/19.curses/intro.5 minix-sys +./usr/share/doc/psd/19.curses/intro.6 minix-sys +./usr/share/doc/psd/19.curses/life.c minix-sys +./usr/share/doc/psd/19.curses/macros minix-sys +./usr/share/doc/psd/19.curses/Makefile minix-sys +./usr/share/doc/psd/19.curses/Master minix-sys +./usr/share/doc/psd/19.curses minix-sys +./usr/share/doc/psd/19.curses/twinkle1.c minix-sys +./usr/share/doc/psd/19.curses/twinkle2.c minix-sys +./usr/share/doc/psd/19.curses/win_st.c minix-sys +./usr/share/doc/psd minix-sys +./usr/share minix-sys +./usr/share/misc/acronyms.comp minix-sys +./usr/share/misc/acronyms minix-sys +./usr/share/misc/airport minix-sys +./usr/share/misc/ascii minix-sys +./usr/share/misc/birthtoken minix-sys +./usr/share/misc/bsd-family-tree minix-sys +./usr/share/misc/country minix-sys +./usr/share/misc/domains minix-sys +./usr/share/misc/eqnchar minix-sys +./usr/share/misc/flowers minix-sys +./usr/share/misc/indent.pro minix-sys +./usr/share/misc/inter.phone minix-sys +./usr/share/misc/language minix-sys +./usr/share/misc/magic.mgc minix-sys +./usr/share/misc/man.template minix-sys +./usr/share/misc/mdoc.template minix-sys +./usr/share/misc minix-sys +./usr/share/misc/na.phone minix-sys +./usr/share/misc/na.postal minix-sys +./usr/share/misc/NetBSD.el minix-sys +./usr/share/misc/operator minix-sys +./usr/share/misc/style minix-sys +./usr/share/misc/zipcodes minix-sys +./usr/share/mk/bsd.clang-analyze.mk minix-sys +./usr/share/mk/bsd.clean.mk minix-sys +./usr/share/mk/bsd.dep.mk minix-sys +./usr/share/mk/bsd.doc.mk minix-sys +./usr/share/mk/bsd.endian.mk minix-sys +./usr/share/mk/bsd.files.mk minix-sys +./usr/share/mk/bsd.gcc.mk minix-sys +./usr/share/mk/bsd.hostlib.mk minix-sys +./usr/share/mk/bsd.hostprog.mk minix-sys +./usr/share/mk/bsd.inc.mk minix-sys +./usr/share/mk/bsd.info.mk minix-sys +./usr/share/mk/bsd.init.mk minix-sys +./usr/share/mk/bsd.ioconf.mk minix-sys +./usr/share/mk/bsd.kernobj.mk minix-sys +./usr/share/mk/bsd.kinc.mk minix-sys +./usr/share/mk/bsd.klinks.mk minix-sys +./usr/share/mk/bsd.kmodule.mk minix-sys +./usr/share/mk/bsd.lib.mk minix-sys +./usr/share/mk/bsd.links.mk minix-sys +./usr/share/mk/bsd.lua.mk minix-sys +./usr/share/mk/bsd.man.mk minix-sys +./usr/share/mk/bsd.nls.mk minix-sys +./usr/share/mk/bsd.obj.mk minix-sys +./usr/share/mk/bsd.own.mk minix-sys +./usr/share/mk/bsd.prog.mk minix-sys +./usr/share/mk/bsd.README minix-sys +./usr/share/mk/bsd.rpc.mk minix-sys +./usr/share/mk/bsd.shlib.mk minix-sys +./usr/share/mk/bsd.subdir.mk minix-sys +./usr/share/mk/bsd.sys.mk minix-sys +./usr/share/mk/bsd.test.mk minix-sys +./usr/share/mk/bsd.x11.mk minix-sys +./usr/share/mk/minix.bootprog.mk minix-sys +./usr/share/mk/minix.gcc.mk minix-sys +./usr/share/mk/minix.gcov.mk minix-sys +./usr/share/mk/minix.service.mk minix-sys +./usr/share/mk minix-sys +./usr/share/mk/pkgsrchooks.mk minix-sys +./usr/share/mk/sys.mk minix-sys +./usr/share/terminfo minix-sys +./usr/share/terminfo/terminfo.db minix-sys +./usr/share/terminfo/terminfo minix-sys +./usr/share/zoneinfo/Africa/Abidjan minix-sys +./usr/share/zoneinfo/Africa/Accra minix-sys +./usr/share/zoneinfo/Africa/Addis_Ababa minix-sys +./usr/share/zoneinfo/Africa/Algiers minix-sys +./usr/share/zoneinfo/Africa/Asmara minix-sys +./usr/share/zoneinfo/Africa/Asmera minix-sys +./usr/share/zoneinfo/Africa/Bamako minix-sys +./usr/share/zoneinfo/Africa/Bangui minix-sys +./usr/share/zoneinfo/Africa/Banjul minix-sys +./usr/share/zoneinfo/Africa/Bissau minix-sys +./usr/share/zoneinfo/Africa/Blantyre minix-sys +./usr/share/zoneinfo/Africa/Brazzaville minix-sys +./usr/share/zoneinfo/Africa/Bujumbura minix-sys +./usr/share/zoneinfo/Africa/Cairo minix-sys +./usr/share/zoneinfo/Africa/Casablanca minix-sys +./usr/share/zoneinfo/Africa/Ceuta minix-sys +./usr/share/zoneinfo/Africa/Conakry minix-sys +./usr/share/zoneinfo/Africa/Dakar minix-sys +./usr/share/zoneinfo/Africa/Dar_es_Salaam minix-sys +./usr/share/zoneinfo/Africa/Djibouti minix-sys +./usr/share/zoneinfo/Africa/Douala minix-sys +./usr/share/zoneinfo/Africa/El_Aaiun minix-sys +./usr/share/zoneinfo/Africa/Freetown minix-sys +./usr/share/zoneinfo/Africa/Gaborone minix-sys +./usr/share/zoneinfo/Africa/Harare minix-sys +./usr/share/zoneinfo/Africa/Johannesburg minix-sys +./usr/share/zoneinfo/Africa/Juba minix-sys +./usr/share/zoneinfo/Africa/Kampala minix-sys +./usr/share/zoneinfo/Africa/Khartoum minix-sys +./usr/share/zoneinfo/Africa/Kigali minix-sys +./usr/share/zoneinfo/Africa/Kinshasa minix-sys +./usr/share/zoneinfo/Africa/Lagos minix-sys +./usr/share/zoneinfo/Africa/Libreville minix-sys +./usr/share/zoneinfo/Africa/Lome minix-sys +./usr/share/zoneinfo/Africa/Luanda minix-sys +./usr/share/zoneinfo/Africa/Lubumbashi minix-sys +./usr/share/zoneinfo/Africa/Lusaka minix-sys +./usr/share/zoneinfo/Africa/Malabo minix-sys +./usr/share/zoneinfo/Africa/Maputo minix-sys +./usr/share/zoneinfo/Africa/Maseru minix-sys +./usr/share/zoneinfo/Africa/Mbabane minix-sys +./usr/share/zoneinfo/Africa minix-sys +./usr/share/zoneinfo/Africa/Mogadishu minix-sys +./usr/share/zoneinfo/Africa/Monrovia minix-sys +./usr/share/zoneinfo/Africa/Nairobi minix-sys +./usr/share/zoneinfo/Africa/Ndjamena minix-sys +./usr/share/zoneinfo/Africa/Niamey minix-sys +./usr/share/zoneinfo/Africa/Nouakchott minix-sys +./usr/share/zoneinfo/Africa/Ouagadougou minix-sys +./usr/share/zoneinfo/Africa/Porto-Novo minix-sys +./usr/share/zoneinfo/Africa/Sao_Tome minix-sys +./usr/share/zoneinfo/Africa/Timbuktu minix-sys +./usr/share/zoneinfo/Africa/Tripoli minix-sys +./usr/share/zoneinfo/Africa/Tunis minix-sys +./usr/share/zoneinfo/Africa/Windhoek minix-sys +./usr/share/zoneinfo/America/Adak minix-sys +./usr/share/zoneinfo/America/Anchorage minix-sys +./usr/share/zoneinfo/America/Anguilla minix-sys +./usr/share/zoneinfo/America/Antigua minix-sys +./usr/share/zoneinfo/America/Araguaina minix-sys +./usr/share/zoneinfo/America/Argentina/Buenos_Aires minix-sys +./usr/share/zoneinfo/America/Argentina/Catamarca minix-sys +./usr/share/zoneinfo/America/Argentina/ComodRivadavia minix-sys +./usr/share/zoneinfo/America/Argentina/Cordoba minix-sys +./usr/share/zoneinfo/America/Argentina/Jujuy minix-sys +./usr/share/zoneinfo/America/Argentina/La_Rioja minix-sys +./usr/share/zoneinfo/America/Argentina/Mendoza minix-sys +./usr/share/zoneinfo/America/Argentina minix-sys +./usr/share/zoneinfo/America/Argentina/Rio_Gallegos minix-sys +./usr/share/zoneinfo/America/Argentina/Salta minix-sys +./usr/share/zoneinfo/America/Argentina/San_Juan minix-sys +./usr/share/zoneinfo/America/Argentina/San_Luis minix-sys +./usr/share/zoneinfo/America/Argentina/Tucuman minix-sys +./usr/share/zoneinfo/America/Argentina/Ushuaia minix-sys +./usr/share/zoneinfo/America/Aruba minix-sys +./usr/share/zoneinfo/America/Asuncion minix-sys +./usr/share/zoneinfo/America/Atikokan minix-sys +./usr/share/zoneinfo/America/Atka minix-sys +./usr/share/zoneinfo/America/Bahia_Banderas minix-sys +./usr/share/zoneinfo/America/Bahia minix-sys +./usr/share/zoneinfo/America/Barbados minix-sys +./usr/share/zoneinfo/America/Belem minix-sys +./usr/share/zoneinfo/America/Belize minix-sys +./usr/share/zoneinfo/America/Blanc-Sablon minix-sys +./usr/share/zoneinfo/America/Boa_Vista minix-sys +./usr/share/zoneinfo/America/Bogota minix-sys +./usr/share/zoneinfo/America/Boise minix-sys +./usr/share/zoneinfo/America/Buenos_Aires minix-sys +./usr/share/zoneinfo/America/Cambridge_Bay minix-sys +./usr/share/zoneinfo/America/Campo_Grande minix-sys +./usr/share/zoneinfo/America/Cancun minix-sys +./usr/share/zoneinfo/America/Caracas minix-sys +./usr/share/zoneinfo/America/Catamarca minix-sys +./usr/share/zoneinfo/America/Cayenne minix-sys +./usr/share/zoneinfo/America/Cayman minix-sys +./usr/share/zoneinfo/America/Chicago minix-sys +./usr/share/zoneinfo/America/Chihuahua minix-sys +./usr/share/zoneinfo/America/Coral_Harbour minix-sys +./usr/share/zoneinfo/America/Cordoba minix-sys +./usr/share/zoneinfo/America/Costa_Rica minix-sys +./usr/share/zoneinfo/America/Cuiaba minix-sys +./usr/share/zoneinfo/America/Curacao minix-sys +./usr/share/zoneinfo/America/Danmarkshavn minix-sys +./usr/share/zoneinfo/America/Dawson_Creek minix-sys +./usr/share/zoneinfo/America/Dawson minix-sys +./usr/share/zoneinfo/America/Denver minix-sys +./usr/share/zoneinfo/America/Detroit minix-sys +./usr/share/zoneinfo/America/Dominica minix-sys +./usr/share/zoneinfo/America/Edmonton minix-sys +./usr/share/zoneinfo/America/Eirunepe minix-sys +./usr/share/zoneinfo/America/El_Salvador minix-sys +./usr/share/zoneinfo/America/Ensenada minix-sys +./usr/share/zoneinfo/America/Fortaleza minix-sys +./usr/share/zoneinfo/America/Fort_Wayne minix-sys +./usr/share/zoneinfo/America/Glace_Bay minix-sys +./usr/share/zoneinfo/America/Godthab minix-sys +./usr/share/zoneinfo/America/Goose_Bay minix-sys +./usr/share/zoneinfo/America/Grand_Turk minix-sys +./usr/share/zoneinfo/America/Grenada minix-sys +./usr/share/zoneinfo/America/Guadeloupe minix-sys +./usr/share/zoneinfo/America/Guatemala minix-sys +./usr/share/zoneinfo/America/Guayaquil minix-sys +./usr/share/zoneinfo/America/Guyana minix-sys +./usr/share/zoneinfo/America/Halifax minix-sys +./usr/share/zoneinfo/America/Havana minix-sys +./usr/share/zoneinfo/America/Hermosillo minix-sys +./usr/share/zoneinfo/America/Indiana/Indianapolis minix-sys +./usr/share/zoneinfo/America/Indiana/Knox minix-sys +./usr/share/zoneinfo/America/Indiana/Marengo minix-sys +./usr/share/zoneinfo/America/Indiana minix-sys +./usr/share/zoneinfo/America/Indiana/Petersburg minix-sys +./usr/share/zoneinfo/America/Indianapolis minix-sys +./usr/share/zoneinfo/America/Indiana/Tell_City minix-sys +./usr/share/zoneinfo/America/Indiana/Vevay minix-sys +./usr/share/zoneinfo/America/Indiana/Vincennes minix-sys +./usr/share/zoneinfo/America/Indiana/Winamac minix-sys +./usr/share/zoneinfo/America/Inuvik minix-sys +./usr/share/zoneinfo/America/Iqaluit minix-sys +./usr/share/zoneinfo/America/Jamaica minix-sys +./usr/share/zoneinfo/America/Jujuy minix-sys +./usr/share/zoneinfo/America/Juneau minix-sys +./usr/share/zoneinfo/America/Kentucky/Louisville minix-sys +./usr/share/zoneinfo/America/Kentucky minix-sys +./usr/share/zoneinfo/America/Kentucky/Monticello minix-sys +./usr/share/zoneinfo/America/Knox_IN minix-sys +./usr/share/zoneinfo/America/Kralendijk minix-sys +./usr/share/zoneinfo/America/La_Paz minix-sys +./usr/share/zoneinfo/America/Lima minix-sys +./usr/share/zoneinfo/America/Los_Angeles minix-sys +./usr/share/zoneinfo/America/Louisville minix-sys +./usr/share/zoneinfo/America/Lower_Princes minix-sys +./usr/share/zoneinfo/America/Maceio minix-sys +./usr/share/zoneinfo/America/Managua minix-sys +./usr/share/zoneinfo/America/Manaus minix-sys +./usr/share/zoneinfo/America/Marigot minix-sys +./usr/share/zoneinfo/America/Martinique minix-sys +./usr/share/zoneinfo/America/Matamoros minix-sys +./usr/share/zoneinfo/America/Mazatlan minix-sys +./usr/share/zoneinfo/America/Mendoza minix-sys +./usr/share/zoneinfo/America/Menominee minix-sys +./usr/share/zoneinfo/America/Merida minix-sys +./usr/share/zoneinfo/America/Metlakatla minix-sys +./usr/share/zoneinfo/America/Mexico_City minix-sys +./usr/share/zoneinfo/America minix-sys +./usr/share/zoneinfo/America/Miquelon minix-sys +./usr/share/zoneinfo/America/Moncton minix-sys +./usr/share/zoneinfo/America/Monterrey minix-sys +./usr/share/zoneinfo/America/Montevideo minix-sys +./usr/share/zoneinfo/America/Montreal minix-sys +./usr/share/zoneinfo/America/Montserrat minix-sys +./usr/share/zoneinfo/America/Nassau minix-sys +./usr/share/zoneinfo/America/New_York minix-sys +./usr/share/zoneinfo/America/Nipigon minix-sys +./usr/share/zoneinfo/America/Nome minix-sys +./usr/share/zoneinfo/America/Noronha minix-sys +./usr/share/zoneinfo/America/North_Dakota/Beulah minix-sys +./usr/share/zoneinfo/America/North_Dakota/Center minix-sys +./usr/share/zoneinfo/America/North_Dakota minix-sys +./usr/share/zoneinfo/America/North_Dakota/New_Salem minix-sys +./usr/share/zoneinfo/America/Ojinaga minix-sys +./usr/share/zoneinfo/America/Panama minix-sys +./usr/share/zoneinfo/America/Pangnirtung minix-sys +./usr/share/zoneinfo/America/Paramaribo minix-sys +./usr/share/zoneinfo/America/Phoenix minix-sys +./usr/share/zoneinfo/America/Port-au-Prince minix-sys +./usr/share/zoneinfo/America/Porto_Acre minix-sys +./usr/share/zoneinfo/America/Port_of_Spain minix-sys +./usr/share/zoneinfo/America/Porto_Velho minix-sys +./usr/share/zoneinfo/America/Puerto_Rico minix-sys +./usr/share/zoneinfo/America/Rainy_River minix-sys +./usr/share/zoneinfo/America/Rankin_Inlet minix-sys +./usr/share/zoneinfo/America/Recife minix-sys +./usr/share/zoneinfo/America/Regina minix-sys +./usr/share/zoneinfo/America/Resolute minix-sys +./usr/share/zoneinfo/America/Rio_Branco minix-sys +./usr/share/zoneinfo/America/Rosario minix-sys +./usr/share/zoneinfo/America/Santa_Isabel minix-sys +./usr/share/zoneinfo/America/Santarem minix-sys +./usr/share/zoneinfo/America/Santiago minix-sys +./usr/share/zoneinfo/America/Santo_Domingo minix-sys +./usr/share/zoneinfo/America/Sao_Paulo minix-sys +./usr/share/zoneinfo/America/Scoresbysund minix-sys +./usr/share/zoneinfo/America/Shiprock minix-sys +./usr/share/zoneinfo/America/Sitka minix-sys +./usr/share/zoneinfo/America/St_Barthelemy minix-sys +./usr/share/zoneinfo/America/St_Johns minix-sys +./usr/share/zoneinfo/America/St_Kitts minix-sys +./usr/share/zoneinfo/America/St_Lucia minix-sys +./usr/share/zoneinfo/America/St_Thomas minix-sys +./usr/share/zoneinfo/America/St_Vincent minix-sys +./usr/share/zoneinfo/America/Swift_Current minix-sys +./usr/share/zoneinfo/America/Tegucigalpa minix-sys +./usr/share/zoneinfo/America/Thule minix-sys +./usr/share/zoneinfo/America/Thunder_Bay minix-sys +./usr/share/zoneinfo/America/Tijuana minix-sys +./usr/share/zoneinfo/America/Toronto minix-sys +./usr/share/zoneinfo/America/Tortola minix-sys +./usr/share/zoneinfo/America/Vancouver minix-sys +./usr/share/zoneinfo/America/Virgin minix-sys +./usr/share/zoneinfo/America/Whitehorse minix-sys +./usr/share/zoneinfo/America/Winnipeg minix-sys +./usr/share/zoneinfo/America/Yakutat minix-sys +./usr/share/zoneinfo/America/Yellowknife minix-sys +./usr/share/zoneinfo/Antarctica/Casey minix-sys +./usr/share/zoneinfo/Antarctica/Davis minix-sys +./usr/share/zoneinfo/Antarctica/DumontDUrville minix-sys +./usr/share/zoneinfo/Antarctica/Macquarie minix-sys +./usr/share/zoneinfo/Antarctica/Mawson minix-sys +./usr/share/zoneinfo/Antarctica/McMurdo minix-sys +./usr/share/zoneinfo/Antarctica minix-sys +./usr/share/zoneinfo/Antarctica/Palmer minix-sys +./usr/share/zoneinfo/Antarctica/Rothera minix-sys +./usr/share/zoneinfo/Antarctica/South_Pole minix-sys +./usr/share/zoneinfo/Antarctica/Syowa minix-sys +./usr/share/zoneinfo/Antarctica/Vostok minix-sys +./usr/share/zoneinfo/Arctic/Longyearbyen minix-sys +./usr/share/zoneinfo/Arctic minix-sys +./usr/share/zoneinfo/Asia/Aden minix-sys +./usr/share/zoneinfo/Asia/Almaty minix-sys +./usr/share/zoneinfo/Asia/Amman minix-sys +./usr/share/zoneinfo/Asia/Anadyr minix-sys +./usr/share/zoneinfo/Asia/Aqtau minix-sys +./usr/share/zoneinfo/Asia/Aqtobe minix-sys +./usr/share/zoneinfo/Asia/Ashgabat minix-sys +./usr/share/zoneinfo/Asia/Ashkhabad minix-sys +./usr/share/zoneinfo/Asia/Baghdad minix-sys +./usr/share/zoneinfo/Asia/Bahrain minix-sys +./usr/share/zoneinfo/Asia/Baku minix-sys +./usr/share/zoneinfo/Asia/Bangkok minix-sys +./usr/share/zoneinfo/Asia/Beirut minix-sys +./usr/share/zoneinfo/Asia/Bishkek minix-sys +./usr/share/zoneinfo/Asia/Brunei minix-sys +./usr/share/zoneinfo/Asia/Calcutta minix-sys +./usr/share/zoneinfo/Asia/Choibalsan minix-sys +./usr/share/zoneinfo/Asia/Chongqing minix-sys +./usr/share/zoneinfo/Asia/Chungking minix-sys +./usr/share/zoneinfo/Asia/Colombo minix-sys +./usr/share/zoneinfo/Asia/Dacca minix-sys +./usr/share/zoneinfo/Asia/Damascus minix-sys +./usr/share/zoneinfo/Asia/Dhaka minix-sys +./usr/share/zoneinfo/Asia/Dili minix-sys +./usr/share/zoneinfo/Asia/Dubai minix-sys +./usr/share/zoneinfo/Asia/Dushanbe minix-sys +./usr/share/zoneinfo/Asia/Gaza minix-sys +./usr/share/zoneinfo/Asia/Harbin minix-sys +./usr/share/zoneinfo/Asia/Hebron minix-sys +./usr/share/zoneinfo/Asia/Ho_Chi_Minh minix-sys +./usr/share/zoneinfo/Asia/Hong_Kong minix-sys +./usr/share/zoneinfo/Asia/Hovd minix-sys +./usr/share/zoneinfo/Asia/Irkutsk minix-sys +./usr/share/zoneinfo/Asia/Istanbul minix-sys +./usr/share/zoneinfo/Asia/Jakarta minix-sys +./usr/share/zoneinfo/Asia/Jayapura minix-sys +./usr/share/zoneinfo/Asia/Jerusalem minix-sys +./usr/share/zoneinfo/Asia/Kabul minix-sys +./usr/share/zoneinfo/Asia/Kamchatka minix-sys +./usr/share/zoneinfo/Asia/Karachi minix-sys +./usr/share/zoneinfo/Asia/Kashgar minix-sys +./usr/share/zoneinfo/Asia/Kathmandu minix-sys +./usr/share/zoneinfo/Asia/Katmandu minix-sys +./usr/share/zoneinfo/Asia/Kolkata minix-sys +./usr/share/zoneinfo/Asia/Krasnoyarsk minix-sys +./usr/share/zoneinfo/Asia/Kuala_Lumpur minix-sys +./usr/share/zoneinfo/Asia/Kuching minix-sys +./usr/share/zoneinfo/Asia/Kuwait minix-sys +./usr/share/zoneinfo/Asia/Macao minix-sys +./usr/share/zoneinfo/Asia/Macau minix-sys +./usr/share/zoneinfo/Asia/Magadan minix-sys +./usr/share/zoneinfo/Asia/Makassar minix-sys +./usr/share/zoneinfo/Asia/Manila minix-sys +./usr/share/zoneinfo/Asia minix-sys +./usr/share/zoneinfo/Asia/Muscat minix-sys +./usr/share/zoneinfo/Asia/Nicosia minix-sys +./usr/share/zoneinfo/Asia/Novokuznetsk minix-sys +./usr/share/zoneinfo/Asia/Novosibirsk minix-sys +./usr/share/zoneinfo/Asia/Omsk minix-sys +./usr/share/zoneinfo/Asia/Oral minix-sys +./usr/share/zoneinfo/Asia/Phnom_Penh minix-sys +./usr/share/zoneinfo/Asia/Pontianak minix-sys +./usr/share/zoneinfo/Asia/Pyongyang minix-sys +./usr/share/zoneinfo/Asia/Qatar minix-sys +./usr/share/zoneinfo/Asia/Qyzylorda minix-sys +./usr/share/zoneinfo/Asia/Rangoon minix-sys +./usr/share/zoneinfo/Asia/Riyadh87 minix-sys +./usr/share/zoneinfo/Asia/Riyadh88 minix-sys +./usr/share/zoneinfo/Asia/Riyadh89 minix-sys +./usr/share/zoneinfo/Asia/Riyadh minix-sys +./usr/share/zoneinfo/Asia/Saigon minix-sys +./usr/share/zoneinfo/Asia/Sakhalin minix-sys +./usr/share/zoneinfo/Asia/Samarkand minix-sys +./usr/share/zoneinfo/Asia/Seoul minix-sys +./usr/share/zoneinfo/Asia/Shanghai minix-sys +./usr/share/zoneinfo/Asia/Singapore minix-sys +./usr/share/zoneinfo/Asia/Taipei minix-sys +./usr/share/zoneinfo/Asia/Tashkent minix-sys +./usr/share/zoneinfo/Asia/Tbilisi minix-sys +./usr/share/zoneinfo/Asia/Tehran minix-sys +./usr/share/zoneinfo/Asia/Tel_Aviv minix-sys +./usr/share/zoneinfo/Asia/Thimbu minix-sys +./usr/share/zoneinfo/Asia/Thimphu minix-sys +./usr/share/zoneinfo/Asia/Tokyo minix-sys +./usr/share/zoneinfo/Asia/Ujung_Pandang minix-sys +./usr/share/zoneinfo/Asia/Ulaanbaatar minix-sys +./usr/share/zoneinfo/Asia/Ulan_Bator minix-sys +./usr/share/zoneinfo/Asia/Urumqi minix-sys +./usr/share/zoneinfo/Asia/Vientiane minix-sys +./usr/share/zoneinfo/Asia/Vladivostok minix-sys +./usr/share/zoneinfo/Asia/Yakutsk minix-sys +./usr/share/zoneinfo/Asia/Yekaterinburg minix-sys +./usr/share/zoneinfo/Asia/Yerevan minix-sys +./usr/share/zoneinfo/Atlantic/Azores minix-sys +./usr/share/zoneinfo/Atlantic/Bermuda minix-sys +./usr/share/zoneinfo/Atlantic/Canary minix-sys +./usr/share/zoneinfo/Atlantic/Cape_Verde minix-sys +./usr/share/zoneinfo/Atlantic/Faeroe minix-sys +./usr/share/zoneinfo/Atlantic/Faroe minix-sys +./usr/share/zoneinfo/Atlantic/Jan_Mayen minix-sys +./usr/share/zoneinfo/Atlantic/Madeira minix-sys +./usr/share/zoneinfo/Atlantic minix-sys +./usr/share/zoneinfo/Atlantic/Reykjavik minix-sys +./usr/share/zoneinfo/Atlantic/South_Georgia minix-sys +./usr/share/zoneinfo/Atlantic/Stanley minix-sys +./usr/share/zoneinfo/Atlantic/St_Helena minix-sys +./usr/share/zoneinfo/Australia/ACT minix-sys +./usr/share/zoneinfo/Australia/Adelaide minix-sys +./usr/share/zoneinfo/Australia/Brisbane minix-sys +./usr/share/zoneinfo/Australia/Broken_Hill minix-sys +./usr/share/zoneinfo/Australia/Canberra minix-sys +./usr/share/zoneinfo/Australia/Currie minix-sys +./usr/share/zoneinfo/Australia/Darwin minix-sys +./usr/share/zoneinfo/Australia/Eucla minix-sys +./usr/share/zoneinfo/Australia/Hobart minix-sys +./usr/share/zoneinfo/Australia/LHI minix-sys +./usr/share/zoneinfo/Australia/Lindeman minix-sys +./usr/share/zoneinfo/Australia/Lord_Howe minix-sys +./usr/share/zoneinfo/Australia/Melbourne minix-sys +./usr/share/zoneinfo/Australia minix-sys +./usr/share/zoneinfo/Australia/North minix-sys +./usr/share/zoneinfo/Australia/NSW minix-sys +./usr/share/zoneinfo/Australia/Perth minix-sys +./usr/share/zoneinfo/Australia/Queensland minix-sys +./usr/share/zoneinfo/Australia/South minix-sys +./usr/share/zoneinfo/Australia/Sydney minix-sys +./usr/share/zoneinfo/Australia/Tasmania minix-sys +./usr/share/zoneinfo/Australia/Victoria minix-sys +./usr/share/zoneinfo/Australia/West minix-sys +./usr/share/zoneinfo/Australia/Yancowinna minix-sys +./usr/share/zoneinfo/Brazil/Acre minix-sys +./usr/share/zoneinfo/Brazil/DeNoronha minix-sys +./usr/share/zoneinfo/Brazil/East minix-sys +./usr/share/zoneinfo/Brazil minix-sys +./usr/share/zoneinfo/Brazil/West minix-sys +./usr/share/zoneinfo/Canada/Atlantic minix-sys +./usr/share/zoneinfo/Canada/Central minix-sys +./usr/share/zoneinfo/Canada/Eastern minix-sys +./usr/share/zoneinfo/Canada/East-Saskatchewan minix-sys +./usr/share/zoneinfo/Canada minix-sys +./usr/share/zoneinfo/Canada/Mountain minix-sys +./usr/share/zoneinfo/Canada/Newfoundland minix-sys +./usr/share/zoneinfo/Canada/Pacific minix-sys +./usr/share/zoneinfo/Canada/Saskatchewan minix-sys +./usr/share/zoneinfo/Canada/Yukon minix-sys +./usr/share/zoneinfo/CET minix-sys +./usr/share/zoneinfo/Chile/Continental minix-sys +./usr/share/zoneinfo/Chile/EasterIsland minix-sys +./usr/share/zoneinfo/Chile minix-sys +./usr/share/zoneinfo/CST6CDT minix-sys +./usr/share/zoneinfo/Cuba minix-sys +./usr/share/zoneinfo/EET minix-sys +./usr/share/zoneinfo/Egypt minix-sys +./usr/share/zoneinfo/Eire minix-sys +./usr/share/zoneinfo/EST5EDT minix-sys +./usr/share/zoneinfo/EST minix-sys +./usr/share/zoneinfo/Etc/GMT-0 minix-sys +./usr/share/zoneinfo/Etc/GMT+0 minix-sys +./usr/share/zoneinfo/Etc/GMT0 minix-sys +./usr/share/zoneinfo/Etc/GMT-10 minix-sys +./usr/share/zoneinfo/Etc/GMT+10 minix-sys +./usr/share/zoneinfo/Etc/GMT-11 minix-sys +./usr/share/zoneinfo/Etc/GMT+11 minix-sys +./usr/share/zoneinfo/Etc/GMT-12 minix-sys +./usr/share/zoneinfo/Etc/GMT+12 minix-sys +./usr/share/zoneinfo/Etc/GMT-13 minix-sys +./usr/share/zoneinfo/Etc/GMT-14 minix-sys +./usr/share/zoneinfo/Etc/GMT-1 minix-sys +./usr/share/zoneinfo/Etc/GMT+1 minix-sys +./usr/share/zoneinfo/Etc/GMT-2 minix-sys +./usr/share/zoneinfo/Etc/GMT+2 minix-sys +./usr/share/zoneinfo/Etc/GMT-3 minix-sys +./usr/share/zoneinfo/Etc/GMT+3 minix-sys +./usr/share/zoneinfo/Etc/GMT-4 minix-sys +./usr/share/zoneinfo/Etc/GMT+4 minix-sys +./usr/share/zoneinfo/Etc/GMT-5 minix-sys +./usr/share/zoneinfo/Etc/GMT+5 minix-sys +./usr/share/zoneinfo/Etc/GMT-6 minix-sys +./usr/share/zoneinfo/Etc/GMT+6 minix-sys +./usr/share/zoneinfo/Etc/GMT-7 minix-sys +./usr/share/zoneinfo/Etc/GMT+7 minix-sys +./usr/share/zoneinfo/Etc/GMT-8 minix-sys +./usr/share/zoneinfo/Etc/GMT+8 minix-sys +./usr/share/zoneinfo/Etc/GMT-9 minix-sys +./usr/share/zoneinfo/Etc/GMT+9 minix-sys +./usr/share/zoneinfo/Etc/GMT minix-sys +./usr/share/zoneinfo/Etc/Greenwich minix-sys +./usr/share/zoneinfo/Etc minix-sys +./usr/share/zoneinfo/Etc/UCT minix-sys +./usr/share/zoneinfo/Etc/Universal minix-sys +./usr/share/zoneinfo/Etc/UTC minix-sys +./usr/share/zoneinfo/Etc/Zulu minix-sys +./usr/share/zoneinfo/Europe/Amsterdam minix-sys +./usr/share/zoneinfo/Europe/Andorra minix-sys +./usr/share/zoneinfo/Europe/Athens minix-sys +./usr/share/zoneinfo/Europe/Belfast minix-sys +./usr/share/zoneinfo/Europe/Belgrade minix-sys +./usr/share/zoneinfo/Europe/Berlin minix-sys +./usr/share/zoneinfo/Europe/Bratislava minix-sys +./usr/share/zoneinfo/Europe/Brussels minix-sys +./usr/share/zoneinfo/Europe/Bucharest minix-sys +./usr/share/zoneinfo/Europe/Budapest minix-sys +./usr/share/zoneinfo/Europe/Chisinau minix-sys +./usr/share/zoneinfo/Europe/Copenhagen minix-sys +./usr/share/zoneinfo/Europe/Dublin minix-sys +./usr/share/zoneinfo/Europe/Gibraltar minix-sys +./usr/share/zoneinfo/Europe/Guernsey minix-sys +./usr/share/zoneinfo/Europe/Helsinki minix-sys +./usr/share/zoneinfo/Europe/Isle_of_Man minix-sys +./usr/share/zoneinfo/Europe/Istanbul minix-sys +./usr/share/zoneinfo/Europe/Jersey minix-sys +./usr/share/zoneinfo/Europe/Kaliningrad minix-sys +./usr/share/zoneinfo/Europe/Kiev minix-sys +./usr/share/zoneinfo/Europe/Lisbon minix-sys +./usr/share/zoneinfo/Europe/Ljubljana minix-sys +./usr/share/zoneinfo/Europe/London minix-sys +./usr/share/zoneinfo/Europe/Luxembourg minix-sys +./usr/share/zoneinfo/Europe/Madrid minix-sys +./usr/share/zoneinfo/Europe/Malta minix-sys +./usr/share/zoneinfo/Europe/Mariehamn minix-sys +./usr/share/zoneinfo/Europe minix-sys +./usr/share/zoneinfo/Europe/Minsk minix-sys +./usr/share/zoneinfo/Europe/Monaco minix-sys +./usr/share/zoneinfo/Europe/Moscow minix-sys +./usr/share/zoneinfo/Europe/Nicosia minix-sys +./usr/share/zoneinfo/Europe/Oslo minix-sys +./usr/share/zoneinfo/Europe/Paris minix-sys +./usr/share/zoneinfo/Europe/Podgorica minix-sys +./usr/share/zoneinfo/Europe/Prague minix-sys +./usr/share/zoneinfo/Europe/Riga minix-sys +./usr/share/zoneinfo/Europe/Rome minix-sys +./usr/share/zoneinfo/Europe/Samara minix-sys +./usr/share/zoneinfo/Europe/San_Marino minix-sys +./usr/share/zoneinfo/Europe/Sarajevo minix-sys +./usr/share/zoneinfo/Europe/Simferopol minix-sys +./usr/share/zoneinfo/Europe/Skopje minix-sys +./usr/share/zoneinfo/Europe/Sofia minix-sys +./usr/share/zoneinfo/Europe/Stockholm minix-sys +./usr/share/zoneinfo/Europe/Tallinn minix-sys +./usr/share/zoneinfo/Europe/Tirane minix-sys +./usr/share/zoneinfo/Europe/Tiraspol minix-sys +./usr/share/zoneinfo/Europe/Uzhgorod minix-sys +./usr/share/zoneinfo/Europe/Vaduz minix-sys +./usr/share/zoneinfo/Europe/Vatican minix-sys +./usr/share/zoneinfo/Europe/Vienna minix-sys +./usr/share/zoneinfo/Europe/Vilnius minix-sys +./usr/share/zoneinfo/Europe/Volgograd minix-sys +./usr/share/zoneinfo/Europe/Warsaw minix-sys +./usr/share/zoneinfo/Europe/Zagreb minix-sys +./usr/share/zoneinfo/Europe/Zaporozhye minix-sys +./usr/share/zoneinfo/Europe/Zurich minix-sys +./usr/share/zoneinfo/Factory minix-sys +./usr/share/zoneinfo/GB-Eire minix-sys +./usr/share/zoneinfo/GB minix-sys +./usr/share/zoneinfo/GMT-0 minix-sys +./usr/share/zoneinfo/GMT+0 minix-sys +./usr/share/zoneinfo/GMT0 minix-sys +./usr/share/zoneinfo/GMT minix-sys +./usr/share/zoneinfo/Greenwich minix-sys +./usr/share/zoneinfo/Hongkong minix-sys +./usr/share/zoneinfo/HST minix-sys +./usr/share/zoneinfo/Iceland minix-sys +./usr/share/zoneinfo/Indian/Antananarivo minix-sys +./usr/share/zoneinfo/Indian/Chagos minix-sys +./usr/share/zoneinfo/Indian/Christmas minix-sys +./usr/share/zoneinfo/Indian/Cocos minix-sys +./usr/share/zoneinfo/Indian/Comoro minix-sys +./usr/share/zoneinfo/Indian/Kerguelen minix-sys +./usr/share/zoneinfo/Indian/Mahe minix-sys +./usr/share/zoneinfo/Indian/Maldives minix-sys +./usr/share/zoneinfo/Indian/Mauritius minix-sys +./usr/share/zoneinfo/Indian/Mayotte minix-sys +./usr/share/zoneinfo/Indian minix-sys +./usr/share/zoneinfo/Indian/Reunion minix-sys +./usr/share/zoneinfo/Iran minix-sys +./usr/share/zoneinfo/iso3166.tab minix-sys +./usr/share/zoneinfo/Israel minix-sys +./usr/share/zoneinfo/Jamaica minix-sys +./usr/share/zoneinfo/Japan minix-sys +./usr/share/zoneinfo/Kwajalein minix-sys +./usr/share/zoneinfo/Libya minix-sys +./usr/share/zoneinfo/MET minix-sys +./usr/share/zoneinfo/Mexico/BajaNorte minix-sys +./usr/share/zoneinfo/Mexico/BajaSur minix-sys +./usr/share/zoneinfo/Mexico/General minix-sys +./usr/share/zoneinfo/Mexico minix-sys +./usr/share/zoneinfo/Mideast minix-sys +./usr/share/zoneinfo/Mideast/Riyadh87 minix-sys +./usr/share/zoneinfo/Mideast/Riyadh88 minix-sys +./usr/share/zoneinfo/Mideast/Riyadh89 minix-sys +./usr/share/zoneinfo minix-sys +./usr/share/zoneinfo/MST7MDT minix-sys +./usr/share/zoneinfo/MST minix-sys +./usr/share/zoneinfo/Navajo minix-sys +./usr/share/zoneinfo/NZ-CHAT minix-sys +./usr/share/zoneinfo/NZ minix-sys +./usr/share/zoneinfo/Pacific/Apia minix-sys +./usr/share/zoneinfo/Pacific/Auckland minix-sys +./usr/share/zoneinfo/Pacific/Chatham minix-sys +./usr/share/zoneinfo/Pacific/Chuuk minix-sys +./usr/share/zoneinfo/Pacific/Easter minix-sys +./usr/share/zoneinfo/Pacific/Efate minix-sys +./usr/share/zoneinfo/Pacific/Enderbury minix-sys +./usr/share/zoneinfo/Pacific/Fakaofo minix-sys +./usr/share/zoneinfo/Pacific/Fiji minix-sys +./usr/share/zoneinfo/Pacific/Funafuti minix-sys +./usr/share/zoneinfo/Pacific/Galapagos minix-sys +./usr/share/zoneinfo/Pacific/Gambier minix-sys +./usr/share/zoneinfo/Pacific/Guadalcanal minix-sys +./usr/share/zoneinfo/Pacific/Guam minix-sys +./usr/share/zoneinfo/Pacific/Honolulu minix-sys +./usr/share/zoneinfo/Pacific/Johnston minix-sys +./usr/share/zoneinfo/Pacific/Kiritimati minix-sys +./usr/share/zoneinfo/Pacific/Kosrae minix-sys +./usr/share/zoneinfo/Pacific/Kwajalein minix-sys +./usr/share/zoneinfo/Pacific/Majuro minix-sys +./usr/share/zoneinfo/Pacific/Marquesas minix-sys +./usr/share/zoneinfo/Pacific/Midway minix-sys +./usr/share/zoneinfo/Pacific minix-sys +./usr/share/zoneinfo/Pacific/Nauru minix-sys +./usr/share/zoneinfo/Pacific/Niue minix-sys +./usr/share/zoneinfo/Pacific/Norfolk minix-sys +./usr/share/zoneinfo/Pacific/Noumea minix-sys +./usr/share/zoneinfo/Pacific/Pago_Pago minix-sys +./usr/share/zoneinfo/Pacific/Palau minix-sys +./usr/share/zoneinfo/Pacific/Pitcairn minix-sys +./usr/share/zoneinfo/Pacific/Pohnpei minix-sys +./usr/share/zoneinfo/Pacific/Ponape minix-sys +./usr/share/zoneinfo/Pacific/Port_Moresby minix-sys +./usr/share/zoneinfo/Pacific/Rarotonga minix-sys +./usr/share/zoneinfo/Pacific/Saipan minix-sys +./usr/share/zoneinfo/Pacific/Samoa minix-sys +./usr/share/zoneinfo/Pacific/Tahiti minix-sys +./usr/share/zoneinfo/Pacific/Tarawa minix-sys +./usr/share/zoneinfo/Pacific/Tongatapu minix-sys +./usr/share/zoneinfo/Pacific/Truk minix-sys +./usr/share/zoneinfo/Pacific/Wake minix-sys +./usr/share/zoneinfo/Pacific/Wallis minix-sys +./usr/share/zoneinfo/Pacific/Yap minix-sys +./usr/share/zoneinfo/Poland minix-sys +./usr/share/zoneinfo/Portugal minix-sys +./usr/share/zoneinfo/posixrules minix-sys +./usr/share/zoneinfo/PRC minix-sys +./usr/share/zoneinfo/PST8PDT minix-sys +./usr/share/zoneinfo/ROC minix-sys +./usr/share/zoneinfo/ROK minix-sys +./usr/share/zoneinfo/Singapore minix-sys +./usr/share/zoneinfo/Turkey minix-sys +./usr/share/zoneinfo/UCT minix-sys +./usr/share/zoneinfo/Universal minix-sys +./usr/share/zoneinfo/US/Alaska minix-sys +./usr/share/zoneinfo/US/Aleutian minix-sys +./usr/share/zoneinfo/US/Arizona minix-sys +./usr/share/zoneinfo/US/Central minix-sys +./usr/share/zoneinfo/US/Eastern minix-sys +./usr/share/zoneinfo/US/East-Indiana minix-sys +./usr/share/zoneinfo/US/Hawaii minix-sys +./usr/share/zoneinfo/US/Indiana-Starke minix-sys +./usr/share/zoneinfo/US/Michigan minix-sys +./usr/share/zoneinfo/US minix-sys +./usr/share/zoneinfo/US/Mountain minix-sys +./usr/share/zoneinfo/US/Pacific minix-sys +./usr/share/zoneinfo/US/Pacific-New minix-sys +./usr/share/zoneinfo/US/Samoa minix-sys +./usr/share/zoneinfo/UTC minix-sys +./usr/share/zoneinfo/WET minix-sys +./usr/share/zoneinfo/W-SU minix-sys +./usr/share/zoneinfo/zone.tab minix-sys +./usr/share/zoneinfo/Zulu minix-sys +./usr/spool/at minix-sys +./usr/spool/at/past minix-sys +./usr/spool/crontabs minix-sys +./usr/spool/locks minix-sys +./usr/spool/lpd minix-sys +./usr/spool/mail minix-sys +./usr/spool minix-sys +./usr/src minix-sys +./usr/tmp minix-sys +./usr/var/db minix-sys +./usr/var/db/pkg minix-sys +./usr/var minix-sys +./usr/var/run minix-sys +./var/db minix-sys +./var/db/obsolete minix-sys +./var minix-sys +./var/run minix-sys +./boot/minix/.temp minix-sys +./boot/minix/.temp/kernel minix-sys +./boot/minix/.temp/mod01_ds minix-sys +./boot/minix/.temp/mod02_rs minix-sys +./boot/minix/.temp/mod03_pm minix-sys +./boot/minix/.temp/mod04_sched minix-sys +./boot/minix/.temp/mod05_vfs minix-sys +./boot/minix/.temp/mod06_memory minix-sys +./boot/minix/.temp/mod07_log minix-sys +./boot/minix/.temp/mod08_tty minix-sys +./boot/minix/.temp/mod09_mfs minix-sys +./boot/minix/.temp/mod10_vm minix-sys +./boot/minix/.temp/mod11_pfs minix-sys +./boot/minix/.temp/mod12_init minix-sys +./multiboot minix-sys +./multiboot/kernel minix-sys +./multiboot/mod01_ds minix-sys +./multiboot/mod02_rs minix-sys +./multiboot/mod03_pm minix-sys +./multiboot/mod04_sched minix-sys +./multiboot/mod05_vfs minix-sys +./multiboot/mod06_memory minix-sys +./multiboot/mod07_log minix-sys +./multiboot/mod08_tty minix-sys +./multiboot/mod09_mfs minix-sys +./multiboot/mod10_vm minix-sys +./multiboot/mod11_pfs minix-sys +./multiboot/mod12_init minix-sys +./bin/tar minix-sys +./usr/bin/tar minix-sys +./usr/bin/cpio minix-sys +./usr/lib/librmt.a minix-sys +./usr/man/man3/rmtops.3 minix-sys + +./usr/bin/md2 minix-sys +./usr/bin/md4 minix-sys +./usr/bin/md5 minix-sys +./usr/bin/rmd160 minix-sys +./usr/bin/sha1 minix-sys +./usr/man/man1/md2.1 minix-sys +./usr/man/man1/md4.1 minix-sys +./usr/man/man1/md5.1 minix-sys +./usr/man/man1/rmd160.1 minix-sys +./usr/man/man1/sha1.1 minix-sys +./usr/sbin/mmc minix-sys +./usr/bin/cc minix-sys +./usr/bin/strip minix-sys +./usr/lib/crontab minix-sys +./var/log minix-sys +./var/tmp minix-sys +./dev/mouse minix-sys diff --git a/distrib/sets/lists/misc/mi b/distrib/sets/lists/misc/mi new file mode 100644 index 000000000..d2e4a0e2b --- /dev/null +++ b/distrib/sets/lists/misc/mi @@ -0,0 +1,943 @@ +# $NetBSD: mi,v 1.177 2012/09/15 17:33:28 plunky Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.misc misc-sys-root +./usr/share/dict/README misc-reference-share share +./usr/share/dict/american misc-reference-share share +./usr/share/dict/british misc-reference-share share +./usr/share/dict/eign misc-reference-share share,groff +./usr/share/dict/propernames misc-reference-share share +./usr/share/dict/special/math misc-reference-share share +./usr/share/dict/special/netbsd misc-reference-share share +./usr/share/dict/stop misc-reference-share share +./usr/share/dict/web2 misc-reference-share share +./usr/share/dict/web2a misc-reference-share share +./usr/share/dict/words misc-reference-share share +./usr/share/doc/atf misc-atf-doc +./usr/share/doc/atf/AUTHORS misc-atf-doc doc,atf +./usr/share/doc/atf/COPYING misc-atf-doc doc,atf +./usr/share/doc/atf/NEWS misc-atf-doc doc,atf +./usr/share/doc/atf/README misc-atf-doc doc,atf +./usr/share/doc/atf/ROADMAP misc-obsolete obsolete +./usr/share/doc/html/bind9/arm/Bv9ARM.ch01.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.ch02.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.ch03.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.ch04.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.ch05.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.ch06.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.ch07.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.ch08.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.ch09.html misc-bind-htmldoc doc +./usr/share/doc/html/bind9/arm/Bv9ARM.html misc-bind-htmldoc doc +./usr/share/doc/html/bzip2/manual.html misc-util-htmldoc share +./usr/share/doc/html/bzip2/manual_1.html misc-obsolete obsolete +./usr/share/doc/html/bzip2/manual_2.html misc-obsolete obsolete +./usr/share/doc/html/bzip2/manual_3.html misc-obsolete obsolete +./usr/share/doc/html/bzip2/manual_4.html misc-obsolete obsolete +./usr/share/doc/html/bzip2/manual_toc.html misc-obsolete obsolete +./usr/share/doc/html/ntp misc-ntp-htmldoc +./usr/share/doc/html/ntp/Oncore-SHMEM.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/accopt.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/accopt.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/assoc.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/assoc.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/audio.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/audio.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/authopt.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/authopt.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/biblio.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/bugs.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/build misc-obsolete +./usr/share/doc/html/ntp/build.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/build.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/build/build.html misc-obsolete obsolete +./usr/share/doc/html/ntp/build/config.html misc-obsolete obsolete +./usr/share/doc/html/ntp/build/hints.html misc-obsolete obsolete +./usr/share/doc/html/ntp/build/patches.html misc-obsolete obsolete +./usr/share/doc/html/ntp/build/porting.html misc-obsolete obsolete +./usr/share/doc/html/ntp/build/quick.html misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts/footer.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts/links10.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts/links11.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts/links12.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts/links7.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts/links8.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts/links9.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/build/scripts/style.css misc-obsolete obsolete +./usr/share/doc/html/ntp/clockopt.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/clockopt.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/comdex.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/config.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/config.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/confopt.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/confopt.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/copyright.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/copyright.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/debug.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/debug.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/decode.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/driver1.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver10.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver11.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver12.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver16.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver18.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver19.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver2.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver20.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver22.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver23.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver24.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver26.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver27.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver28.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver29.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver3.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver30.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver32.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver33.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver34.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver35.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver36.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver37.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver4.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver5.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver6.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver7.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver8.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/driver9.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/drivers misc-ntp-htmldoc +./usr/share/doc/html/ntp/drivers/driver1.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver10.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver11.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver12.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver16.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver18.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver19.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver2.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver20.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver22.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver26.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver27.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver28.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver29.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver3.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver30.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver31.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver32.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver33.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver34.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver35.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver36.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver37.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver38.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver39.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver4.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver40.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver42.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver43.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver44.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver5.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver6.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver7.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver8.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/driver9.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/icons misc-ntp-htmldoc +./usr/share/doc/html/ntp/drivers/icons/home.gif misc-obsolete obsolete +./usr/share/doc/html/ntp/drivers/icons/mail2.gif misc-obsolete obsolete +./usr/share/doc/html/ntp/drivers/mx4200data.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/oncore-shmem.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/scripts misc-ntp-htmldoc +./usr/share/doc/html/ntp/drivers/scripts/footer.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/scripts/style.css misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/drivers/tf582_4.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/exec.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/extern.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/extern.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/gadget.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/gadget.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/groups.html misc-obsolete obsolete +./usr/share/doc/html/ntp/hints.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/hints.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/hints/a-ux misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/aix misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/bsdi misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/changes misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/decosf1 misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/decosf2 misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/hpux misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/linux misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/notes-xntp-v3 misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/parse misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/refclocks misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/rs6000 misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/sco.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/sgi misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/solaris-dosynctodr.html misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/solaris.html misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/solaris.xtra.4023118 misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/solaris.xtra.4095849 misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/solaris.xtra.S99ntpd misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/solaris.xtra.patchfreq misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/sun4 misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/svr4-dell misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/svr4_package misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/todo misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/vxworks.html misc-obsolete obsolete +./usr/share/doc/html/ntp/hints/winnt.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/howto.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/howto.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/htmlprimer.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/icons misc-ntp-htmldoc +./usr/share/doc/html/ntp/icons/home.gif misc-obsolete obsolete +./usr/share/doc/html/ntp/icons/mail2.gif misc-obsolete obsolete +./usr/share/doc/html/ntp/index.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/index.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/kern.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/kern.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/kernpps.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/kernpps.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/keygen.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ldisc.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/ldisc.html misc-obsolete obsolete +./usr/share/doc/html/ntp/manyopt.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/measure.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/measure.html misc-obsolete obsolete +./usr/share/doc/html/ntp/miscopt.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/miscopt.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/monopt.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/monopt.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/msyslog.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/mx4200data.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/mx4200data.html misc-obsolete obsolete +./usr/share/doc/html/ntp/notes.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/notes.html misc-obsolete obsolete +./usr/share/doc/html/ntp/ntp_conf.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ntpd.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/ntpd.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ntpdate.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/ntpdate.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ntpdc.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/ntpdc.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ntpdsim.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ntpdsim_new.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ntpq.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/ntpq.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ntptime.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/ntptime.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/ntptrace.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/ntptrace.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/parsedata.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/parsedata.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/parsenew.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/parsenew.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/patches.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/porting.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/pps.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/pps.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/prefer.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/prefer.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/qth.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/quick.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/quick.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/rate.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/rdebug.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/rdebug.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/refclock.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/refclock.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/release.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/release.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts misc-ntp-htmldoc +./usr/share/doc/html/ntp/scripts/accopt.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/audio.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/authopt.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/clockopt.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/command.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/config.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/confopt.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/external.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/footer.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/install.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/links10.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/scripts/links11.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/scripts/links12.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/scripts/links7.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/scripts/links8.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/scripts/links9.txt misc-obsolete obsolete +./usr/share/doc/html/ntp/scripts/manual.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/misc.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/miscopt.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/monopt.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/refclock.txt misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/scripts/style.css misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/sitemap.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/sntp.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/tickadj.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/tickadj.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/vxworks.htm misc-obsolete obsolete +./usr/share/doc/html/ntp/xleave.html misc-ntp-htmldoc doc +./usr/share/doc/html/ntp/y2k.htm misc-obsolete obsolete +./usr/share/doc/html/postfix/ADDRESS_CLASS_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/ADDRESS_REWRITING_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/ADDRESS_VERIFICATION_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/BACKSCATTER_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/BASIC_CONFIGURATION_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/BUILTIN_FILTER_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/CDB_README.html misc-obsolete obsolete +./usr/share/doc/html/postfix/CONNECTION_CACHE_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/CONTENT_INSPECTION_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/CYRUS_README.html misc-obsolete obsolete +./usr/share/doc/html/postfix/DATABASE_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/DB_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/DEBUG_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/DSN_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/ETRN_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/FILTER_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/IPV6_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/LDAP_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/LINUX_README.html misc-obsolete obsolete +./usr/share/doc/html/postfix/LMTP_README.html misc-obsolete obsolete +./usr/share/doc/html/postfix/LOCAL_RECIPIENT_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/MAILDROP_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/MILTER_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/MULTI_INSTANCE_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/MYSQL_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/NFS_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/OVERVIEW.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/PACKAGE_README.html misc-obsolete obsolete +./usr/share/doc/html/postfix/PCRE_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/PGSQL_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/POSTSCREEN_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/QMQP_README.html misc-obsolete obsolete +./usr/share/doc/html/postfix/QSHAPE_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/RESTRICTION_CLASS_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/SASL_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/SCHEDULER_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/SMTPD_ACCESS_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/SMTPD_POLICY_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/SMTPD_PROXY_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/SOHO_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/SQLITE_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/STANDARD_CONFIGURATION_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/TLS_LEGACY_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/TLS_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/TUNING_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/ULTRIX_README.html misc-obsolete obsolete +./usr/share/doc/html/postfix/UUCP_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/VERP_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/VIRTUAL_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/XCLIENT_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/XFORWARD_README.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/access.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/aliases.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/anvil.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/architecture.html misc-obsolete obsolete +./usr/share/doc/html/postfix/backstage.html misc-obsolete obsolete +./usr/share/doc/html/postfix/basic.html misc-obsolete obsolete +./usr/share/doc/html/postfix/big-picture.gif misc-obsolete obsolete +./usr/share/doc/html/postfix/big-picture.html misc-obsolete obsolete +./usr/share/doc/html/postfix/bounce.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/canonical.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/cidr_table.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/cleanup.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/commands.html misc-obsolete obsolete +./usr/share/doc/html/postfix/defer.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/delivering.html misc-obsolete obsolete +./usr/share/doc/html/postfix/discard.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/dnsblog.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/error.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/faq.html misc-obsolete obsolete +./usr/share/doc/html/postfix/flush.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/generic.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/goals.html misc-obsolete obsolete +./usr/share/doc/html/postfix/header_checks.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/inbound.gif misc-obsolete obsolete +./usr/share/doc/html/postfix/index.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/ldap_table.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/lmtp.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/local.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/mailq.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/master.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/master.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/motivation.html misc-obsolete obsolete +./usr/share/doc/html/postfix/mysql_table.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/newaliases.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/nisplus_table.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/nqmgr.8.html misc-obsolete obsolete +./usr/share/doc/html/postfix/oqmgr.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/outbound.gif misc-obsolete obsolete +./usr/share/doc/html/postfix/pcre_table.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/pgsql_table.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/pickup.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/pipe.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postalias.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postcat.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postconf.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postconf.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postdrop.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postfix-logo.jpg misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postfix-manuals.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postfix-wrapper.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postfix.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postkick.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postlock.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postlog.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postmap.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postmulti.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postqueue.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postscreen.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/postsuper.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/proxymap.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/qmgr.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/qmqpd.8.html misc-obsolete obsolete +./usr/share/doc/html/postfix/qshape.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/queuing.html misc-obsolete obsolete +./usr/share/doc/html/postfix/rate.html misc-obsolete obsolete +./usr/share/doc/html/postfix/receiving.html misc-obsolete obsolete +./usr/share/doc/html/postfix/regexp_table.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/relocated.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/resource.html misc-obsolete obsolete +./usr/share/doc/html/postfix/rewrite.html misc-obsolete obsolete +./usr/share/doc/html/postfix/scache.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/security.html misc-obsolete obsolete +./usr/share/doc/html/postfix/sendmail.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/showq.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/small-picture.gif misc-obsolete obsolete +./usr/share/doc/html/postfix/smtp-sink.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/smtp-source.1.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/smtp.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/smtpd.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/spawn.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/sqlite_table.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/tlsmgr.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/tlsproxy.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/trace.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/transport.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/trivial-rewrite.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/uce.html misc-obsolete obsolete +./usr/share/doc/html/postfix/verify.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/virtual.5.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/html/postfix/virtual.8.html misc-postfix-htmldoc postfix,doc +./usr/share/doc/psd/00.contents misc-psd-doc doc +./usr/share/doc/psd/05.sysman/0.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/1.0.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/1.1.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/1.2.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/1.3.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/1.4.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/1.5.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/1.6.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/1.7.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/2.0.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/2.1.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/2.2.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/2.3.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/2.4.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/2.5.t misc-psd-doc doc +./usr/share/doc/psd/05.sysman/Makefile misc-psd-doc doc +./usr/share/doc/psd/05.sysman/a.t misc-psd-doc doc +./usr/share/doc/psd/12.make/Makefile misc-psd-doc doc +./usr/share/doc/psd/12.make/tutorial.ms misc-psd-doc doc +./usr/share/doc/psd/18.gprof/Makefile misc-psd-doc doc +./usr/share/doc/psd/18.gprof/abstract.me misc-psd-doc doc +./usr/share/doc/psd/18.gprof/gathering.me misc-psd-doc doc +./usr/share/doc/psd/18.gprof/header.me misc-psd-doc doc +./usr/share/doc/psd/18.gprof/intro.me misc-psd-doc doc +./usr/share/doc/psd/18.gprof/postp.me misc-psd-doc doc +./usr/share/doc/psd/18.gprof/postp1.pic misc-psd-doc doc +./usr/share/doc/psd/18.gprof/postp2.pic misc-psd-doc doc +./usr/share/doc/psd/18.gprof/postp3.pic misc-psd-doc doc +./usr/share/doc/psd/18.gprof/pres1.pic misc-psd-doc doc +./usr/share/doc/psd/18.gprof/pres2.pic misc-psd-doc doc +./usr/share/doc/psd/18.gprof/present.me misc-psd-doc doc +./usr/share/doc/psd/18.gprof/profiling.me misc-psd-doc doc +./usr/share/doc/psd/18.gprof/refs.me misc-psd-doc doc +./usr/share/doc/psd/19.curses/Makefile misc-psd-doc doc +./usr/share/doc/psd/19.curses/Master misc-psd-doc doc +./usr/share/doc/psd/19.curses/appen.A misc-psd-doc doc +./usr/share/doc/psd/19.curses/appen.B misc-psd-doc doc +./usr/share/doc/psd/19.curses/appen.C misc-psd-doc doc +./usr/share/doc/psd/19.curses/c_macros misc-psd-doc doc +./usr/share/doc/psd/19.curses/doc.I misc-psd-doc doc +./usr/share/doc/psd/19.curses/doc.II misc-psd-doc doc +./usr/share/doc/psd/19.curses/doc.III misc-psd-doc doc +./usr/share/doc/psd/19.curses/doc.IV misc-psd-doc doc +./usr/share/doc/psd/19.curses/ex1.c misc-psd-doc doc +./usr/share/doc/psd/19.curses/ex2.c misc-psd-doc doc +./usr/share/doc/psd/19.curses/fns.doc misc-psd-doc doc +./usr/share/doc/psd/19.curses/intro.0 misc-psd-doc doc +./usr/share/doc/psd/19.curses/intro.1 misc-psd-doc doc +./usr/share/doc/psd/19.curses/intro.2 misc-psd-doc doc +./usr/share/doc/psd/19.curses/intro.3 misc-psd-doc doc +./usr/share/doc/psd/19.curses/intro.4 misc-psd-doc doc +./usr/share/doc/psd/19.curses/intro.5 misc-psd-doc doc +./usr/share/doc/psd/19.curses/intro.6 misc-psd-doc doc +./usr/share/doc/psd/19.curses/life.c misc-psd-doc doc +./usr/share/doc/psd/19.curses/macros misc-psd-doc doc +./usr/share/doc/psd/19.curses/twinkle1.c misc-psd-doc doc +./usr/share/doc/psd/19.curses/twinkle2.c misc-psd-doc doc +./usr/share/doc/psd/19.curses/win_st.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/Makefile misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/dgramread.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/dgramsend.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/fig2.pic misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/fig3.pic misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/fig8.pic misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/pipe.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/socketpair.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/strchkread.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/streamread.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/streamwrite.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/tutor.me misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/udgramread.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/udgramsend.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/ustreamread.c misc-psd-doc doc +./usr/share/doc/psd/20.ipctut/ustreamwrite.c misc-psd-doc doc +./usr/share/doc/psd/21.ipc/0.t misc-psd-doc doc +./usr/share/doc/psd/21.ipc/1.t misc-psd-doc doc +./usr/share/doc/psd/21.ipc/2.t misc-psd-doc doc +./usr/share/doc/psd/21.ipc/3.t misc-psd-doc doc +./usr/share/doc/psd/21.ipc/4.t misc-psd-doc doc +./usr/share/doc/psd/21.ipc/5.t misc-psd-doc doc +./usr/share/doc/psd/21.ipc/Makefile misc-psd-doc doc +./usr/share/doc/psd/Makefile misc-psd-doc doc +./usr/share/doc/psd/Title misc-psd-doc doc +./usr/share/doc/smm/00.contents misc-smm-doc doc +./usr/share/doc/smm/01.setup/0.t misc-smm-doc doc +./usr/share/doc/smm/01.setup/1.t misc-smm-doc doc +./usr/share/doc/smm/01.setup/2.t misc-smm-doc doc +./usr/share/doc/smm/01.setup/3.t misc-smm-doc doc +./usr/share/doc/smm/01.setup/4.t misc-smm-doc doc +./usr/share/doc/smm/01.setup/5.t misc-smm-doc doc +./usr/share/doc/smm/01.setup/6.t misc-smm-doc doc +./usr/share/doc/smm/01.setup/Makefile misc-smm-doc doc +./usr/share/doc/smm/03.fsck misc-obsolete obsolete +./usr/share/doc/smm/03.fsck/0.t misc-obsolete obsolete +./usr/share/doc/smm/03.fsck/1.t misc-obsolete obsolete +./usr/share/doc/smm/03.fsck/2.t misc-obsolete obsolete +./usr/share/doc/smm/03.fsck/3.t misc-obsolete obsolete +./usr/share/doc/smm/03.fsck/4.t misc-obsolete obsolete +./usr/share/doc/smm/03.fsck/Makefile misc-obsolete obsolete +./usr/share/doc/smm/03.fsck_ffs/0.t misc-smm-doc doc +./usr/share/doc/smm/03.fsck_ffs/1.t misc-smm-doc doc +./usr/share/doc/smm/03.fsck_ffs/2.t misc-smm-doc doc +./usr/share/doc/smm/03.fsck_ffs/3.t misc-smm-doc doc +./usr/share/doc/smm/03.fsck_ffs/4.t misc-smm-doc doc +./usr/share/doc/smm/03.fsck_ffs/Makefile misc-smm-doc doc +./usr/share/doc/smm/04.quotas/Makefile misc-smm-doc doc +./usr/share/doc/smm/04.quotas/quotas.ms misc-smm-doc doc +./usr/share/doc/smm/05.fastfs/0.t misc-smm-doc doc +./usr/share/doc/smm/05.fastfs/1.t misc-smm-doc doc +./usr/share/doc/smm/05.fastfs/2.t misc-smm-doc doc +./usr/share/doc/smm/05.fastfs/3.t misc-smm-doc doc +./usr/share/doc/smm/05.fastfs/4.t misc-smm-doc doc +./usr/share/doc/smm/05.fastfs/5.t misc-smm-doc doc +./usr/share/doc/smm/05.fastfs/6.t misc-smm-doc doc +./usr/share/doc/smm/05.fastfs/Makefile misc-smm-doc doc +./usr/share/doc/smm/06.nfs/0.t misc-smm-doc doc +./usr/share/doc/smm/06.nfs/1.t misc-smm-doc doc +./usr/share/doc/smm/06.nfs/2.t misc-smm-doc doc +./usr/share/doc/smm/06.nfs/Makefile misc-smm-doc doc +./usr/share/doc/smm/06.nfs/ref.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/0.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/1.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/2.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/3.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/4.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/5.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/6.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/7.t misc-smm-doc doc +./usr/share/doc/smm/07.lpd/Makefile misc-smm-doc doc +./usr/share/doc/smm/08.sendmailop/Makefile misc-obsolete obsolete +./usr/share/doc/smm/08.sendmailop/op.me misc-obsolete obsolete +./usr/share/doc/smm/09.sendmail/Makefile misc-obsolete obsolete +./usr/share/doc/smm/09.sendmail/intro.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/00macs.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/00title.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/Makefile misc-obsolete obsolete +./usr/share/doc/smm/10.named/ack.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/build.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/files.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/intro.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/manage.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/named.boot.cache misc-obsolete obsolete +./usr/share/doc/smm/10.named/named.boot.primary misc-obsolete obsolete +./usr/share/doc/smm/10.named/named.boot.secondary misc-obsolete obsolete +./usr/share/doc/smm/10.named/named.local misc-obsolete obsolete +./usr/share/doc/smm/10.named/ns.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/resolv.conf misc-obsolete obsolete +./usr/share/doc/smm/10.named/root.cache misc-obsolete obsolete +./usr/share/doc/smm/10.named/setup.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/types.me misc-obsolete obsolete +./usr/share/doc/smm/10.named/ucbhosts misc-obsolete obsolete +./usr/share/doc/smm/10.named/ucbhosts.rev misc-obsolete obsolete +./usr/share/doc/smm/11.timedop/Makefile misc-smm-doc doc +./usr/share/doc/smm/11.timedop/timed.ms misc-smm-doc doc +./usr/share/doc/smm/12.timed/Makefile misc-smm-doc doc +./usr/share/doc/smm/12.timed/timed.ms misc-smm-doc doc +./usr/share/doc/smm/17.password/Makefile misc-smm-doc doc +./usr/share/doc/smm/17.password/password.ms misc-smm-doc doc +./usr/share/doc/smm/18.net/0.t misc-smm-doc doc +./usr/share/doc/smm/18.net/1.t misc-smm-doc doc +./usr/share/doc/smm/18.net/2.t misc-smm-doc doc +./usr/share/doc/smm/18.net/3.t misc-smm-doc doc +./usr/share/doc/smm/18.net/4.t misc-smm-doc doc +./usr/share/doc/smm/18.net/5.t misc-smm-doc doc +./usr/share/doc/smm/18.net/6.t misc-smm-doc doc +./usr/share/doc/smm/18.net/7.t misc-smm-doc doc +./usr/share/doc/smm/18.net/8.t misc-smm-doc doc +./usr/share/doc/smm/18.net/9.t misc-smm-doc doc +./usr/share/doc/smm/18.net/Makefile misc-smm-doc doc +./usr/share/doc/smm/18.net/a.t misc-smm-doc doc +./usr/share/doc/smm/18.net/b.t misc-smm-doc doc +./usr/share/doc/smm/18.net/c.t misc-smm-doc doc +./usr/share/doc/smm/18.net/d.t misc-smm-doc doc +./usr/share/doc/smm/18.net/e.t misc-smm-doc doc +./usr/share/doc/smm/18.net/f.t misc-smm-doc doc +./usr/share/doc/smm/Makefile misc-smm-doc doc +./usr/share/doc/smm/Title misc-smm-doc doc +./usr/share/doc/usd/00.contents misc-usd-doc doc +./usr/share/doc/usd/01.begin/Makefile misc-usd-doc doc +./usr/share/doc/usd/01.begin/u.mac misc-usd-doc doc +./usr/share/doc/usd/01.begin/u0 misc-usd-doc doc +./usr/share/doc/usd/01.begin/u1 misc-usd-doc doc +./usr/share/doc/usd/01.begin/u2 misc-usd-doc doc +./usr/share/doc/usd/01.begin/u3 misc-usd-doc doc +./usr/share/doc/usd/01.begin/u4 misc-usd-doc doc +./usr/share/doc/usd/01.begin/u5 misc-usd-doc doc +./usr/share/doc/usd/03.shell/Makefile misc-usd-doc doc +./usr/share/doc/usd/03.shell/Rv7man misc-usd-doc doc +./usr/share/doc/usd/03.shell/t.mac misc-usd-doc doc +./usr/share/doc/usd/03.shell/t1 misc-usd-doc doc +./usr/share/doc/usd/03.shell/t2 misc-usd-doc doc +./usr/share/doc/usd/03.shell/t3 misc-usd-doc doc +./usr/share/doc/usd/03.shell/t4 misc-usd-doc doc +./usr/share/doc/usd/04.csh/Makefile misc-usd-doc doc +./usr/share/doc/usd/04.csh/csh.1 misc-usd-doc doc +./usr/share/doc/usd/04.csh/csh.2 misc-usd-doc doc +./usr/share/doc/usd/04.csh/csh.3 misc-usd-doc doc +./usr/share/doc/usd/04.csh/csh.4 misc-usd-doc doc +./usr/share/doc/usd/04.csh/csh.a misc-obsolete obsolete +./usr/share/doc/usd/04.csh/csh.ap misc-usd-doc doc +./usr/share/doc/usd/04.csh/csh.g misc-usd-doc doc +./usr/share/doc/usd/04.csh/tabs misc-usd-doc doc +./usr/share/doc/usd/07.mail/Makefile misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail0.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail1.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail2.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail3.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail4.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail5.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail6.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail7.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail8.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/mail9.nr misc-usd-doc doc +./usr/share/doc/usd/07.mail/maila.nr misc-usd-doc doc +./usr/share/doc/usd/11.edit/Makefile misc-usd-doc doc +./usr/share/doc/usd/11.edit/edit.vindex misc-obsolete obsolete +./usr/share/doc/usd/11.edit/edittut.ms misc-usd-doc doc +./usr/share/doc/usd/12.ex/Makefile misc-usd-doc doc +./usr/share/doc/usd/12.ex/ex.rm misc-usd-doc doc +./usr/share/doc/usd/12.ex/ex.summary misc-usd-doc doc +./usr/share/doc/usd/12.vi/Makefile misc-usd-doc doc +./usr/share/doc/usd/12.vi/vi.apwh.ms misc-obsolete obsolete +./usr/share/doc/usd/12.vi/vi.chars misc-usd-doc doc +./usr/share/doc/usd/12.vi/vi.in misc-usd-doc doc +./usr/share/doc/usd/12.vi/vi.summary misc-obsolete obsolete +./usr/share/doc/usd/13.viref/Makefile misc-usd-doc doc +./usr/share/doc/usd/13.viref/ex.cmd.roff misc-usd-doc doc +./usr/share/doc/usd/13.viref/merge.awk misc-obsolete obsolete +./usr/share/doc/usd/13.viref/ref.so misc-usd-doc doc +./usr/share/doc/usd/13.viref/set.opt.roff misc-usd-doc doc +./usr/share/doc/usd/13.viref/spell.ok misc-obsolete obsolete +./usr/share/doc/usd/13.viref/vi.cmd.roff misc-usd-doc doc +./usr/share/doc/usd/13.viref/vi.ref misc-usd-doc doc +./usr/share/doc/usd/17.msmacros/Makefile misc-usd-doc doc +./usr/share/doc/usd/17.msmacros/fig1.pic misc-usd-doc doc +./usr/share/doc/usd/17.msmacros/ms misc-usd-doc doc +./usr/share/doc/usd/18.msdiffs/Makefile misc-usd-doc doc +./usr/share/doc/usd/18.msdiffs/ms.diffs misc-usd-doc doc +./usr/share/doc/usd/19.memacros/Makefile misc-usd-doc doc +./usr/share/doc/usd/19.memacros/intro.me misc-usd-doc doc +./usr/share/doc/usd/20.meref/Makefile misc-usd-doc doc +./usr/share/doc/usd/20.meref/ref.me misc-usd-doc doc +./usr/share/doc/usd/Makefile misc-usd-doc doc +./usr/share/doc/usd/Title misc-usd-doc doc +./usr/share/doc/xntp misc-obsolete obsolete +./usr/share/examples/amd/amd.conf misc-amd-examples share +./usr/share/examples/amd/cd misc-amd-examples share +./usr/share/examples/amd/master misc-obsolete obsolete +./usr/share/examples/amd/net misc-amd-examples share +./usr/share/examples/apm/script misc-amd-examples share +./usr/share/examples/asm misc-asm-examples +./usr/share/examples/asm/Makefile.inc misc-asm-examples share +./usr/share/examples/asm/README misc-asm-examples share +./usr/share/examples/asm/hello misc-asm-examples +./usr/share/examples/asm/hello/Makefile misc-asm-examples share +./usr/share/examples/asm/hello/powerpc.s misc-asm-examples share +./usr/share/examples/atf misc-atf-examples +./usr/share/examples/atf/atf-run.hooks misc-atf-examples share,atf +./usr/share/examples/atf/tests-results.css misc-atf-examples share,atf +./usr/share/examples/dhcp/dhcpd.conf misc-dhcpd-examples share +./usr/share/examples/disktab/disktab misc-sys-examples share +./usr/share/examples/emul/linux/etc/LINUX_MAKEDEV misc-sys-examples share +./usr/share/examples/emul/svr4/etc/SVR4_MAKEDEV misc-sys-examples share +./usr/share/examples/emul/svr4/etc/netconfig misc-sys-examples share +./usr/share/examples/emul/svr4/etc/nsswitch.conf misc-sys-examples share +./usr/share/examples/emul/ultrix/etc/svc.conf misc-sys-examples share +./usr/share/examples/fstab/fstab.cdrom misc-fstab-examples share +./usr/share/examples/fstab/fstab.md misc-obsolete obsolete +./usr/share/examples/fstab/fstab.nfs.1 misc-fstab-examples share +./usr/share/examples/fstab/fstab.nfs.2 misc-fstab-examples share +./usr/share/examples/fstab/fstab.nfs.3 misc-fstab-examples share +./usr/share/examples/fstab/fstab.pseudo misc-fstab-examples share +./usr/share/examples/fstab/fstab.ra misc-fstab-examples share +./usr/share/examples/fstab/fstab.ramdisk misc-fstab-examples share +./usr/share/examples/fstab/fstab.rd misc-fstab-examples share +./usr/share/examples/fstab/fstab.sd0.1 misc-fstab-examples share +./usr/share/examples/fstab/fstab.sd0.2 misc-fstab-examples share +./usr/share/examples/fstab/fstab.sd0.amiga misc-fstab-examples share +./usr/share/examples/fstab/fstab.sd0.atari misc-fstab-examples share +./usr/share/examples/fstab/fstab.tmpfs misc-obsolete obsolete +./usr/share/examples/fstab/fstab.wd0.1 misc-fstab-examples share +./usr/share/examples/fstab/fstab.wd0.2 misc-fstab-examples share +./usr/share/examples/fstab/fstab.wd0.3 misc-fstab-examples share +./usr/share/examples/fstab/fstab.wd0.cobalt misc-fstab-examples share +./usr/share/examples/ftpd/ftpd.conf misc-netutil-examples share +./usr/share/examples/ftpd/ftpusers misc-netutil-examples share +./usr/share/examples/getdate/datemsk.template misc-sys-examples share +./usr/share/examples/getdate/posixmsk.example3 misc-sys-examples share +./usr/share/examples/getdate/posixmsk.example4 misc-sys-examples share +./usr/share/examples/hostapd/hostapd.conf misc-netutil-examples share +./usr/share/examples/ipf/BASIC.NAT misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/BASIC_1.FW misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/BASIC_2.FW misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.1 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.10 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.11 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.12 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.13 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.2 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.3 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.4 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.5 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.6 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.7 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.8 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.9 misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/example.sr misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/firewall misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/ftp-proxy misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/ftppxy misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/mediaone misc-obsolete obsolete +./usr/share/examples/ipf/mkfilters misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/nat-setup misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/nat.eg misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/server misc-ipf-examples ipfilter,share +./usr/share/examples/ipf/tcpstate misc-ipf-examples ipfilter,share +./usr/share/examples/isdn/holidays.D.SH misc-isdn-examples share +./usr/share/examples/isdn/isdnd.rates.A misc-isdn-examples share +./usr/share/examples/isdn/isdnd.rates.D misc-isdn-examples share +./usr/share/examples/isdn/isdnd.rates.F misc-isdn-examples share +./usr/share/examples/isdn/isdnd.rates.L misc-isdn-examples share +./usr/share/examples/isdn/isdnd.rates.UK.BT misc-isdn-examples share +./usr/share/examples/isdn/isdnd.rc.sample misc-isdn-examples share +./usr/share/examples/kerberos/krb5.conf misc-krb5-examples kerberos,share +./usr/share/examples/libsaslc misc-libsaslc-examples share +./usr/share/examples/libsaslc/README misc-libsaslc-examples share +./usr/share/examples/libsaslc/mech misc-libsaslc-examples share +./usr/share/examples/libsaslc/saslc.conf misc-libsaslc-examples share +./usr/share/examples/libsaslc/mech/ANONYMOUS.conf misc-libsaslc-examples share +./usr/share/examples/libsaslc/mech/CRAM-MD5.conf misc-libsaslc-examples share +./usr/share/examples/libsaslc/mech/DIGEST-MD5.conf misc-libsaslc-examples share +./usr/share/examples/libsaslc/mech/EXTERNAL.conf misc-libsaslc-examples share +./usr/share/examples/libsaslc/mech/GSSAPI.conf misc-libsaslc-examples share +./usr/share/examples/libsaslc/mech/LOGIN.conf misc-libsaslc-examples share +./usr/share/examples/libsaslc/mech/PLAIN.conf misc-libsaslc-examples share +./usr/share/examples/mount_portal/advanced.1 misc-sys-examples share +./usr/share/examples/mount_portal/advanced.1.conf misc-sys-examples share +./usr/share/examples/mount_portal/cvs.1 misc-sys-examples share +./usr/share/examples/mount_portal/cvs.conf misc-sys-examples share +./usr/share/examples/mount_portal/cvs.sh misc-sys-examples share +./usr/share/examples/mount_portal/fing.c misc-sys-examples share +./usr/share/examples/mount_portal/fs.1 misc-sys-examples share +./usr/share/examples/mount_portal/fs.1.conf misc-sys-examples share +./usr/share/examples/mount_portal/overview misc-sys-examples share +./usr/share/examples/mount_portal/rfilter.1 misc-sys-examples share +./usr/share/examples/mount_portal/rfilter.2 misc-sys-examples share +./usr/share/examples/mount_portal/rfilter.2.conf misc-sys-examples share +./usr/share/examples/mount_portal/sysctlfs.sh misc-sys-examples share +./usr/share/examples/mount_portal/tcp.1 misc-sys-examples share +./usr/share/examples/mount_portal/tcp.1.conf misc-sys-examples share +./usr/share/examples/named/named.conf misc-obsolete obsolete +./usr/share/examples/openssl/CA.pl misc-crypto-examples crypto,share +./usr/share/examples/openssl/CA.sh misc-crypto-examples crypto,share +./usr/share/examples/openssl/der_chop misc-obsolete obsolete +./usr/share/examples/openssl/openssl.cnf misc-crypto-examples crypto,share +./usr/share/examples/pf/ackpri misc-pf-examples pf,share +./usr/share/examples/pf/faq-example1 misc-pf-examples pf,share +./usr/share/examples/pf/faq-example2 misc-pf-examples pf,share +./usr/share/examples/pf/faq-example3 misc-pf-examples pf,share +./usr/share/examples/pf/queue1 misc-pf-examples pf,share +./usr/share/examples/pf/queue2 misc-pf-examples pf,share +./usr/share/examples/pf/queue3 misc-pf-examples pf,share +./usr/share/examples/pf/queue4 misc-pf-examples pf,share +./usr/share/examples/pf/spamd misc-obsolete obsolete +./usr/share/examples/postfix/AAAREADME misc-postfix-examples postfix,doc +./usr/share/examples/postfix/ADDRESS_CLASS_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/ADDRESS_REWRITING_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/ADDRESS_VERIFICATION_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/BACKSCATTER_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/BASIC_CONFIGURATION_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/BUILTIN_FILTER_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/CONNECTION_CACHE_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/CONTENT_INSPECTION_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/DATABASE_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/DB_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/DEBUG_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/DSN_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/ETRN_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/FILTER_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/IPV6_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/LDAP_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/LICENSE misc-postfix-examples postfix,share +./usr/share/examples/postfix/LMTP_README misc-obsolete obsolete +./usr/share/examples/postfix/LOCAL_RECIPIENT_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/MAILDROP_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/MILTER_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/MULTI_INSTANCE_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/MYSQL_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/NFS_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/OVERVIEW misc-postfix-examples postfix,doc +./usr/share/examples/postfix/PCRE_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/PGSQL_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/POSTSCREEN_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/QMQP_README misc-obsolete obsolete +./usr/share/examples/postfix/QSHAPE_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/RELEASE_NOTES misc-postfix-examples postfix,doc +./usr/share/examples/postfix/RESTRICTION_CLASS_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/SASL_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/SCHEDULER_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/SMTPD_ACCESS_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/SMTPD_POLICY_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/SMTPD_PROXY_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/SOHO_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/SQLITE_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/STANDARD_CONFIGURATION_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/TLS_LEGACY_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/TLS_LICENSE misc-postfix-examples postfix,share +./usr/share/examples/postfix/TLS_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/TUNING_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/UUCP_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/VERP_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/VIRTUAL_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/XCLIENT_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/XFORWARD_README misc-postfix-examples postfix,doc +./usr/share/examples/postfix/access misc-postfix-examples postfix,share +./usr/share/examples/postfix/aliases misc-postfix-examples postfix,share +./usr/share/examples/postfix/canonical misc-postfix-examples postfix,share +./usr/share/examples/postfix/generic misc-postfix-examples postfix,share +./usr/share/examples/postfix/header_checks misc-postfix-examples postfix,share +./usr/share/examples/postfix/main.cf misc-postfix-examples postfix,share +./usr/share/examples/postfix/master.cf misc-postfix-examples postfix,share +./usr/share/examples/postfix/pcre_table misc-obsolete obsolete +./usr/share/examples/postfix/post-install misc-obsolete obsolete +./usr/share/examples/postfix/postfix-files misc-obsolete obsolete +./usr/share/examples/postfix/postfix-script misc-obsolete obsolete +./usr/share/examples/postfix/regexp_table misc-obsolete obsolete +./usr/share/examples/postfix/relocated misc-postfix-examples postfix,share +./usr/share/examples/postfix/sample-aliases.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-auth.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-canonical.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-compatibility.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-debug.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-filter.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-flush.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-ldap.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-lmtp.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-local.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-mime.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-misc.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-pcre-access.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-pcre-body.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-pcre-header.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-pcre.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-qmqpd.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-rate.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-regexp-access.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-regexp-body.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-regexp-header.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-regexp.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-relocated.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-resource.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-rewrite.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-smtp.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-smtpd.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-transport.cf misc-obsolete obsolete +./usr/share/examples/postfix/sample-virtual.cf misc-obsolete obsolete +./usr/share/examples/postfix/transport misc-postfix-examples postfix,share +./usr/share/examples/postfix/virtual misc-postfix-examples postfix,share +./usr/share/examples/pppd misc-pppd-examples +./usr/share/examples/pppd/cingular3G misc-pppd-examples share +./usr/share/examples/pppd/cingular3G.chat misc-pppd-examples share +./usr/share/examples/pppd/cosmote3G misc-pppd-examples share +./usr/share/examples/pppd/cosmote3G.chat misc-pppd-examples share +./usr/share/examples/pppd/telus misc-pppd-examples share +./usr/share/examples/pppd/telus.chat misc-pppd-examples share +./usr/share/examples/racoon/FAQ misc-netutil-examples crypto,share +./usr/share/examples/racoon/README.certificate misc-netutil-examples crypto,share +./usr/share/examples/racoon/README.gssapi misc-netutil-examples crypto,share +./usr/share/examples/racoon/README.plainrsa misc-netutil-examples crypto,share +./usr/share/examples/racoon/psk.txt.sample misc-netutil-examples crypto,share +./usr/share/examples/racoon/racoon.conf.sample misc-netutil-examples crypto,share +./usr/share/examples/racoon/racoon.conf.sample-gssapi misc-netutil-examples crypto,share +./usr/share/examples/racoon/racoon.conf.sample-inherit misc-netutil-examples crypto,share +./usr/share/examples/racoon/racoon.conf.sample-natt misc-netutil-examples crypto,share +./usr/share/examples/racoon/racoon.conf.sample-plainrsa misc-netutil-examples crypto,share +./usr/share/examples/racoon/roadwarrior/README misc-netutil-examples crypto,share +./usr/share/examples/racoon/roadwarrior/client/phase1-down.sh misc-netutil-examples crypto,share +./usr/share/examples/racoon/roadwarrior/client/phase1-up.sh misc-netutil-examples crypto,share +./usr/share/examples/racoon/roadwarrior/client/racoon.conf misc-netutil-examples crypto,share +./usr/share/examples/racoon/roadwarrior/server/phase1-down.sh misc-obsolete obsolete +./usr/share/examples/racoon/roadwarrior/server/racoon.conf misc-netutil-examples crypto,share +./usr/share/examples/racoon/roadwarrior/server/racoon.conf-radius misc-netutil-examples crypto,share +./usr/share/examples/rtadvd/rtadvd.conf misc-router-examples use_inet6,share +./usr/share/examples/smbfs/dot.nsmbrc misc-sysutil-examples share +./usr/share/examples/supfiles/ftp.cs.umn.edu misc-obsolete obsolete +./usr/share/examples/supfiles/skarven.itea.unit.no misc-obsolete obsolete +./usr/share/examples/supfiles/sup.au.netbsd.org misc-obsolete obsolete +./usr/share/examples/supfiles/sup.de.netbsd.org misc-obsolete obsolete +./usr/share/examples/supfiles/sup.jp.netbsd.org misc-sup-examples share +./usr/share/examples/supfiles/sup.netbsd.org misc-sup-examples share +./usr/share/examples/supfiles/sup.no.netbsd.org misc-obsolete obsolete +./usr/share/examples/supfiles/sup.uk.netbsd.org misc-obsolete obsolete +./usr/share/examples/supfiles/sup2.fr.netbsd.org misc-sup-examples share +./usr/share/examples/syslogd/all.debug misc-sysutil-examples share +./usr/share/examples/syslogd/all.newsyslog.conf misc-sysutil-examples share +./usr/share/examples/tmux misc-tmux-examples share +./usr/share/examples/tmux/screen-keys.conf misc-tmux-examples share +./usr/share/examples/usermgmt misc-obsolete obsolete +./usr/share/examples/usermgmt/.cshrc misc-obsolete obsolete +./usr/share/examples/usermgmt/.login misc-obsolete obsolete +./usr/share/examples/usermgmt/.profile misc-obsolete obsolete +./usr/share/misc/NetBSD.el misc-reference-share share +./usr/share/misc/airport misc-reference-share share +./usr/share/misc/birthtoken misc-reference-share share +./usr/share/misc/country misc-reference-share share +./usr/share/misc/domains misc-reference-share share +./usr/share/misc/flowers misc-reference-share share +./usr/share/misc/inter.phone misc-reference-share share +./usr/share/misc/language misc-reference-share share +./usr/share/misc/na.phone misc-reference-share share +./usr/share/misc/na.postal misc-reference-share share +./usr/share/misc/zipcodes misc-reference-share share +./usr/share/postfix misc-obsolete obsolete +./usr/share/xml misc-xml-share +./usr/share/xml/atf misc-atf-share +./usr/share/xml/atf/tests-results.dtd misc-atf-share share,atf +./usr/share/xml/catalog misc-xml-share share +./usr/share/xsl misc-xml-share +./usr/share/xsl/atf misc-atf-share +./usr/share/xsl/atf/tests-results.xsl misc-atf-share share,atf diff --git a/distrib/sets/lists/modules/ad.arm b/distrib/sets/lists/modules/ad.arm new file mode 100644 index 000000000..9153179a0 --- /dev/null +++ b/distrib/sets/lists/modules/ad.arm @@ -0,0 +1,4 @@ +# $NetBSD: ad.arm,v 1.1 2009/09/07 02:27:28 jnemeth Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod + diff --git a/distrib/sets/lists/modules/ad.hppa b/distrib/sets/lists/modules/ad.hppa new file mode 100644 index 000000000..a37860260 --- /dev/null +++ b/distrib/sets/lists/modules/ad.hppa @@ -0,0 +1,3 @@ +# $NetBSD: ad.hppa,v 1.1 2009/09/07 02:27:29 jnemeth Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/ad.m68k b/distrib/sets/lists/modules/ad.m68k new file mode 100644 index 000000000..4ffb7a540 --- /dev/null +++ b/distrib/sets/lists/modules/ad.m68k @@ -0,0 +1,7 @@ +# $NetBSD: ad.m68k,v 1.2 2010/10/15 12:20:33 tsutsui Exp $ +./@MODULEDIR@/compat_aoutm68k base-kernel-modules kmod +./@MODULEDIR@/compat_aoutm68k/compat_aoutm68k.kmod base-kernel-modules kmod +./@MODULEDIR@/exec_aout base-kernel-modules kmod +./@MODULEDIR@/exec_aout/exec_aout.kmod base-kernel-modules kmod +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/ad.mips64eb b/distrib/sets/lists/modules/ad.mips64eb new file mode 100644 index 000000000..c94944d57 --- /dev/null +++ b/distrib/sets/lists/modules/ad.mips64eb @@ -0,0 +1,3 @@ +# $NetBSD: ad.mips64eb,v 1.1 2009/12/15 05:59:51 mrg Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/ad.mips64el b/distrib/sets/lists/modules/ad.mips64el new file mode 100644 index 000000000..5ddcb0b2d --- /dev/null +++ b/distrib/sets/lists/modules/ad.mips64el @@ -0,0 +1,3 @@ +# $NetBSD: ad.mips64el,v 1.1 2009/12/15 05:59:51 mrg Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/ad.mipseb b/distrib/sets/lists/modules/ad.mipseb new file mode 100644 index 000000000..c161b4748 --- /dev/null +++ b/distrib/sets/lists/modules/ad.mipseb @@ -0,0 +1,3 @@ +# $NetBSD: ad.mipseb,v 1.1 2009/09/07 02:27:29 jnemeth Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/ad.mipsel b/distrib/sets/lists/modules/ad.mipsel new file mode 100644 index 000000000..a676c0e72 --- /dev/null +++ b/distrib/sets/lists/modules/ad.mipsel @@ -0,0 +1,3 @@ +# $NetBSD: ad.mipsel,v 1.1 2009/09/07 02:27:29 jnemeth Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/ad.powerpc b/distrib/sets/lists/modules/ad.powerpc new file mode 100644 index 000000000..969108daf --- /dev/null +++ b/distrib/sets/lists/modules/ad.powerpc @@ -0,0 +1,3 @@ +# $NetBSD: ad.powerpc,v 1.1 2009/09/07 02:27:29 jnemeth Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/ad.sh3 b/distrib/sets/lists/modules/ad.sh3 new file mode 100644 index 000000000..4a4fadb45 --- /dev/null +++ b/distrib/sets/lists/modules/ad.sh3 @@ -0,0 +1,3 @@ +# $NetBSD: ad.sh3,v 1.1 2009/09/07 02:27:29 jnemeth Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/md.alpha b/distrib/sets/lists/modules/md.alpha new file mode 100644 index 000000000..feb9aeeb0 --- /dev/null +++ b/distrib/sets/lists/modules/md.alpha @@ -0,0 +1,3 @@ +# $NetBSD: md.alpha,v 1.1 2009/09/07 02:27:29 jnemeth Exp $ +./@MODULEDIR@/exec_elf64 base-kernel-modules kmod +./@MODULEDIR@/exec_elf64/exec_elf64.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/md.amd64 b/distrib/sets/lists/modules/md.amd64 new file mode 100644 index 000000000..bad3c2c23 --- /dev/null +++ b/distrib/sets/lists/modules/md.amd64 @@ -0,0 +1,137 @@ +# $NetBSD: md.amd64,v 1.35 2012/10/13 19:42:02 alnsn Exp $ +./@MODULEDIR@/acpiacad base-kernel-modules kmod +./@MODULEDIR@/acpiacad/acpiacad.kmod base-kernel-modules kmod +./@MODULEDIR@/acpibat base-kernel-modules kmod +./@MODULEDIR@/acpibat/acpibat.kmod base-kernel-modules kmod +./@MODULEDIR@/acpibut base-kernel-modules kmod +./@MODULEDIR@/acpibut/acpibut.kmod base-kernel-modules kmod +./@MODULEDIR@/acpicpu base-kernel-modules kmod +./@MODULEDIR@/acpicpu/acpicpu.kmod base-kernel-modules kmod +./@MODULEDIR@/acpidalb base-kernel-modules kmod +./@MODULEDIR@/acpidalb/acpidalb.kmod base-kernel-modules kmod +./@MODULEDIR@/acpifan base-kernel-modules kmod +./@MODULEDIR@/acpifan/acpifan.kmod base-kernel-modules kmod +./@MODULEDIR@/acpilid base-kernel-modules kmod +./@MODULEDIR@/acpilid/acpilid.kmod base-kernel-modules kmod +./@MODULEDIR@/acpipmtr base-kernel-modules kmod +./@MODULEDIR@/acpipmtr/acpipmtr.kmod base-kernel-modules kmod +./@MODULEDIR@/acpitz base-kernel-modules kmod +./@MODULEDIR@/acpitz/acpitz.kmod base-kernel-modules kmod +./@MODULEDIR@/acpiverbose base-kernel-modules kmod +./@MODULEDIR@/acpiverbose/acpiverbose.kmod base-kernel-modules kmod +./@MODULEDIR@/acpivga base-kernel-modules kmod +./@MODULEDIR@/acpivga/acpivga.kmod base-kernel-modules kmod +./@MODULEDIR@/acpiwdrt base-kernel-modules kmod +./@MODULEDIR@/acpiwdrt/acpiwdrt.kmod base-kernel-modules kmod +./@MODULEDIR@/acpiwmi base-kernel-modules kmod +./@MODULEDIR@/acpiwmi/acpiwmi.kmod base-kernel-modules kmod +./@MODULEDIR@/aibs base-kernel-modules kmod +./@MODULEDIR@/aibs/aibs.kmod base-kernel-modules kmod +./@MODULEDIR@/amdtemp base-kernel-modules kmod +./@MODULEDIR@/amdtemp/amdtemp.kmod base-kernel-modules kmod +./@MODULEDIR@/aps base-kernel-modules kmod +./@MODULEDIR@/aps/aps.kmod base-kernel-modules kmod +./@MODULEDIR@/asus base-kernel-modules kmod +./@MODULEDIR@/asus/asus.kmod base-kernel-modules kmod +./@MODULEDIR@/au8522 base-kernel-modules kmod +./@MODULEDIR@/au8522/au8522.kmod base-kernel-modules kmod +./@MODULEDIR@/auvitek base-kernel-modules kmod +./@MODULEDIR@/auvitek/auvitek.kmod base-kernel-modules kmod +./@MODULEDIR@/azalia base-kernel-modules kmod +./@MODULEDIR@/azalia/azalia.kmod base-kernel-modules kmod +./@MODULEDIR@/compat_linux base-kernel-modules kmod +./@MODULEDIR@/compat_linux/compat_linux.kmod base-kernel-modules kmod +./@MODULEDIR@/compat_linux32 base-kernel-modules kmod +./@MODULEDIR@/compat_linux32/compat_linux32.kmod base-kernel-modules kmod +./@MODULEDIR@/compat_netbsd32 base-kernel-modules kmod +./@MODULEDIR@/compat_netbsd32/compat_netbsd32.kmod base-kernel-modules kmod +./@MODULEDIR@/coretemp base-kernel-modules kmod +./@MODULEDIR@/coretemp/coretemp.kmod base-kernel-modules kmod +./@MODULEDIR@/coram base-kernel-modules kmod +./@MODULEDIR@/coram/coram.kmod base-kernel-modules kmod +./@MODULEDIR@/cx24227 base-kernel-modules kmod +./@MODULEDIR@/cx24227/cx24227.kmod base-kernel-modules kmod +./@MODULEDIR@/cxdtv base-kernel-modules kmod +./@MODULEDIR@/cxdtv/cxdtv.kmod base-kernel-modules kmod +./@MODULEDIR@/drm base-kernel-modules kmod +./@MODULEDIR@/drm/drm.kmod base-kernel-modules kmod +./@MODULEDIR@/emdtv base-kernel-modules kmod +./@MODULEDIR@/emdtv/emdtv.kmod base-kernel-modules kmod +./@MODULEDIR@/est base-kernel-modules kmod +./@MODULEDIR@/est/est.kmod base-kernel-modules kmod +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod +./@MODULEDIR@/exec_elf64 base-kernel-modules kmod +./@MODULEDIR@/exec_elf64/exec_elf64.kmod base-kernel-modules kmod +./@MODULEDIR@/finsio base-kernel-modules kmod +./@MODULEDIR@/finsio/finsio.kmod base-kernel-modules kmod +./@MODULEDIR@/fujbp base-kernel-modules kmod +./@MODULEDIR@/fujbp/fujbp.kmod base-kernel-modules kmod +./@MODULEDIR@/fujhk base-kernel-modules kmod +./@MODULEDIR@/fujhk/fujhk.kmod base-kernel-modules kmod +./@MODULEDIR@/hdafg base-kernel-modules kmod +./@MODULEDIR@/hdafg/hdafg.kmod base-kernel-modules kmod +./@MODULEDIR@/hdaudio base-kernel-modules kmod +./@MODULEDIR@/hdaudio/hdaudio.kmod base-kernel-modules kmod +./@MODULEDIR@/hpacel base-kernel-modules kmod +./@MODULEDIR@/hpacel/hpacel.kmod base-kernel-modules kmod +./@MODULEDIR@/hpet base-kernel-modules kmod +./@MODULEDIR@/hpet/hpet.kmod base-kernel-modules kmod +./@MODULEDIR@/hpqlb base-kernel-modules kmod +./@MODULEDIR@/hpqlb/hpqlb.kmod base-kernel-modules kmod +./@MODULEDIR@/i915drm base-kernel-modules kmod +./@MODULEDIR@/i915drm/i915drm.kmod base-kernel-modules kmod +./@MODULEDIR@/itesio base-kernel-modules kmod +./@MODULEDIR@/itesio/itesio.kmod base-kernel-modules kmod +./@MODULEDIR@/lg3303 base-kernel-modules kmod +./@MODULEDIR@/lg3303/lg3303.kmod base-kernel-modules kmod +./@MODULEDIR@/lm base-kernel-modules kmod +./@MODULEDIR@/lm/lm.kmod base-kernel-modules kmod +./@MODULEDIR@/lm_isa base-kernel-modules kmod +./@MODULEDIR@/lm_isa/lm_isa.kmod base-kernel-modules kmod +./@MODULEDIR@/lm_isa_common base-kernel-modules kmod +./@MODULEDIR@/lm_isa_common/lm_isa_common.kmod base-kernel-modules kmod +./@MODULEDIR@/lm_wbsio base-kernel-modules kmod +./@MODULEDIR@/lm_wbsio/lm_wbsio.kmod base-kernel-modules kmod +./@MODULEDIR@/mt2131 base-kernel-modules kmod +./@MODULEDIR@/mt2131/mt2131.kmod base-kernel-modules kmod +./@MODULEDIR@/nxt2k base-kernel-modules kmod +./@MODULEDIR@/nxt2k/nxt2k.kmod base-kernel-modules kmod +./@MODULEDIR@/odcm base-kernel-modules kmod +./@MODULEDIR@/odcm/odcm.kmod base-kernel-modules kmod +./@MODULEDIR@/pad base-kernel-modules kmod +./@MODULEDIR@/pad/pad.kmod base-kernel-modules kmod +./@MODULEDIR@/powernow base-kernel-modules kmod +./@MODULEDIR@/powernow/powernow.kmod base-kernel-modules kmod +./@MODULEDIR@/pwdog base-kernel-modules kmod +./@MODULEDIR@/pwdog/pwdog.kmod base-kernel-modules kmod +./@MODULEDIR@/sljit base-kernel-modules kmod +./@MODULEDIR@/sljit/sljit.kmod base-kernel-modules kmod +./@MODULEDIR@/syscallemu base-kernel-modules kmod +./@MODULEDIR@/syscallemu/syscallemu.kmod base-kernel-modules kmod +./@MODULEDIR@/thinkpad base-kernel-modules kmod +./@MODULEDIR@/thinkpad/thinkpad.kmod base-kernel-modules kmod +./@MODULEDIR@/tprof_amdpmi base-kernel-modules kmod +./@MODULEDIR@/tprof_amdpmi/tprof_amdpmi.kmod base-kernel-modules kmod +./@MODULEDIR@/tprof_pmi base-kernel-modules kmod +./@MODULEDIR@/tprof_pmi/tprof_pmi.kmod base-kernel-modules kmod +./@MODULEDIR@/tvpll base-kernel-modules kmod +./@MODULEDIR@/tvpll/tvpll.kmod base-kernel-modules kmod +./@MODULEDIR@/vmt base-kernel-modules kmod +./@MODULEDIR@/vmt/vmt.kmod base-kernel-modules kmod +./@MODULEDIR@/wbsio base-kernel-modules kmod +./@MODULEDIR@/wbsio/wbsio.kmod base-kernel-modules kmod +./@MODULEDIR@/wmidell base-kernel-modules kmod +./@MODULEDIR@/wmidell/wmidell.kmod base-kernel-modules kmod +./@MODULEDIR@/wmieeepc base-kernel-modules kmod +./@MODULEDIR@/wmieeepc/wmieeepc.kmod base-kernel-modules kmod +./@MODULEDIR@/wmihp base-kernel-modules kmod +./@MODULEDIR@/wmihp/wmihp.kmod base-kernel-modules kmod +./@MODULEDIR@/wmimsi base-kernel-modules kmod +./@MODULEDIR@/wmimsi/wmimsi.kmod base-kernel-modules kmod +./@MODULEDIR@/xc3028 base-kernel-modules kmod +./@MODULEDIR@/xc3028/xc3028.kmod base-kernel-modules kmod +./@MODULEDIR@/xc5k base-kernel-modules kmod +./@MODULEDIR@/xc5k/xc5k.kmod base-kernel-modules kmod +./@MODULEDIR@/zl10353 base-kernel-modules kmod +./@MODULEDIR@/zl10353/zl10353.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/md.evbppc b/distrib/sets/lists/modules/md.evbppc new file mode 100644 index 000000000..1d7bbc6a9 --- /dev/null +++ b/distrib/sets/lists/modules/md.evbppc @@ -0,0 +1,383 @@ +# $NetBSD: md.evbppc,v 1.28 2012/09/21 08:42:33 martin Exp $ +./stand/powerpc-4xx base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@ base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/accf_dataready base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/accf_dataready/accf_dataready.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/accf_httpready base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/accf_httpready/accf_httpready.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/adosfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/adosfs/adosfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/aio base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/aio/aio.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/bpf base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/bpf/bpf.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/cd9660 base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/cd9660/cd9660.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/chfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/chfs/chfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/coda base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/coda/coda.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/coda5 base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/coda5/coda5.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/compat base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/compat/compat.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/compat_ossaudio base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/compat_ossaudio/compat_ossaudio.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/coredump base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/coredump/coredump.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/dbcool base-kernel-modules kmod +./stand/powerpc-4xx/@OSRELEASE@/modules/dbcool/dbcool.kmod base-kernel-modules kmod +./stand/powerpc-4xx/@OSRELEASE@/modules/dirhash base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/dirhash/dirhash.kmod base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/dm base-kernel-modules kmod,compatmodules,lvm +./stand/powerpc-4xx/@OSRELEASE@/modules/dm/dm.kmod base-kernel-modules kmod,compatmodules,lvm +./stand/powerpc-4xx/@OSRELEASE@/modules/dtrace base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-4xx/@OSRELEASE@/modules/dtrace/dtrace.kmod base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-4xx/@OSRELEASE@/modules/dtv base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/dtv/dtv.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/dtv_math base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/dtv_math/dtv_math.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/efs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/efs/efs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/exec_elf32 base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/exec_elf32/exec_elf32.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/exec_script base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/exec_script/exec_script.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ext2fs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ext2fs/ext2fs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/fbt base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-4xx/@OSRELEASE@/modules/fbt/fbt.kmod base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-4xx/@OSRELEASE@/modules/fdesc base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/fdesc/fdesc.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ffs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ffs/ffs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/filecore base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/filecore/filecore.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/filemon base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/filemon/filemon.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/flash base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/flash/flash.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/fss base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/fss/fss.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/gpio base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/gpio/gpio.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/gpioiic base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/gpioiic/gpioiic.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/gpioow base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/gpioow/gpioow.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/gpiosim base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/gpiosim/gpiosim.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/hdafg base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/hdafg/hdafg.kmod base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/hdaudio base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/hdaudio/hdaudio.kmod base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/hfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/hfs/hfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/if_axe base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/if_axe/if_axe.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/iic base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/iic/iic.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/iscsi base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/iscsi/iscsi.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/kernfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/kernfs/kernfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ksem base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/ksem/ksem.kmod base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/layerfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/layerfs/layerfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/lfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/lfs/lfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/mfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/mfs/mfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/miiverbose base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/miiverbose/miiverbose.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/miniroot base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/miniroot/miniroot.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/mqueue base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/mqueue/mqueue.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/msdos base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/msdos/msdos.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nand base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nand/nand.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nandemulator base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nandemulator/nandemulator.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nfs/nfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nfsserver base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nfsserver/nfsserver.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nilfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/nilfs/nilfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/npf base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/npf/npf.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/npf_alg_icmp base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/npf_alg_icmp/npf_alg_icmp.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/npf_ext_log base-kernel-modules kmod +./stand/powerpc-4xx/@OSRELEASE@/modules/npf_ext_log/npf_ext_log.kmod base-kernel-modules kmod +./stand/powerpc-4xx/@OSRELEASE@/modules/npf_ext_normalise base-kernel-modules kmod +./stand/powerpc-4xx/@OSRELEASE@/modules/npf_ext_normalise/npf_ext_normalise.kmod base-kernel-modules kmod +./stand/powerpc-4xx/@OSRELEASE@/modules/ntfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ntfs/ntfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/null base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/null/null.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/onewire base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/onewire/onewire.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/overlay base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/overlay/overlay.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/pciverbose base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/pciverbose/pciverbose.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/pf base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/pf/pf.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/portal base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/portal/portal.kmod base-obsolete obsolete +./stand/powerpc-4xx/@OSRELEASE@/modules/ppp_bsdcomp base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ppp_bsdcomp/ppp_bsdcomp.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ppp_deflate base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ppp_deflate/ppp_deflate.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/procfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/procfs/procfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ptyfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/ptyfs/ptyfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/puffs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/puffs/puffs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/putter base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/putter/putter.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/scsiverbose base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/scsiverbose/scsiverbose.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/sdt base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-4xx/@OSRELEASE@/modules/sdt/sdt.kmod base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-4xx/@OSRELEASE@/modules/sdtemp base-kernel-modules kmod +./stand/powerpc-4xx/@OSRELEASE@/modules/sdtemp/sdtemp.kmod base-kernel-modules kmod +./stand/powerpc-4xx/@OSRELEASE@/modules/secmodel_bsd44 base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/secmodel_bsd44/secmodel_bsd44.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/secmodel_extensions base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/secmodel_extensions/secmodel_extensions.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/secmodel_overlay base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/secmodel_overlay/secmodel_overlay.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/securelevel base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/securelevel/securelevel.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/smbfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/smbfs/smbfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/solaris base-kernel-modules kmod,solaris +./stand/powerpc-4xx/@OSRELEASE@/modules/solaris/solaris.kmod base-kernel-modules kmod,solaris +./stand/powerpc-4xx/@OSRELEASE@/modules/spdmem base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/spdmem/spdmem.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/suser base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/suser/suser.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/swsensor base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/swsensor/swsensor.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/sysvbfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/sysvbfs/sysvbfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/tmpfs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/tmpfs/tmpfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/tprof base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/tprof/tprof.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/uatp base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/uatp/uatp.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/udf base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/udf/udf.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/umap base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/umap/umap.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/union base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/union/union.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/usbverbose base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/usbverbose/usbverbose.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/vcoda base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/vcoda/vcoda.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/v7fs base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/v7fs/v7fs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/vnd base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/vnd/vnd.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-4xx/@OSRELEASE@/modules/zfs base-kernel-modules kmod,zfs +./stand/powerpc-4xx/@OSRELEASE@/modules/zfs/zfs.kmod base-kernel-modules kmod,zfs +./stand/powerpc-booke base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@ base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/accf_dataready base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/accf_dataready/accf_dataready.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/accf_httpready base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/accf_httpready/accf_httpready.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/adosfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/adosfs/adosfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/aio base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/aio/aio.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/bpf base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/bpf/bpf.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/cd9660 base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/cd9660/cd9660.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/chfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/chfs/chfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/coda base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/coda/coda.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/coda5 base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/coda5/coda5.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/compat base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/compat/compat.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/compat_ossaudio base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/compat_ossaudio/compat_ossaudio.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/coredump base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/coredump/coredump.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/dbcool base-kernel-modules kmod +./stand/powerpc-booke/@OSRELEASE@/modules/dbcool/dbcool.kmod base-kernel-modules kmod +./stand/powerpc-booke/@OSRELEASE@/modules/dirhash base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/dirhash/dirhash.kmod base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/dm base-kernel-modules kmod,compatmodules,lvm +./stand/powerpc-booke/@OSRELEASE@/modules/dm/dm.kmod base-kernel-modules kmod,compatmodules,lvm +./stand/powerpc-booke/@OSRELEASE@/modules/dtrace base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-booke/@OSRELEASE@/modules/dtrace/dtrace.kmod base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-booke/@OSRELEASE@/modules/dtv base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/dtv/dtv.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/dtv_math base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/dtv_math/dtv_math.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/efs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/efs/efs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/exec_elf32 base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/exec_elf32/exec_elf32.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/exec_script base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/exec_script/exec_script.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ext2fs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ext2fs/ext2fs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/fbt base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-booke/@OSRELEASE@/modules/fbt/fbt.kmod base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-booke/@OSRELEASE@/modules/fdesc base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/fdesc/fdesc.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ffs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ffs/ffs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/filecore base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/filecore/filecore.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/filemon base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/filemon/filemon.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/flash base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/flash/flash.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/fss base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/fss/fss.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/gpio base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/gpio/gpio.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/gpioiic base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/gpioiic/gpioiic.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/gpioow base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/gpioow/gpioow.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/gpiosim base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/gpiosim/gpiosim.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/hdafg base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/hdafg/hdafg.kmod base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/hdaudio base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/hdaudio/hdaudio.kmod base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/hfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/hfs/hfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/if_axe base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/if_axe/if_axe.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/iic base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/iic/iic.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/iscsi base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/iscsi/iscsi.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/kernfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/kernfs/kernfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ksem base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/ksem/ksem.kmod base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/layerfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/layerfs/layerfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/lfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/lfs/lfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/mfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/mfs/mfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/miiverbose base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/miiverbose/miiverbose.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/miniroot base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/miniroot/miniroot.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/mqueue base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/mqueue/mqueue.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/msdos base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/msdos/msdos.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nand base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nand/nand.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nandemulator base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nandemulator/nandemulator.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nfs/nfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nfsserver base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nfsserver/nfsserver.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nilfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/nilfs/nilfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/npf base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/npf/npf.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/npf_alg_icmp base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/npf_alg_icmp/npf_alg_icmp.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/npf_ext_log base-kernel-modules kmod +./stand/powerpc-booke/@OSRELEASE@/modules/npf_ext_log/npf_ext_log.kmod base-kernel-modules kmod +./stand/powerpc-booke/@OSRELEASE@/modules/npf_ext_normalise base-kernel-modules kmod +./stand/powerpc-booke/@OSRELEASE@/modules/npf_ext_normalise/npf_ext_normalise.kmod base-kernel-modules kmod +./stand/powerpc-booke/@OSRELEASE@/modules/ntfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ntfs/ntfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/null base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/null/null.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/onewire base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/onewire/onewire.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/overlay base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/overlay/overlay.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/pciverbose base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/pciverbose/pciverbose.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/pf base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/pf/pf.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/portal base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/portal/portal.kmod base-obsolete obsolete +./stand/powerpc-booke/@OSRELEASE@/modules/ppp_bsdcomp base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ppp_bsdcomp/ppp_bsdcomp.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ppp_deflate base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ppp_deflate/ppp_deflate.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/procfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/procfs/procfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ptyfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/ptyfs/ptyfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/puffs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/puffs/puffs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/putter base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/putter/putter.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/scsiverbose base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/scsiverbose/scsiverbose.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/sdt base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-booke/@OSRELEASE@/modules/sdt/sdt.kmod base-kernel-modules kmod,compatmodules,dtrace +./stand/powerpc-booke/@OSRELEASE@/modules/sdtemp base-kernel-modules kmod +./stand/powerpc-booke/@OSRELEASE@/modules/sdtemp/sdtemp.kmod base-kernel-modules kmod +./stand/powerpc-booke/@OSRELEASE@/modules/secmodel_bsd44 base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/secmodel_bsd44/secmodel_bsd44.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/secmodel_extensions base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/secmodel_extensions/secmodel_extensions.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/secmodel_overlay base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/secmodel_overlay/secmodel_overlay.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/securelevel base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/securelevel/securelevel.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/smbfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/smbfs/smbfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/solaris base-kernel-modules kmod,solaris +./stand/powerpc-booke/@OSRELEASE@/modules/solaris/solaris.kmod base-kernel-modules kmod,solaris +./stand/powerpc-booke/@OSRELEASE@/modules/spdmem base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/spdmem/spdmem.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/suser base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/suser/suser.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/swsensor base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/swsensor/swsensor.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/sysvbfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/sysvbfs/sysvbfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/tmpfs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/tmpfs/tmpfs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/tprof base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/tprof/tprof.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/uatp base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/uatp/uatp.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/udf base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/udf/udf.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/umap base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/umap/umap.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/union base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/union/union.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/usbverbose base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/usbverbose/usbverbose.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/vcoda base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/vcoda/vcoda.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/v7fs base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/v7fs/v7fs.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/vnd base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/vnd/vnd.kmod base-kernel-modules kmod,compatmodules +./stand/powerpc-booke/@OSRELEASE@/modules/zfs base-kernel-modules kmod,zfs +./stand/powerpc-booke/@OSRELEASE@/modules/zfs/zfs.kmod base-kernel-modules kmod,zfs diff --git a/distrib/sets/lists/modules/md.i386 b/distrib/sets/lists/modules/md.i386 new file mode 100644 index 000000000..cdddf8cf6 --- /dev/null +++ b/distrib/sets/lists/modules/md.i386 @@ -0,0 +1,161 @@ +# $NetBSD: md.i386,v 1.40 2012/08/06 10:44:08 martin Exp $ +./@MODULEDIR@/acpiacad base-kernel-modules kmod +./@MODULEDIR@/acpiacad/acpiacad.kmod base-kernel-modules kmod +./@MODULEDIR@/acpibat base-kernel-modules kmod +./@MODULEDIR@/acpibat/acpibat.kmod base-kernel-modules kmod +./@MODULEDIR@/acpibut base-kernel-modules kmod +./@MODULEDIR@/acpibut/acpibut.kmod base-kernel-modules kmod +./@MODULEDIR@/acpicpu base-kernel-modules kmod +./@MODULEDIR@/acpicpu/acpicpu.kmod base-kernel-modules kmod +./@MODULEDIR@/acpidalb base-kernel-modules kmod +./@MODULEDIR@/acpidalb/acpidalb.kmod base-kernel-modules kmod +./@MODULEDIR@/acpifan base-kernel-modules kmod +./@MODULEDIR@/acpifan/acpifan.kmod base-kernel-modules kmod +./@MODULEDIR@/acpilid base-kernel-modules kmod +./@MODULEDIR@/acpilid/acpilid.kmod base-kernel-modules kmod +./@MODULEDIR@/acpipmtr base-kernel-modules kmod +./@MODULEDIR@/acpipmtr/acpipmtr.kmod base-kernel-modules kmod +./@MODULEDIR@/acpitz base-kernel-modules kmod +./@MODULEDIR@/acpitz/acpitz.kmod base-kernel-modules kmod +./@MODULEDIR@/acpiverbose base-kernel-modules kmod +./@MODULEDIR@/acpiverbose/acpiverbose.kmod base-kernel-modules kmod +./@MODULEDIR@/acpivga base-kernel-modules kmod +./@MODULEDIR@/acpivga/acpivga.kmod base-kernel-modules kmod +./@MODULEDIR@/acpiwdrt base-kernel-modules kmod +./@MODULEDIR@/acpiwdrt/acpiwdrt.kmod base-kernel-modules kmod +./@MODULEDIR@/acpiwmi base-kernel-modules kmod +./@MODULEDIR@/acpiwmi/acpiwmi.kmod base-kernel-modules kmod +./@MODULEDIR@/aibs base-kernel-modules kmod +./@MODULEDIR@/aibs/aibs.kmod base-kernel-modules kmod +./@MODULEDIR@/amdtemp base-kernel-modules kmod +./@MODULEDIR@/amdtemp/amdtemp.kmod base-kernel-modules kmod +./@MODULEDIR@/aps base-kernel-modules kmod +./@MODULEDIR@/aps/aps.kmod base-kernel-modules kmod +./@MODULEDIR@/asus base-kernel-modules kmod +./@MODULEDIR@/asus/asus.kmod base-kernel-modules kmod +./@MODULEDIR@/ati_pcigart base-kernel-modules kmod +./@MODULEDIR@/ati_pcigart/ati_pcigart.kmod base-kernel-modules kmod +./@MODULEDIR@/au8522 base-kernel-modules kmod +./@MODULEDIR@/au8522/au8522.kmod base-kernel-modules kmod +./@MODULEDIR@/auvitek base-kernel-modules kmod +./@MODULEDIR@/auvitek/auvitek.kmod base-kernel-modules kmod +./@MODULEDIR@/azalia base-kernel-modules kmod +./@MODULEDIR@/azalia/azalia.kmod base-kernel-modules kmod +./@MODULEDIR@/compat_freebsd base-kernel-modules kmod +./@MODULEDIR@/compat_freebsd/compat_freebsd.kmod base-kernel-modules kmod +./@MODULEDIR@/compat_ibcs2 base-kernel-modules kmod +./@MODULEDIR@/compat_ibcs2/compat_ibcs2.kmod base-kernel-modules kmod +./@MODULEDIR@/compat_linux base-kernel-modules kmod +./@MODULEDIR@/compat_linux/compat_linux.kmod base-kernel-modules kmod +./@MODULEDIR@/compat_svr4 base-kernel-modules kmod +./@MODULEDIR@/compat_svr4/compat_svr4.kmod base-kernel-modules kmod +./@MODULEDIR@/coram base-kernel-modules kmod +./@MODULEDIR@/coram/coram.kmod base-kernel-modules kmod +./@MODULEDIR@/coretemp base-kernel-modules kmod +./@MODULEDIR@/coretemp/coretemp.kmod base-kernel-modules kmod +./@MODULEDIR@/cx24227 base-kernel-modules kmod +./@MODULEDIR@/cx24227/cx24227.kmod base-kernel-modules kmod +./@MODULEDIR@/cxdtv base-kernel-modules kmod +./@MODULEDIR@/cxdtv/cxdtv.kmod base-kernel-modules kmod +./@MODULEDIR@/drm base-kernel-modules kmod +./@MODULEDIR@/drm/drm.kmod base-kernel-modules kmod +./@MODULEDIR@/emdtv base-kernel-modules kmod +./@MODULEDIR@/emdtv/emdtv.kmod base-kernel-modules kmod +./@MODULEDIR@/est base-kernel-modules kmod +./@MODULEDIR@/est/est.kmod base-kernel-modules kmod +./@MODULEDIR@/exec_aout base-kernel-modules kmod +./@MODULEDIR@/exec_aout/exec_aout.kmod base-kernel-modules kmod +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod +./@MODULEDIR@/finsio base-kernel-modules kmod +./@MODULEDIR@/finsio/finsio.kmod base-kernel-modules kmod +./@MODULEDIR@/fujbp base-kernel-modules kmod +./@MODULEDIR@/fujbp/fujbp.kmod base-kernel-modules kmod +./@MODULEDIR@/fujhk base-kernel-modules kmod +./@MODULEDIR@/fujhk/fujhk.kmod base-kernel-modules kmod +./@MODULEDIR@/hdafg base-kernel-modules kmod +./@MODULEDIR@/hdafg/hdafg.kmod base-kernel-modules kmod +./@MODULEDIR@/hdaudio base-kernel-modules kmod +./@MODULEDIR@/hdaudio/hdaudio.kmod base-kernel-modules kmod +./@MODULEDIR@/hpacel base-kernel-modules kmod +./@MODULEDIR@/hpacel/hpacel.kmod base-kernel-modules kmod +./@MODULEDIR@/hpet base-kernel-modules kmod +./@MODULEDIR@/hpet/hpet.kmod base-kernel-modules kmod +./@MODULEDIR@/hpqlb base-kernel-modules kmod +./@MODULEDIR@/hpqlb/hpqlb.kmod base-kernel-modules kmod +./@MODULEDIR@/i915drm base-kernel-modules kmod +./@MODULEDIR@/i915drm/i915drm.kmod base-kernel-modules kmod +./@MODULEDIR@/itesio base-kernel-modules kmod +./@MODULEDIR@/itesio/itesio.kmod base-kernel-modules kmod +./@MODULEDIR@/lg3303 base-kernel-modules kmod +./@MODULEDIR@/lg3303/lg3303.kmod base-kernel-modules kmod +./@MODULEDIR@/lm base-kernel-modules kmod +./@MODULEDIR@/lm/lm.kmod base-kernel-modules kmod +./@MODULEDIR@/lm_isa base-kernel-modules kmod +./@MODULEDIR@/lm_isa/lm_isa.kmod base-kernel-modules kmod +./@MODULEDIR@/lm_isa_common base-kernel-modules kmod +./@MODULEDIR@/lm_isa_common/lm_isa_common.kmod base-kernel-modules kmod +./@MODULEDIR@/lm_wbsio base-kernel-modules kmod +./@MODULEDIR@/lm_wbsio/lm_wbsio.kmod base-kernel-modules kmod +./@MODULEDIR@/mach64drm base-kernel-modules kmod +./@MODULEDIR@/mach64drm/mach64drm.kmod base-kernel-modules kmod +./@MODULEDIR@/mgadrm base-kernel-modules kmod +./@MODULEDIR@/mgadrm/mgadrm.kmod base-kernel-modules kmod +./@MODULEDIR@/mt2131 base-kernel-modules kmod +./@MODULEDIR@/mt2131/mt2131.kmod base-kernel-modules kmod +./@MODULEDIR@/nsclpcsio base-kernel-modules kmod +./@MODULEDIR@/nsclpcsio/nsclpcsio.kmod base-kernel-modules kmod +./@MODULEDIR@/nxt2k base-kernel-modules kmod +./@MODULEDIR@/nxt2k/nxt2k.kmod base-kernel-modules kmod +./@MODULEDIR@/odcm base-kernel-modules kmod +./@MODULEDIR@/odcm/odcm.kmod base-kernel-modules kmod +./@MODULEDIR@/pad base-kernel-modules kmod +./@MODULEDIR@/pad/pad.kmod base-kernel-modules kmod +./@MODULEDIR@/padlock base-kernel-modules kmod +./@MODULEDIR@/padlock/padlock.kmod base-kernel-modules kmod +./@MODULEDIR@/powernow base-kernel-modules kmod +./@MODULEDIR@/powernow/powernow.kmod base-kernel-modules kmod +./@MODULEDIR@/pwdog base-kernel-modules kmod +./@MODULEDIR@/pwdog/pwdog.kmod base-kernel-modules kmod +./@MODULEDIR@/r128drm base-kernel-modules kmod +./@MODULEDIR@/r128drm/r128drm.kmod base-kernel-modules kmod +./@MODULEDIR@/radeondrm base-kernel-modules kmod +./@MODULEDIR@/radeondrm/radeondrm.kmod base-kernel-modules kmod +./@MODULEDIR@/savagedrm base-kernel-modules kmod +./@MODULEDIR@/savagedrm/savagedrm.kmod base-kernel-modules kmod +./@MODULEDIR@/sisdrm base-kernel-modules kmod +./@MODULEDIR@/sisdrm/sisdrm.kmod base-kernel-modules kmod +./@MODULEDIR@/syscallemu base-kernel-modules kmod +./@MODULEDIR@/syscallemu/syscallemu.kmod base-kernel-modules kmod +./@MODULEDIR@/tdfxdrm base-kernel-modules kmod +./@MODULEDIR@/tdfxdrm/tdfxdrm.kmod base-kernel-modules kmod +./@MODULEDIR@/thinkpad base-kernel-modules kmod +./@MODULEDIR@/thinkpad/thinkpad.kmod base-kernel-modules kmod +./@MODULEDIR@/tprof_amdpmi base-kernel-modules kmod +./@MODULEDIR@/tprof_amdpmi/tprof_amdpmi.kmod base-kernel-modules kmod +./@MODULEDIR@/tprof_pmi base-kernel-modules kmod +./@MODULEDIR@/tprof_pmi/tprof_pmi.kmod base-kernel-modules kmod +./@MODULEDIR@/tvpll base-kernel-modules kmod +./@MODULEDIR@/tvpll/tvpll.kmod base-kernel-modules kmod +./@MODULEDIR@/viac7temp base-kernel-modules kmod +./@MODULEDIR@/viac7temp/viac7temp.kmod base-kernel-modules kmod +./@MODULEDIR@/viadrm base-kernel-modules kmod +./@MODULEDIR@/viadrm/viadrm.kmod base-kernel-modules kmod +./@MODULEDIR@/vmt base-kernel-modules kmod +./@MODULEDIR@/vmt/vmt.kmod base-kernel-modules kmod +./@MODULEDIR@/wbsio base-kernel-modules kmod +./@MODULEDIR@/wbsio/wbsio.kmod base-kernel-modules kmod +./@MODULEDIR@/wmidell base-kernel-modules kmod +./@MODULEDIR@/wmidell/wmidell.kmod base-kernel-modules kmod +./@MODULEDIR@/wmieeepc base-kernel-modules kmod +./@MODULEDIR@/wmieeepc/wmieeepc.kmod base-kernel-modules kmod +./@MODULEDIR@/wmihp base-kernel-modules kmod +./@MODULEDIR@/wmihp/wmihp.kmod base-kernel-modules kmod +./@MODULEDIR@/wmimsi base-kernel-modules kmod +./@MODULEDIR@/wmimsi/wmimsi.kmod base-kernel-modules kmod +./@MODULEDIR@/xc3028 base-kernel-modules kmod +./@MODULEDIR@/xc3028/xc3028.kmod base-kernel-modules kmod +./@MODULEDIR@/xc5k base-kernel-modules kmod +./@MODULEDIR@/xc5k/xc5k.kmod base-kernel-modules kmod +./@MODULEDIR@/zl10353 base-kernel-modules kmod +./@MODULEDIR@/zl10353/zl10353.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/md.ia64 b/distrib/sets/lists/modules/md.ia64 new file mode 100644 index 000000000..61b6f4696 --- /dev/null +++ b/distrib/sets/lists/modules/md.ia64 @@ -0,0 +1,3 @@ +# $NetBSD: md.ia64,v 1.1 2010/05/31 20:32:28 pgoyette Exp $ +./@MODULEDIR@/acpiverbose base-kernel-modules kmod +./@MODULEDIR@/acpiverbose/acpiverbose.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/md.sparc b/distrib/sets/lists/modules/md.sparc new file mode 100644 index 000000000..238a9a7f9 --- /dev/null +++ b/distrib/sets/lists/modules/md.sparc @@ -0,0 +1,3 @@ +# $NetBSD: md.sparc,v 1.1 2009/09/07 02:27:29 jnemeth Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/md.sparc64 b/distrib/sets/lists/modules/md.sparc64 new file mode 100644 index 000000000..fca2e7f49 --- /dev/null +++ b/distrib/sets/lists/modules/md.sparc64 @@ -0,0 +1,7 @@ +# $NetBSD: md.sparc64,v 1.2 2011/08/11 12:03:58 mbalmer Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod +./@MODULEDIR@/exec_elf64 base-kernel-modules kmod +./@MODULEDIR@/exec_elf64/exec_elf64.kmod base-kernel-modules kmod +./@MODULEDIR@/pwdog base-kernel-modules kmod +./@MODULEDIR@/pwdog/pwdog.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/md.vax b/distrib/sets/lists/modules/md.vax new file mode 100644 index 000000000..fa1becc69 --- /dev/null +++ b/distrib/sets/lists/modules/md.vax @@ -0,0 +1,3 @@ +# $NetBSD: md.vax,v 1.1 2009/09/07 02:27:29 jnemeth Exp $ +./@MODULEDIR@/exec_elf32 base-kernel-modules kmod +./@MODULEDIR@/exec_elf32/exec_elf32.kmod base-kernel-modules kmod diff --git a/distrib/sets/lists/modules/mi b/distrib/sets/lists/modules/mi new file mode 100644 index 000000000..f413f9002 --- /dev/null +++ b/distrib/sets/lists/modules/mi @@ -0,0 +1,195 @@ +# $NetBSD: mi,v 1.48 2012/09/16 13:47:43 rmind Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +# IMPORTANT: When you add a module here, you have to add it twice to +# md.evbppc as well. evbppc does not use mi, because +# powerpc-4xx and powerpc-booke modules are incompatible. +# Sorry for any inconvenience this may cause, the management. +# +./etc/mtree/set.modules modules-sys-root kmod +./stand/@MACHINE@ base-kernel-modules kmod +./stand/@MACHINE@/@OSRELEASE@ base-kernel-modules kmod +./@MODULEDIR@ base-kernel-modules kmod +./@MODULEDIR@/accf_dataready base-kernel-modules kmod +./@MODULEDIR@/accf_dataready/accf_dataready.kmod base-kernel-modules kmod +./@MODULEDIR@/accf_httpready base-kernel-modules kmod +./@MODULEDIR@/accf_httpready/accf_httpready.kmod base-kernel-modules kmod +./@MODULEDIR@/adosfs base-kernel-modules kmod +./@MODULEDIR@/adosfs/adosfs.kmod base-kernel-modules kmod +./@MODULEDIR@/aio base-kernel-modules kmod +./@MODULEDIR@/aio/aio.kmod base-kernel-modules kmod +./@MODULEDIR@/bpf base-kernel-modules kmod +./@MODULEDIR@/bpf/bpf.kmod base-kernel-modules kmod +./@MODULEDIR@/cd9660 base-kernel-modules kmod +./@MODULEDIR@/cd9660/cd9660.kmod base-kernel-modules kmod +./@MODULEDIR@/chfs base-kernel-modules kmod +./@MODULEDIR@/chfs/chfs.kmod base-kernel-modules kmod +./@MODULEDIR@/coda base-kernel-modules kmod +./@MODULEDIR@/coda/coda.kmod base-kernel-modules kmod +./@MODULEDIR@/coda5 base-kernel-modules kmod +./@MODULEDIR@/coda5/coda5.kmod base-kernel-modules kmod +./@MODULEDIR@/compat base-kernel-modules kmod +./@MODULEDIR@/compat/compat.kmod base-kernel-modules kmod +./@MODULEDIR@/compat_ossaudio base-kernel-modules kmod +./@MODULEDIR@/compat_ossaudio/compat_ossaudio.kmod base-kernel-modules kmod +./@MODULEDIR@/coredump base-kernel-modules kmod +./@MODULEDIR@/coredump/coredump.kmod base-kernel-modules kmod +./@MODULEDIR@/dbcool base-kernel-modules kmod +./@MODULEDIR@/dbcool/dbcool.kmod base-kernel-modules kmod +./@MODULEDIR@/dirhash base-obsolete obsolete +./@MODULEDIR@/dirhash/dirhash.kmod base-obsolete obsolete +./@MODULEDIR@/dm base-kernel-modules lvm,kmod +./@MODULEDIR@/dm/dm.kmod base-kernel-modules lvm,kmod +./@MODULEDIR@/dtrace base-kernel-modules kmod,dtrace +./@MODULEDIR@/dtrace/dtrace.kmod base-kernel-modules kmod,dtrace +./@MODULEDIR@/dtv base-kernel-modules kmod +./@MODULEDIR@/dtv/dtv.kmod base-kernel-modules kmod +./@MODULEDIR@/dtv_math base-kernel-modules kmod +./@MODULEDIR@/dtv_math/dtv_math.kmod base-kernel-modules kmod +./@MODULEDIR@/efs base-kernel-modules kmod +./@MODULEDIR@/efs/efs.kmod base-kernel-modules kmod +./@MODULEDIR@/exec_script base-kernel-modules kmod +./@MODULEDIR@/exec_script/exec_script.kmod base-kernel-modules kmod +./@MODULEDIR@/ext2fs base-kernel-modules kmod +./@MODULEDIR@/ext2fs/ext2fs.kmod base-kernel-modules kmod +./@MODULEDIR@/fbt base-kernel-modules kmod,dtrace +./@MODULEDIR@/fbt/fbt.kmod base-kernel-modules kmod,dtrace +./@MODULEDIR@/fdesc base-kernel-modules kmod +./@MODULEDIR@/fdesc/fdesc.kmod base-kernel-modules kmod +./@MODULEDIR@/ffs base-kernel-modules kmod +./@MODULEDIR@/ffs/ffs.kmod base-kernel-modules kmod +./@MODULEDIR@/filecore base-kernel-modules kmod +./@MODULEDIR@/filecore/filecore.kmod base-kernel-modules kmod +./@MODULEDIR@/filemon base-kernel-modules kmod +./@MODULEDIR@/filemon/filemon.kmod base-kernel-modules kmod +./@MODULEDIR@/flash base-kernel-modules kmod +./@MODULEDIR@/flash/flash.kmod base-kernel-modules kmod +./@MODULEDIR@/fss base-kernel-modules kmod +./@MODULEDIR@/fss/fss.kmod base-kernel-modules kmod +./@MODULEDIR@/gpio base-kernel-modules kmod +./@MODULEDIR@/gpio/gpio.kmod base-kernel-modules kmod +./@MODULEDIR@/gpioiic base-kernel-modules kmod +./@MODULEDIR@/gpioiic/gpioiic.kmod base-kernel-modules kmod +./@MODULEDIR@/gpioow base-kernel-modules kmod +./@MODULEDIR@/gpioow/gpioow.kmod base-kernel-modules kmod +./@MODULEDIR@/gpiosim base-kernel-modules kmod +./@MODULEDIR@/gpiosim/gpiosim.kmod base-kernel-modules kmod +./@MODULEDIR@/hfs base-kernel-modules kmod +./@MODULEDIR@/hfs/hfs.kmod base-kernel-modules kmod +./@MODULEDIR@/if_axe base-kernel-modules kmod +./@MODULEDIR@/if_axe/if_axe.kmod base-kernel-modules kmod +./@MODULEDIR@/iic base-kernel-modules kmod +./@MODULEDIR@/iic/iic.kmod base-kernel-modules kmod +./@MODULEDIR@/iscsi base-kernel-modules kmod,iscsi +./@MODULEDIR@/iscsi/iscsi.kmod base-kernel-modules kmod,iscsi +./@MODULEDIR@/kernfs base-kernel-modules kmod +./@MODULEDIR@/kernfs/kernfs.kmod base-kernel-modules kmod +./@MODULEDIR@/ksem base-obsolete obsolete +./@MODULEDIR@/ksem/ksem.kmod base-obsolete obsolete +./@MODULEDIR@/layerfs base-kernel-modules kmod +./@MODULEDIR@/layerfs/layerfs.kmod base-kernel-modules kmod +./@MODULEDIR@/lfs base-kernel-modules kmod +./@MODULEDIR@/lfs/lfs.kmod base-kernel-modules kmod +./@MODULEDIR@/mfs base-kernel-modules kmod +./@MODULEDIR@/mfs/mfs.kmod base-kernel-modules kmod +./@MODULEDIR@/miiverbose base-kernel-modules kmod +./@MODULEDIR@/miiverbose/miiverbose.kmod base-kernel-modules kmod +./@MODULEDIR@/miniroot base-kernel-modules kmod +./@MODULEDIR@/miniroot/miniroot.kmod base-kernel-modules kmod +./@MODULEDIR@/mqueue base-kernel-modules kmod +./@MODULEDIR@/mqueue/mqueue.kmod base-kernel-modules kmod +./@MODULEDIR@/msdos base-kernel-modules kmod +./@MODULEDIR@/msdos/msdos.kmod base-kernel-modules kmod +./@MODULEDIR@/nand base-kernel-modules kmod +./@MODULEDIR@/nand/nand.kmod base-kernel-modules kmod +./@MODULEDIR@/nandemulator base-kernel-modules kmod +./@MODULEDIR@/nandemulator/nandemulator.kmod base-kernel-modules kmod +./@MODULEDIR@/nfs base-kernel-modules kmod +./@MODULEDIR@/nfs/nfs.kmod base-kernel-modules kmod +./@MODULEDIR@/nfsserver base-kernel-modules kmod +./@MODULEDIR@/nfsserver/nfsserver.kmod base-kernel-modules kmod +./@MODULEDIR@/nilfs base-kernel-modules kmod +./@MODULEDIR@/nilfs/nilfs.kmod base-kernel-modules kmod +./@MODULEDIR@/npf base-kernel-modules kmod +./@MODULEDIR@/npf/npf.kmod base-kernel-modules kmod +./@MODULEDIR@/npf_alg_icmp base-kernel-modules kmod +./@MODULEDIR@/npf_alg_icmp/npf_alg_icmp.kmod base-kernel-modules kmod +./@MODULEDIR@/npf_ext_log base-kernel-modules kmod +./@MODULEDIR@/npf_ext_log/npf_ext_log.kmod base-kernel-modules kmod +./@MODULEDIR@/npf_ext_normalise base-kernel-modules kmod +./@MODULEDIR@/npf_ext_normalise/npf_ext_normalise.kmod base-kernel-modules kmod +./@MODULEDIR@/ntfs base-kernel-modules kmod +./@MODULEDIR@/ntfs/ntfs.kmod base-kernel-modules kmod +./@MODULEDIR@/null base-kernel-modules kmod +./@MODULEDIR@/null/null.kmod base-kernel-modules kmod +./@MODULEDIR@/onewire base-kernel-modules kmod +./@MODULEDIR@/onewire/onewire.kmod base-kernel-modules kmod +./@MODULEDIR@/overlay base-kernel-modules kmod +./@MODULEDIR@/overlay/overlay.kmod base-kernel-modules kmod +./@MODULEDIR@/pciverbose base-kernel-modules kmod +./@MODULEDIR@/pciverbose/pciverbose.kmod base-kernel-modules kmod +./@MODULEDIR@/pf base-kernel-modules kmod +./@MODULEDIR@/pf/pf.kmod base-kernel-modules kmod +./@MODULEDIR@/portal base-obsolete obsolete +./@MODULEDIR@/portal/portal.kmod base-obsolete obsolete +./@MODULEDIR@/ppp_bsdcomp base-kernel-modules kmod +./@MODULEDIR@/ppp_bsdcomp/ppp_bsdcomp.kmod base-kernel-modules kmod +./@MODULEDIR@/ppp_deflate base-kernel-modules kmod +./@MODULEDIR@/ppp_deflate/ppp_deflate.kmod base-kernel-modules kmod +./@MODULEDIR@/procfs base-kernel-modules kmod +./@MODULEDIR@/procfs/procfs.kmod base-kernel-modules kmod +./@MODULEDIR@/ptyfs base-kernel-modules kmod +./@MODULEDIR@/ptyfs/ptyfs.kmod base-kernel-modules kmod +./@MODULEDIR@/puffs base-kernel-modules kmod +./@MODULEDIR@/puffs/puffs.kmod base-kernel-modules kmod +./@MODULEDIR@/putter base-kernel-modules kmod +./@MODULEDIR@/putter/putter.kmod base-kernel-modules kmod +./@MODULEDIR@/scsiverbose base-kernel-modules kmod +./@MODULEDIR@/scsiverbose/scsiverbose.kmod base-kernel-modules kmod +./@MODULEDIR@/sdt base-kernel-modules kmod,dtrace +./@MODULEDIR@/sdt/sdt.kmod base-kernel-modules kmod,dtrace +./@MODULEDIR@/sdtemp base-kernel-modules kmod +./@MODULEDIR@/sdtemp/sdtemp.kmod base-kernel-modules kmod +./@MODULEDIR@/secmodel_bsd44 base-kernel-modules kmod +./@MODULEDIR@/secmodel_bsd44/secmodel_bsd44.kmod base-kernel-modules kmod +./@MODULEDIR@/secmodel_extensions base-kernel-modules kmod +./@MODULEDIR@/secmodel_extensions/secmodel_extensions.kmod base-kernel-modules kmod +./@MODULEDIR@/secmodel_overlay base-kernel-modules kmod +./@MODULEDIR@/secmodel_overlay/secmodel_overlay.kmod base-kernel-modules kmod +./@MODULEDIR@/securelevel base-kernel-modules kmod +./@MODULEDIR@/securelevel/securelevel.kmod base-kernel-modules kmod +./@MODULEDIR@/smbfs base-kernel-modules kmod +./@MODULEDIR@/smbfs/smbfs.kmod base-kernel-modules kmod +./@MODULEDIR@/solaris base-kernel-modules kmod,solaris +./@MODULEDIR@/solaris/solaris.kmod base-kernel-modules kmod,solaris +./@MODULEDIR@/spdmem base-kernel-modules kmod +./@MODULEDIR@/spdmem/spdmem.kmod base-kernel-modules kmod +./@MODULEDIR@/suser base-kernel-modules kmod +./@MODULEDIR@/suser/suser.kmod base-kernel-modules kmod +./@MODULEDIR@/swsensor base-kernel-modules kmod +./@MODULEDIR@/swsensor/swsensor.kmod base-kernel-modules kmod +./@MODULEDIR@/sysvbfs base-kernel-modules kmod +./@MODULEDIR@/sysvbfs/sysvbfs.kmod base-kernel-modules kmod +./@MODULEDIR@/tmpfs base-kernel-modules kmod +./@MODULEDIR@/tmpfs/tmpfs.kmod base-kernel-modules kmod +./@MODULEDIR@/tprof base-kernel-modules kmod +./@MODULEDIR@/tprof/tprof.kmod base-kernel-modules kmod +./@MODULEDIR@/uatp base-kernel-modules kmod +./@MODULEDIR@/uatp/uatp.kmod base-kernel-modules kmod +./@MODULEDIR@/udf base-kernel-modules kmod +./@MODULEDIR@/udf/udf.kmod base-kernel-modules kmod +./@MODULEDIR@/umap base-kernel-modules kmod +./@MODULEDIR@/umap/umap.kmod base-kernel-modules kmod +./@MODULEDIR@/union base-kernel-modules kmod +./@MODULEDIR@/union/union.kmod base-kernel-modules kmod +./@MODULEDIR@/usbverbose base-kernel-modules kmod +./@MODULEDIR@/usbverbose/usbverbose.kmod base-kernel-modules kmod +./@MODULEDIR@/vcoda base-kernel-modules kmod +./@MODULEDIR@/vcoda/vcoda.kmod base-kernel-modules kmod +./@MODULEDIR@/v7fs base-kernel-modules kmod +./@MODULEDIR@/v7fs/v7fs.kmod base-kernel-modules kmod +./@MODULEDIR@/vnd base-kernel-modules kmod +./@MODULEDIR@/vnd/vnd.kmod base-kernel-modules kmod +./@MODULEDIR@/zfs base-kernel-modules kmod,zfs +./@MODULEDIR@/zfs/zfs.kmod base-kernel-modules kmod,zfs diff --git a/distrib/sets/lists/tests/mi b/distrib/sets/lists/tests/mi new file mode 100644 index 000000000..aeeb9d219 --- /dev/null +++ b/distrib/sets/lists/tests/mi @@ -0,0 +1,3590 @@ +# $NetBSD: mi,v 1.496 2012/09/27 00:38:57 joerg Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.tests tests-sys-root +./usr/libdata/debug/usr/tests tests-base-debug +./usr/libdata/debug/usr/tests/atf tests-atf-debug +./usr/libdata/debug/usr/tests/atf/atf-c tests-atf-debug +./usr/libdata/debug/usr/tests/atf/atf-c/atf_c_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/build_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/check_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/config_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail tests-atf-debug +./usr/libdata/debug/usr/tests/atf/atf-c/detail/dynstr_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/env_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/fs_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/list_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/map_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/process_helpers.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/process_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/sanity_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/test_helpers_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/text_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/detail/user_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/dynstr_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/env_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/error_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/fs_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/h_check.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/h_processes.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/list_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/macros_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/map_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/process_helpers.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/process_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/sanity_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_atf_c.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_build.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_check.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_config.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_dynstr.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_env.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_error.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_expand.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_fs.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_h_lib.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_io.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_list.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_macros.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_map.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_process.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_sanity.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_signals.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_tc.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_tcr.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_text.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_tp.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_ui.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/t_user.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/tc_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/test_helpers_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/text_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/tp_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c/user_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c/utils_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++ tests-atf-debug +./usr/libdata/debug/usr/tests/atf/atf-c++/application_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/atf_c++_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/build_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/check_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/config_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail tests-atf-debug +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/application_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/env_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/exceptions_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/expand_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/fs_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/parser_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/process_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/sanity_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/text_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/detail/ui_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/env_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/exceptions_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/expand_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/fs_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/io_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/macros_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/parser_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/process_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/sanity_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/signals_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/tests_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/text_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/ui_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/user_test.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/utils_test.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/atf-c++/t_application.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_atf_c++.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_atffile.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_build.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_check.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_config.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_env.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_exceptions.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_expand.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_formats.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_fs.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_io.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_macros.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_parser.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_process.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_sanity.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_signals.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_tests.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_text.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_ui.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_user.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-c++/t_utils.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-compile tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-compile/h_mode.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-report tests-atf-tests +./usr/libdata/debug/usr/tests/atf/atf-report/fail_helper.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-report/h_fail.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-report/h_misc.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-report/h_pass.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-report/h_xfail.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-report/misc_helpers.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-report/pass_helper.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-report/reader_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run tests-atf-tests +./usr/libdata/debug/usr/tests/atf/atf-run/atffile_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/bad_metadata_helper.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/config_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/expect_helpers.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/fs_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/h_bad_metadata.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/h_fail.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/h_misc.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/h_pass.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/h_several_tcs.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/h_zero_tcs.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/io_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/misc_helpers.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/pass_helper.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/requirements_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/several_tcs_helper.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/signals_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/t_config.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/t_requirements.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/t_test_program.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/atf-run/test_program_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/user_test.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/atf-run/zero_tcs_helper.debug tests-atf-tests debug,atf +./usr/libdata/debug/usr/tests/atf/formats tests-atf-debug +./usr/libdata/debug/usr/tests/atf/formats/h_parser.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/formats/t_writers.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/test_programs tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/test_programs/h_c.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/test_programs/h_cpp.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/test-programs tests-atf-debug +./usr/libdata/debug/usr/tests/atf/test-programs/c_helpers.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/test-programs/cpp_helpers.debug tests-atf-debug debug,atf +./usr/libdata/debug/usr/tests/atf/tools tests-atf-debug obsolete +./usr/libdata/debug/usr/tests/atf/tools/h_fail.debug tests-atf-debug obsolete +./usr/libdata/debug/usr/tests/atf/tools/h_misc.debug tests-atf-debug obsolete +./usr/libdata/debug/usr/tests/atf/tools/h_mode.debug tests-atf-debug obsolete +./usr/libdata/debug/usr/tests/atf/tools/h_pass.debug tests-atf-debug obsolete +./usr/libdata/debug/usr/tests/atf/units tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_config.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_env.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_expand.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_fs.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_io.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_parser.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_sanity.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_signals.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_tests.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_text.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_user.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/atf/units/t_utils.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/bin tests-bin-debug +./usr/libdata/debug/usr/tests/bin/df tests-bin-debug +./usr/libdata/debug/usr/tests/bin/df/h_df.debug tests-bin-debug debug +./usr/libdata/debug/usr/tests/crypto tests-crypto-debug +./usr/libdata/debug/usr/tests/crypto/libcrypto tests-crypto-debug +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_bftest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_bntest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_casttest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_conftest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_destest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_dhtest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_divtest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_dsatest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_ecdhtest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_ecdsatest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_ectest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_enginetest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_evp_test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_exptest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_ideatest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_hmactest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_lhashtest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_md2test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_md4test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_md5test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_mdc2test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_randtest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_rc2test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_rc4test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_rc5test.debug tests-crypto-debug debug,crypto_rc5,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_ripemdtest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_rsatest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_sha1test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_shatest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_srptest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_threadstest.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/crypto/libcrypto/h_x509v3test.debug tests-crypto-debug debug,crypto +./usr/libdata/debug/usr/tests/fs tests-fs-debug +./usr/libdata/debug/usr/tests/dev tests-fs-debug +./usr/libdata/debug/usr/tests/dev/audio tests-fs-debug +./usr/libdata/debug/usr/tests/dev/audio/h_pad.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/dev/cgd tests-fs-debug +./usr/libdata/debug/usr/tests/dev/cgd/h_img2cgd tests-obsolete obsolete +./usr/libdata/debug/usr/tests/dev/cgd/h_img2cgd/h_img2cgd.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/dev/md tests-fs-debug +./usr/libdata/debug/usr/tests/dev/md/h_mdserv.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/dev/scsipi tests-fs-debug +./usr/libdata/debug/usr/tests/dev/scsipi/t_cd.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/dev/sysmon tests-fs-debug +./usr/libdata/debug/usr/tests/dev/sysmon/t_swwdog.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/ffs/h_ffs_server.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs/h_quota2_server.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/fs/ffs/h_quota2_tests.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs/t_fifos.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs/t_mount.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs/t_quota2_1.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs/t_quota2_remount.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs/t_renamerace.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/fs/ffs/t_snapshot.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs/t_snapshot_log.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ffs/t_snapshot_v2.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/fifofs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/fifofs/t_fifo.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/hfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/hfs/t_pathconvert.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/kernfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/kernfs/t_basic.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/lfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/lfs/t_pr.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/msdosfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/msdosfs/t_snapshot.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/nfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/nfs/t_mountd.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/nfs/nfsservice tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/nfs/nfsservice/rumpnfsd.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/nullfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/nullfs/t_basic.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/psshfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/psshfs/h_have_puffs.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ptyfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/ptyfs/t_ptyfs.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/ptyfs/t_nullpts.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/puffs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/puffs/h_have_puffs.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/fs/puffs/t_basic.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/puffs/t_fuzz.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/puffs/t_io.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/puffs/h_dtfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/puffs/h_dtfs/h_dtfs.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/tmpfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/tmpfs/h_tools.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/tmpfs/t_renamerace.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/umapfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/umapfs/t_basic.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/union tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/union/t_basic.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/fs/union/t_pr.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs tests-fs-debug,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_full.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_io.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_renamerace.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_rmdirrace.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_ro.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_union.debug tests-obsolete debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_unpriv.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_vfsops.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/fs/vfs/t_vnops.debug tests-fs-debug debug,atf,rump +./usr/libdata/debug/usr/tests/include tests-include-tests +./usr/libdata/debug/usr/tests/include/machine tests-include-tests +./usr/libdata/debug/usr/tests/include/machine/t_bswap.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/sys tests-include-tests +./usr/libdata/debug/usr/tests/include/sys/t_bitops.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/sys/t_bootblock.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/sys/t_cdefs.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/sys/t_socket.debug tests-include-tests debug,atf,rump +./usr/libdata/debug/usr/tests/include/sys/t_tree.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/sys/t_types.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_bitstring.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_bswap.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/include/t_errno.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_glob.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_inttypes.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_limits.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_netdb.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_paths.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_stdint.debug tests-include-tests debug,atf +./usr/libdata/debug/usr/tests/include/t_types.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/ipf tests-ipf-tests +./usr/libdata/debug/usr/tests/kernel tests-kernel-tests +./usr/libdata/debug/usr/tests/kernel/h_ps_strings1.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/h_ps_strings2.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue tests-kernel-tests +./usr/libdata/debug/usr/tests/kernel/kqueue/read tests-kernel-tests +./usr/libdata/debug/usr/tests/kernel/kqueue/read/t_fifo.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/read/t_file.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/read/t_file2.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/read/t_pipe.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/read/t_ttypty.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/t_ioctl.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/t_proc1.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/t_proc2.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/t_sig.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/write tests-kernel-tests +./usr/libdata/debug/usr/tests/kernel/kqueue/write/t_fifo.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/write/t_pipe.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/kqueue/write/t_ttypty.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/posix_spawn tests-kernel-tests obsolete +./usr/libdata/debug/usr/tests/kernel/posix_spawn/t_spawn.debug tests-kernel-tests obsolete +./usr/libdata/debug/usr/tests/kernel/posix_spawn/t_spawnattr.debug tests-kernel-tests obsolete +./usr/libdata/debug/usr/tests/kernel/posix_spawn/t_fileactions.debug tests-kernel-tests obsolete +./usr/libdata/debug/usr/tests/kernel/posix_spawn/h_spawn.debug tests-kernel-tests obsolete +./usr/libdata/debug/usr/tests/kernel/posix_spawn/h_fileactions.debug tests-kernel-tests obsolete +./usr/libdata/debug/usr/tests/kernel/posix_spawn/h_spawnattr.debug tests-kernel-tests obsolete +./usr/libdata/debug/usr/tests/kernel/t_extattrctl.debug tests-kernel-tests debug,atf,rump +./usr/libdata/debug/usr/tests/kernel/t_extent.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/t_filedesc.debug tests-kernel-tests debug,atf,rump +./usr/libdata/debug/usr/tests/kernel/t_lock.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/t_lwpctl.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_mkdir.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_pipe.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_poll3w.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_pollts.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_posix_fadvise.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_pty.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/t_rnd.debug tests-kernel-tests debug,atf,rump +./usr/libdata/debug/usr/tests/kernel/t_sigaction.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_subr_prf.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/kernel/t_time.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_ucontext.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/t_writev.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/kernel/tty tests-kernel-tests +./usr/libdata/debug/usr/tests/kernel/tty/t_pr.debug tests-kernel-tests debug,atf,rump +./usr/libdata/debug/usr/tests/lib tests-lib-debug +./usr/libdata/debug/usr/tests/lib/csu tests-lib-debug +./usr/libdata/debug/usr/tests/lib/csu/h_initfini.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/csu/h_initfini1.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/csu/h_initfini2.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/csu/h_initfini3.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libbluetooth tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libbluetooth/t_bluetooth.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libbluetooth/t_sdp_data.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libbluetooth/t_sdp_get.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libbluetooth/t_sdp_match.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libbluetooth/t_sdp_put.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libbluetooth/t_sdp_set.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/db tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/db/h_db.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/gen/posix_spawn tests-kernel-tests +./usr/libdata/debug/usr/tests/lib/libc/gen/posix_spawn/t_spawn.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/posix_spawn/t_spawnattr.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/posix_spawn/t_fileactions.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/posix_spawn/h_spawn.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/posix_spawn/h_fileactions.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/posix_spawn/h_spawnattr.debug tests-kernel-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_alarm.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_assert.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_basedirname.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_closefrom.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_cpuset.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_dir.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_fmtcheck.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_fnmatch.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_fpclassify.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_fpsetmask.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_fpsetround.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_ftok.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_getcwd.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_getgrent.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_glob.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_glob_star.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/gen/t_humanize_number.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_isnan.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_ldexp.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/gen/t_nice.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_pause.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_raise.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_randomid.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_realpath.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_rbstress.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/gen/t_setdomainname.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_sethostname.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_siginfo.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_syslog.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_syslog_pthread.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/gen/t_time.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_ttyname.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/gen/t_vis.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/getaddrinfo tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/getaddrinfo/data tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/getaddrinfo/h_gai tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/h_atexit.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/h_nsd_recurse.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/h_protoent.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/h_servent.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/hash tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/hash/h_hash.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/hash/t_sha2.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/ieeefp tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/ieeefp/t_except.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/ieeefp/t_nan_inf.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/ieeefp/t_round.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/ieeefp/t_subnormal.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/locale tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/locale/t_ctype1.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/locale/t_ctype2.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/locale/t_mbrtowc.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/locale/t_mbstowcs.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/locale/t_mbtowc.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/locale/t_wcscspn.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/locale/t_wcspbrk.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/locale/t_wcsspn.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/locale/t_wcstod.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/locale/t_wctomb.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/inet tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/inet/t_inet_network.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/net tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/net/getaddrinfo tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/net/getaddrinfo/h_gai.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/net/h_nsd_recurse.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/net/h_protoent.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/net/h_servent.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/net/t_ether_aton.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/net/t_getprotoent.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/regex tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/regex/t_exhaust.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/regex/h_regex.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/regex/h_regex_att.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/regex/t_regex_att.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/rpc tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/rpc/t_xdr.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/setjmp tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/setjmp/t_threadjmp.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/setjmp/t_setjmp.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/ssp tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_fgets.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_getcwd.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_gets.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_memcpy.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_memmove.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_memset.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_raw.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_read.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_readlink.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_snprintf.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_sprintf.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_strcat.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_strcpy.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_strncat.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_strncpy.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_vsnprintf.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/ssp/h_vsprintf.debug tests-lib-debug debug,atf,ssp +./usr/libdata/debug/usr/tests/lib/libc/stdio tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_clearerr.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_fflush.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_fmemopen.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_fopen.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_fputc.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_format.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_popen.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_printf.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdio/t_scanf.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/stdlib/h_atexit.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/h_getopt.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/h_getopt_long.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_abs.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_atoi.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_div.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_environment.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_environment_pth.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_exit.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_getenv.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_getenv_thread.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_hsearch.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_mi_vector_hash.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_posix_memalign.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_random.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_strtod.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_strtol.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_strtox.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/stdlib/t_system.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/string/t_memchr.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_memcpy.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_memmem.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_memset.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_popcount.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strcat.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strchr.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strcmp.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strcpy.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strcspn.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strerror.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_stresep.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_string.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/string/t_strlen.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strpbrk.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strrchr.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_strspn.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/string/t_swab.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/sys/t_access.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_cerror.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/sys/t_chroot.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_clock_gettime.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_clone.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_connect.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_context.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/sys/t_dup.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_fsync.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_getcontext.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_getgroups.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_getitimer.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_getlogin.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_getpid.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_getrusage.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_getsid.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_gettimeofday.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_issetugid.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_kevent.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_kill.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_link.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_listen.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_lwp_ctl.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_lwp_create.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_mincore.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_mkdir.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_mkfifo.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_mknod.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_mlock.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_mmap.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_mprotect.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_msgctl.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_msgget.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_msgrcv.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_msgsnd.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_msync.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_nanosleep.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_pipe.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_pipe2.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_poll.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_posix_fadvise.debug tests-lib-debug debug,atf,rump +./usr/libdata/debug/usr/tests/lib/libc/sys/t_recvmmsg.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_revoke.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_select.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_setrlimit.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_setuid.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_sigaction.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_sigqueue.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_socketpair.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_stat.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_swapcontext.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_timer_create.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_truncate.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_ucontext.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_umask.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_unlink.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/sys/t_write.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/termios tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/termios/t_tcsetpgrp.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/tls tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/tls/t_tls_static.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/ttyio tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/ttyio/t_ptm.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/ttyio/t_ttyio.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/t_cerror.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/t_clone.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/t_context.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/t_convfp.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/t_cdb.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/t_gdtoa.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/t_hsearch.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/t_inet.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/t_mktime.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/t_ptm.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/t_randomid.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/t_strptime.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libc/time tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libc/time/t_mktime.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/time/t_strptime.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libcrypt tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libcrypt/t_crypt.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libcurses tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libcurses/director.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libcurses/slave.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libdes tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libdes/t_des.debug tests-lib-debug debug,atf,crypto +./usr/libdata/debug/usr/tests/lib/semaphore tests-lib-debug +./usr/libdata/debug/usr/tests/lib/semaphore/pthread tests-lib-debug +./usr/libdata/debug/usr/tests/lib/semaphore/pthread/t_sem_pth.debug tests-lib-debug debug,atf,rump +./usr/libdata/debug/usr/tests/lib/libevent tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libevent/h_event.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libexecinfo tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libexecinfo/t_backtrace.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libm/t_acos.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_asin.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_atan.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_cbrt.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_ceil.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_cos.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_cosh.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_erf.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_exp.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_floor.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libm/t_infinity.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_ldexp.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_log.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_libm.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libm/t_pow.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_round.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_scalbn.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_sin.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_sinh.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_sqrt.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_tan.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libm/t_tanh.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libobjc tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libobjc/t_threads.debug tests-lib-debug debug,atf,gcccmds +./usr/libdata/debug/usr/tests/lib/libposix tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libposix/bsd tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libposix/bsd/t_rename.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libposix/posix1 tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libposix/posix1/t_rename.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libposix/posix2 tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libposix/posix2/t_rename.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libppath tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libppath/t_ppath.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libprop tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libprop/t_basic.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libpthread/h_atexit.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/h_cancel.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/h_exit.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/h_resolv.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_barrier.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_cond.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_detach.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_equal.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_fork.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_fpu.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_join.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_kill.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_mutex.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_name.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_once.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_preempt.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_rwlock.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_sem.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_sigmask.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_sigsuspend.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_siglongjmp.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_sleep.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/libpthread/t_status.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libpthread/t_swapcontext.debug tests-lib-tests debug,atf +./usr/libdata/debug/usr/tests/lib/librt tests-lib-debug +./usr/libdata/debug/usr/tests/lib/librt/t_sched.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/librt/t_sem.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/librumpclient tests-lib-debug +./usr/libdata/debug/usr/tests/lib/librumpclient/h_exec.debug tests-lib-debug debug,atf,rump +./usr/libdata/debug/usr/tests/lib/librumpclient/h_execthr.debug tests-lib-debug debug,atf,rump +./usr/libdata/debug/usr/tests/lib/librumpclient/h_ution.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/librumpclient/t_fd.debug tests-lib-debug debug,atf,rump +./usr/libdata/debug/usr/tests/lib/librumphijack tests-lib-debug +./usr/libdata/debug/usr/tests/lib/librumphijack/h_client.debug tests-lib-debug debug,atf,rump +./usr/libdata/debug/usr/tests/lib/librumphijack/h_cwd.debug tests-lib-debug debug,atf,rump +./usr/libdata/debug/usr/tests/lib/librumphijack/h_netget.debug tests-lib-debug debug,atf,rump +./usr/libdata/debug/usr/tests/lib/libskey tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libskey/t_algorithms.debug tests-lib-debug debug,atf,skey +./usr/libdata/debug/usr/tests/lib/libtre tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libtre/h_regex_att.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/lib/libtre/t_exhaust.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libtre/t_regex_att.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libutil tests-lib-debug +./usr/libdata/debug/usr/tests/lib/libutil/t_efun.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libutil/t_parsedate.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libutil/t_pidfile.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libutil/t_snprintb.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libutil/t_sockaddr_snprintf.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/libexec tests-lib-debug +./usr/libdata/debug/usr/tests/libexec/ld.elf_so tests-libexec-debug +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_df_1_noopen1.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_df_1_noopen2.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_dl_symver_v0.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_dl_symver_v1.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_dl_symver_v2.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_helper_symver_dso0 tests-libexec-debug +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_helper_symver_dso1 tests-libexec-debug +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_helper_symver_dso2 tests-libexec-debug +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_locking.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/t_dlerror-cleared.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/t_dlerror-false.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/t_dlinfo.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/t_dlvsym.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/modules tests-sys-debug +./usr/libdata/debug/usr/tests/net tests-net-debug +./usr/libdata/debug/usr/tests/net/bpf tests-net-debug +./usr/libdata/debug/usr/tests/net/bpf/t_bpf.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/bpf/t_div-by-zero.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/bpfilter tests-net-debug +./usr/libdata/debug/usr/tests/net/bpfilter/t_bpfilter.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/carp tests-net-debug +./usr/libdata/debug/usr/tests/net/carp/t_basic.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/fdpass tests-net-debug +./usr/libdata/debug/usr/tests/net/fdpass/fdpass32.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/fdpass/fdpass64.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/icmp tests-net-debug +./usr/libdata/debug/usr/tests/net/icmp/t_forward.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/icmp/t_ping.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/if tests-net-debug +./usr/libdata/debug/usr/tests/net/if/t_compat.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/if_loop tests-net-debug +./usr/libdata/debug/usr/tests/net/if_loop/t_pr.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/net tests-net-debug +./usr/libdata/debug/usr/tests/net/net/t_raw.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/net/t_unix.debug tests-net-debug debug,atf,rump +./usr/libdata/debug/usr/tests/net/sys tests-net-debug +./usr/libdata/debug/usr/tests/net/sys/t_connect.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/net/sys/t_listen.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/net/sys/t_rfc6056.debug tests-net-debug debug,atf +./usr/libdata/debug/usr/tests/net/sys/t_socketpair.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/rump tests-syscall-debug,rump +./usr/libdata/debug/usr/tests/rump/modautoload tests-syscall-debug,rump +./usr/libdata/debug/usr/tests/rump/modautoload/t_modautoload.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern tests-syscall-debug,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_copy.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_kern.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_lwproc.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_modcmd.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_modlinkset.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_signals.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_threads.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_tsleep.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/t_vm.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/h_client tests-syscall-debug,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/h_client/h_reboot.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/rump/rumpkern/h_client/h_forkcli.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/h_client/h_reconcli.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/h_client/h_sigcli.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/h_client/h_simplecli.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/h_client/h_stresscli.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/h_server tests-syscall-debug,rump +./usr/libdata/debug/usr/tests/rump/rumpkern/h_server/h_simpleserver.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpvfs tests-syscall-debug,rump +./usr/libdata/debug/usr/tests/rump/rumpvfs/t_basic.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpvfs/t_etfs.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/rump/rumpvfs/t_p2kifs.debug tests-syscall-debug debug,atf,rump +./usr/libdata/debug/usr/tests/sbin tests-sbin-tests +./usr/libdata/debug/usr/tests/sbin/resize_ffs tests-sbin-tests +./usr/libdata/debug/usr/tests/syscall tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_access.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_chroot.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_cmsg.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_dup.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_fsync.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_getgroups.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_getlogin.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_getpid.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_getrusage.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_getsid.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_gettimeofday.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_issetugid.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_itimer.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_kill.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_link.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_mincore.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_mkfifo.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_mknod.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_mmap.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_mprotect.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_msync.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_nanosleep.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_poll.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_pollts.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_pselect.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_recvmmsg.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_revoke.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_setrlimit.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_setuid.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_stat.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_timer.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_truncate.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_umask.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/syscall/t_unlink.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/usr.bin tests-usr.bin-debug +./usr/libdata/debug/usr/tests/usr.bin/id tests-usr.bin-debug +./usr/libdata/debug/usr/tests/usr.bin/id/h_id.debug tests-usr.bin-debug debug +./usr/libdata/debug/usr/tests/usr.sbin tests-usr.sbin-debug +./usr/libdata/debug/usr/tests/util tests-obsolete obsolete +./usr/libdata/debug/usr/tests/util/df tests-obsolete obsolete +./usr/libdata/debug/usr/tests/util/df/h_df.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/util/id tests-obsolete obsolete +./usr/libdata/debug/usr/tests/util/id/h_id.debug tests-obsolete obsolete +./usr/libdata/debug/usr/tests/util/systrace tests-obsolete obsolete +./usr/libdata/debug/usr/tests/util/systrace/h_have_systrace.debug tests-obsolete obsolete +./usr/tests tests-base-tests +./usr/tests/Atffile tests-base-tests +./usr/tests/atf tests-atf-tests +./usr/tests/atf/Atffile tests-atf-tests atf +./usr/tests/atf/atf-c tests-atf-tests +./usr/tests/atf/atf-c/Atffile tests-atf-tests atf +./usr/tests/atf/atf-c/atf_c_test tests-atf-tests atf +./usr/tests/atf/atf-c/build_test tests-atf-tests atf +./usr/tests/atf/atf-c/check_test tests-atf-tests atf +./usr/tests/atf/atf-c/config_test tests-atf-tests atf +./usr/tests/atf/atf-c/d_include_atf_c_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_build_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_check_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_config_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_dynstr_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_env_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_error_fwd_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_error_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_expand_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_fs_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_io_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_list_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_macros_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_map_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_object_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_process_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_sanity_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_signals_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_tc_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_tcr_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_text_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_tp_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_ui_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_include_user_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/d_use_macros_h.c tests-obsolete obsolete +./usr/tests/atf/atf-c/detail tests-atf-tests +./usr/tests/atf/atf-c/detail/Atffile tests-atf-tests atf +./usr/tests/atf/atf-c/detail/dynstr_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/env_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/fs_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/list_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/map_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/process_helpers tests-atf-tests atf +./usr/tests/atf/atf-c/detail/process_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/sanity_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/test_helpers_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/text_test tests-atf-tests atf +./usr/tests/atf/atf-c/detail/user_test tests-atf-tests atf +./usr/tests/atf/atf-c/dynstr_test tests-obsolete obsolete +./usr/tests/atf/atf-c/env_test tests-obsolete obsolete +./usr/tests/atf/atf-c/error_test tests-atf-tests atf +./usr/tests/atf/atf-c/fs_test tests-obsolete obsolete +./usr/tests/atf/atf-c/h_check tests-obsolete obsolete +./usr/tests/atf/atf-c/h_processes tests-obsolete obsolete +./usr/tests/atf/atf-c/list_test tests-obsolete obsolete +./usr/tests/atf/atf-c/macros_h_test.c tests-atf-tests atf +./usr/tests/atf/atf-c/macros_test tests-atf-tests atf +./usr/tests/atf/atf-c/map_test tests-obsolete obsolete +./usr/tests/atf/atf-c/pkg_config_test tests-atf-tests atf +./usr/tests/atf/atf-c/process_helpers tests-obsolete obsolete +./usr/tests/atf/atf-c/process_test tests-obsolete obsolete +./usr/tests/atf/atf-c/sanity_test tests-obsolete obsolete +./usr/tests/atf/atf-c/t_atf_c tests-obsolete obsolete +./usr/tests/atf/atf-c/t_build tests-obsolete obsolete +./usr/tests/atf/atf-c/t_check tests-obsolete obsolete +./usr/tests/atf/atf-c/t_config tests-obsolete obsolete +./usr/tests/atf/atf-c/t_dynstr tests-obsolete obsolete +./usr/tests/atf/atf-c/t_env tests-obsolete obsolete +./usr/tests/atf/atf-c/t_error tests-obsolete obsolete +./usr/tests/atf/atf-c/t_expand tests-obsolete obsolete +./usr/tests/atf/atf-c/t_fs tests-obsolete obsolete +./usr/tests/atf/atf-c/t_h_lib tests-obsolete obsolete +./usr/tests/atf/atf-c/t_io tests-obsolete obsolete +./usr/tests/atf/atf-c/t_list tests-obsolete obsolete +./usr/tests/atf/atf-c/t_macros tests-obsolete obsolete +./usr/tests/atf/atf-c/t_map tests-obsolete obsolete +./usr/tests/atf/atf-c/t_pkg_config tests-obsolete obsolete +./usr/tests/atf/atf-c/t_process tests-obsolete obsolete +./usr/tests/atf/atf-c/t_sanity tests-obsolete obsolete +./usr/tests/atf/atf-c/t_signals tests-obsolete obsolete +./usr/tests/atf/atf-c/t_tc tests-obsolete obsolete +./usr/tests/atf/atf-c/t_tcr tests-obsolete obsolete +./usr/tests/atf/atf-c/t_text tests-obsolete obsolete +./usr/tests/atf/atf-c/t_tp tests-obsolete obsolete +./usr/tests/atf/atf-c/t_ui tests-obsolete obsolete +./usr/tests/atf/atf-c/t_user tests-obsolete obsolete +./usr/tests/atf/atf-c/tc_test tests-atf-tests atf +./usr/tests/atf/atf-c/test_helpers_test tests-obsolete obsolete +./usr/tests/atf/atf-c/text_test tests-obsolete obsolete +./usr/tests/atf/atf-c/tp_test tests-atf-tests atf +./usr/tests/atf/atf-c/unused_test.c tests-atf-tests atf +./usr/tests/atf/atf-c/user_test tests-obsolete obsolete +./usr/tests/atf/atf-c/utils_test tests-atf-tests atf +./usr/tests/atf/atf-c++ tests-atf-tests +./usr/tests/atf/atf-c++/Atffile tests-atf-tests atf +./usr/tests/atf/atf-c++/application_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/atf_c++_test tests-atf-tests atf +./usr/tests/atf/atf-c++/build_test tests-atf-tests atf +./usr/tests/atf/atf-c++/check_test tests-atf-tests atf +./usr/tests/atf/atf-c++/config_test tests-atf-tests atf +./usr/tests/atf/atf-c++/d_include_application_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_atf_c++_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_atffile_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_build_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_check_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_config_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_env_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_exceptions_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_expand_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_formats_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_fs_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_io_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_macros_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_parser_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_process_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_sanity_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_signals_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_tests_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_text_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_ui_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_user_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_include_utils_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/d_use_macros_hpp.cpp tests-obsolete obsolete +./usr/tests/atf/atf-c++/detail tests-atf-tests +./usr/tests/atf/atf-c++/detail/Atffile tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/application_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/env_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/exceptions_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/expand_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/fs_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/parser_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/process_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/sanity_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/text_test tests-atf-tests atf +./usr/tests/atf/atf-c++/detail/ui_test tests-atf-tests atf +./usr/tests/atf/atf-c++/env_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/exceptions_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/expand_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/fs_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/io_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/macros_hpp_test.cpp tests-atf-tests atf +./usr/tests/atf/atf-c++/macros_test tests-atf-tests atf +./usr/tests/atf/atf-c++/parser_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/pkg_config_test tests-atf-tests atf +./usr/tests/atf/atf-c++/process_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/sanity_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/signals_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_application tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_atf_c++ tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_atffile tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_build tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_check tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_config tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_env tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_exceptions tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_expand tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_formats tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_fs tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_io tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_macros tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_parser tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_pkg_config tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_process tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_sanity tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_signals tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_tests tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_text tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_ui tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_user tests-obsolete obsolete +./usr/tests/atf/atf-c++/t_utils tests-obsolete obsolete +./usr/tests/atf/atf-c++/tests_test tests-atf-tests atf +./usr/tests/atf/atf-c++/text_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/ui_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/unused_test.cpp tests-atf-tests atf +./usr/tests/atf/atf-c++/user_test tests-obsolete obsolete +./usr/tests/atf/atf-c++/utils_test tests-atf-tests atf +./usr/tests/atf/atf-check tests-obsolete obsolete +./usr/tests/atf/atf-check/Atffile tests-obsolete obsolete +./usr/tests/atf/atf-check/integration_test tests-obsolete obsolete +./usr/tests/atf/atf-check/t_integration tests-obsolete obsolete +./usr/tests/atf/atf-cleanup tests-obsolete obsolete +./usr/tests/atf/atf-cleanup/Atffile tests-obsolete obsolete +./usr/tests/atf/atf-cleanup/t_integration tests-obsolete obsolete +./usr/tests/atf/atf-compile tests-obsolete obsolete +./usr/tests/atf/atf-compile/Atffile tests-obsolete obsolete +./usr/tests/atf/atf-compile/h_mode tests-obsolete obsolete +./usr/tests/atf/atf-compile/t_integration tests-obsolete obsolete +./usr/tests/atf/atf-config tests-atf-tests +./usr/tests/atf/atf-config/Atffile tests-atf-tests atf +./usr/tests/atf/atf-config/integration_test tests-atf-tests atf +./usr/tests/atf/atf-config/t_integration tests-obsolete obsolete +./usr/tests/atf/atf-report tests-atf-tests +./usr/tests/atf/atf-report/Atffile tests-atf-tests atf +./usr/tests/atf/atf-report/fail_helper tests-atf-tests atf +./usr/tests/atf/atf-report/h_fail tests-obsolete obsolete +./usr/tests/atf/atf-report/h_misc tests-obsolete obsolete +./usr/tests/atf/atf-report/h_pass tests-obsolete obsolete +./usr/tests/atf/atf-report/h_xfail tests-obsolete obsolete +./usr/tests/atf/atf-report/integration_test tests-atf-tests atf +./usr/tests/atf/atf-report/misc_helpers tests-atf-tests atf +./usr/tests/atf/atf-report/pass_helper tests-atf-tests atf +./usr/tests/atf/atf-report/reader_test tests-atf-tests atf +./usr/tests/atf/atf-report/t_integration tests-obsolete obsolete +./usr/tests/atf/atf-run tests-atf-tests +./usr/tests/atf/atf-run/Atffile tests-atf-tests atf +./usr/tests/atf/atf-run/atffile_test tests-atf-tests atf +./usr/tests/atf/atf-run/bad_metadata_helper tests-atf-tests atf +./usr/tests/atf/atf-run/config_test tests-atf-tests atf +./usr/tests/atf/atf-run/expect_helpers tests-atf-tests atf +./usr/tests/atf/atf-run/fs_test tests-atf-tests atf +./usr/tests/atf/atf-run/io_test tests-atf-tests atf +./usr/tests/atf/atf-run/h_bad_metadata tests-obsolete obsolete +./usr/tests/atf/atf-run/h_fail tests-obsolete obsolete +./usr/tests/atf/atf-run/h_misc tests-obsolete obsolete +./usr/tests/atf/atf-run/h_pass tests-obsolete obsolete +./usr/tests/atf/atf-run/h_several_tcs tests-obsolete obsolete +./usr/tests/atf/atf-run/h_zero_tcs tests-obsolete obsolete +./usr/tests/atf/atf-run/integration_test tests-atf-tests atf +./usr/tests/atf/atf-run/misc_helpers tests-atf-tests atf +./usr/tests/atf/atf-run/pass_helper tests-atf-tests atf +./usr/tests/atf/atf-run/requirements_test tests-atf-tests atf +./usr/tests/atf/atf-run/several_tcs_helper tests-atf-tests atf +./usr/tests/atf/atf-run/signals_test tests-atf-tests atf +./usr/tests/atf/atf-run/t_config tests-obsolete obsolete +./usr/tests/atf/atf-run/t_integration tests-obsolete obsolete +./usr/tests/atf/atf-run/t_requirements tests-obsolete obsolete +./usr/tests/atf/atf-run/t_test_program tests-obsolete obsolete +./usr/tests/atf/atf-run/test_program_test tests-atf-tests atf +./usr/tests/atf/atf-run/user_test tests-atf-tests atf +./usr/tests/atf/atf-run/zero_tcs_helper tests-atf-tests atf +./usr/tests/atf/atf-sh tests-atf-tests +./usr/tests/atf/atf-sh/Atffile tests-atf-tests atf +./usr/tests/atf/atf-sh/atf-check_test tests-atf-tests atf +./usr/tests/atf/atf-sh/atf_check_test tests-atf-tests atf +./usr/tests/atf/atf-sh/config_test tests-atf-tests atf +./usr/tests/atf/atf-sh/h_misc tests-obsolete obsolete +./usr/tests/atf/atf-sh/integration_test tests-atf-tests atf +./usr/tests/atf/atf-sh/misc_helpers tests-atf-tests atf +./usr/tests/atf/atf-sh/normalize_test tests-atf-tests atf +./usr/tests/atf/atf-sh/t_atf_check tests-obsolete obsolete +./usr/tests/atf/atf-sh/t_config tests-obsolete obsolete +./usr/tests/atf/atf-sh/t_integration tests-obsolete obsolete +./usr/tests/atf/atf-sh/t_normalize tests-obsolete obsolete +./usr/tests/atf/atf-sh/t_tc tests-obsolete obsolete +./usr/tests/atf/atf-sh/t_tp tests-obsolete obsolete +./usr/tests/atf/atf-sh/tc_test tests-atf-tests atf +./usr/tests/atf/atf-sh/tp_test tests-atf-tests atf +./usr/tests/atf/data tests-obsolete obsolete +./usr/tests/atf/data/Atffile tests-obsolete obsolete +./usr/tests/atf/data/t_pkg_config tests-obsolete obsolete +./usr/tests/atf/formats tests-obsolete obsolete +./usr/tests/atf/formats/Atffile tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_1 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_1.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_2 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_2.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_3 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_3.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_4 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_4.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_5 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_5.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_50 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_50.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_51 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_51.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_52 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_52.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_53 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_53.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_53.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_54 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_54.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_6 tests-obsolete obsolete +./usr/tests/atf/formats/d_atffile_6.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_config_1 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_1.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_config_2 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_2.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_config_3 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_3.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_config_4 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_4.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_config_50 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_50.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_config_51 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_51.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_config_52 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_52.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_config_53 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_53.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_config_53.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_config_54 tests-obsolete obsolete +./usr/tests/atf/formats/d_config_54.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_1 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_1.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_10 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_10.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_11 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_11.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_12 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_12.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_2 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_2.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_3 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_3.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_4 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_4.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_5 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_5.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_6 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_6.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_7 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_7.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_8 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_8.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_9 tests-obsolete obsolete +./usr/tests/atf/formats/d_headers_9.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_1 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_1.errin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_1.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_1.outin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_2 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_2.errin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_2.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_2.outin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_3 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_3.errin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_3.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_3.outin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_4 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_4.errin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_4.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_4.outin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_5 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_5.errin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_5.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_5.outin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_50 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_50.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_51 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_51.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_52 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_52.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_53 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_53.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_53.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_54 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_54.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_54.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_55 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_55.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_55.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_56 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_56.errin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_56.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_56.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_56.outin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_57 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_57.errin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_57.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_57.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcs_57.outin tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_1 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_1.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_2 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_2.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_3 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_3.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_50 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_50.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_51 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_51.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_52 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_52.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_53 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_53.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_54 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_54.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_60 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_60.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_61 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_61.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_61.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_70 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_70.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_70.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_71 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_71.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_71.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_72 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_72.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_72.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_73 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_73.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_73.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_74 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_74.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_74.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_75 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_75.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_75.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_76 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_76.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_76.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_77 tests-obsolete obsolete +./usr/tests/atf/formats/d_tcr_77.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_1 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_1.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_2 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_2.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_3 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_3.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_4 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_4.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_50 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_50.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_51 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_51.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_52 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_52.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_53 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_53.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_54 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_54.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_55 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_55.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_56 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_56.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_57 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_57.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_58 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_58.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_59 tests-obsolete obsolete +./usr/tests/atf/formats/d_tp_59.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_1 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_1.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_2 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_2.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_3 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_3.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_4 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_4.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_5 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_5.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_50 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_50.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_51 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_51.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_52 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_52.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_53 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_53.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_53.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_54 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_54.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_54.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_55 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_55.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_55.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_56 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_56.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_56.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_57 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_57.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_57.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_58 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_58.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_58.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_59 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_59.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_60 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_60.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_61 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_61.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_62 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_62.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_62.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_63 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_63.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_63.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_64 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_64.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_64.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_65 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_65.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_65.expout tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_66 tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_66.experr tests-obsolete obsolete +./usr/tests/atf/formats/d_tps_66.expout tests-obsolete obsolete +./usr/tests/atf/formats/h_parser tests-obsolete obsolete +./usr/tests/atf/formats/t_parsers tests-obsolete obsolete +./usr/tests/atf/formats/t_writers tests-obsolete obsolete +./usr/tests/atf/sh_interface tests-obsolete obsolete +./usr/tests/atf/sh_interface/Atffile tests-obsolete obsolete +./usr/tests/atf/sh_interface/h_misc tests-obsolete obsolete +./usr/tests/atf/sh_interface/t_atf_check tests-obsolete obsolete +./usr/tests/atf/sh_interface/t_config tests-obsolete obsolete +./usr/tests/atf/sh_interface/t_normalize tests-obsolete obsolete +./usr/tests/atf/sh_interface/t_tc tests-obsolete obsolete +./usr/tests/atf/sh_interface/t_tp tests-obsolete obsolete +./usr/tests/atf/test-programs tests-atf-tests +./usr/tests/atf/test-programs/Atffile tests-atf-tests atf +./usr/tests/atf/test-programs/c_helpers tests-atf-tests atf +./usr/tests/atf/test-programs/config_test tests-atf-tests atf +./usr/tests/atf/test-programs/cpp_helpers tests-atf-tests atf +./usr/tests/atf/test-programs/expect_test tests-atf-tests atf +./usr/tests/atf/test-programs/fork_test tests-atf-tests atf +./usr/tests/atf/test-programs/meta_data_test tests-atf-tests atf +./usr/tests/atf/test-programs/result_test tests-atf-tests atf +./usr/tests/atf/test-programs/sh_helpers tests-atf-tests atf +./usr/tests/atf/test-programs/srcdir_test tests-atf-tests atf +./usr/tests/atf/test_programs tests-obsolete obsolete +./usr/tests/atf/test_programs/Atffile tests-obsolete obsolete +./usr/tests/atf/test_programs/h_c tests-obsolete obsolete +./usr/tests/atf/test_programs/h_cpp tests-obsolete obsolete +./usr/tests/atf/test_programs/h_sh tests-obsolete obsolete +./usr/tests/atf/test_programs/t_cleanup tests-obsolete obsolete +./usr/tests/atf/test_programs/t_config tests-obsolete obsolete +./usr/tests/atf/test_programs/t_env tests-obsolete obsolete +./usr/tests/atf/test_programs/t_fork tests-obsolete obsolete +./usr/tests/atf/test_programs/t_meta_data tests-obsolete obsolete +./usr/tests/atf/test_programs/t_srcdir tests-obsolete obsolete +./usr/tests/atf/test_programs/t_status tests-obsolete obsolete +./usr/tests/atf/test_programs/t_workdir tests-obsolete obsolete +./usr/tests/atf/tools tests-atf-tests obsolete +./usr/tests/atf/tools/Atffile tests-atf-tests obsolete +./usr/tests/atf/tools/h_fail tests-atf-tests obsolete +./usr/tests/atf/tools/h_misc tests-atf-tests obsolete +./usr/tests/atf/tools/h_mode tests-atf-tests obsolete +./usr/tests/atf/tools/h_pass tests-atf-tests obsolete +./usr/tests/atf/tools/t_atf_check tests-atf-tests obsolete +./usr/tests/atf/tools/t_atf_cleanup tests-atf-tests obsolete +./usr/tests/atf/tools/t_atf_compile tests-obsolete obsolete +./usr/tests/atf/tools/t_atf_config tests-atf-tests obsolete +./usr/tests/atf/tools/t_atf_exec tests-atf-tests obsolete +./usr/tests/atf/tools/t_atf_killpg tests-obsolete obsolete +./usr/tests/atf/tools/t_atf_report tests-atf-tests obsolete +./usr/tests/atf/tools/t_atf_run tests-atf-tests obsolete +./usr/tests/atf/units tests-obsolete obsolete +./usr/tests/atf/units/Atffile tests-obsolete obsolete +./usr/tests/atf/units/t_config tests-obsolete obsolete +./usr/tests/atf/units/t_env tests-obsolete obsolete +./usr/tests/atf/units/t_expand tests-obsolete obsolete +./usr/tests/atf/units/t_fs tests-obsolete obsolete +./usr/tests/atf/units/t_io tests-obsolete obsolete +./usr/tests/atf/units/t_parser tests-obsolete obsolete +./usr/tests/atf/units/t_sanity tests-obsolete obsolete +./usr/tests/atf/units/t_signals tests-obsolete obsolete +./usr/tests/atf/units/t_tests tests-obsolete obsolete +./usr/tests/atf/units/t_text tests-obsolete obsolete +./usr/tests/atf/units/t_user tests-obsolete obsolete +./usr/tests/atf/units/t_utils tests-obsolete obsolete +./usr/tests/bin tests-bin-tests +./usr/tests/bin/Atffile tests-bin-tests atf +./usr/tests/bin/cat tests-bin-tests +./usr/tests/bin/cat/Atffile tests-bin-tests atf +./usr/tests/bin/cat/d_align.in tests-bin-tests atf +./usr/tests/bin/cat/d_align.out tests-bin-tests atf +./usr/tests/bin/cat/t_cat tests-bin-tests atf +./usr/tests/bin/cp tests-bin-tests +./usr/tests/bin/cp/Atffile tests-bin-tests atf +./usr/tests/bin/cp/t_cp tests-bin-tests atf +./usr/tests/bin/dd tests-bin-tests +./usr/tests/bin/dd/Atffile tests-bin-tests atf +./usr/tests/bin/dd/t_dd tests-bin-tests atf +./usr/tests/bin/df tests-bin-tests +./usr/tests/bin/df/Atffile tests-bin-tests atf +./usr/tests/bin/df/h_df tests-bin-tests atf +./usr/tests/bin/df/t_df tests-bin-tests atf +./usr/tests/bin/expr tests-bin-tests +./usr/tests/bin/expr/Atffile tests-bin-tests atf +./usr/tests/bin/expr/t_expr tests-bin-tests atf +./usr/tests/bin/pax tests-bin-tests +./usr/tests/bin/pax/Atffile tests-bin-tests atf +./usr/tests/bin/pax/t_pax tests-bin-tests atf +./usr/tests/bin/ps tests-bin-tests +./usr/tests/bin/ps/Atffile tests-bin-tests atf +./usr/tests/bin/ps/keywords tests-bin-tests atf +./usr/tests/bin/ps/t_ps tests-bin-tests atf +./usr/tests/bin/sleep tests-bin-tests +./usr/tests/bin/sleep/Atffile tests-bin-tests atf +./usr/tests/bin/sleep/t_sleep tests-bin-tests atf +./usr/tests/bin/sh tests-bin-tests +./usr/tests/bin/sh/Atffile tests-bin-tests atf +./usr/tests/bin/sh/t_compexit tests-bin-tests atf +./usr/tests/bin/sh/t_evaltested tests-bin-tests atf +./usr/tests/bin/sh/t_exit tests-bin-tests atf +./usr/tests/bin/sh/t_expand tests-bin-tests atf +./usr/tests/bin/sh/t_fsplit tests-bin-tests atf +./usr/tests/bin/sh/t_here tests-bin-tests atf +./usr/tests/bin/sh/t_set_e tests-bin-tests atf +./usr/tests/bin/sh/t_ulimit tests-bin-tests atf +./usr/tests/bin/sh/t_varquote tests-bin-tests atf +./usr/tests/bin/sh/t_wait tests-bin-tests atf +./usr/tests/bin/tar tests-bin-tests +./usr/tests/bin/tar/Atffile tests-bin-tests atf +./usr/tests/bin/tar/t_tar tests-bin-tests atf +./usr/tests/crypto tests-crypto-tests +./usr/tests/crypto/Atffile tests-crypto-tests +./usr/tests/crypto/libcrypto tests-crypto-tests +./usr/tests/crypto/libcrypto/Atffile tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/d_conf.out tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/d_conf_ssleay.cnf tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/d_client.pem tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/d_server.pem tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_bftest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_bntest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_casttest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_conftest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_destest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_dhtest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_divtest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_dsatest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_ecdhtest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_ecdsatest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_ectest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_enginetest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_evp_test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/evptests.txt tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_exptest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_hmactest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_ideatest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_lhashtest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_md2test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_md4test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_md5test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_mdc2test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_randtest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_rc2test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_rc4test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_rc5test tests-crypto-tests crypto_rc5,crypto +./usr/tests/crypto/libcrypto/h_ripemdtest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_rsatest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_sha1test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_shatest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_srptest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_threadstest tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/h_x509v3test tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/t_certs tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/t_ciphers tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/t_hashes tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/t_libcrypto tests-crypto-tests crypto +./usr/tests/crypto/libcrypto/t_pubkey tests-crypto-tests crypto +./usr/tests/dev tests-fs-tests +./usr/tests/dev/Atffile tests-fs-tests atf +./usr/tests/dev/audio tests-fs-tests +./usr/tests/dev/audio/Atffile tests-fs-tests atf,rump +./usr/tests/dev/audio/h_pad tests-fs-tests atf,rump +./usr/tests/dev/audio/t_pad tests-fs-tests atf,rump +./usr/tests/dev/audio/t_pad_output.bz2.uue tests-fs-tests atf,rump +./usr/tests/dev/cgd tests-fs-tests +./usr/tests/dev/cgd/Atffile tests-fs-tests atf +./usr/tests/dev/cgd/t_cgd tests-fs-tests atf +./usr/tests/dev/cgd/paramsfile tests-fs-tests atf +./usr/tests/dev/cgd/h_img2cgd tests-obsolete obsolete +./usr/tests/dev/cgd/h_img2cgd/h_img2cgd tests-obsolete obsolete +./usr/tests/dev/cgd/h_img2cgd/cgd.conf tests-obsolete obsolete +./usr/tests/dev/md tests-fs-tests +./usr/tests/dev/md/Atffile tests-fs-tests atf,rump +./usr/tests/dev/md/h_mdserv tests-fs-tests atf,rump +./usr/tests/dev/md/t_md tests-fs-tests atf,rump +./usr/tests/dev/raidframe tests-fs-tests +./usr/tests/dev/raidframe/Atffile tests-fs-tests atf +./usr/tests/dev/raidframe/t_raid tests-fs-tests atf +./usr/tests/dev/scsipi tests-fs-tests +./usr/tests/dev/scsipi/Atffile tests-fs-tests atf,rump +./usr/tests/dev/scsipi/t_cd tests-fs-tests atf,rump +./usr/tests/dev/sysmon tests-fs-tests +./usr/tests/dev/sysmon/Atffile tests-fs-tests atf,rump +./usr/tests/dev/sysmon/t_swsensor tests-fs-tests atf,rump +./usr/tests/dev/sysmon/t_swwdog tests-fs-tests atf,rump +./usr/tests/examples tests-asm-tests +./usr/tests/examples/Atffile tests-asm-tests atf +./usr/tests/examples/t_asm tests-asm-tests atf +./usr/tests/fs tests-fs-tests +./usr/tests/fs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/h_funcs.subr tests-fs-tests atf,rump +./usr/tests/fs/ffs tests-fs-tests +./usr/tests/fs/ffs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/ffs/h_ffs_server tests-fs-tests atf,rump +./usr/tests/fs/ffs/h_quota2_server tests-obsolete obsolete +./usr/tests/fs/ffs/h_quota2_tests tests-fs-tests atf,rump +./usr/tests/fs/ffs/rump_edquota tests-obsolete obsolete +./usr/tests/fs/ffs/rump_quota tests-obsolete obsolete +./usr/tests/fs/ffs/rump_quotactl tests-obsolete obsolete +./usr/tests/fs/ffs/rump_repquota tests-obsolete obsolete +./usr/tests/fs/ffs/t_clearquota tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_fifos tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_getquota tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_miscquota tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_mount tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_quota2_1 tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_quota2_remount tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_quotalimit tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_renamerace tests-obsolete obsolete +./usr/tests/fs/ffs/t_setquota tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_snapshot tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_snapshot_log tests-fs-tests atf,rump +./usr/tests/fs/ffs/t_snapshot_v2 tests-fs-tests atf,rump +./usr/tests/fs/fifofs tests-fs-tests +./usr/tests/fs/fifofs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/fifofs/t_fifo tests-fs-tests atf,rump +./usr/tests/fs/hfs tests-fs-tests +./usr/tests/fs/hfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/hfs/colon.hfs.bz2.uue tests-fs-tests atf,rump +./usr/tests/fs/hfs/t_pathconvert tests-fs-tests atf,rump +./usr/tests/fs/kernfs tests-fs-tests +./usr/tests/fs/kernfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/kernfs/t_basic tests-fs-tests atf,rump +./usr/tests/fs/lfs tests-fs-tests +./usr/tests/fs/lfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/lfs/t_pr tests-fs-tests atf,rump +./usr/tests/fs/msdosfs tests-fs-tests +./usr/tests/fs/msdosfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/msdosfs/t_snapshot tests-fs-tests atf,rump +./usr/tests/fs/nfs tests-fs-tests +./usr/tests/fs/nfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/nfs/t_mountd tests-fs-tests atf,rump +./usr/tests/fs/nfs/t_rquotad tests-fs-tests atf,rump +./usr/tests/fs/nfs/nfsservice tests-fs-tests +./usr/tests/fs/nfs/nfsservice/exports tests-fs-tests atf,rump +./usr/tests/fs/nfs/nfsservice/rumpnfsd tests-fs-tests atf,rump +./usr/tests/fs/nullfs tests-fs-tests +./usr/tests/fs/nullfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/nullfs/t_basic tests-fs-tests atf,rump +./usr/tests/fs/psshfs tests-fs-tests +./usr/tests/fs/psshfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/psshfs/h_have_puffs tests-fs-tests atf,rump +./usr/tests/fs/psshfs/ssh_config.in tests-fs-tests atf,rump +./usr/tests/fs/psshfs/ssh_host_key tests-fs-tests atf,rump +./usr/tests/fs/psshfs/ssh_host_key.pub tests-fs-tests atf,rump +./usr/tests/fs/psshfs/sshd_config.in tests-fs-tests atf,rump +./usr/tests/fs/psshfs/t_psshfs tests-fs-tests atf,rump +./usr/tests/fs/ptyfs tests-fs-tests +./usr/tests/fs/ptyfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/ptyfs/t_ptyfs tests-fs-tests atf,rump +./usr/tests/fs/ptyfs/t_nullpts tests-fs-tests atf,rump +./usr/tests/fs/puffs tests-fs-tests +./usr/tests/fs/puffs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/puffs/t_basic tests-fs-tests atf,rump +./usr/tests/fs/puffs/t_fuzz tests-fs-tests atf,rump +./usr/tests/fs/puffs/t_io tests-fs-tests atf,rump +./usr/tests/fs/puffs/h_dtfs tests-fs-tests +./usr/tests/fs/puffs/h_dtfs/h_dtfs tests-fs-tests atf,rump +./usr/tests/fs/puffs/h_have_puffs tests-obsolete obsolete +./usr/tests/fs/puffs/ssh_config.in tests-obsolete obsolete +./usr/tests/fs/puffs/ssh_host_key tests-obsolete obsolete +./usr/tests/fs/puffs/ssh_host_key.pub tests-obsolete obsolete +./usr/tests/fs/puffs/sshd_config.in tests-obsolete obsolete +./usr/tests/fs/puffs/t_psshfs tests-obsolete obsolete +./usr/tests/fs/tmpfs tests-fs-tests +./usr/tests/fs/tmpfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/h_funcs.subr tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/h_tools tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_create tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_devices tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_dots tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_exec tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_id_gen tests-obsolete obsolete +./usr/tests/fs/tmpfs/t_link tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_mkdir tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_mknod tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_mount tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_pipes tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_read_write tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_readdir tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_remove tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_rename tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_renamerace tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_rmdir tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_setattr tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_sizes tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_sockets tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_statvfs tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_symlink tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_times tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_trail_slash tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_truncate tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_vnd tests-fs-tests atf,rump +./usr/tests/fs/tmpfs/t_vnode_leak tests-fs-tests atf,rump +./usr/tests/fs/umapfs tests-fs-tests +./usr/tests/fs/umapfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/umapfs/t_basic tests-fs-tests atf,rump +./usr/tests/fs/union tests-fs-tests +./usr/tests/fs/union/Atffile tests-fs-tests atf,rump +./usr/tests/fs/union/t_basic tests-obsolete obsolete,rump +./usr/tests/fs/union/t_pr tests-fs-tests atf,rump +./usr/tests/fs/vfs tests-fs-tests +./usr/tests/fs/vfs/Atffile tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_full tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_io tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_renamerace tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_rmdirrace tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_ro tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_union tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_unpriv tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_vfsops tests-fs-tests atf,rump +./usr/tests/fs/vfs/t_vnops tests-fs-tests atf,rump +./usr/tests/fs/zfs tests-fs-tests +./usr/tests/fs/zfs/Atffile tests-fs-tests atf,zfs,rump +./usr/tests/fs/zfs/t_zpool tests-fs-tests atf,zfs,rump +./usr/tests/games tests-games-tests +./usr/tests/games/Atffile tests-games-tests +./usr/tests/games/t_factor tests-games-tests +./usr/tests/include tests-include-tests +./usr/tests/include/Atffile tests-include-tests atf +./usr/tests/include/d_bitstring_27.out tests-include-tests atf +./usr/tests/include/d_bitstring_32.out tests-include-tests atf +./usr/tests/include/d_bitstring_49.out tests-include-tests atf +./usr/tests/include/d_bitstring_64.out tests-include-tests atf +./usr/tests/include/d_bitstring_67.out tests-include-tests atf +./usr/tests/include/d_bitstring_8.out tests-include-tests atf +./usr/tests/include/machine tests-include-tests +./usr/tests/include/machine/Atffile tests-include-tests atf +./usr/tests/include/machine/t_bswap tests-include-tests atf +./usr/tests/include/sys tests-include-tests +./usr/tests/include/sys/Atffile tests-include-tests atf +./usr/tests/include/sys/t_bitops tests-include-tests atf +./usr/tests/include/sys/t_bootblock tests-include-tests atf +./usr/tests/include/sys/t_cdefs tests-include-tests atf +./usr/tests/include/sys/t_socket tests-include-tests atf,rump +./usr/tests/include/sys/t_tree tests-include-tests atf +./usr/tests/include/sys/t_types tests-include-tests atf +./usr/tests/include/t_bitstring tests-include-tests atf +./usr/tests/include/t_bswap tests-obsolete obsolete +./usr/tests/include/t_errno tests-include-tests atf +./usr/tests/include/t_glob tests-include-tests atf +./usr/tests/include/t_inttypes tests-include-tests atf +./usr/tests/include/t_limits tests-include-tests atf +./usr/tests/include/t_netdb tests-include-tests atf +./usr/tests/include/t_paths tests-include-tests atf +./usr/tests/include/t_stdint tests-include-tests atf +./usr/tests/include/t_types tests-obsolete obsolete +./usr/tests/ipf tests-ipf-tests +./usr/tests/ipf/Atffile tests-ipf-tests ipfilter +./usr/tests/ipf/expected tests-ipf-tests +./usr/tests/ipf/expected/bpf-f1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/bpf1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f10 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f11 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f12 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f13 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f14 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f15 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f16 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f17 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f18 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f19 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f2 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f20 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f21 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f22 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f24 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f25 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f26 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f27 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f28 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f29 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f3 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f30 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f4 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f5 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f7 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f8 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/f9 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i10 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i11 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i12 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i13 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i14 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i15 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i16 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i17 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i18 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i19.dist tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i2 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i20 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i21 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i22 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i23 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i3 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i4 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i5 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i7 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i8 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/i9 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in100 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in101 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in102 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in2 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in3 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in4 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in5 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/in7 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ip1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ip2 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ip3 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ipv6.1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ipv6.2 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ipv6.3 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ipv6.4 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ipv6.5 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ipv6.6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/l1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/l1.b tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n10 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n100 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n101 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n102 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n103 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n104 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n105 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n106 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n11 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n11_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n12 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n12_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n13 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n13_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n14 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n14_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n15 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n15_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n16 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n17 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n18 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n1_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n2 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n200 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n201 tests-obsolete obsolete +./usr/tests/ipf/expected/n202 tests-obsolete obsolete +./usr/tests/ipf/expected/n2_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n3 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n4 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n4_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n5 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n5_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n6_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n7 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n7_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n8 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n8_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n9 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/n9_6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni10 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni11 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni12 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni13 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni14 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni15 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni16 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni17 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni18 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni19 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni2 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni20 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni21 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni23 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni3 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni4 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni5 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni7 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni8 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/ni9 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p1 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p10 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p11 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p12 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p13 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p2 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p3 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p4 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p5 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p6 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p7 tests-ipf-tests ipfilter +./usr/tests/ipf/expected/p9 tests-ipf-tests ipfilter +./usr/tests/ipf/input tests-ipf-tests +./usr/tests/ipf/input/f1 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f10 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f11 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f12 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f13 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f14 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f15 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f16 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f17 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f18 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f19 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f2 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f20 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f21 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f22 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f24 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f25 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f26 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f27 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f28 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f29 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f3 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f30 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f4 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f5 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f7 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f8 tests-ipf-tests ipfilter +./usr/tests/ipf/input/f9 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ip2.data tests-ipf-tests ipfilter +./usr/tests/ipf/input/ipv6.1 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ipv6.2 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ipv6.3 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ipv6.4 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ipv6.5 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ipv6.6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/l1 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n1 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n10 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n100 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n101 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n102 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n103 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n104 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n105 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n106 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n10_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n11 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n11_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n12 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n12_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n13 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n13_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n14 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n14_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n15 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n15_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n16 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n17 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n17_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n18 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n1_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n2 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n200 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n201 tests-obsolete obsolete +./usr/tests/ipf/input/n202 tests-obsolete obsolete +./usr/tests/ipf/input/n2_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n3 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n4 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n4_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n5 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n5_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n6_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n7 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n7_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n8 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n8_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n9 tests-ipf-tests ipfilter +./usr/tests/ipf/input/n9_6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni1 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni10 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni11 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni12 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni13 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni14 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni15 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni16 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni17 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni18 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni19 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni2 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni20 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni21 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni23 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni3 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni4 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni5 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni7 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni8 tests-ipf-tests ipfilter +./usr/tests/ipf/input/ni9 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p1 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p10 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p11 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p12 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p13 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p2 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p3 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p4 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p5 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p6 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p7 tests-ipf-tests ipfilter +./usr/tests/ipf/input/p9 tests-ipf-tests ipfilter +./usr/tests/ipf/regress tests-ipf-tests +./usr/tests/ipf/regress/bpf-f1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/bpf1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f10 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f11 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f12 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f13 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f14 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f15 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f16 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f17 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f18 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f19 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f2 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f20 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f21 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f22 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f24 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f25 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f26 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f27 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f28.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f28.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f29.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f29.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f3 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f30 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f4 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f5 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f7 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f8 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/f9 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i10 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i11 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i12 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i13 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i14 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i15 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i16 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i17 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i18 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i19 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i2 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i20 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i21 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i22 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i23 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i3 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i4 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i5 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i7 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i8 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/i9 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in100 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in101 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in102 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in2 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in3 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in4 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in5 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/in7 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ip1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ip2 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ip3 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ipv6.1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ipv6.2 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ipv6.3 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ipv6.4 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ipv6.5 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ipv6.6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/l1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n1 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n10 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n100 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n101 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n102 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n103 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n104 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n105 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n106 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n10_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n11 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n11_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n12 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n12_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n13 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n13_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n14 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n14_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n15 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n15_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n16 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n16_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n17 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n17_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n18 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n1_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n2 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n200 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n201 tests-obsolete obsolete +./usr/tests/ipf/regress/n202 tests-obsolete obsolete +./usr/tests/ipf/regress/n2_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n3 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n4 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n4_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n5 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n5_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n6_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n7 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n7_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n8 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n8_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n9 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/n9_6 tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni1.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni1.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni10.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni10.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni11.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni11.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni12.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni12.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni13.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni13.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni14.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni14.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni15.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni15.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni16.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni16.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni17.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni17.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni18.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni18.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni19.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni19.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni2.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni2.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni20.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni20.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni21.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni21.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni23.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni23.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni3.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni3.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni4.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni4.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni5.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni5.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni6.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni6.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni7.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni7.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni8.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni8.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni9.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/ni9.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p1.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p1.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p10.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p10.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p11.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p11.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p12.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p12.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p13.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p13.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p2.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p3.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p3.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p4.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p4.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p5.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p5.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p6.ipf tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p6.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p6.whois tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p7.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p7.pool tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p9.nat tests-ipf-tests ipfilter +./usr/tests/ipf/regress/p9.pool tests-ipf-tests ipfilter +./usr/tests/ipf/t_bpf tests-ipf-tests atf,ipfilter +./usr/tests/ipf/t_filter_exec tests-ipf-tests atf,ipfilter +./usr/tests/ipf/t_filter_parse tests-ipf-tests atf,ipfilter +./usr/tests/ipf/t_ipf tests-obsolete obsolete +./usr/tests/ipf/t_logging tests-ipf-tests atf,ipfilter +./usr/tests/ipf/t_nat_exec tests-ipf-tests atf,ipfilter +./usr/tests/ipf/t_nat_ipf_exec tests-ipf-tests atf,ipfilter +./usr/tests/ipf/t_nat_parse tests-ipf-tests atf,ipfilter +./usr/tests/ipf/t_pools tests-ipf-tests atf,ipfilter +./usr/tests/kernel tests-kernel-tests +./usr/tests/kernel/Atffile tests-kernel-tests atf +./usr/tests/kernel/h_ps_strings1 tests-kernel-tests atf +./usr/tests/kernel/h_ps_strings2 tests-kernel-tests atf +./usr/tests/kernel/kqueue tests-kernel-tests +./usr/tests/kernel/kqueue/Atffile tests-kernel-tests atf +./usr/tests/kernel/kqueue/read tests-kernel-tests +./usr/tests/kernel/kqueue/read/Atffile tests-kernel-tests atf +./usr/tests/kernel/kqueue/read/t_fifo tests-kernel-tests atf +./usr/tests/kernel/kqueue/read/t_file tests-kernel-tests atf +./usr/tests/kernel/kqueue/read/t_file2 tests-kernel-tests atf +./usr/tests/kernel/kqueue/read/t_pipe tests-kernel-tests atf +./usr/tests/kernel/kqueue/read/t_ttypty tests-kernel-tests atf +./usr/tests/kernel/kqueue/t_ioctl tests-kernel-tests atf +./usr/tests/kernel/kqueue/t_proc1 tests-kernel-tests atf +./usr/tests/kernel/kqueue/t_proc2 tests-kernel-tests atf +./usr/tests/kernel/kqueue/t_sig tests-kernel-tests atf +./usr/tests/kernel/kqueue/write tests-kernel-tests +./usr/tests/kernel/kqueue/write/Atffile tests-kernel-tests atf +./usr/tests/kernel/kqueue/write/t_fifo tests-kernel-tests atf +./usr/tests/kernel/kqueue/write/t_pipe tests-kernel-tests atf +./usr/tests/kernel/kqueue/write/t_ttypty tests-kernel-tests atf +./usr/tests/kernel/posix_spawn tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/Atffile tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/t_spawn tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/t_spawnattr tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/t_fileactions tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/h_spawn tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/h_spawnattr tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/h_fileactions tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/h_nonexec tests-kernel-tests obsolete +./usr/tests/kernel/posix_spawn/h_zero tests-kernel-tests obsolete +./usr/tests/kernel/t_extattrctl tests-kernel-tests atf,rump +./usr/tests/kernel/t_extent tests-kernel-tests atf +./usr/tests/kernel/t_filedesc tests-kernel-tests atf,rump +./usr/tests/kernel/t_lock tests-kernel-tests atf +./usr/tests/kernel/t_lwpctl tests-obsolete obsolete +./usr/tests/kernel/t_mkdir tests-obsolete obsolete +./usr/tests/kernel/t_pipe tests-obsolete obsolete +./usr/tests/kernel/t_poll3w tests-obsolete obsolete +./usr/tests/kernel/t_pollts tests-obsolete obsolete +./usr/tests/kernel/t_posix_fadvise tests-obsolete obsolete +./usr/tests/kernel/t_ps_strings tests-kernel-tests atf +./usr/tests/kernel/t_pty tests-kernel-tests atf +./usr/tests/kernel/t_rnd tests-kernel-tests atf,rump +./usr/tests/kernel/t_sigaction tests-obsolete obsolete +./usr/tests/kernel/t_subr_prf tests-kernel-tests atf +./usr/tests/kernel/t_time tests-obsolete obsolete +./usr/tests/kernel/t_ucontext tests-obsolete obsolete +./usr/tests/kernel/t_umount tests-kernel-tests atf +./usr/tests/kernel/t_writev tests-obsolete obsolete +./usr/tests/kernel/tty tests-kernel-tests +./usr/tests/kernel/tty/Atffile tests-kernel-tests atf,rump +./usr/tests/kernel/tty/t_pr tests-kernel-tests atf,rump +./usr/tests/lib tests-lib-tests +./usr/tests/lib/Atffile tests-lib-tests atf +./usr/tests/lib/csu tests-lib-tests +./usr/tests/lib/csu/Atffile tests-lib-tests atf +./usr/tests/lib/csu/h_initfini tests-obsolete obsolete +./usr/tests/lib/csu/h_initfini1 tests-lib-tests atf +./usr/tests/lib/csu/h_initfini2 tests-lib-tests atf +./usr/tests/lib/csu/h_initfini3 tests-lib-tests atf +./usr/tests/lib/csu/t_crt0 tests-lib-tests atf +./usr/tests/lib/libbluetooth tests-lib-tests +./usr/tests/lib/libbluetooth/Atffile tests-lib-tests atf +./usr/tests/lib/libbluetooth/t_bluetooth tests-lib-tests atf +./usr/tests/lib/libbluetooth/t_sdp_data tests-lib-tests atf +./usr/tests/lib/libbluetooth/t_sdp_get tests-lib-tests atf +./usr/tests/lib/libbluetooth/t_sdp_match tests-lib-tests atf +./usr/tests/lib/libbluetooth/t_sdp_put tests-lib-tests atf +./usr/tests/lib/libbluetooth/t_sdp_set tests-lib-tests atf +./usr/tests/lib/libc tests-lib-tests +./usr/tests/lib/libc/Atffile tests-lib-tests atf +./usr/tests/lib/libc/db tests-lib-tests +./usr/tests/lib/libc/db/Atffile tests-lib-tests atf +./usr/tests/lib/libc/db/README tests-lib-tests atf +./usr/tests/lib/libc/db/h_db tests-lib-tests atf +./usr/tests/lib/libc/db/t_db tests-lib-tests atf +./usr/tests/lib/libc/gen tests-lib-tests +./usr/tests/lib/libc/gen/Atffile tests-lib-tests atf +./usr/tests/lib/libc/gen/posix_spawn tests-kernel-tests +./usr/tests/lib/libc/gen/posix_spawn/Atffile tests-kernel-tests atf +./usr/tests/lib/libc/gen/posix_spawn/t_spawn tests-kernel-tests atf +./usr/tests/lib/libc/gen/posix_spawn/t_spawnattr tests-kernel-tests atf +./usr/tests/lib/libc/gen/posix_spawn/t_fileactions tests-kernel-tests atf +./usr/tests/lib/libc/gen/posix_spawn/h_spawn tests-kernel-tests atf +./usr/tests/lib/libc/gen/posix_spawn/h_spawnattr tests-kernel-tests atf +./usr/tests/lib/libc/gen/posix_spawn/h_fileactions tests-kernel-tests atf +./usr/tests/lib/libc/gen/posix_spawn/h_nonexec tests-kernel-tests atf +./usr/tests/lib/libc/gen/posix_spawn/h_zero tests-kernel-tests atf +./usr/tests/lib/libc/gen/t_alarm tests-lib-tests atf +./usr/tests/lib/libc/gen/t_assert tests-lib-tests atf +./usr/tests/lib/libc/gen/t_basedirname tests-lib-tests atf +./usr/tests/lib/libc/gen/t_closefrom tests-lib-tests atf +./usr/tests/lib/libc/gen/t_cpuset tests-lib-tests atf +./usr/tests/lib/libc/gen/t_dir tests-lib-tests atf +./usr/tests/lib/libc/gen/t_fmtcheck tests-lib-tests atf +./usr/tests/lib/libc/gen/t_fnmatch tests-lib-tests atf +./usr/tests/lib/libc/gen/t_fpclassify tests-lib-tests atf +./usr/tests/lib/libc/gen/t_fpsetmask tests-lib-tests atf +./usr/tests/lib/libc/gen/t_fpsetround tests-lib-tests atf +./usr/tests/lib/libc/gen/t_ftok tests-lib-tests atf +./usr/tests/lib/libc/gen/t_getcwd tests-lib-tests atf +./usr/tests/lib/libc/gen/t_getgrent tests-lib-tests atf +./usr/tests/lib/libc/gen/t_glob tests-lib-tests atf +./usr/tests/lib/libc/gen/t_glob_star tests-obsolete obsolete +./usr/tests/lib/libc/gen/t_humanize_number tests-lib-tests atf +./usr/tests/lib/libc/gen/t_isnan tests-lib-tests atf +./usr/tests/lib/libc/gen/t_ldexp tests-obsolete obsolete +./usr/tests/lib/libc/gen/t_nice tests-lib-tests atf +./usr/tests/lib/libc/gen/t_pause tests-lib-tests atf +./usr/tests/lib/libc/gen/t_raise tests-lib-tests atf +./usr/tests/lib/libc/gen/t_randomid tests-lib-tests atf +./usr/tests/lib/libc/gen/t_realpath tests-lib-tests atf +./usr/tests/lib/libc/gen/t_rbstress tests-obsolete obsolete +./usr/tests/lib/libc/gen/t_setdomainname tests-lib-tests atf +./usr/tests/lib/libc/gen/t_sethostname tests-lib-tests atf +./usr/tests/lib/libc/gen/t_siginfo tests-lib-tests atf +./usr/tests/lib/libc/gen/t_syslog tests-lib-tests atf +./usr/tests/lib/libc/gen/t_syslog_pthread tests-obsolete obsolete +./usr/tests/lib/libc/gen/t_time tests-lib-tests atf +./usr/tests/lib/libc/gen/t_ttyname tests-lib-tests atf +./usr/tests/lib/libc/gen/t_vis tests-lib-tests atf +./usr/tests/lib/libc/getaddrinfo tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/Atffile tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/basics_v4.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/basics_v4v6.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/no_host_v4.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/no_host_v4v6.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/no_serv_v4.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/no_serv_v4v6.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/scoped.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/sock_raw_v4.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/sock_raw_v4v6.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/spec_fam_v4.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/spec_fam_v4v6.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/data/unsup_fam.exp tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/h_gai tests-obsolete obsolete +./usr/tests/lib/libc/getaddrinfo/t_getaddrinfo tests-obsolete obsolete +./usr/tests/lib/libc/h_atexit tests-obsolete obsolete +./usr/tests/lib/libc/h_nsd_recurse tests-obsolete obsolete +./usr/tests/lib/libc/h_protoent tests-obsolete obsolete +./usr/tests/lib/libc/h_servent tests-obsolete obsolete +./usr/tests/lib/libc/hash tests-lib-tests +./usr/tests/lib/libc/hash/Atffile tests-lib-tests atf +./usr/tests/lib/libc/hash/data tests-lib-tests +./usr/tests/lib/libc/hash/data/md5test-in tests-lib-tests atf +./usr/tests/lib/libc/hash/data/md5test-out tests-lib-tests atf +./usr/tests/lib/libc/hash/data/sha1test-in tests-lib-tests atf +./usr/tests/lib/libc/hash/data/sha1test-out tests-lib-tests atf +./usr/tests/lib/libc/hash/data/sha1test2-out tests-lib-tests atf +./usr/tests/lib/libc/hash/h_hash tests-lib-tests atf +./usr/tests/lib/libc/hash/t_hash tests-lib-tests atf +./usr/tests/lib/libc/hash/t_sha2 tests-lib-tests atf +./usr/tests/lib/libc/ieeefp tests-obsolete obsolete +./usr/tests/lib/libc/ieeefp/Atffile tests-obsolete obsolete +./usr/tests/lib/libc/ieeefp/t_except tests-obsolete obsolete +./usr/tests/lib/libc/ieeefp/t_nan_inf tests-obsolete obsolete +./usr/tests/lib/libc/ieeefp/t_round tests-obsolete obsolete +./usr/tests/lib/libc/ieeefp/t_subnormal tests-obsolete obsolete +./usr/tests/lib/libc/locale tests-lib-tests +./usr/tests/lib/libc/locale/Atffile tests-lib-tests atf +./usr/tests/lib/libc/locale/t_ctype1 tests-obsolete obsolete +./usr/tests/lib/libc/locale/t_ctype2 tests-obsolete obsolete +./usr/tests/lib/libc/locale/t_mbrtowc tests-lib-tests atf +./usr/tests/lib/libc/locale/t_mbstowcs tests-lib-tests atf +./usr/tests/lib/libc/locale/t_mbtowc tests-lib-tests atf +./usr/tests/lib/libc/locale/t_wcscspn tests-lib-tests atf +./usr/tests/lib/libc/locale/t_wcspbrk tests-lib-tests atf +./usr/tests/lib/libc/locale/t_wcsspn tests-lib-tests atf +./usr/tests/lib/libc/locale/t_wcstod tests-lib-tests atf +./usr/tests/lib/libc/locale/t_wctomb tests-lib-tests atf +./usr/tests/lib/libc/inet tests-lib-tests +./usr/tests/lib/libc/inet/Atffile tests-lib-tests atf +./usr/tests/lib/libc/inet/t_inet_network tests-lib-tests atf +./usr/tests/lib/libc/net tests-lib-tests +./usr/tests/lib/libc/net/Atffile tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo tests-lib-tests +./usr/tests/lib/libc/net/getaddrinfo/Atffile tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data tests-lib-tests +./usr/tests/lib/libc/net/getaddrinfo/data/basics_v4.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/basics_v4v6.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/no_host_v4.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/no_host_v4v6.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/no_serv_v4.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/no_serv_v4v6.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/scoped.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/sock_raw_v4.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/sock_raw_v4v6.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/spec_fam_v4.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/spec_fam_v4v6.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/data/unsup_fam.exp tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/h_gai tests-lib-tests atf +./usr/tests/lib/libc/net/getaddrinfo/t_getaddrinfo tests-lib-tests atf +./usr/tests/lib/libc/net/h_nsd_recurse tests-lib-tests atf +./usr/tests/lib/libc/net/h_protoent tests-lib-tests atf +./usr/tests/lib/libc/net/h_servent tests-lib-tests atf +./usr/tests/lib/libc/net/t_ether_aton tests-lib-tests atf +./usr/tests/lib/libc/net/t_getprotoent tests-lib-tests atf +./usr/tests/lib/libc/net/t_nsdispatch tests-lib-tests atf +./usr/tests/lib/libc/net/t_protoent tests-lib-tests atf +./usr/tests/lib/libc/net/t_servent tests-lib-tests atf +./usr/tests/lib/libc/regex tests-lib-tests +./usr/tests/lib/libc/regex/Atffile tests-lib-tests atf +./usr/tests/lib/libc/regex/data tests-lib-tests +./usr/tests/lib/libc/regex/data/README tests-lib-tests atf +./usr/tests/lib/libc/regex/data/anchor.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/backref.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/basic.dat tests-lib-tests atf +./usr/tests/lib/libc/regex/data/basic.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/bracket.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/c_comments.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/categorization.dat tests-lib-tests atf +./usr/tests/lib/libc/regex/data/complex.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/error.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/forcedassoc.dat tests-lib-tests atf +./usr/tests/lib/libc/regex/data/leftassoc.dat tests-lib-tests atf +./usr/tests/lib/libc/regex/data/meta.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/nospec.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/nul.in tests-obsolete obsolete +./usr/tests/lib/libc/regex/data/nullsubexpr.dat tests-lib-tests atf +./usr/tests/lib/libc/regex/data/paren.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/regress.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/repet_bounded.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/repet_multi.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/repet_ordinary.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/repetition.dat tests-lib-tests atf +./usr/tests/lib/libc/regex/data/rightassoc.dat tests-lib-tests atf +./usr/tests/lib/libc/regex/data/startend.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/subexp.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/subtle.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/word_bound.in tests-lib-tests atf +./usr/tests/lib/libc/regex/data/zero.in tests-lib-tests atf +./usr/tests/lib/libc/regex/h_regex tests-lib-tests atf +./usr/tests/lib/libc/regex/h_regex_att tests-obsolete obsolete +./usr/tests/lib/libc/regex/t_exhaust tests-lib-tests atf +./usr/tests/lib/libc/regex/t_regex tests-lib-tests atf +./usr/tests/lib/libc/regex/t_regex_att tests-lib-tests atf +./usr/tests/lib/libc/rpc tests-lib-tests +./usr/tests/lib/libc/rpc/Atffile tests-lib-tests atf +./usr/tests/lib/libc/rpc/t_xdr tests-lib-tests atf +./usr/tests/lib/libc/setjmp tests-lib-tests +./usr/tests/lib/libc/setjmp/Atffile tests-lib-tests atf +./usr/tests/lib/libc/setjmp/t_threadjmp tests-lib-tests atf +./usr/tests/lib/libc/setjmp/t_setjmp tests-lib-tests atf +./usr/tests/lib/libc/ssp tests-lib-tests +./usr/tests/lib/libc/ssp/Atffile tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_fgets tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_getcwd tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_gets tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_memcpy tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_memmove tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_memset tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_raw tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_read tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_readlink tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_snprintf tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_sprintf tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_strcat tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_strcpy tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_strncat tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_strncpy tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_vsnprintf tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/h_vsprintf tests-lib-tests atf,ssp +./usr/tests/lib/libc/ssp/t_ssp tests-lib-tests atf,ssp +./usr/tests/lib/libc/stdio tests-lib-tests +./usr/tests/lib/libc/stdio/Atffile tests-lib-tests atf +./usr/tests/lib/libc/stdio/t_clearerr tests-lib-tests atf +./usr/tests/lib/libc/stdio/t_fflush tests-lib-tests atf +./usr/tests/lib/libc/stdio/t_fmemopen tests-lib-tests atf +./usr/tests/lib/libc/stdio/t_fopen tests-lib-tests atf +./usr/tests/lib/libc/stdio/t_fputc tests-lib-tests atf +./usr/tests/lib/libc/stdio/t_format tests-obsolete obsolete +./usr/tests/lib/libc/stdio/t_popen tests-lib-tests atf +./usr/tests/lib/libc/stdio/t_printf tests-lib-tests atf +./usr/tests/lib/libc/stdio/t_scanf tests-lib-tests atf +./usr/tests/lib/libc/stdlib tests-lib-tests +./usr/tests/lib/libc/stdlib/Atffile tests-lib-tests atf +./usr/tests/lib/libc/stdlib/h_atexit tests-lib-tests atf +./usr/tests/lib/libc/stdlib/h_getopt tests-lib-tests atf +./usr/tests/lib/libc/stdlib/h_getopt_long tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_atexit tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_abs tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_atoi tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_div tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_environment tests-obsolete obsolete +./usr/tests/lib/libc/stdlib/t_environment_pth tests-obsolete obsolete +./usr/tests/lib/libc/stdlib/t_exit tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_getenv tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_getenv_thread tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_getopt tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_hsearch tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_mi_vector_hash tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_posix_memalign tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_random tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_strtod tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_strtol tests-lib-tests atf +./usr/tests/lib/libc/stdlib/t_strtox tests-obsolete obsolete +./usr/tests/lib/libc/stdlib/t_system tests-lib-tests atf +./usr/tests/lib/libc/string tests-lib-tests +./usr/tests/lib/libc/string/Atffile tests-lib-tests atf +./usr/tests/lib/libc/string/t_memchr tests-lib-tests atf +./usr/tests/lib/libc/string/t_memcpy tests-lib-tests atf +./usr/tests/lib/libc/string/t_memmem tests-lib-tests atf +./usr/tests/lib/libc/string/t_memset tests-lib-tests atf +./usr/tests/lib/libc/string/t_popcount tests-lib-tests atf +./usr/tests/lib/libc/string/t_strcat tests-lib-tests atf +./usr/tests/lib/libc/string/t_strchr tests-lib-tests atf +./usr/tests/lib/libc/string/t_strcmp tests-lib-tests atf +./usr/tests/lib/libc/string/t_strcpy tests-lib-tests atf +./usr/tests/lib/libc/string/t_strcspn tests-lib-tests atf +./usr/tests/lib/libc/string/t_strerror tests-lib-tests atf +./usr/tests/lib/libc/string/t_stresep tests-lib-tests atf +./usr/tests/lib/libc/string/t_string tests-obsolete obsolete +./usr/tests/lib/libc/string/t_strlen tests-lib-tests atf +./usr/tests/lib/libc/string/t_strpbrk tests-lib-tests atf +./usr/tests/lib/libc/string/t_strrchr tests-lib-tests atf +./usr/tests/lib/libc/string/t_strspn tests-lib-tests atf +./usr/tests/lib/libc/string/t_swab tests-lib-tests atf +./usr/tests/lib/libc/sys tests-lib-tests +./usr/tests/lib/libc/sys/Atffile tests-lib-tests atf +./usr/tests/lib/libc/sys/t_access tests-lib-tests atf +./usr/tests/lib/libc/sys/t_cerror tests-obsolete obsolete +./usr/tests/lib/libc/sys/t_chroot tests-lib-tests atf +./usr/tests/lib/libc/sys/t_clock_gettime tests-lib-tests atf +./usr/tests/lib/libc/sys/t_clone tests-lib-tests atf +./usr/tests/lib/libc/sys/t_connect tests-lib-tests atf +./usr/tests/lib/libc/sys/t_context tests-obsolete obsolete +./usr/tests/lib/libc/sys/t_dup tests-lib-tests atf +./usr/tests/lib/libc/sys/t_fsync tests-lib-tests atf +./usr/tests/lib/libc/sys/t_getcontext tests-lib-tests atf +./usr/tests/lib/libc/sys/t_getgroups tests-lib-tests atf +./usr/tests/lib/libc/sys/t_getitimer tests-lib-tests atf +./usr/tests/lib/libc/sys/t_getlogin tests-lib-tests atf +./usr/tests/lib/libc/sys/t_getpid tests-lib-tests atf +./usr/tests/lib/libc/sys/t_getrusage tests-lib-tests atf +./usr/tests/lib/libc/sys/t_getsid tests-lib-tests atf +./usr/tests/lib/libc/sys/t_gettimeofday tests-lib-tests atf +./usr/tests/lib/libc/sys/t_issetugid tests-lib-tests atf +./usr/tests/lib/libc/sys/t_kevent tests-lib-tests atf +./usr/tests/lib/libc/sys/t_kill tests-lib-tests atf +./usr/tests/lib/libc/sys/t_link tests-lib-tests atf +./usr/tests/lib/libc/sys/t_listen tests-lib-tests atf +./usr/tests/lib/libc/sys/t_lwp_ctl tests-lib-tests atf +./usr/tests/lib/libc/sys/t_lwp_create tests-lib-tests atf +./usr/tests/lib/libc/sys/t_mincore tests-lib-tests atf +./usr/tests/lib/libc/sys/t_mkdir tests-lib-tests atf +./usr/tests/lib/libc/sys/t_mkfifo tests-lib-tests atf +./usr/tests/lib/libc/sys/t_mknod tests-lib-tests atf +./usr/tests/lib/libc/sys/t_mlock tests-lib-tests atf +./usr/tests/lib/libc/sys/t_mmap tests-lib-tests atf +./usr/tests/lib/libc/sys/t_mprotect tests-lib-tests atf +./usr/tests/lib/libc/sys/t_msgctl tests-lib-tests atf +./usr/tests/lib/libc/sys/t_msgget tests-lib-tests atf +./usr/tests/lib/libc/sys/t_msgrcv tests-lib-tests atf +./usr/tests/lib/libc/sys/t_msgsnd tests-lib-tests atf +./usr/tests/lib/libc/sys/t_msync tests-lib-tests atf +./usr/tests/lib/libc/sys/t_nanosleep tests-lib-tests atf +./usr/tests/lib/libc/sys/t_pipe tests-lib-tests atf +./usr/tests/lib/libc/sys/t_pipe2 tests-lib-tests atf +./usr/tests/lib/libc/sys/t_poll tests-lib-tests atf +./usr/tests/lib/libc/sys/t_posix_fadvise tests-lib-tests atf,rump +./usr/tests/lib/libc/sys/t_recvmmsg tests-lib-tests atf +./usr/tests/lib/libc/sys/t_revoke tests-lib-tests atf +./usr/tests/lib/libc/sys/t_select tests-lib-tests atf +./usr/tests/lib/libc/sys/t_setrlimit tests-lib-tests atf +./usr/tests/lib/libc/sys/t_setuid tests-lib-tests atf +./usr/tests/lib/libc/sys/t_sigaction tests-lib-tests atf +./usr/tests/lib/libc/sys/t_sigqueue tests-lib-tests atf +./usr/tests/lib/libc/sys/t_socketpair tests-lib-tests atf +./usr/tests/lib/libc/sys/t_stat tests-lib-tests atf +./usr/tests/lib/libc/sys/t_swapcontext tests-lib-tests atf +./usr/tests/lib/libc/sys/t_timer_create tests-lib-tests atf +./usr/tests/lib/libc/sys/t_truncate tests-lib-tests atf +./usr/tests/lib/libc/sys/t_ucontext tests-lib-tests atf +./usr/tests/lib/libc/sys/t_umask tests-lib-tests atf +./usr/tests/lib/libc/sys/t_unlink tests-lib-tests atf +./usr/tests/lib/libc/sys/t_write tests-lib-tests atf +./usr/tests/lib/libc/termios tests-lib-tests +./usr/tests/lib/libc/termios/Atffile tests-lib-tests atf +./usr/tests/lib/libc/termios/t_tcsetpgrp tests-lib-tests atf +./usr/tests/lib/libc/tls tests-lib-tests +./usr/tests/lib/libc/tls/Atffile tests-lib-tests atf +./usr/tests/lib/libc/tls/t_tls_static tests-lib-tests atf +./usr/tests/lib/libc/ttyio tests-lib-tests +./usr/tests/lib/libc/ttyio/Atffile tests-lib-tests atf +./usr/tests/lib/libc/ttyio/t_ptm tests-lib-tests atf +./usr/tests/lib/libc/ttyio/t_ttyio tests-lib-tests atf +./usr/tests/lib/libc/t_atexit tests-obsolete obsolete +./usr/tests/lib/libc/t_cerror tests-obsolete obsolete +./usr/tests/lib/libc/t_clone tests-obsolete obsolete +./usr/tests/lib/libc/t_context tests-obsolete obsolete +./usr/tests/lib/libc/t_convfp tests-lib-tests atf +./usr/tests/lib/libc/t_cdb tests-lib-tests atf +./usr/tests/lib/libc/t_gdtoa tests-lib-tests atf +./usr/tests/lib/libc/t_hsearch tests-obsolete obsolete +./usr/tests/lib/libc/t_inet tests-obsolete obsolete +./usr/tests/lib/libc/t_mktime tests-obsolete obsolete +./usr/tests/lib/libc/t_nsdispatch tests-obsolete obsolete +./usr/tests/lib/libc/t_protoent tests-obsolete obsolete +./usr/tests/lib/libc/t_ptm tests-obsolete obsolete +./usr/tests/lib/libc/t_randomid tests-obsolete obsolete +./usr/tests/lib/libc/t_servent tests-obsolete obsolete +./usr/tests/lib/libc/t_strptime tests-obsolete obsolete +./usr/tests/lib/libc/time tests-lib-tests +./usr/tests/lib/libcrypt tests-lib-tests +./usr/tests/lib/libcrypt/Atffile tests-lib-tests +./usr/tests/lib/libcrypt/t_crypt tests-lib-tests +./usr/tests/lib/libcurses tests-lib-tests +./usr/tests/lib/libcurses/.terminfo.db tests-obsolete obsolete +./usr/tests/lib/libcurses/terminfo.cdb tests-lib-tests atf +./usr/tests/lib/libcurses/terminfo.db tests-obsolete obsolete +./usr/tests/lib/libcurses/Atffile tests-lib-tests atf +./usr/tests/lib/libcurses/check_files tests-lib-tests +./usr/tests/lib/libcurses/check_files/addch.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/addchstr.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/addstr.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/attributes.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/background1.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/background2.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/background3.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/background4.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/background5.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/bell.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/box_standout.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/chgat1.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/chgat2.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/chgat3.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear1.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear10.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear2.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear3.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear4.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear5.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear6.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear7.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear8.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/clear9.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/color_blank_draw.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/color_blue_back.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/color_default.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/color_red_fore.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/color_set.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/color_start.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin1.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin10.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin11.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin12.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin13.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin14.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin2.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin3.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin4.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin5.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin6.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin7.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin8.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/copywin9.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/curs_set1.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/curs_set2.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/curs_set3.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/curses_start.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/fill.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/home.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/timeout.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/wborder.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/wborder_refresh.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/wgetstr.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/wgetstr_refresh.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/window.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/wprintw_refresh.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/wscrl1.chk tests-lib-tests atf +./usr/tests/lib/libcurses/check_files/wscrl2.chk tests-lib-tests atf +./usr/tests/lib/libcurses/director tests-lib-tests atf +./usr/tests/lib/libcurses/slave tests-lib-tests atf +./usr/tests/lib/libcurses/t_curses tests-lib-tests atf +./usr/tests/lib/libcurses/tests tests-lib-tests +./usr/tests/lib/libcurses/tests/addch tests-lib-tests atf +./usr/tests/lib/libcurses/tests/addchnstr tests-lib-tests atf +./usr/tests/lib/libcurses/tests/addchstr tests-lib-tests atf +./usr/tests/lib/libcurses/tests/addnstr tests-lib-tests atf +./usr/tests/lib/libcurses/tests/addstr tests-lib-tests atf +./usr/tests/lib/libcurses/tests/assume_default_colors tests-lib-tests atf +./usr/tests/lib/libcurses/tests/attributes tests-lib-tests atf +./usr/tests/lib/libcurses/tests/background tests-lib-tests atf +./usr/tests/lib/libcurses/tests/beep tests-lib-tests atf +./usr/tests/lib/libcurses/tests/box tests-lib-tests atf +./usr/tests/lib/libcurses/tests/can_change_color tests-lib-tests atf +./usr/tests/lib/libcurses/tests/cbreak tests-lib-tests atf +./usr/tests/lib/libcurses/tests/chgat tests-lib-tests atf +./usr/tests/lib/libcurses/tests/clear tests-lib-tests atf +./usr/tests/lib/libcurses/tests/color_content tests-lib-tests atf +./usr/tests/lib/libcurses/tests/color_set tests-lib-tests atf +./usr/tests/lib/libcurses/tests/copywin tests-lib-tests atf +./usr/tests/lib/libcurses/tests/curs_set tests-lib-tests atf +./usr/tests/lib/libcurses/tests/fill_screen tests-lib-tests atf +./usr/tests/lib/libcurses/tests/getch tests-lib-tests atf +./usr/tests/lib/libcurses/tests/getstr tests-lib-tests atf +./usr/tests/lib/libcurses/tests/mvwin tests-lib-tests atf +./usr/tests/lib/libcurses/tests/start tests-lib-tests atf +./usr/tests/lib/libcurses/tests/start_color tests-lib-tests atf +./usr/tests/lib/libcurses/tests/std_defines tests-lib-tests atf +./usr/tests/lib/libcurses/tests/termattrs tests-lib-tests atf +./usr/tests/lib/libcurses/tests/timeout tests-lib-tests atf +./usr/tests/lib/libcurses/tests/wborder tests-lib-tests atf +./usr/tests/lib/libcurses/tests/window tests-lib-tests atf +./usr/tests/lib/libcurses/tests/window_create tests-lib-tests atf +./usr/tests/lib/libcurses/tests/wprintw tests-lib-tests atf +./usr/tests/lib/libcurses/tests/wscrl tests-lib-tests atf +./usr/tests/lib/libdes tests-lib-tests +./usr/tests/lib/libc/time/Atffile tests-lib-tests atf +./usr/tests/lib/libc/time/t_mktime tests-lib-tests atf +./usr/tests/lib/libc/time/t_strptime tests-lib-tests atf +./usr/tests/lib/libdes/Atffile tests-lib-tests atf,crypto +./usr/tests/lib/libdes/t_des tests-lib-tests atf,crypto +./usr/tests/lib/semaphore tests-lib-tests +./usr/tests/lib/semaphore/Atffile tests-lib-tests atf +./usr/tests/lib/semaphore/pthread tests-lib-tests +./usr/tests/lib/semaphore/pthread/Atffile tests-lib-tests atf,rump +./usr/tests/lib/semaphore/pthread/t_sem_pth tests-lib-tests atf,rump +./usr/tests/lib/libevent tests-lib-tests +./usr/tests/lib/libevent/Atffile tests-lib-tests atf +./usr/tests/lib/libevent/h_event tests-lib-tests atf +./usr/tests/lib/libevent/t_event tests-lib-tests atf +./usr/tests/lib/libexecinfo tests-lib-tests +./usr/tests/lib/libexecinfo/Atffile tests-lib-tests atf +./usr/tests/lib/libexecinfo/t_backtrace tests-lib-tests atf +./usr/tests/lib/libm tests-lib-tests atf +./usr/tests/lib/libm/Atffile tests-lib-tests atf +./usr/tests/lib/libm/t_acos tests-lib-tests atf +./usr/tests/lib/libm/t_asin tests-lib-tests atf +./usr/tests/lib/libm/t_atan tests-lib-tests atf +./usr/tests/lib/libm/t_cbrt tests-lib-tests atf +./usr/tests/lib/libm/t_ceil tests-lib-tests atf +./usr/tests/lib/libm/t_cos tests-lib-tests atf +./usr/tests/lib/libm/t_cosh tests-lib-tests atf +./usr/tests/lib/libm/t_erf tests-lib-tests atf +./usr/tests/lib/libm/t_exp tests-lib-tests atf +./usr/tests/lib/libm/t_floor tests-obsolete obsolete +./usr/tests/lib/libm/t_infinity tests-lib-tests atf +./usr/tests/lib/libm/t_ldexp tests-lib-tests atf +./usr/tests/lib/libm/t_log tests-lib-tests atf +./usr/tests/lib/libm/t_libm tests-obsolete obsolete +./usr/tests/lib/libm/t_pow tests-lib-tests atf +./usr/tests/lib/libm/t_round tests-lib-tests atf +./usr/tests/lib/libm/t_scalbn tests-lib-tests atf +./usr/tests/lib/libm/t_sin tests-lib-tests atf +./usr/tests/lib/libm/t_sinh tests-lib-tests atf +./usr/tests/lib/libm/t_sqrt tests-lib-tests atf +./usr/tests/lib/libm/t_tan tests-lib-tests atf +./usr/tests/lib/libm/t_tanh tests-lib-tests atf +./usr/tests/lib/libobjc tests-lib-tests atf +./usr/tests/lib/libobjc/Atffile tests-lib-tests atf +./usr/tests/lib/libobjc/t_threads tests-lib-tests atf,gcccmds +./usr/tests/lib/libposix tests-lib-tests atf +./usr/tests/lib/libposix/Atffile tests-lib-tests atf +./usr/tests/lib/libposix/bsd tests-lib-tests atf +./usr/tests/lib/libposix/bsd/Atffile tests-lib-tests atf +./usr/tests/lib/libposix/bsd/t_rename tests-lib-tests atf +./usr/tests/lib/libposix/posix1 tests-lib-tests atf +./usr/tests/lib/libposix/posix1/Atffile tests-lib-tests atf +./usr/tests/lib/libposix/posix1/t_rename tests-lib-tests atf +./usr/tests/lib/libposix/posix2 tests-lib-tests atf +./usr/tests/lib/libposix/posix2/Atffile tests-lib-tests atf +./usr/tests/lib/libposix/posix2/t_rename tests-lib-tests atf +./usr/tests/lib/libppath tests-lib-tests atf +./usr/tests/lib/libppath/Atffile tests-lib-tests atf +./usr/tests/lib/libppath/t_ppath tests-lib-tests atf +./usr/tests/lib/libprop tests-lib-tests atf +./usr/tests/lib/libprop/Atffile tests-lib-tests atf +./usr/tests/lib/libprop/t_basic tests-lib-tests atf +./usr/tests/lib/libpthread tests-lib-tests +./usr/tests/lib/libpthread/Atffile tests-lib-tests atf +./usr/tests/lib/libpthread/d_mach tests-lib-tests atf +./usr/tests/lib/libpthread/h_atexit tests-lib-tests atf +./usr/tests/lib/libpthread/h_cancel tests-lib-tests atf +./usr/tests/lib/libpthread/h_exit tests-lib-tests atf +./usr/tests/lib/libpthread/h_resolv tests-lib-tests atf +./usr/tests/lib/libpthread/t_atexit tests-lib-tests atf +./usr/tests/lib/libpthread/t_barrier tests-lib-tests atf +./usr/tests/lib/libpthread/t_cancel tests-lib-tests atf +./usr/tests/lib/libpthread/t_cond tests-lib-tests atf +./usr/tests/lib/libpthread/t_detach tests-lib-tests atf +./usr/tests/lib/libpthread/t_equal tests-lib-tests atf +./usr/tests/lib/libpthread/t_exit tests-lib-tests atf +./usr/tests/lib/libpthread/t_fork tests-lib-tests atf +./usr/tests/lib/libpthread/t_fpu tests-lib-tests atf +./usr/tests/lib/libpthread/t_join tests-lib-tests atf +./usr/tests/lib/libpthread/t_kill tests-lib-tests atf +./usr/tests/lib/libpthread/t_mutex tests-lib-tests atf +./usr/tests/lib/libpthread/t_name tests-lib-tests atf +./usr/tests/lib/libpthread/t_once tests-lib-tests atf +./usr/tests/lib/libpthread/t_preempt tests-lib-tests atf +./usr/tests/lib/libpthread/t_resolv tests-lib-tests atf +./usr/tests/lib/libpthread/t_rwlock tests-lib-tests atf +./usr/tests/lib/libpthread/t_sem tests-lib-tests atf +./usr/tests/lib/libpthread/t_sigmask tests-lib-tests atf +./usr/tests/lib/libpthread/t_sigsuspend tests-lib-tests atf +./usr/tests/lib/libpthread/t_siglongjmp tests-lib-tests atf +./usr/tests/lib/libpthread/t_sleep tests-lib-tests atf +./usr/tests/lib/libpthread/t_status tests-obsolete obsolete +./usr/tests/lib/libpthread/t_swapcontext tests-lib-tests atf +./usr/tests/lib/librt tests-lib-tests atf +./usr/tests/lib/librt/Atffile tests-lib-tests atf +./usr/tests/lib/librt/t_sched tests-lib-tests atf +./usr/tests/lib/librt/t_sem tests-lib-tests atf +./usr/tests/lib/librumpclient tests-lib-tests atf +./usr/tests/lib/librumpclient/Atffile tests-lib-tests atf,rump +./usr/tests/lib/librumpclient/h_exec tests-lib-tests atf,rump +./usr/tests/lib/librumpclient/h_execthr tests-lib-tests atf,rump +./usr/tests/lib/librumpclient/h_ution tests-obsolete obsolete +./usr/tests/lib/librumpclient/t_exec tests-lib-tests atf,rump +./usr/tests/lib/librumpclient/t_fd tests-lib-tests atf,rump +./usr/tests/lib/librumphijack tests-lib-tests atf +./usr/tests/lib/librumphijack/Atffile tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/h_client tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/h_cwd tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/h_netget tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/index.html tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/netstat.expout tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/t_asyncio tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/t_config tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/t_cwd tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/t_sh tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/t_tcpip tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/t_vfs tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/ssh_config.in tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/ssh_host_key tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/ssh_host_key.pub tests-lib-tests atf,rump +./usr/tests/lib/librumphijack/sshd_config.in tests-lib-tests atf,rump +./usr/tests/lib/libskey tests-lib-tests atf +./usr/tests/lib/libskey/Atffile tests-lib-tests atf,skey +./usr/tests/lib/libskey/t_algorithms tests-lib-tests atf,skey +./usr/tests/lib/libtre tests-lib-tests atf +./usr/tests/lib/libtre/Atffile tests-lib-tests atf +./usr/tests/lib/libtre/h_regex_att tests-obsolete obsolete +./usr/tests/lib/libtre/t_exhaust tests-lib-tests atf +./usr/tests/lib/libtre/t_regex_att tests-lib-tests atf +./usr/tests/lib/libtre/data tests-lib-tests atf +./usr/tests/lib/libtre/data/README tests-lib-tests atf +./usr/tests/lib/libtre/data/anchor.in tests-lib-tests atf +./usr/tests/lib/libtre/data/backref.in tests-lib-tests atf +./usr/tests/lib/libtre/data/basic.dat tests-lib-tests atf +./usr/tests/lib/libtre/data/basic.in tests-lib-tests atf +./usr/tests/lib/libtre/data/bracket.in tests-lib-tests atf +./usr/tests/lib/libtre/data/c_comments.in tests-lib-tests atf +./usr/tests/lib/libtre/data/categorization.dat tests-lib-tests atf +./usr/tests/lib/libtre/data/complex.in tests-lib-tests atf +./usr/tests/lib/libtre/data/error.in tests-lib-tests atf +./usr/tests/lib/libtre/data/forcedassoc.dat tests-lib-tests atf +./usr/tests/lib/libtre/data/leftassoc.dat tests-lib-tests atf +./usr/tests/lib/libtre/data/meta.in tests-lib-tests atf +./usr/tests/lib/libtre/data/nospec.in tests-lib-tests atf +./usr/tests/lib/libtre/data/nullsubexpr.dat tests-lib-tests atf +./usr/tests/lib/libtre/data/paren.in tests-lib-tests atf +./usr/tests/lib/libtre/data/regress.in tests-lib-tests atf +./usr/tests/lib/libtre/data/repet_bounded.in tests-lib-tests atf +./usr/tests/lib/libtre/data/repet_multi.in tests-lib-tests atf +./usr/tests/lib/libtre/data/repet_ordinary.in tests-lib-tests atf +./usr/tests/lib/libtre/data/repetition.dat tests-lib-tests atf +./usr/tests/lib/libtre/data/rightassoc.dat tests-lib-tests atf +./usr/tests/lib/libtre/data/startend.in tests-lib-tests atf +./usr/tests/lib/libtre/data/subexp.in tests-lib-tests atf +./usr/tests/lib/libtre/data/subtle.in tests-lib-tests atf +./usr/tests/lib/libtre/data/word_bound.in tests-lib-tests atf +./usr/tests/lib/libtre/data/zero.in tests-lib-tests atf +./usr/tests/lib/libutil tests-lib-tests atf +./usr/tests/lib/libutil/Atffile tests-lib-tests atf +./usr/tests/lib/libutil/t_efun tests-lib-tests atf +./usr/tests/lib/libutil/t_parsedate tests-lib-tests atf +./usr/tests/lib/libutil/t_pidfile tests-lib-tests atf +./usr/tests/lib/libutil/t_snprintb tests-lib-tests atf +./usr/tests/lib/libutil/t_sockaddr_snprintf tests-lib-tests atf +./usr/tests/libexec tests-lib-tests +./usr/tests/libexec/Atffile tests-lib-tests atf +./usr/tests/libexec/ld.elf_so tests-libexec-tests +./usr/tests/libexec/ld.elf_so/Atffile tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v0-v0 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v0-v1 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v0-v2 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v1-v0 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v1-v1 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v1-v2 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v2-v0 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v2-v1 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stderr.v2-v2 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v0-v0 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v0-v1 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v0-v2 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v1-v0 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v1-v1 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v1-v2 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v2-v0 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v2-v1 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/data/symver-output-ref-stdout.v2-v2 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/h_df_1_noopen1 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/h_df_1_noopen2 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/h_dl_symver_v0 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/h_dl_symver_v1 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/h_dl_symver_v2 tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso0 tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso1 tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso2 tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/h_locking tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/t_df_1_noopen tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/t_dl_symver tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/t_dlerror-cleared tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/t_dlerror-false tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/t_dlinfo tests-libexec-tests atf,pic +./usr/tests/libexec/ld.elf_so/t_dlvsym tests-libexec-tests atf,pic +./usr/tests/modules tests-sys-tests +./usr/tests/net tests-net-tests +./usr/tests/net/Atffile tests-net-tests atf +./usr/tests/net/bpf tests-net-tests +./usr/tests/net/bpf/Atffile tests-net-tests atf,rump +./usr/tests/net/bpf/t_bpf tests-net-tests atf,rump +./usr/tests/net/bpf/t_div-by-zero tests-net-tests atf,rump +./usr/tests/net/bpfilter tests-net-tests +./usr/tests/net/bpfilter/Atffile tests-net-tests atf,rump +./usr/tests/net/bpfilter/t_bpfilter tests-net-tests atf,rump +./usr/tests/net/carp tests-net-tests +./usr/tests/net/carp/Atffile tests-net-tests atf,rump +./usr/tests/net/carp/t_basic tests-net-tests atf,rump +./usr/tests/net/fdpass tests-net-tests +./usr/tests/net/fdpass/Atffile tests-net-tests atf +./usr/tests/net/fdpass/fdpass32 tests-net-tests atf +./usr/tests/net/fdpass/fdpass64 tests-net-tests atf +./usr/tests/net/fdpass/t_fdpass tests-net-tests atf +./usr/tests/net/icmp/t_forward tests-net-tests atf,rump +./usr/tests/net/icmp tests-net-tests +./usr/tests/net/icmp/Atffile tests-net-tests atf,rump +./usr/tests/net/icmp/t_forward tests-net-tests atf,rump +./usr/tests/net/icmp/t_ping tests-net-tests atf,rump +./usr/tests/net/icmp/t_ping2 tests-net-tests atf,rump +./usr/tests/net/if tests-net-tests +./usr/tests/net/if/Atffile tests-net-tests atf,rump +./usr/tests/net/if/t_compat tests-net-tests atf,rump +./usr/tests/net/if_loop tests-net-tests +./usr/tests/net/if_loop/Atffile tests-net-tests atf,rump +./usr/tests/net/if_loop/t_pr tests-net-tests atf,rump +./usr/tests/net/net tests-net-tests +./usr/tests/net/net/Atffile tests-net-tests atf,rump +./usr/tests/net/net/t_raw tests-net-tests atf,rump +./usr/tests/net/net/t_unix tests-net-tests atf,rump +./usr/tests/net/npf tests-net-tests +./usr/tests/net/npf/Atffile tests-net-tests atf,rump +./usr/tests/net/npf/npftest.conf tests-net-tests atf,rump +./usr/tests/net/npf/t_npf tests-net-tests atf,rump +./usr/tests/net/route tests-net-tests +./usr/tests/net/route/Atffile tests-net-tests atf +./usr/tests/net/route/t_change tests-net-tests atf +./usr/tests/net/sys tests-net-tests +./usr/tests/net/sys/Atffile tests-net-tests atf +./usr/tests/net/sys/t_connect tests-obsolete obsolete +./usr/tests/net/sys/t_listen tests-obsolete obsolete +./usr/tests/net/sys/t_rfc6056 tests-net-tests atf +./usr/tests/net/sys/t_socketpair tests-obsolete obsolete +./usr/tests/rump tests-rump-tests +./usr/tests/rump/Atffile tests-rump-tests atf,rump +./usr/tests/rump/modautoload tests-rump-tests +./usr/tests/rump/modautoload/Atffile tests-rump-tests atf,rump +./usr/tests/rump/modautoload/t_modautoload tests-rump-tests atf,rump +./usr/tests/rump/rumpkern tests-rump-tests +./usr/tests/rump/rumpkern/Atffile tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_copy tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_kern tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_lwproc tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_modcmd tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_modlinkset tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_sp tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_signals tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_threads tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_tsleep tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/t_vm tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/h_client tests-rump-tests +./usr/tests/rump/rumpkern/h_client/h_reboot tests-obsolete obsolete +./usr/tests/rump/rumpkern/h_client/h_forkcli tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/h_client/h_reconcli tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/h_client/h_sigcli tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/h_client/h_simplecli tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/h_client/h_stresscli tests-rump-tests atf,rump +./usr/tests/rump/rumpkern/h_server tests-rump-tests +./usr/tests/rump/rumpkern/h_server/h_simpleserver tests-rump-tests atf,rump +./usr/tests/rump/rumpnet tests-rump-tests +./usr/tests/rump/rumpnet/Atffile tests-rump-tests atf,rump +./usr/tests/rump/rumpnet/t_shmif tests-rump-tests atf,rump +./usr/tests/rump/rumpvfs tests-rump-tests +./usr/tests/rump/rumpvfs/Atffile tests-rump-tests atf,rump +./usr/tests/rump/rumpvfs/t_basic tests-rump-tests atf,rump +./usr/tests/rump/rumpvfs/t_etfs tests-rump-tests atf,rump +./usr/tests/rump/rumpvfs/t_p2kifs tests-rump-tests atf,rump +./usr/tests/sbin tests-sbin-tests +./usr/tests/sbin/Atffile tests-sbin-tests atf +./usr/tests/sbin/fsck_ffs tests-sbin-tests +./usr/tests/sbin/fsck_ffs/Atffile tests-sbin-tests atf +./usr/tests/sbin/fsck_ffs/t_check_quotas tests-sbin-tests atf +./usr/tests/sbin/fsck_ffs/t_enable_quotas tests-sbin-tests atf +./usr/tests/sbin/ifconfig tests-sbin-tests +./usr/tests/sbin/ifconfig/Atffile tests-sbin-tests atf +./usr/tests/sbin/ifconfig/t_nonexistent tests-sbin-tests atf +./usr/tests/sbin/newfs tests-sbin-tests +./usr/tests/sbin/newfs/Atffile tests-sbin-tests atf +./usr/tests/sbin/newfs/t_enable_quotas tests-sbin-tests atf +./usr/tests/sbin/newfs_msdos tests-sbin-tests +./usr/tests/sbin/newfs_msdos/Atffile tests-sbin-tests atf +./usr/tests/sbin/newfs_msdos/t_create tests-sbin-tests atf +./usr/tests/sbin/resize_ffs tests-sbin-tests +./usr/tests/sbin/resize_ffs/Atffile tests-sbin-tests atf +./usr/tests/sbin/resize_ffs/t_grow tests-sbin-tests atf +./usr/tests/sbin/resize_ffs/t_grow_swapped tests-sbin-tests atf +./usr/tests/sbin/resize_ffs/t_resize_ffs tests-obsolete obsolete +./usr/tests/sbin/resize_ffs/t_shrink tests-sbin-tests atf +./usr/tests/sbin/resize_ffs/t_shrink_swapped tests-sbin-tests atf +./usr/tests/sbin/resize_ffs/testdata.md5 tests-sbin-tests atf +./usr/tests/sbin/resize_ffs/testdata.tar.gz.base64 tests-sbin-tests atf +./usr/tests/sbin/route tests-sbin-tests +./usr/tests/sbin/route/Atffile tests-sbin-tests atf +./usr/tests/sbin/route/t_missing tests-sbin-tests atf +./usr/tests/sbin/sysctl tests-sbin-tests +./usr/tests/sbin/sysctl/Atffile tests-sbin-tests atf +./usr/tests/sbin/sysctl/t_perm tests-sbin-tests atf +./usr/tests/sbin/sysctl/t_sysctl tests-sbin-tests atf +./usr/tests/share tests-sys-tests +./usr/tests/share/Atffile tests-sys-tests atf +./usr/tests/share/mk tests-mk-tests +./usr/tests/share/mk/Atffile tests-mk-tests atf +./usr/tests/share/mk/t_lib tests-mk-tests atf +./usr/tests/share/mk/t_own tests-mk-tests atf +./usr/tests/share/mk/t_prog tests-mk-tests atf +./usr/tests/share/mk/t_test tests-mk-tests atf +./usr/tests/sys tests-sys-tests +./usr/tests/sys/Atffile tests-sys-tests atf +./usr/tests/sys/rc tests-sys-tests +./usr/tests/sys/rc/Atffile tests-sys-tests atf +./usr/tests/sys/rc/h_args tests-sys-tests atf +./usr/tests/sys/rc/h_simple tests-sys-tests atf +./usr/tests/sys/rc/t_rc_d_cli tests-sys-tests atf +./usr/tests/syscall tests-obsolete obsolete +./usr/tests/syscall/Atffile tests-obsolete obsolete +./usr/tests/syscall/t_access tests-obsolete obsolete +./usr/tests/syscall/t_chroot tests-obsolete obsolete +./usr/tests/syscall/t_cmsg tests-obsolete obsolete +./usr/tests/syscall/t_dup tests-obsolete obsolete +./usr/tests/syscall/t_fsync tests-obsolete obsolete +./usr/tests/syscall/t_getgroups tests-obsolete obsolete +./usr/tests/syscall/t_getlogin tests-obsolete obsolete +./usr/tests/syscall/t_getpid tests-obsolete obsolete +./usr/tests/syscall/t_getrusage tests-obsolete obsolete +./usr/tests/syscall/t_getsid tests-obsolete obsolete +./usr/tests/syscall/t_gettimeofday tests-obsolete obsolete +./usr/tests/syscall/t_issetugid tests-obsolete obsolete +./usr/tests/syscall/t_itimer tests-obsolete obsolete +./usr/tests/syscall/t_kill tests-obsolete obsolete +./usr/tests/syscall/t_link tests-obsolete obsolete +./usr/tests/syscall/t_mincore tests-obsolete obsolete +./usr/tests/syscall/t_mkfifo tests-obsolete obsolete +./usr/tests/syscall/t_mknod tests-obsolete obsolete +./usr/tests/syscall/t_mmap tests-obsolete obsolete +./usr/tests/syscall/t_mprotect tests-obsolete obsolete +./usr/tests/syscall/t_msync tests-obsolete obsolete +./usr/tests/syscall/t_nanosleep tests-obsolete obsolete +./usr/tests/syscall/t_poll tests-obsolete obsolete +./usr/tests/syscall/t_pollts tests-obsolete obsolete +./usr/tests/syscall/t_pselect tests-obsolete obsolete +./usr/tests/syscall/t_recvmmsg tests-obsolete obsolete +./usr/tests/syscall/t_revoke tests-obsolete obsolete +./usr/tests/syscall/t_setrlimit tests-obsolete obsolete +./usr/tests/syscall/t_setuid tests-obsolete obsolete +./usr/tests/syscall/t_stat tests-obsolete obsolete +./usr/tests/syscall/t_timer tests-obsolete obsolete +./usr/tests/syscall/t_truncate tests-obsolete obsolete +./usr/tests/syscall/t_umask tests-obsolete obsolete +./usr/tests/syscall/t_unlink tests-obsolete obsolete +./usr/tests/toolchain tests-obsolete obsolete +./usr/tests/toolchain/Atffile tests-obsolete obsolete +./usr/tests/toolchain/cc tests-obsolete obsolete +./usr/tests/toolchain/cc/Atffile tests-obsolete obsolete +./usr/tests/toolchain/cc/t_hello tests-obsolete obsolete +./usr/tests/usr.bin tests-usr.bin-tests +./usr/tests/usr.bin/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/awk tests-usr.bin-tests +./usr/tests/usr.bin/awk/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/t_awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_assign_NF.awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_assign_NF.in tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_assign_NF.out tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_big_regexp.awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_big_regexp.in tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_big_regexp.out tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_end1.awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_end1.in tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_end1.out tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_end2.awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_end2.in tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_end2.out tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_period.awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_period.in tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_period.out tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_string1.awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_string1.out tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_tolower.awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_tolower.in tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_tolower.out tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_toupper.awk tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_toupper.in tests-usr.bin-tests atf +./usr/tests/usr.bin/awk/d_toupper.out tests-usr.bin-tests atf +./usr/tests/usr.bin/basename tests-usr.bin-tests +./usr/tests/usr.bin/basename/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/basename/t_basename tests-usr.bin-tests atf +./usr/tests/usr.bin/bzip2 tests-usr.bin-tests +./usr/tests/usr.bin/bzip2/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/bzip2/t_bzip2 tests-usr.bin-tests atf +./usr/tests/usr.bin/bzip2/d_sample1.bz2 tests-usr.bin-tests atf +./usr/tests/usr.bin/bzip2/d_sample1.ref tests-usr.bin-tests atf +./usr/tests/usr.bin/bzip2/d_sample2.bz2 tests-usr.bin-tests atf +./usr/tests/usr.bin/bzip2/d_sample2.ref tests-usr.bin-tests atf +./usr/tests/usr.bin/bzip2/d_sample3.bz2 tests-usr.bin-tests atf +./usr/tests/usr.bin/bzip2/d_sample3.ref tests-usr.bin-tests atf +./usr/tests/usr.bin/cc tests-usr.bin-tests +./usr/tests/usr.bin/cc/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/cc/t_hello tests-usr.bin-tests atf +./usr/tests/usr.bin/cmp tests-usr.bin-tests +./usr/tests/usr.bin/cmp/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/cmp/t_cmp tests-usr.bin-tests atf +./usr/tests/usr.bin/config tests-usr.bin-tests +./usr/tests/usr.bin/config/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/config/Makefile.regress tests-usr.bin-tests atf +./usr/tests/usr.bin/config/t_config tests-usr.bin-tests atf +./usr/tests/usr.bin/config/d_deffs_redef tests-usr.bin-tests atf +./usr/tests/usr.bin/config/d_loop tests-usr.bin-tests atf +./usr/tests/usr.bin/config/d_loop2 tests-usr.bin-tests atf +./usr/tests/usr.bin/config/d_no_pseudo tests-usr.bin-tests atf +./usr/tests/usr.bin/config/d_postponed_orphan tests-usr.bin-tests atf +./usr/tests/usr.bin/config/d_pseudo_parent tests-usr.bin-tests atf +./usr/tests/usr.bin/config/d_shadow_instance tests-usr.bin-tests atf +./usr/tests/usr.bin/config/files tests-usr.bin-tests atf +./usr/tests/usr.bin/config/files.regress tests-usr.bin-tests atf +./usr/tests/usr.bin/config/std.regress tests-usr.bin-tests atf +./usr/tests/usr.bin/config/support tests-usr.bin-tests +./usr/tests/usr.bin/config/support/arch tests-usr.bin-tests +./usr/tests/usr.bin/config/support/arch/regress tests-usr.bin-tests +./usr/tests/usr.bin/config/support/arch/regress/conf tests-usr.bin-tests atf +./usr/tests/usr.bin/config/support/arch/regress/conf/Makefile.regress tests-usr.bin-tests atf +./usr/tests/usr.bin/config/support/arch/regress/conf/files.regress tests-usr.bin-tests atf +./usr/tests/usr.bin/config/support/arch/regress/conf/std.regress tests-usr.bin-tests atf +./usr/tests/usr.bin/config/support/conf tests-usr.bin-tests +./usr/tests/usr.bin/config/support/conf/files tests-usr.bin-tests atf +./usr/tests/usr.bin/cut tests-usr.bin-tests +./usr/tests/usr.bin/cut/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/cut/d_basic.out tests-usr.bin-tests atf +./usr/tests/usr.bin/cut/d_cut.in tests-usr.bin-tests atf +./usr/tests/usr.bin/cut/d_dflag.out tests-usr.bin-tests atf +./usr/tests/usr.bin/cut/d_dsflag.out tests-usr.bin-tests atf +./usr/tests/usr.bin/cut/d_latin1.in tests-usr.bin-tests atf +./usr/tests/usr.bin/cut/d_sflag.out tests-usr.bin-tests atf +./usr/tests/usr.bin/cut/d_utf8.in tests-usr.bin-tests atf +./usr/tests/usr.bin/cut/t_cut tests-usr.bin-tests atf +./usr/tests/usr.bin/diff tests-usr.bin-tests +./usr/tests/usr.bin/diff/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/diff/d_mallocv1.in tests-usr.bin-tests atf +./usr/tests/usr.bin/diff/d_mallocv2.in tests-usr.bin-tests atf +./usr/tests/usr.bin/diff/t_diff tests-usr.bin-tests atf +./usr/tests/usr.bin/dirname tests-usr.bin-tests +./usr/tests/usr.bin/dirname/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/dirname/t_dirname tests-usr.bin-tests atf +./usr/tests/usr.bin/find tests-usr.bin-tests +./usr/tests/usr.bin/find/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/find/t_find tests-usr.bin-tests atf +./usr/tests/usr.bin/grep tests-usr.bin-tests +./usr/tests/usr.bin/grep/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_basic.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_begin_end_a.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_begin_end_b.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_binary.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context2_a.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context2_b.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context2_c.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context_a.in tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context_a.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context_b.in tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context_b.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context_c.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_context_d.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_egrep.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_file_exp.in tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_file_exp.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_ignore_case.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_input tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_invert.in tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_invert.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_recurse.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_recurse_symlink.err tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_recurse_symlink.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_whole_line.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_word_regexps.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/d_zgrep.out tests-usr.bin-tests atf +./usr/tests/usr.bin/grep/t_grep tests-usr.bin-tests atf +./usr/tests/usr.bin/gzip tests-usr.bin-tests +./usr/tests/usr.bin/gzip/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/gzip/t_gzip tests-usr.bin-tests atf +./usr/tests/usr.bin/id tests-usr.bin-tests +./usr/tests/usr.bin/id/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/id/h_id tests-usr.bin-tests atf +./usr/tests/usr.bin/id/t_groups tests-usr.bin-tests atf +./usr/tests/usr.bin/id/t_id tests-usr.bin-tests atf +./usr/tests/usr.bin/id/t_whoami tests-usr.bin-tests atf +./usr/tests/usr.bin/infocmp tests-usr.bin-tests +./usr/tests/usr.bin/infocmp/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/infocmp/t_terminfo tests-usr.bin-tests atf +./usr/tests/usr.bin/jot tests-usr.bin-tests +./usr/tests/usr.bin/jot/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/jot/d_basic.out tests-usr.bin-tests atf +./usr/tests/usr.bin/jot/t_jot tests-usr.bin-tests atf +./usr/tests/usr.bin/m4 tests-usr.bin-tests +./usr/tests/usr.bin/m4/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/m4/d_ff_after_dnl.m4.uue tests-usr.bin-tests atf +./usr/tests/usr.bin/m4/d_ff_after_dnl.out tests-usr.bin-tests atf +./usr/tests/usr.bin/m4/d_m4wrap-P.m4 tests-usr.bin-tests atf +./usr/tests/usr.bin/m4/d_m4wrap-P.out tests-usr.bin-tests atf +./usr/tests/usr.bin/m4/d_m4wrap.m4 tests-usr.bin-tests atf +./usr/tests/usr.bin/m4/d_m4wrap.out tests-usr.bin-tests atf +./usr/tests/usr.bin/m4/t_m4 tests-usr.bin-tests atf +./usr/tests/usr.bin/make tests-usr.bin-tests +./usr/tests/usr.bin/make/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_comment.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_comment.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_cond1.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_cond1.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_dotwait.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_dotwait.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_export.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_export.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_export_all.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_export_all.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_moderrs.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_moderrs.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modmatch.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modmatch.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modmisc.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modmisc.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modorder.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modorder.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modts.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modts.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modword.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_modword.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_posix.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_posix.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_qequals.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_qequals.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_ternary.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_ternary.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_unmatchedvarparen.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_unmatchedvarparen.out tests-usr.bin-tests +./usr/tests/usr.bin/make/d_varcmd.mk tests-usr.bin-tests atf +./usr/tests/usr.bin/make/d_varcmd.out tests-usr.bin-tests atf +./usr/tests/usr.bin/make/t_make tests-usr.bin-tests atf +./usr/tests/usr.bin/mkdep tests-usr.bin-tests +./usr/tests/usr.bin/mkdep/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/mkdep/t_mkdep tests-usr.bin-tests atf +./usr/tests/usr.bin/nbperf tests-usr.bin-tests +./usr/tests/usr.bin/nbperf/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/nbperf/h_nbperf tests-usr.bin-tests atf +./usr/tests/usr.bin/nbperf/hash_driver.c tests-usr.bin-tests atf +./usr/tests/usr.bin/nbperf/t_nbperf tests-usr.bin-tests atf +./usr/tests/usr.bin/pr tests-usr.bin-tests +./usr/tests/usr.bin/pr/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/pr/d_basic.in tests-usr.bin-tests atf +./usr/tests/usr.bin/pr/d_basic.out tests-usr.bin-tests atf +./usr/tests/usr.bin/pr/t_basic tests-usr.bin-tests atf +./usr/tests/usr.bin/rump_server tests-usr.bin-tests +./usr/tests/usr.bin/rump_server/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/rump_server/t_disk tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff tests-usr.bin-tests +./usr/tests/usr.bin/sdiff/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_dot.in tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_flags_l.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_flags_s.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_flags_w.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_iflags_a1.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_iflags_a2.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_iflags_b1.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_iflags_b2.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_iflags_c1.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_iflags_c2.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_iflags_d1.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_iflags_d2.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_input1 tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_input2 tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_oneline.in tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_oneline_a.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_oneline_b.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_same.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_short.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_tabends.in tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_tabends_a.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_tabends_b.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_tabends_c.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_tabs.out tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_tabs1.in tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/d_tabs2.in tests-usr.bin-tests atf +./usr/tests/usr.bin/sdiff/t_sdiff tests-usr.bin-tests atf +./usr/tests/usr.bin/sed tests-usr.bin-tests +./usr/tests/usr.bin/sed/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/sed/d_c2048.in tests-usr.bin-tests atf +./usr/tests/usr.bin/sed/t_sed tests-usr.bin-tests atf +./usr/tests/usr.bin/shmif_dumpbus tests-usr.bin-tests +./usr/tests/usr.bin/shmif_dumpbus/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/shmif_dumpbus/d_pcap.out.bz2.uue tests-usr.bin-tests atf +./usr/tests/usr.bin/shmif_dumpbus/d_pkthdrs.out.bz2.uue tests-usr.bin-tests atf +./usr/tests/usr.bin/shmif_dumpbus/shmbus.bz2.uue tests-usr.bin-tests atf +./usr/tests/usr.bin/shmif_dumpbus/t_basic tests-usr.bin-tests atf atf +./usr/tests/usr.bin/sort tests-usr.bin-tests +./usr/tests/usr.bin/sort/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/sort/d_any_char_dflag_out.txt tests-usr.bin-tests atf +./usr/tests/usr.bin/sort/d_any_char_fflag_out.txt tests-usr.bin-tests atf +./usr/tests/usr.bin/sort/d_any_char_iflag_out.txt tests-usr.bin-tests atf +./usr/tests/usr.bin/sort/d_any_char_in.txt tests-usr.bin-tests atf +./usr/tests/usr.bin/sort/t_sort tests-usr.bin-tests atf +./usr/tests/usr.bin/tmux tests-usr.bin-tests +./usr/tests/usr.bin/tmux/Atffile tests-usr.bin-tests atf atf +./usr/tests/usr.bin/tmux/t_tmux tests-usr.bin-tests atf +./usr/tests/usr.bin/unifdef tests-usr.bin-tests +./usr/tests/usr.bin/unifdef/Atffile tests-usr.bin-tests atf atf +./usr/tests/usr.bin/unifdef/d_basic.in tests-usr.bin-tests atf +./usr/tests/usr.bin/unifdef/d_basic.out tests-usr.bin-tests atf +./usr/tests/usr.bin/unifdef/t_basic tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint tests-usr.bin-tests +./usr/tests/usr.bin/xlint/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1 tests-usr.bin-tests +./usr/tests/usr.bin/xlint/lint1/Atffile tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_alignof.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_complex_num.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_decls_after_stmt.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_decls_after_stmt2.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_for_loops.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_func.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_recursive_init.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_struct_init.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_union_init1.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_union_init2.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c99_union_init3.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c9x_array_init.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_c9x_recursive_init.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_cast_init.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_cast_init2.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_cast_lhs.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_compound_literals1.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_compound_literals2.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_constant_conv1.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_constant_conv2.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_cvt_in_ternary.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_ellipsis_in_switch.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_gcc_compound_statements1.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_gcc_compound_statements2.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_gcc_compound_statements3.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_gcc_func.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_gcc_variable_array_init.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_incorrect_array_size.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_long_double_int.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_nested_structs.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_nolimit_init.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_packed_structs.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_shift_to_narrower_type.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_type_conv1.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_type_conv2.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_type_conv3.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_typename_as_var.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/d_zero_sized_arrays.c tests-usr.bin-tests atf +./usr/tests/usr.bin/xlint/lint1/t_integration tests-usr.bin-tests atf +./usr/tests/usr.sbin tests-usr.sbin-tests +./usr/tests/usr.sbin/Atffile tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree tests-usr.sbin-tests +./usr/tests/usr.sbin/mtree/Atffile tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_convert.in tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_convert_C.out tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_convert_C_S.out tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_convert_D.out tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_convert_D_S.out tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_create.out tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_merge.in tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_merge_C_M.out tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/d_merge_C_M_S.out tests-usr.sbin-tests atf +./usr/tests/usr.sbin/mtree/t_mtree tests-usr.sbin-tests atf +./usr/tests/usr.sbin/tcpdump tests-usr.sbin-tests +./usr/tests/usr.sbin/tcpdump/Atffile tests-usr.sbin-tests atf +./usr/tests/usr.sbin/tcpdump/t_tcpdump tests-usr.sbin-tests atf +./usr/tests/usr.sbin/traceroute tests-usr.sbin-tests +./usr/tests/usr.sbin/traceroute/Atffile tests-usr.sbin-tests atf +./usr/tests/usr.sbin/traceroute/t_traceroute tests-usr.sbin-tests atf +./usr/tests/usr.sbin/useradd tests-usr.sbin-tests +./usr/tests/usr.sbin/useradd/Atffile tests-usr.sbin-tests atf +./usr/tests/usr.sbin/useradd/t_useradd tests-usr.sbin-tests atf +./usr/tests/util tests-obsolete obsolete +./usr/tests/util/Atffile tests-obsolete obsolete +./usr/tests/util/awk tests-obsolete obsolete +./usr/tests/util/awk/Atffile tests-obsolete obsolete +./usr/tests/util/awk/d_assign_NF.awk tests-obsolete obsolete +./usr/tests/util/awk/d_assign_NF.in tests-obsolete obsolete +./usr/tests/util/awk/d_assign_NF.out tests-obsolete obsolete +./usr/tests/util/awk/d_big_regexp.awk tests-obsolete obsolete +./usr/tests/util/awk/d_big_regexp.in tests-obsolete obsolete +./usr/tests/util/awk/d_big_regexp.out tests-obsolete obsolete +./usr/tests/util/awk/d_end1.awk tests-obsolete obsolete +./usr/tests/util/awk/d_end1.in tests-obsolete obsolete +./usr/tests/util/awk/d_end1.out tests-obsolete obsolete +./usr/tests/util/awk/d_end2.awk tests-obsolete obsolete +./usr/tests/util/awk/d_end2.in tests-obsolete obsolete +./usr/tests/util/awk/d_end2.out tests-obsolete obsolete +./usr/tests/util/awk/d_period.awk tests-obsolete obsolete +./usr/tests/util/awk/d_period.in tests-obsolete obsolete +./usr/tests/util/awk/d_period.out tests-obsolete obsolete +./usr/tests/util/awk/d_string1.awk tests-obsolete obsolete +./usr/tests/util/awk/d_string1.out tests-obsolete obsolete +./usr/tests/util/awk/d_tolower.awk tests-obsolete obsolete +./usr/tests/util/awk/d_tolower.in tests-obsolete obsolete +./usr/tests/util/awk/d_tolower.out tests-obsolete obsolete +./usr/tests/util/awk/d_toupper.awk tests-obsolete obsolete +./usr/tests/util/awk/d_toupper.in tests-obsolete obsolete +./usr/tests/util/awk/d_toupper.out tests-obsolete obsolete +./usr/tests/util/awk/t_awk tests-obsolete obsolete +./usr/tests/util/bzip2 tests-obsolete obsolete +./usr/tests/util/bzip2/Atffile tests-obsolete obsolete +./usr/tests/util/bzip2/d_sample1.bz2 tests-obsolete obsolete +./usr/tests/util/bzip2/d_sample1.ref tests-obsolete obsolete +./usr/tests/util/bzip2/d_sample2.bz2 tests-obsolete obsolete +./usr/tests/util/bzip2/d_sample2.ref tests-obsolete obsolete +./usr/tests/util/bzip2/d_sample3.bz2 tests-obsolete obsolete +./usr/tests/util/bzip2/d_sample3.ref tests-obsolete obsolete +./usr/tests/util/bzip2/t_bzip2 tests-obsolete obsolete +./usr/tests/util/config tests-obsolete obsolete +./usr/tests/util/config/Atffile tests-obsolete obsolete +./usr/tests/util/config/Makefile.regress tests-obsolete obsolete +./usr/tests/util/config/d_deffs_redef tests-obsolete obsolete +./usr/tests/util/config/d_loop tests-obsolete obsolete +./usr/tests/util/config/d_loop2 tests-obsolete obsolete +./usr/tests/util/config/d_no_pseudo tests-obsolete obsolete +./usr/tests/util/config/d_postponed_orphan tests-obsolete obsolete +./usr/tests/util/config/d_pseudo_parent tests-obsolete obsolete +./usr/tests/util/config/d_shadow_instance tests-obsolete obsolete +./usr/tests/util/config/files tests-obsolete obsolete +./usr/tests/util/config/files.regress tests-obsolete obsolete +./usr/tests/util/config/std.regress tests-obsolete obsolete +./usr/tests/util/config/support tests-obsolete obsolete +./usr/tests/util/config/support/arch tests-obsolete obsolete +./usr/tests/util/config/support/arch/regress tests-obsolete obsolete +./usr/tests/util/config/support/arch/regress/conf tests-obsolete obsolete +./usr/tests/util/config/support/arch/regress/conf/Makefile.regress tests-obsolete obsolete +./usr/tests/util/config/support/arch/regress/conf/files.regress tests-obsolete obsolete +./usr/tests/util/config/support/arch/regress/conf/std.regress tests-obsolete obsolete +./usr/tests/util/config/support/conf tests-obsolete obsolete +./usr/tests/util/config/support/conf/files tests-obsolete obsolete +./usr/tests/util/config/t_config tests-obsolete obsolete +./usr/tests/util/cut tests-obsolete obsolete +./usr/tests/util/cut/Atffile tests-obsolete obsolete +./usr/tests/util/cut/d_basic.out tests-obsolete obsolete +./usr/tests/util/cut/d_cut.in tests-obsolete obsolete +./usr/tests/util/cut/d_dflag.out tests-obsolete obsolete +./usr/tests/util/cut/d_dsflag.out tests-obsolete obsolete +./usr/tests/util/cut/d_latin1.in tests-obsolete obsolete +./usr/tests/util/cut/d_sflag.out tests-obsolete obsolete +./usr/tests/util/cut/d_utf8.in tests-obsolete obsolete +./usr/tests/util/cut/t_cut tests-obsolete obsolete +./usr/tests/util/df tests-obsolete obsolete +./usr/tests/util/df/Atffile tests-obsolete obsolete +./usr/tests/util/df/h_df tests-obsolete obsolete +./usr/tests/util/df/t_df tests-obsolete obsolete +./usr/tests/util/grep tests-obsolete obsolete +./usr/tests/util/grep/Atffile tests-obsolete obsolete +./usr/tests/util/grep/d_basic.out tests-obsolete obsolete +./usr/tests/util/grep/d_begin_end_a.out tests-obsolete obsolete +./usr/tests/util/grep/d_begin_end_b.out tests-obsolete obsolete +./usr/tests/util/grep/d_binary.out tests-obsolete obsolete +./usr/tests/util/grep/d_context2_a.out tests-obsolete obsolete +./usr/tests/util/grep/d_context2_b.out tests-obsolete obsolete +./usr/tests/util/grep/d_context2_c.out tests-obsolete obsolete +./usr/tests/util/grep/d_context_a.in tests-obsolete obsolete +./usr/tests/util/grep/d_context_a.out tests-obsolete obsolete +./usr/tests/util/grep/d_context_b.in tests-obsolete obsolete +./usr/tests/util/grep/d_context_b.out tests-obsolete obsolete +./usr/tests/util/grep/d_context_c.out tests-obsolete obsolete +./usr/tests/util/grep/d_context_d.out tests-obsolete obsolete +./usr/tests/util/grep/d_egrep.out tests-obsolete obsolete +./usr/tests/util/grep/d_file_exp.in tests-obsolete obsolete +./usr/tests/util/grep/d_file_exp.out tests-obsolete obsolete +./usr/tests/util/grep/d_file_exp.inout tests-obsolete obsolete +./usr/tests/util/grep/d_ignore_case.out tests-obsolete obsolete +./usr/tests/util/grep/d_input tests-obsolete obsolete +./usr/tests/util/grep/d_invert.in tests-obsolete obsolete +./usr/tests/util/grep/d_invert.out tests-obsolete obsolete +./usr/tests/util/grep/d_recurse.out tests-obsolete obsolete +./usr/tests/util/grep/d_recurse_symlink.err tests-obsolete obsolete +./usr/tests/util/grep/d_recurse_symlink.out tests-obsolete obsolete +./usr/tests/util/grep/d_whole_line.out tests-obsolete obsolete +./usr/tests/util/grep/d_word_regexps.out tests-obsolete obsolete +./usr/tests/util/grep/d_zgrep.out tests-obsolete obsolete +./usr/tests/util/grep/t_grep tests-obsolete obsolete +./usr/tests/util/id tests-obsolete obsolete +./usr/tests/util/id/Atffile tests-obsolete obsolete +./usr/tests/util/id/libfake_pic.a tests-obsolete obsolete +./usr/tests/util/id/h_id tests-obsolete obsolete +./usr/tests/util/id/t_groups tests-obsolete obsolete +./usr/tests/util/id/t_id tests-obsolete obsolete +./usr/tests/util/id/t_whoami tests-obsolete obsolete +./usr/tests/util/m4 tests-obsolete obsolete +./usr/tests/util/m4/Atffile tests-obsolete obsolete +./usr/tests/util/m4/d_ff_after_dnl.m4.uue tests-obsolete obsolete +./usr/tests/util/m4/d_ff_after_dnl.out tests-obsolete obsolete +./usr/tests/util/m4/d_m4wrap-P.m4 tests-obsolete obsolete +./usr/tests/util/m4/d_m4wrap-P.out tests-obsolete obsolete +./usr/tests/util/m4/d_m4wrap.m4 tests-obsolete obsolete +./usr/tests/util/m4/d_m4wrap.out tests-obsolete obsolete +./usr/tests/util/m4/t_m4 tests-obsolete obsolete +./usr/tests/util/make tests-obsolete obsolete +./usr/tests/util/make/Atffile tests-obsolete obsolete +./usr/tests/util/make/d_comment.mk tests-obsolete obsolete +./usr/tests/util/make/d_comment.out tests-obsolete obsolete +./usr/tests/util/make/d_cond1.mk tests-obsolete obsolete +./usr/tests/util/make/d_cond1.out tests-obsolete obsolete +./usr/tests/util/make/d_dotwait.mk tests-obsolete obsolete +./usr/tests/util/make/d_dotwait.out tests-obsolete obsolete +./usr/tests/util/make/d_export.mk tests-obsolete obsolete +./usr/tests/util/make/d_export.out tests-obsolete obsolete +./usr/tests/util/make/d_export_all.mk tests-obsolete obsolete +./usr/tests/util/make/d_export_all.out tests-obsolete obsolete +./usr/tests/util/make/d_moderrs.mk tests-obsolete obsolete +./usr/tests/util/make/d_moderrs.out tests-obsolete obsolete +./usr/tests/util/make/d_modmatch.mk tests-obsolete obsolete +./usr/tests/util/make/d_modmatch.out tests-obsolete obsolete +./usr/tests/util/make/d_modmisc.mk tests-obsolete obsolete +./usr/tests/util/make/d_modmisc.out tests-obsolete obsolete +./usr/tests/util/make/d_modorder.mk tests-obsolete obsolete +./usr/tests/util/make/d_modorder.out tests-obsolete obsolete +./usr/tests/util/make/d_modts.mk tests-obsolete obsolete +./usr/tests/util/make/d_modts.out tests-obsolete obsolete +./usr/tests/util/make/d_modword.mk tests-obsolete obsolete +./usr/tests/util/make/d_modword.out tests-obsolete obsolete +./usr/tests/util/make/d_posix.mk tests-obsolete obsolete +./usr/tests/util/make/d_posix.out tests-obsolete obsolete +./usr/tests/util/make/d_qequals.mk tests-obsolete obsolete +./usr/tests/util/make/d_qequals.out tests-obsolete obsolete +./usr/tests/util/make/d_ternary.mk tests-obsolete obsolete +./usr/tests/util/make/d_ternary.out tests-obsolete obsolete +./usr/tests/util/make/d_unmatchedvarparen.mk tests-obsolete obsolete +./usr/tests/util/make/d_unmatchedvarparen.out tests-obsolete obsolete +./usr/tests/util/make/d_varcmd.mk tests-obsolete obsolete +./usr/tests/util/make/d_varcmd.out tests-obsolete obsolete +./usr/tests/util/make/t_make tests-obsolete obsolete +./usr/tests/util/mtree tests-obsolete obsolete +./usr/tests/util/mtree/Atffile tests-obsolete obsolete +./usr/tests/util/mtree/d_convert.in tests-obsolete obsolete +./usr/tests/util/mtree/d_convert_C.out tests-obsolete obsolete +./usr/tests/util/mtree/d_convert_C_S.out tests-obsolete obsolete +./usr/tests/util/mtree/d_convert_D.out tests-obsolete obsolete +./usr/tests/util/mtree/d_convert_D_S.out tests-obsolete obsolete +./usr/tests/util/mtree/d_create.out tests-obsolete obsolete +./usr/tests/util/mtree/d_merge.in tests-obsolete obsolete +./usr/tests/util/mtree/d_merge_C_M.out tests-obsolete obsolete +./usr/tests/util/mtree/d_merge_C_M_S.out tests-obsolete obsolete +./usr/tests/util/mtree/t_mtree tests-obsolete obsolete +./usr/tests/util/ps tests-obsolete obsolete +./usr/tests/util/ps/Atffile tests-obsolete obsolete +./usr/tests/util/ps/keywords tests-obsolete obsolete +./usr/tests/util/ps/t_ps tests-obsolete obsolete +./usr/tests/util/sdiff tests-obsolete obsolete +./usr/tests/util/sdiff/Atffile tests-obsolete obsolete +./usr/tests/util/sdiff/d_dot.in tests-obsolete obsolete +./usr/tests/util/sdiff/d_flags_l.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_flags_s.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_flags_w.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_iflags_a1.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_iflags_a2.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_iflags_b1.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_iflags_b2.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_iflags_c1.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_iflags_c2.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_iflags_d1.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_iflags_d2.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_input1 tests-obsolete obsolete +./usr/tests/util/sdiff/d_input2 tests-obsolete obsolete +./usr/tests/util/sdiff/d_oneline.in tests-obsolete obsolete +./usr/tests/util/sdiff/d_oneline_a.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_oneline_b.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_same.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_short.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_tabends.in tests-obsolete obsolete +./usr/tests/util/sdiff/d_tabends_a.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_tabends_b.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_tabends_c.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_tabs.out tests-obsolete obsolete +./usr/tests/util/sdiff/d_tabs1.in tests-obsolete obsolete +./usr/tests/util/sdiff/d_tabs2.in tests-obsolete obsolete +./usr/tests/util/sdiff/t_sdiff tests-obsolete obsolete +./usr/tests/util/sh tests-obsolete obsolete +./usr/tests/util/sh/Atffile tests-obsolete obsolete +./usr/tests/util/sh/t_compexit tests-obsolete obsolete +./usr/tests/util/sh/t_exit tests-obsolete obsolete +./usr/tests/util/sh/t_exitstatus tests-obsolete obsolete +./usr/tests/util/sh/t_expand tests-obsolete obsolete +./usr/tests/util/sh/t_evaltested tests-obsolete obsolete +./usr/tests/util/sh/t_fsplit tests-obsolete obsolete +./usr/tests/util/sh/t_here tests-obsolete obsolete +./usr/tests/util/sh/t_set_e tests-obsolete obsolete +./usr/tests/util/sh/t_varquote tests-obsolete obsolete +./usr/tests/util/sh/t_wait tests-obsolete obsolete +./usr/tests/util/sort tests-obsolete obsolete +./usr/tests/util/sort/Atffile tests-obsolete obsolete +./usr/tests/util/sort/d_any_char_dflag_out.txt tests-obsolete obsolete +./usr/tests/util/sort/d_any_char_fflag_out.txt tests-obsolete obsolete +./usr/tests/util/sort/d_any_char_iflag_out.txt tests-obsolete obsolete +./usr/tests/util/sort/d_any_char_in.txt tests-obsolete obsolete +./usr/tests/util/sort/t_sort tests-obsolete obsolete +./usr/tests/util/systrace tests-obsolete obsolete +./usr/tests/util/systrace/Atffile tests-obsolete obsolete +./usr/tests/util/systrace/id.policy tests-obsolete obsolete +./usr/tests/util/systrace/h_have_systrace tests-obsolete obsolete +./usr/tests/util/systrace/t_id tests-obsolete obsolete +./usr/tests/util/t_basename tests-obsolete obsolete +./usr/tests/util/t_cp tests-obsolete obsolete +./usr/tests/util/t_dd tests-obsolete obsolete +./usr/tests/util/t_dirname tests-obsolete obsolete +./usr/tests/util/t_expr tests-obsolete obsolete +./usr/tests/util/t_gzip tests-obsolete obsolete +./usr/tests/util/t_pax tests-obsolete obsolete +./usr/tests/util/t_sort tests-obsolete obsolete +./usr/tests/util/t_tar tests-obsolete obsolete +./usr/tests/util/xlint tests-obsolete obsolete +./usr/tests/util/xlint/Atffile tests-obsolete obsolete +./usr/tests/util/xlint/lint1 tests-obsolete obsolete +./usr/tests/util/xlint/lint1/Atffile tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_alignof.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_complex_num.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_decls_after_stmt.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_decls_after_stmt2.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_for_loops.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_func.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_recursive_init.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_struct_init.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_union_init1.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_union_init2.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c99_union_init3.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c9x_array_init.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_c9x_recursive_init.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_cast_init.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_cast_init2.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_cast_lhs.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_compound_literals1.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_compound_literals2.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_constant_conv1.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_constant_conv2.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_cvt_in_ternary.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_ellipsis_in_switch.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_gcc_compound_statements1.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_gcc_compound_statements2.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_gcc_compound_statements3.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_gcc_func.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_gcc_variable_array_init.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_incorrect_array_size.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_long_double_int.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_nested_structs.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_nolimit_init.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_packed_structs.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_shift_to_narrower_type.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_type_conv1.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_type_conv2.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_type_conv3.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_typename_as_var.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/d_zero_sized_arrays.c tests-obsolete obsolete +./usr/tests/util/xlint/lint1/t_integration tests-obsolete obsolete diff --git a/distrib/sets/lists/tests/module.mi b/distrib/sets/lists/tests/module.mi new file mode 100644 index 000000000..33d2004be --- /dev/null +++ b/distrib/sets/lists/tests/module.mi @@ -0,0 +1,20 @@ +# $NetBSD: module.mi,v 1.10 2012/08/08 14:15:03 christos Exp $ +# +# These are only made for ports doing modules. +# +./usr/libdata/debug/usr/tests/modules/k_helper3.debug tests-sys-debug debug,atf,rump +./usr/libdata/debug/usr/tests/modules/t_builtin.debug tests-sys-debug debug,atf,rump +./usr/libdata/debug/usr/tests/modules/t_modctl.debug tests-sys-debug debug,atf,rump +./usr/tests/modules/Atffile tests-sys-tests atf,rump +./usr/tests/modules/k_helper tests-sys-tests atf,rump +./usr/tests/modules/k_helper/k_helper.kmod tests-sys-tests atf,rump +./usr/tests/modules/k_helper2 tests-sys-tests atf,rump +./usr/tests/modules/k_helper2/k_helper2.kmod tests-sys-tests atf,rump +./usr/tests/modules/k_helper3 tests-sys-tests atf,rump +./usr/tests/modules/k_helper3/k_helper3 tests-obsolete obsolete,rump +./usr/tests/modules/k_uvm tests-sys-tests atf,rump +./usr/tests/modules/k_uvm/k_uvm.kmod tests-sys-tests atf,rump +./usr/tests/modules/t_abi_uvm tests-sys-tests atf,rump +./usr/tests/modules/t_builtin tests-sys-tests atf,rump +./usr/tests/modules/t_modctl tests-sys-tests atf,rump +./usr/tests/modules/t_modload tests-sys-tests atf,rump diff --git a/distrib/sets/lists/tests/shl.mi b/distrib/sets/lists/tests/shl.mi new file mode 100644 index 000000000..249a27a09 --- /dev/null +++ b/distrib/sets/lists/tests/shl.mi @@ -0,0 +1,40 @@ +# $NetBSD: shl.mi,v 1.6 2011/06/25 05:45:14 nonaka Exp $ +# +./usr/libdata/debug/usr/tests/lib/csu/libh_initfini3_dso.so.1.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/tls/libh_tls_dlopen.so.1.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/tls/libh_tls_dynamic.so.1.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/tls/t_tls_dlopen.debug tests-lib-debug debug,atf +./usr/libdata/debug/usr/tests/lib/libc/tls/t_tls_dynamic.debug tests-lib-debug debug,atf +./usr/tests/lib/csu/h_initfini3_dso.so tests-lib-tests atf +./usr/tests/lib/csu/h_initfini3_dso.so.1 tests-lib-tests atf +./usr/tests/lib/csu/libh_initfini3_dso.so tests-obsolete obsolete +./usr/tests/lib/csu/libh_initfini3_dso.so.1 tests-obsolete obsolete +./usr/tests/lib/libc/tls/h_tls_dlopen.so tests-lib-tests atf +./usr/tests/lib/libc/tls/h_tls_dlopen.so.1 tests-lib-tests atf +./usr/tests/lib/libc/tls/libh_tls_dynamic_g.a -unknown- atf,debuglib +./usr/tests/lib/libc/tls/libh_tls_dynamic.so tests-lib-tests atf +./usr/tests/lib/libc/tls/libh_tls_dynamic.so.1 tests-lib-tests atf +./usr/tests/lib/libc/tls/t_tls_dlopen tests-lib-tests atf +./usr/tests/lib/libc/tls/t_tls_dynamic tests-lib-tests atf +./usr/tests/util/id/libfake.so.0 tests-obsolete obsolete +./usr/tests/util/id/libfake.so.0.0 tests-obsolete obsolete +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_helper_symver_dso0/libh_helper_symver_dso.so.1.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_helper_symver_dso1/libh_helper_symver_dso.so.1.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/h_helper_symver_dso2/libh_helper_symver_dso.so.1.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/libh_helper_dso1.so.1.debug tests-libexec-debug debug,atf +./usr/libdata/debug/usr/tests/libexec/ld.elf_so/libh_helper_dso2.so.1.debug tests-libexec-debug debug,atf +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso0/libh_helper_symver_dso_g.a -unknown- atf,debuglib +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso0/libh_helper_symver_dso.so tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso0/libh_helper_symver_dso.so.1 tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso1/libh_helper_symver_dso_g.a -unknown- atf,debuglib +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso1/libh_helper_symver_dso.so tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso1/libh_helper_symver_dso.so.1 tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso2/libh_helper_symver_dso_g.a -unknown- atf,debuglib +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso2/libh_helper_symver_dso.so tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/h_helper_symver_dso2/libh_helper_symver_dso.so.1 tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/libh_helper_dso1_g.a -unknown- atf,debuglib +./usr/tests/libexec/ld.elf_so/libh_helper_dso1.so tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/libh_helper_dso1.so.1 tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/libh_helper_dso2_g.a -unknown- atf,debuglib +./usr/tests/libexec/ld.elf_so/libh_helper_dso2.so tests-libexec-tests atf +./usr/tests/libexec/ld.elf_so/libh_helper_dso2.so.1 tests-libexec-tests atf diff --git a/distrib/sets/lists/text/mi b/distrib/sets/lists/text/mi new file mode 100644 index 000000000..450232b70 --- /dev/null +++ b/distrib/sets/lists/text/mi @@ -0,0 +1,723 @@ +# $NetBSD: mi,v 1.42 2012/02/07 19:13:29 joerg Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.text text-sys-root +./usr/bin/addftinfo text-groff-bin groff +./usr/bin/checknr text-groff-bin +./usr/bin/eqn text-groff-bin groff +./usr/bin/gdiffmk text-groff-bin groff +./usr/bin/grn text-groff-bin groff +./usr/bin/grodvi text-groff-bin groff +./usr/bin/groff text-groff-bin groff +./usr/bin/grog text-groff-bin groff +./usr/bin/grohtml text-obsolete obsolete +./usr/bin/grolbp text-groff-bin groff +./usr/bin/grolj4 text-groff-bin groff +./usr/bin/grops text-groff-bin groff +./usr/bin/grotty text-groff-bin groff +./usr/bin/hpftodit text-groff-bin groff +./usr/bin/indxbib text-groff-bin groff +./usr/bin/infokey text-texinfo-bin +./usr/bin/lkbib text-groff-bin groff +./usr/bin/lookbib text-groff-bin groff +./usr/bin/makeinfo text-texinfo-bin +./usr/bin/mandoc text-mdocml-bin +./usr/bin/neqn text-groff-bin groff +./usr/bin/nroff text-groff-bin groff +./usr/bin/pfbtops text-groff-bin groff +./usr/bin/pic text-groff-bin groff +./usr/bin/post-grohtml text-groff-bin groff +./usr/bin/pre-grohtml text-groff-bin groff +./usr/bin/psbb text-obsolete obsolete +./usr/bin/psroff text-obsolete obsolete +./usr/bin/refer text-groff-bin groff +./usr/bin/soelim text-groff-bin +./usr/bin/tbl text-groff-bin groff +./usr/bin/texi2dvi text-texinfo-bin +./usr/bin/texindex text-texinfo-bin +./usr/bin/tfmtodit text-groff-bin groff +./usr/bin/troff text-groff-bin groff +./usr/bin/vgrind text-groff-bin +./usr/libexec/vfontedpr text-groff-bin +./usr/sbin/makemandb base-man-bin makemandb +./usr/share/doc/groff text-groff-doc +./usr/share/doc/groff/mom text-groff-doc +./usr/share/doc/groff/mom/README.txt text-groff-doc share,groff +./usr/share/doc/groff/mom/elvis_syntax text-groff-doc share,groff +./usr/share/doc/groff/mom/elvis_syntax.new text-groff-doc share,groff +./usr/share/doc/groff/mom/letter.mom text-groff-doc share,groff +./usr/share/doc/groff/mom/letter.ps text-obsolete obsolete +./usr/share/doc/groff/mom/penguin.ps text-groff-doc share,groff +./usr/share/doc/groff/mom/sample_docs.mom text-groff-doc share,groff +./usr/share/doc/groff/mom/sample_docs.ps text-obsolete obsolete +./usr/share/doc/groff/mom/typesetting.mom text-groff-doc share,groff +./usr/share/doc/groff/mom/typesetting.ps text-obsolete obsolete +./usr/share/doc/html/groff text-groff-doc +./usr/share/doc/html/groff/mom text-groff-doc +./usr/share/doc/html/groff/mom/appendices.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/color.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/cover.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/definitions.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/docelement.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/docprocessing.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/goodies.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/headfootpage.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/inlines.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/intro.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/letters.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/macrolist.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/rectoverso.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/refer.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/reserved.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/toc.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/typemacdoc.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/typesetting.html text-groff-doc share,groff +./usr/share/doc/html/groff/mom/using.html text-groff-doc share,groff +./usr/share/groff_font/devX100-12/CB text-groff-font share,groff +./usr/share/groff_font/devX100-12/CBI text-groff-font share,groff +./usr/share/groff_font/devX100-12/CI text-groff-font share,groff +./usr/share/groff_font/devX100-12/CR text-groff-font share,groff +./usr/share/groff_font/devX100-12/DESC text-groff-font share,groff +./usr/share/groff_font/devX100-12/HB text-groff-font share,groff +./usr/share/groff_font/devX100-12/HBI text-groff-font share,groff +./usr/share/groff_font/devX100-12/HI text-groff-font share,groff +./usr/share/groff_font/devX100-12/HR text-groff-font share,groff +./usr/share/groff_font/devX100-12/NB text-groff-font share,groff +./usr/share/groff_font/devX100-12/NBI text-groff-font share,groff +./usr/share/groff_font/devX100-12/NI text-groff-font share,groff +./usr/share/groff_font/devX100-12/NR text-groff-font share,groff +./usr/share/groff_font/devX100-12/S text-groff-font share,groff +./usr/share/groff_font/devX100-12/TB text-groff-font share,groff +./usr/share/groff_font/devX100-12/TBI text-groff-font share,groff +./usr/share/groff_font/devX100-12/TI text-groff-font share,groff +./usr/share/groff_font/devX100-12/TR text-groff-font share,groff +./usr/share/groff_font/devX100/CB text-groff-font share,groff +./usr/share/groff_font/devX100/CBI text-groff-font share,groff +./usr/share/groff_font/devX100/CI text-groff-font share,groff +./usr/share/groff_font/devX100/CR text-groff-font share,groff +./usr/share/groff_font/devX100/DESC text-groff-font share,groff +./usr/share/groff_font/devX100/HB text-groff-font share,groff +./usr/share/groff_font/devX100/HBI text-groff-font share,groff +./usr/share/groff_font/devX100/HI text-groff-font share,groff +./usr/share/groff_font/devX100/HR text-groff-font share,groff +./usr/share/groff_font/devX100/NB text-groff-font share,groff +./usr/share/groff_font/devX100/NBI text-groff-font share,groff +./usr/share/groff_font/devX100/NI text-groff-font share,groff +./usr/share/groff_font/devX100/NR text-groff-font share,groff +./usr/share/groff_font/devX100/S text-groff-font share,groff +./usr/share/groff_font/devX100/TB text-groff-font share,groff +./usr/share/groff_font/devX100/TBI text-groff-font share,groff +./usr/share/groff_font/devX100/TI text-groff-font share,groff +./usr/share/groff_font/devX100/TR text-groff-font share,groff +./usr/share/groff_font/devX75-12/CB text-groff-font share,groff +./usr/share/groff_font/devX75-12/CBI text-groff-font share,groff +./usr/share/groff_font/devX75-12/CI text-groff-font share,groff +./usr/share/groff_font/devX75-12/CR text-groff-font share,groff +./usr/share/groff_font/devX75-12/DESC text-groff-font share,groff +./usr/share/groff_font/devX75-12/HB text-groff-font share,groff +./usr/share/groff_font/devX75-12/HBI text-groff-font share,groff +./usr/share/groff_font/devX75-12/HI text-groff-font share,groff +./usr/share/groff_font/devX75-12/HR text-groff-font share,groff +./usr/share/groff_font/devX75-12/NB text-groff-font share,groff +./usr/share/groff_font/devX75-12/NBI text-groff-font share,groff +./usr/share/groff_font/devX75-12/NI text-groff-font share,groff +./usr/share/groff_font/devX75-12/NR text-groff-font share,groff +./usr/share/groff_font/devX75-12/S text-groff-font share,groff +./usr/share/groff_font/devX75-12/TB text-groff-font share,groff +./usr/share/groff_font/devX75-12/TBI text-groff-font share,groff +./usr/share/groff_font/devX75-12/TI text-groff-font share,groff +./usr/share/groff_font/devX75-12/TR text-groff-font share,groff +./usr/share/groff_font/devX75/CB text-groff-font share,groff +./usr/share/groff_font/devX75/CBI text-groff-font share,groff +./usr/share/groff_font/devX75/CI text-groff-font share,groff +./usr/share/groff_font/devX75/CR text-groff-font share,groff +./usr/share/groff_font/devX75/DESC text-groff-font share,groff +./usr/share/groff_font/devX75/HB text-groff-font share,groff +./usr/share/groff_font/devX75/HBI text-groff-font share,groff +./usr/share/groff_font/devX75/HI text-groff-font share,groff +./usr/share/groff_font/devX75/HR text-groff-font share,groff +./usr/share/groff_font/devX75/NB text-groff-font share,groff +./usr/share/groff_font/devX75/NBI text-groff-font share,groff +./usr/share/groff_font/devX75/NI text-groff-font share,groff +./usr/share/groff_font/devX75/NR text-groff-font share,groff +./usr/share/groff_font/devX75/S text-groff-font share,groff +./usr/share/groff_font/devX75/TB text-groff-font share,groff +./usr/share/groff_font/devX75/TBI text-groff-font share,groff +./usr/share/groff_font/devX75/TI text-groff-font share,groff +./usr/share/groff_font/devX75/TR text-groff-font share,groff +./usr/share/groff_font/devascii/B text-groff-font share,groff +./usr/share/groff_font/devascii/BI text-groff-font share,groff +./usr/share/groff_font/devascii/CW text-groff-font share,groff +./usr/share/groff_font/devascii/DESC text-groff-font share,groff +./usr/share/groff_font/devascii/I text-groff-font share,groff +./usr/share/groff_font/devascii/L text-groff-font share,groff +./usr/share/groff_font/devascii/R text-groff-font share,groff +./usr/share/groff_font/devascii/S text-groff-font share,groff +./usr/share/groff_font/devcp1047/B text-groff-font share,groff +./usr/share/groff_font/devcp1047/BI text-groff-font share,groff +./usr/share/groff_font/devcp1047/CW text-groff-font share,groff +./usr/share/groff_font/devcp1047/DESC text-groff-font share,groff +./usr/share/groff_font/devcp1047/I text-groff-font share,groff +./usr/share/groff_font/devcp1047/L text-groff-font share,groff +./usr/share/groff_font/devcp1047/R text-groff-font share,groff +./usr/share/groff_font/devcp1047/S text-groff-font share,groff +./usr/share/groff_font/devdvi/B text-obsolete obsolete +./usr/share/groff_font/devdvi/BI text-obsolete obsolete +./usr/share/groff_font/devdvi/CW text-groff-font share,groff +./usr/share/groff_font/devdvi/CWEC text-groff-font share,groff +./usr/share/groff_font/devdvi/CWI text-groff-font share,groff +./usr/share/groff_font/devdvi/CWIEC text-groff-font share,groff +./usr/share/groff_font/devdvi/CWITC text-groff-font share,groff +./usr/share/groff_font/devdvi/CWTC text-groff-font share,groff +./usr/share/groff_font/devdvi/CompileFonts text-groff-font share,groff +./usr/share/groff_font/devdvi/DESC text-groff-font share,groff +./usr/share/groff_font/devdvi/EX text-groff-font share,groff +./usr/share/groff_font/devdvi/H text-obsolete obsolete +./usr/share/groff_font/devdvi/HB text-groff-font share,groff +./usr/share/groff_font/devdvi/HBEC text-groff-font share,groff +./usr/share/groff_font/devdvi/HBI text-groff-font share,groff +./usr/share/groff_font/devdvi/HBIEC text-groff-font share,groff +./usr/share/groff_font/devdvi/HBITC text-groff-font share,groff +./usr/share/groff_font/devdvi/HBTC text-groff-font share,groff +./usr/share/groff_font/devdvi/HI text-groff-font share,groff +./usr/share/groff_font/devdvi/HIEC text-groff-font share,groff +./usr/share/groff_font/devdvi/HITC text-groff-font share,groff +./usr/share/groff_font/devdvi/HR text-groff-font share,groff +./usr/share/groff_font/devdvi/HREC text-groff-font share,groff +./usr/share/groff_font/devdvi/HRTC text-groff-font share,groff +./usr/share/groff_font/devdvi/I text-obsolete obsolete +./usr/share/groff_font/devdvi/MI text-groff-font share,groff +./usr/share/groff_font/devdvi/Makefile text-groff-font share,groff +./usr/share/groff_font/devdvi/R text-obsolete obsolete +./usr/share/groff_font/devdvi/S text-groff-font share,groff +./usr/share/groff_font/devdvi/SA text-groff-font share,groff +./usr/share/groff_font/devdvi/SB text-groff-font share,groff +./usr/share/groff_font/devdvi/SC text-groff-font share,groff +./usr/share/groff_font/devdvi/TB text-groff-font share,groff +./usr/share/groff_font/devdvi/TBEC text-groff-font share,groff +./usr/share/groff_font/devdvi/TBI text-groff-font share,groff +./usr/share/groff_font/devdvi/TBIEC text-groff-font share,groff +./usr/share/groff_font/devdvi/TBITC text-groff-font share,groff +./usr/share/groff_font/devdvi/TBTC text-groff-font share,groff +./usr/share/groff_font/devdvi/TI text-groff-font share,groff +./usr/share/groff_font/devdvi/TIEC text-groff-font share,groff +./usr/share/groff_font/devdvi/TITC text-groff-font share,groff +./usr/share/groff_font/devdvi/TR text-groff-font share,groff +./usr/share/groff_font/devdvi/TREC text-groff-font share,groff +./usr/share/groff_font/devdvi/TRTC text-groff-font share,groff +./usr/share/groff_font/devdvi/ec.map text-groff-font share,groff +./usr/share/groff_font/devdvi/generate/CompileFonts text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/Makefile text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/msam.map text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/msbm.map text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/texb.map text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/texex.map text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/texi.map text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/texmi.map text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/texr.map text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/texsy.map text-obsolete obsolete +./usr/share/groff_font/devdvi/generate/textt.map text-obsolete obsolete +./usr/share/groff_font/devdvi/msam.map text-groff-font share,groff +./usr/share/groff_font/devdvi/msbm.map text-groff-font share,groff +./usr/share/groff_font/devdvi/tc.map text-groff-font share,groff +./usr/share/groff_font/devdvi/texb.map text-groff-font share,groff +./usr/share/groff_font/devdvi/texex.map text-groff-font share,groff +./usr/share/groff_font/devdvi/texi.map text-groff-font share,groff +./usr/share/groff_font/devdvi/texmi.map text-groff-font share,groff +./usr/share/groff_font/devdvi/texr.map text-groff-font share,groff +./usr/share/groff_font/devdvi/texsy.map text-groff-font share,groff +./usr/share/groff_font/devdvi/textex.map text-groff-font share,groff +./usr/share/groff_font/devdvi/textt.map text-groff-font share,groff +./usr/share/groff_font/devhtml/B text-groff-font share,groff +./usr/share/groff_font/devhtml/BI text-groff-font share,groff +./usr/share/groff_font/devhtml/CB text-groff-font share,groff +./usr/share/groff_font/devhtml/CBI text-groff-font share,groff +./usr/share/groff_font/devhtml/CI text-groff-font share,groff +./usr/share/groff_font/devhtml/CR text-groff-font share,groff +./usr/share/groff_font/devhtml/DESC text-groff-font share,groff +./usr/share/groff_font/devhtml/HB text-obsolete obsolete +./usr/share/groff_font/devhtml/HBI text-obsolete obsolete +./usr/share/groff_font/devhtml/HI text-obsolete obsolete +./usr/share/groff_font/devhtml/HR text-obsolete obsolete +./usr/share/groff_font/devhtml/I text-groff-font share,groff +./usr/share/groff_font/devhtml/NB text-obsolete obsolete +./usr/share/groff_font/devhtml/NBI text-obsolete obsolete +./usr/share/groff_font/devhtml/NI text-obsolete obsolete +./usr/share/groff_font/devhtml/NR text-obsolete obsolete +./usr/share/groff_font/devhtml/R text-groff-font share,groff +./usr/share/groff_font/devhtml/S text-groff-font share,groff +./usr/share/groff_font/devhtml/TB text-obsolete obsolete +./usr/share/groff_font/devhtml/TBI text-obsolete obsolete +./usr/share/groff_font/devhtml/TI text-obsolete obsolete +./usr/share/groff_font/devhtml/TR text-obsolete obsolete +./usr/share/groff_font/devkoi8-r/B text-groff-font share,groff +./usr/share/groff_font/devkoi8-r/BI text-groff-font share,groff +./usr/share/groff_font/devkoi8-r/CW text-groff-font share,groff +./usr/share/groff_font/devkoi8-r/DESC text-groff-font share,groff +./usr/share/groff_font/devkoi8-r/I text-groff-font share,groff +./usr/share/groff_font/devkoi8-r/L text-groff-font share,groff +./usr/share/groff_font/devkoi8-r/R text-groff-font share,groff +./usr/share/groff_font/devkoi8-r/S text-groff-font share,groff +./usr/share/groff_font/devlatin1/B text-groff-font share,groff +./usr/share/groff_font/devlatin1/BI text-groff-font share,groff +./usr/share/groff_font/devlatin1/CW text-groff-font share,groff +./usr/share/groff_font/devlatin1/DESC text-groff-font share,groff +./usr/share/groff_font/devlatin1/I text-groff-font share,groff +./usr/share/groff_font/devlatin1/L text-groff-font share,groff +./usr/share/groff_font/devlatin1/R text-groff-font share,groff +./usr/share/groff_font/devlatin1/S text-groff-font share,groff +./usr/share/groff_font/devlbp/CB text-groff-font share,groff +./usr/share/groff_font/devlbp/CI text-groff-font share,groff +./usr/share/groff_font/devlbp/CR text-groff-font share,groff +./usr/share/groff_font/devlbp/DESC text-groff-font share,groff +./usr/share/groff_font/devlbp/EB text-groff-font share,groff +./usr/share/groff_font/devlbp/EI text-groff-font share,groff +./usr/share/groff_font/devlbp/ER text-groff-font share,groff +./usr/share/groff_font/devlbp/HB text-groff-font share,groff +./usr/share/groff_font/devlbp/HBI text-groff-font share,groff +./usr/share/groff_font/devlbp/HI text-groff-font share,groff +./usr/share/groff_font/devlbp/HNB text-groff-font share,groff +./usr/share/groff_font/devlbp/HNBI text-groff-font share,groff +./usr/share/groff_font/devlbp/HNI text-groff-font share,groff +./usr/share/groff_font/devlbp/HNR text-groff-font share,groff +./usr/share/groff_font/devlbp/HR text-groff-font share,groff +./usr/share/groff_font/devlbp/TB text-groff-font share,groff +./usr/share/groff_font/devlbp/TBI text-groff-font share,groff +./usr/share/groff_font/devlbp/TI text-groff-font share,groff +./usr/share/groff_font/devlbp/TR text-groff-font share,groff +./usr/share/groff_font/devlj4/AB text-groff-font share,groff +./usr/share/groff_font/devlj4/ABI text-groff-font share,groff +./usr/share/groff_font/devlj4/AI text-groff-font share,groff +./usr/share/groff_font/devlj4/ALBB text-groff-font share,groff +./usr/share/groff_font/devlj4/ALBR text-groff-font share,groff +./usr/share/groff_font/devlj4/AOB text-groff-font share,groff +./usr/share/groff_font/devlj4/AOI text-groff-font share,groff +./usr/share/groff_font/devlj4/AOR text-groff-font share,groff +./usr/share/groff_font/devlj4/AR text-groff-font share,groff +./usr/share/groff_font/devlj4/CB text-groff-font share,groff +./usr/share/groff_font/devlj4/CBI text-groff-font share,groff +./usr/share/groff_font/devlj4/CI text-groff-font share,groff +./usr/share/groff_font/devlj4/CLARENDON text-groff-font share,groff +./usr/share/groff_font/devlj4/CORONET text-groff-font share,groff +./usr/share/groff_font/devlj4/CR text-groff-font share,groff +./usr/share/groff_font/devlj4/DESC text-groff-font share,groff +./usr/share/groff_font/devlj4/GB text-groff-font share,groff +./usr/share/groff_font/devlj4/GBI text-groff-font share,groff +./usr/share/groff_font/devlj4/GI text-groff-font share,groff +./usr/share/groff_font/devlj4/GR text-groff-font share,groff +./usr/share/groff_font/devlj4/LGB text-groff-font share,groff +./usr/share/groff_font/devlj4/LGI text-groff-font share,groff +./usr/share/groff_font/devlj4/LGR text-groff-font share,groff +./usr/share/groff_font/devlj4/MARIGOLD text-groff-font share,groff +./usr/share/groff_font/devlj4/Makefile text-groff-font share,groff +./usr/share/groff_font/devlj4/OB text-groff-font share,groff +./usr/share/groff_font/devlj4/OBI text-groff-font share,groff +./usr/share/groff_font/devlj4/OI text-groff-font share,groff +./usr/share/groff_font/devlj4/OR text-groff-font share,groff +./usr/share/groff_font/devlj4/S text-groff-font share,groff +./usr/share/groff_font/devlj4/SYMBOL text-groff-font share,groff +./usr/share/groff_font/devlj4/TB text-groff-font share,groff +./usr/share/groff_font/devlj4/TBI text-groff-font share,groff +./usr/share/groff_font/devlj4/TI text-groff-font share,groff +./usr/share/groff_font/devlj4/TNRB text-groff-font share,groff +./usr/share/groff_font/devlj4/TNRBI text-groff-font share,groff +./usr/share/groff_font/devlj4/TNRI text-groff-font share,groff +./usr/share/groff_font/devlj4/TNRR text-groff-font share,groff +./usr/share/groff_font/devlj4/TR text-groff-font share,groff +./usr/share/groff_font/devlj4/UB text-groff-font share,groff +./usr/share/groff_font/devlj4/UBI text-groff-font share,groff +./usr/share/groff_font/devlj4/UCB text-groff-font share,groff +./usr/share/groff_font/devlj4/UCBI text-groff-font share,groff +./usr/share/groff_font/devlj4/UCI text-groff-font share,groff +./usr/share/groff_font/devlj4/UCR text-groff-font share,groff +./usr/share/groff_font/devlj4/UI text-groff-font share,groff +./usr/share/groff_font/devlj4/UR text-groff-font share,groff +./usr/share/groff_font/devlj4/WINGDINGS text-groff-font share,groff +./usr/share/groff_font/devlj4/generate/Makefile text-obsolete obsolete +./usr/share/groff_font/devlj4/generate/special.map text-obsolete obsolete +./usr/share/groff_font/devlj4/generate/text.map text-obsolete obsolete +./usr/share/groff_font/devlj4/special.awk text-groff-font share,groff +./usr/share/groff_font/devlj4/special.map text-groff-font share,groff +./usr/share/groff_font/devlj4/symbol.map text-groff-font share,groff +./usr/share/groff_font/devlj4/text.map text-groff-font share,groff +./usr/share/groff_font/devlj4/wingdings.map text-groff-font share,groff +./usr/share/groff_font/devps/AB text-groff-font share,groff +./usr/share/groff_font/devps/ABI text-groff-font share,groff +./usr/share/groff_font/devps/AI text-groff-font share,groff +./usr/share/groff_font/devps/AR text-groff-font share,groff +./usr/share/groff_font/devps/BMB text-groff-font share,groff +./usr/share/groff_font/devps/BMBI text-groff-font share,groff +./usr/share/groff_font/devps/BMI text-groff-font share,groff +./usr/share/groff_font/devps/BMR text-groff-font share,groff +./usr/share/groff_font/devps/CB text-groff-font share,groff +./usr/share/groff_font/devps/CBI text-groff-font share,groff +./usr/share/groff_font/devps/CI text-groff-font share,groff +./usr/share/groff_font/devps/CR text-groff-font share,groff +./usr/share/groff_font/devps/DESC text-groff-font share,groff +./usr/share/groff_font/devps/EURO text-groff-font share,groff +./usr/share/groff_font/devps/HB text-groff-font share,groff +./usr/share/groff_font/devps/HBI text-groff-font share,groff +./usr/share/groff_font/devps/HI text-groff-font share,groff +./usr/share/groff_font/devps/HNB text-groff-font share,groff +./usr/share/groff_font/devps/HNBI text-groff-font share,groff +./usr/share/groff_font/devps/HNI text-groff-font share,groff +./usr/share/groff_font/devps/HNR text-groff-font share,groff +./usr/share/groff_font/devps/HR text-groff-font share,groff +./usr/share/groff_font/devps/Makefile text-groff-font share,groff +./usr/share/groff_font/devps/NB text-groff-font share,groff +./usr/share/groff_font/devps/NBI text-groff-font share,groff +./usr/share/groff_font/devps/NI text-groff-font share,groff +./usr/share/groff_font/devps/NR text-groff-font share,groff +./usr/share/groff_font/devps/PB text-groff-font share,groff +./usr/share/groff_font/devps/PBI text-groff-font share,groff +./usr/share/groff_font/devps/PI text-groff-font share,groff +./usr/share/groff_font/devps/PR text-groff-font share,groff +./usr/share/groff_font/devps/S text-groff-font share,groff +./usr/share/groff_font/devps/SS text-groff-font share,groff +./usr/share/groff_font/devps/TB text-groff-font share,groff +./usr/share/groff_font/devps/TBI text-groff-font share,groff +./usr/share/groff_font/devps/TI text-groff-font share,groff +./usr/share/groff_font/devps/TR text-groff-font share,groff +./usr/share/groff_font/devps/ZCMI text-groff-font share,groff +./usr/share/groff_font/devps/ZD text-groff-font share,groff +./usr/share/groff_font/devps/ZDR text-groff-font share,groff +./usr/share/groff_font/devps/afmname text-groff-font share,groff +./usr/share/groff_font/devps/dingbats.map text-groff-font share,groff +./usr/share/groff_font/devps/dingbats.rmap text-groff-font share,groff +./usr/share/groff_font/devps/download text-groff-font share,groff +./usr/share/groff_font/devps/freeeuro.pfa text-groff-font share,groff +./usr/share/groff_font/devps/generate/Makefile text-obsolete obsolete +./usr/share/groff_font/devps/generate/afmname text-obsolete obsolete +./usr/share/groff_font/devps/generate/dingbatsmap text-obsolete obsolete +./usr/share/groff_font/devps/generate/dingbatsrmap text-obsolete obsolete +./usr/share/groff_font/devps/generate/lgreekmap text-obsolete obsolete +./usr/share/groff_font/devps/generate/symbol.sed text-obsolete obsolete +./usr/share/groff_font/devps/generate/symbolchars text-obsolete obsolete +./usr/share/groff_font/devps/generate/symbolsl.afm text-obsolete obsolete +./usr/share/groff_font/devps/generate/textmap text-obsolete obsolete +./usr/share/groff_font/devps/lgreekmap text-groff-font share,groff +./usr/share/groff_font/devps/prologue text-groff-font share,groff +./usr/share/groff_font/devps/symbol text-groff-font share,groff +./usr/share/groff_font/devps/symbolchars text-groff-font share,groff +./usr/share/groff_font/devps/symbolsl.afm text-groff-font share,groff +./usr/share/groff_font/devps/symbolsl.pfa text-groff-font share,groff +./usr/share/groff_font/devps/text.enc text-groff-font share,groff +./usr/share/groff_font/devps/textmap text-groff-font share,groff +./usr/share/groff_font/devps/zapfdr.pfa text-groff-font share,groff +./usr/share/groff_font/devutf8/B text-groff-font share,groff +./usr/share/groff_font/devutf8/BI text-groff-font share,groff +./usr/share/groff_font/devutf8/CW text-groff-font share,groff +./usr/share/groff_font/devutf8/DESC text-groff-font share,groff +./usr/share/groff_font/devutf8/I text-groff-font share,groff +./usr/share/groff_font/devutf8/L text-groff-font share,groff +./usr/share/groff_font/devutf8/R text-groff-font share,groff +./usr/share/groff_font/devutf8/S text-groff-font share,groff +./usr/share/man/cat1/addftinfo.0 text-groff-catman .cat,groff +./usr/share/man/cat1/checknr.0 text-groff-catman .cat +./usr/share/man/cat1/eqn.0 text-groff-catman .cat,groff +./usr/share/man/cat1/gdiffmk.0 text-groff-catman .cat,groff +./usr/share/man/cat1/grn.0 text-groff-catman .cat,groff +./usr/share/man/cat1/grodvi.0 text-groff-catman .cat,groff +./usr/share/man/cat1/groff.0 text-groff-catman .cat,groff +./usr/share/man/cat1/grog.0 text-groff-catman .cat,groff +./usr/share/man/cat1/grohtml.0 text-groff-catman .cat,groff +./usr/share/man/cat1/grolbp.0 text-groff-catman .cat,groff +./usr/share/man/cat1/grolj4.0 text-groff-catman .cat,groff +./usr/share/man/cat1/grops.0 text-groff-catman .cat,groff +./usr/share/man/cat1/grotty.0 text-groff-catman .cat,groff +./usr/share/man/cat1/hpftodit.0 text-groff-catman .cat,groff +./usr/share/man/cat1/indxbib.0 text-groff-catman .cat,groff +./usr/share/man/cat1/lkbib.0 text-groff-catman .cat,groff +./usr/share/man/cat1/lookbib.0 text-groff-catman .cat,groff +./usr/share/man/cat1/neqn.0 text-groff-catman .cat,groff +./usr/share/man/cat1/nroff.0 text-groff-catman .cat,groff +./usr/share/man/cat1/pfbtops.0 text-groff-catman .cat,groff +./usr/share/man/cat1/pic.0 text-groff-catman .cat,groff +./usr/share/man/cat1/psbb.0 text-obsolete obsolete +./usr/share/man/cat1/refer.0 text-groff-catman .cat,groff +./usr/share/man/cat1/soelim.0 text-groff-catman .cat +./usr/share/man/cat1/tbl.0 text-groff-catman .cat,groff +./usr/share/man/cat1/tfmtodit.0 text-groff-catman .cat,groff +./usr/share/man/cat1/troff.0 text-groff-catman .cat,groff +./usr/share/man/cat1/vgrind.0 text-groff-catman .cat +./usr/share/man/cat5/groff_font.0 text-groff-catman .cat,groff +./usr/share/man/cat5/groff_out.0 text-groff-catman .cat,groff +./usr/share/man/cat5/groff_tmac.0 text-groff-catman .cat,groff +./usr/share/man/cat5/lj4_font.0 text-groff-catman .cat,groff +./usr/share/man/cat5/tmac.0 text-groff-catman .cat,groff +./usr/share/man/cat7/ditroff.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_char.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_diff.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_man.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_markup.0 text-obsolete obsolete +./usr/share/man/cat7/groff_mdoc.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_me.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_mm.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_mmse.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_mom.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_ms.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_msafer.0 text-obsolete obsolete +./usr/share/man/cat7/groff_trace.0 text-groff-catman .cat,groff +./usr/share/man/cat7/groff_www.0 text-groff-catman .cat,groff +./usr/share/man/cat7/man.0 text-groff-catman .cat,groff +./usr/share/man/cat7/mandoc_char.0 text-mdocml-catman .cat +./usr/share/man/cat7/mandoc_eqn.0 text-mdocml-catman .cat +./usr/share/man/cat7/mandoc_man.0 text-mdocml-catman .cat +./usr/share/man/cat7/mandoc_mdoc.0 text-mdocml-catman .cat +./usr/share/man/cat7/mandoc_roff.0 text-mdocml-catman .cat +./usr/share/man/cat7/mandoc_tbl.0 text-mdocml-catman .cat +./usr/share/man/cat7/manuals.0 text-obsolete obsolete +./usr/share/man/cat7/mdoc.samples.0 text-groff-catman .cat,groff +./usr/share/man/cat7/me.0 text-groff-catman .cat +./usr/share/man/cat7/mm.0 text-groff-catman .cat,groff +./usr/share/man/cat7/mmse.0 text-groff-catman .cat,groff +./usr/share/man/cat7/ms.0 text-groff-catman .cat,groff +./usr/share/man/cat7/roff.0 text-groff-catman .cat,groff +./usr/share/man/html1/addftinfo.html text-groff-htmlman html,groff +./usr/share/man/html1/checknr.html text-groff-htmlman html +./usr/share/man/html1/eqn.html text-groff-htmlman html,groff +./usr/share/man/html1/gdiffmk.html text-groff-htmlman html,groff +./usr/share/man/html1/grn.html text-groff-htmlman html,groff +./usr/share/man/html1/grodvi.html text-groff-htmlman html,groff +./usr/share/man/html1/groff.html text-groff-htmlman html,groff +./usr/share/man/html1/grog.html text-groff-htmlman html,groff +./usr/share/man/html1/grohtml.html text-groff-htmlman html,groff +./usr/share/man/html1/grolbp.html text-groff-htmlman html,groff +./usr/share/man/html1/grolj4.html text-groff-htmlman html,groff +./usr/share/man/html1/grops.html text-groff-htmlman html,groff +./usr/share/man/html1/grotty.html text-groff-htmlman html,groff +./usr/share/man/html1/hpftodit.html text-groff-htmlman html,groff +./usr/share/man/html1/indxbib.html text-groff-htmlman html,groff +./usr/share/man/html1/lkbib.html text-groff-htmlman html,groff +./usr/share/man/html1/lookbib.html text-groff-htmlman html,groff +./usr/share/man/html1/neqn.html text-groff-htmlman html,groff +./usr/share/man/html1/nroff.html text-groff-htmlman html,groff +./usr/share/man/html1/pfbtops.html text-groff-htmlman html,groff +./usr/share/man/html1/pic.html text-groff-htmlman html,groff +./usr/share/man/html1/refer.html text-groff-htmlman html,groff +./usr/share/man/html1/soelim.html text-groff-htmlman html +./usr/share/man/html1/tbl.html text-groff-htmlman html,groff +./usr/share/man/html1/tfmtodit.html text-groff-htmlman html,groff +./usr/share/man/html1/troff.html text-groff-htmlman html,groff +./usr/share/man/html1/vgrind.html text-groff-htmlman html +./usr/share/man/html5/groff_font.html text-groff-htmlman html,groff +./usr/share/man/html5/groff_out.html text-groff-htmlman html,groff +./usr/share/man/html5/groff_tmac.html text-groff-htmlman html,groff +./usr/share/man/html5/lj4_font.html text-groff-htmlman html,groff +./usr/share/man/html5/tmac.html text-groff-htmlman html,groff +./usr/share/man/html7/ditroff.html text-groff-htmlman html,groff +./usr/share/man/html7/groff.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_char.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_diff.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_man.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_mdoc.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_me.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_mm.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_mmse.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_mom.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_ms.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_trace.html text-groff-htmlman html,groff +./usr/share/man/html7/groff_www.html text-groff-htmlman html,groff +./usr/share/man/html7/man.html text-groff-htmlman html,groff +./usr/share/man/html7/mandoc_char.html text-mdocml-htmlman html +./usr/share/man/html7/mandoc_eqn.html text-mdocml-htmlman html +./usr/share/man/html7/mandoc_man.html text-mdocml-htmlman html +./usr/share/man/html7/mandoc_mdoc.html text-mdocml-htmlman html +./usr/share/man/html7/mandoc_roff.html text-mdocml-htmlman html +./usr/share/man/html7/mandoc_tbl.html text-mdocml-htmlman html +./usr/share/man/html7/manuals.html text-obsolete obsolete +./usr/share/man/html7/mdoc.samples.html text-groff-htmlman html,groff +./usr/share/man/html7/me.html text-groff-htmlman html +./usr/share/man/html7/mm.html text-groff-htmlman html,groff +./usr/share/man/html7/mmse.html text-groff-htmlman html,groff +./usr/share/man/html7/ms.html text-groff-htmlman html,groff +./usr/share/man/html7/roff.html text-groff-htmlman html,groff +./usr/share/man/man1/addftinfo.1 text-groff-man .man,groff +./usr/share/man/man1/checknr.1 text-groff-man .man +./usr/share/man/man1/eqn.1 text-groff-man .man,groff +./usr/share/man/man1/gdiffmk.1 text-groff-man .man,groff +./usr/share/man/man1/grn.1 text-groff-man .man,groff +./usr/share/man/man1/grodvi.1 text-groff-man .man,groff +./usr/share/man/man1/groff.1 text-groff-man .man,groff +./usr/share/man/man1/grog.1 text-groff-man .man,groff +./usr/share/man/man1/grohtml.1 text-groff-man .man,groff +./usr/share/man/man1/grolbp.1 text-groff-man .man,groff +./usr/share/man/man1/grolj4.1 text-groff-man .man,groff +./usr/share/man/man1/grops.1 text-groff-man .man,groff +./usr/share/man/man1/grotty.1 text-groff-man .man,groff +./usr/share/man/man1/hpftodit.1 text-groff-man .man,groff +./usr/share/man/man1/indxbib.1 text-groff-man .man,groff +./usr/share/man/man1/lkbib.1 text-groff-man .man,groff +./usr/share/man/man1/lookbib.1 text-groff-man .man,groff +./usr/share/man/man1/neqn.1 text-groff-man .man,groff +./usr/share/man/man1/nroff.1 text-groff-man .man,groff +./usr/share/man/man1/pfbtops.1 text-groff-man .man,groff +./usr/share/man/man1/pic.1 text-groff-man .man,groff +./usr/share/man/man1/psbb.1 text-obsolete obsolete +./usr/share/man/man1/refer.1 text-groff-man .man,groff +./usr/share/man/man1/soelim.1 text-groff-man .man +./usr/share/man/man1/tbl.1 text-groff-man .man,groff +./usr/share/man/man1/tfmtodit.1 text-groff-man .man,groff +./usr/share/man/man1/troff.1 text-groff-man .man,groff +./usr/share/man/man1/vgrind.1 text-groff-man .man +./usr/share/man/man5/groff_font.5 text-groff-man .man,groff +./usr/share/man/man5/groff_out.5 text-groff-man .man,groff +./usr/share/man/man5/groff_tmac.5 text-groff-man .man,groff +./usr/share/man/man5/lj4_font.5 text-groff-man .man,groff +./usr/share/man/man5/tmac.5 text-groff-man .man,groff +./usr/share/man/man7/ditroff.7 text-groff-man .man,groff +./usr/share/man/man7/groff.7 text-groff-man .man,groff +./usr/share/man/man7/groff_char.7 text-groff-man .man,groff +./usr/share/man/man7/groff_diff.7 text-groff-man .man,groff +./usr/share/man/man7/groff_man.7 text-groff-man .man,groff +./usr/share/man/man7/groff_markup.7 text-obsolete obsolete +./usr/share/man/man7/groff_mdoc.7 text-groff-man .man,groff +./usr/share/man/man7/groff_me.7 text-groff-man .man,groff +./usr/share/man/man7/groff_mm.7 text-groff-man .man,groff +./usr/share/man/man7/groff_mmse.7 text-groff-man .man,groff +./usr/share/man/man7/groff_mom.7 text-groff-man .man,groff +./usr/share/man/man7/groff_ms.7 text-groff-man .man,groff +./usr/share/man/man7/groff_msafer.7 text-obsolete obsolete +./usr/share/man/man7/groff_trace.7 text-groff-man .man,groff +./usr/share/man/man7/groff_www.7 text-groff-man .man,groff +./usr/share/man/man7/man.7 text-groff-man .man,groff +./usr/share/man/man7/mandoc_char.7 text-mdocml-man .man +./usr/share/man/man7/mandoc_eqn.7 text-mdocml-man .man +./usr/share/man/man7/mandoc_man.7 text-mdocml-man .man +./usr/share/man/man7/mandoc_mdoc.7 text-mdocml-man .man +./usr/share/man/man7/mandoc_roff.7 text-mdocml-man .man +./usr/share/man/man7/mandoc_tbl.7 text-mdocml-man .man +./usr/share/man/man7/manuals.7 text-obsolete obsolete +./usr/share/man/man7/mdoc.samples.7 text-groff-man .man,groff +./usr/share/man/man7/me.7 text-groff-man .man +./usr/share/man/man7/mm.7 text-groff-man .man,groff +./usr/share/man/man7/mmse.7 text-groff-man .man,groff +./usr/share/man/man7/ms.7 text-groff-man .man,groff +./usr/share/man/man7/roff.7 text-groff-man .man,groff +./usr/share/me/acm.me text-groff-share share +./usr/share/me/chars.me text-groff-share share +./usr/share/me/deltext.me text-groff-share share +./usr/share/me/eqn.me text-groff-share share +./usr/share/me/float.me text-groff-share share +./usr/share/me/footnote.me text-groff-share share +./usr/share/me/index.me text-groff-share share +./usr/share/me/letterhead.me text-groff-share share +./usr/share/me/local.me text-groff-share share +./usr/share/me/null.me text-groff-share share +./usr/share/me/refer.me text-groff-share share +./usr/share/me/revisions text-groff-share share +./usr/share/me/sh.me text-groff-share share +./usr/share/me/tbl.me text-groff-share share +./usr/share/me/thesis.me text-groff-share share +./usr/share/misc/epsf.tex text-texinfo-share share +./usr/share/misc/eqnchar text-groff-share share +./usr/share/misc/man.template text-groff-share share +./usr/share/misc/mdoc.template text-groff-share share +./usr/share/misc/texinfo.cat text-texinfo-share share +./usr/share/misc/texinfo.dtd text-texinfo-share share +./usr/share/misc/texinfo.tex text-texinfo-share share +./usr/share/misc/texinfo.xsl text-texinfo-share share +./usr/share/misc/vgrindefs text-groff-share share +./usr/share/tmac/X.tmac text-groff-share share,groff +./usr/share/tmac/Xps.tmac text-groff-share share,groff +./usr/share/tmac/a4.tmac text-groff-share share,groff +./usr/share/tmac/an-old.tmac text-groff-share share,groff +./usr/share/tmac/an.tmac text-groff-share share,groff +./usr/share/tmac/andoc.tmac text-groff-share share,groff +./usr/share/tmac/ascii.tmac text-groff-share share,groff +./usr/share/tmac/composite.tmac text-groff-share share,groff +./usr/share/tmac/cp1047.tmac text-groff-share share,groff +./usr/share/tmac/devtag.tmac text-groff-share share,groff +./usr/share/tmac/doc.tmac text-groff-share share,groff +./usr/share/tmac/doc2html.tmac text-groff-share share +./usr/share/tmac/dvi.tmac text-groff-share share,groff +./usr/share/tmac/e.tmac text-groff-share share,groff +./usr/share/tmac/ec.tmac text-groff-share share,groff +./usr/share/tmac/eqnrc text-groff-share share,groff +./usr/share/tmac/europs.tmac text-groff-share share,groff +./usr/share/tmac/html-end.tmac text-groff-share share,groff +./usr/share/tmac/html.tmac text-groff-share share,groff +./usr/share/tmac/hyphen.us text-groff-share share,groff +./usr/share/tmac/hyphenex.us text-groff-share share,groff +./usr/share/tmac/latin1.tmac text-groff-share share,groff +./usr/share/tmac/latin2.tmac text-groff-share share,groff +./usr/share/tmac/latin5.tmac text-obsolete obsolete +./usr/share/tmac/latin9.tmac text-groff-share share,groff +./usr/share/tmac/lbp.tmac text-groff-share share,groff +./usr/share/tmac/lj4.tmac text-groff-share share,groff +./usr/share/tmac/m.tmac text-groff-share share,groff +./usr/share/tmac/man.local text-groff-share share,groff +./usr/share/tmac/man.tmac text-groff-share share,groff +./usr/share/tmac/mandoc.tmac text-groff-share share,groff +./usr/share/tmac/mdoc.local text-groff-share share,groff +./usr/share/tmac/mdoc.tmac text-groff-share share,groff +./usr/share/tmac/mdoc/doc-common text-groff-share share,groff +./usr/share/tmac/mdoc/doc-ditroff text-groff-share share,groff +./usr/share/tmac/mdoc/doc-nroff text-groff-share share,groff +./usr/share/tmac/mdoc/doc-syms text-groff-share share,groff +./usr/share/tmac/mdoc/fr.ISO8859-1 text-groff-share share,groff +./usr/share/tmac/mdoc/ru.KOI8-R text-groff-share share,groff +./usr/share/tmac/me.tmac text-groff-share share,groff +./usr/share/tmac/mm.tmac text-groff-share share,groff +./usr/share/tmac/mm/0.MT text-groff-share share,groff +./usr/share/tmac/mm/4.MT text-groff-share share,groff +./usr/share/tmac/mm/5.MT text-groff-share share,groff +./usr/share/tmac/mm/locale text-groff-share share,groff +./usr/share/tmac/mm/ms.cov text-groff-share share,groff +./usr/share/tmac/mm/se_locale text-groff-share share,groff +./usr/share/tmac/mm/se_ms.cov text-groff-share share,groff +./usr/share/tmac/mmse.tmac text-groff-share share,groff +./usr/share/tmac/mom.tmac text-groff-share share,groff +./usr/share/tmac/ms.tmac text-groff-share share,groff +./usr/share/tmac/mse.tmac text-groff-share share,groff +./usr/share/tmac/om.tmac text-groff-share share,groff +./usr/share/tmac/papersize.tmac text-groff-share share,groff +./usr/share/tmac/pic.tmac text-groff-share share,groff +./usr/share/tmac/ps.tmac text-groff-share share,groff +./usr/share/tmac/psatk.tmac text-groff-share share,groff +./usr/share/tmac/psold.tmac text-groff-share share,groff +./usr/share/tmac/pspic.tmac text-groff-share share,groff +./usr/share/tmac/s.tmac text-groff-share share,groff +./usr/share/tmac/safer.tmac text-groff-share share,groff +./usr/share/tmac/tmac.X text-obsolete obsolete +./usr/share/tmac/tmac.Xps text-obsolete obsolete +./usr/share/tmac/tmac.a4 text-obsolete obsolete +./usr/share/tmac/tmac.an text-obsolete obsolete +./usr/share/tmac/tmac.an.old text-obsolete obsolete +./usr/share/tmac/tmac.andoc text-obsolete obsolete +./usr/share/tmac/tmac.arkup text-obsolete obsolete +./usr/share/tmac/tmac.doc text-obsolete obsolete +./usr/share/tmac/tmac.doc-common text-obsolete obsolete +./usr/share/tmac/tmac.doc-ditroff text-obsolete obsolete +./usr/share/tmac/tmac.doc-nroff text-obsolete obsolete +./usr/share/tmac/tmac.doc-syms text-obsolete obsolete +./usr/share/tmac/tmac.doc2html text-obsolete obsolete +./usr/share/tmac/tmac.dvi text-obsolete obsolete +./usr/share/tmac/tmac.e text-obsolete obsolete +./usr/share/tmac/tmac.html text-obsolete obsolete +./usr/share/tmac/tmac.latin1 text-obsolete obsolete +./usr/share/tmac/tmac.lj4 text-obsolete obsolete +./usr/share/tmac/tmac.m text-obsolete obsolete +./usr/share/tmac/tmac.mse text-obsolete obsolete +./usr/share/tmac/tmac.pic text-obsolete obsolete +./usr/share/tmac/tmac.ps text-obsolete obsolete +./usr/share/tmac/tmac.psatk text-obsolete obsolete +./usr/share/tmac/tmac.psnew text-obsolete obsolete +./usr/share/tmac/tmac.psold text-obsolete obsolete +./usr/share/tmac/tmac.pspic text-obsolete obsolete +./usr/share/tmac/tmac.s text-obsolete obsolete +./usr/share/tmac/tmac.safer text-obsolete obsolete +./usr/share/tmac/tmac.trace text-obsolete obsolete +./usr/share/tmac/tmac.tty text-obsolete obsolete +./usr/share/tmac/tmac.tty-char text-obsolete obsolete +./usr/share/tmac/tmac.vgrind text-obsolete obsolete +./usr/share/tmac/trace.tmac text-groff-share share,groff +./usr/share/tmac/troffrc text-groff-share share,groff +./usr/share/tmac/troffrc-end text-groff-share share,groff +./usr/share/tmac/tty-char.tmac text-groff-share share,groff +./usr/share/tmac/tty.tmac text-groff-share share,groff +./usr/share/tmac/unicode.tmac text-groff-share share,groff +./usr/share/tmac/vgrind.tmac text-groff-share share +./usr/share/tmac/www.tmac text-groff-share share,groff diff --git a/distrib/sets/lists/xbase/md.amd64 b/distrib/sets/lists/xbase/md.amd64 new file mode 100644 index 000000000..11a20abce --- /dev/null +++ b/distrib/sets/lists/xbase/md.amd64 @@ -0,0 +1,17 @@ +# $NetBSD: md.amd64,v 1.10 2011/01/20 18:55:38 jmcneill Exp $ +./usr/X11R7/share/pciids/pci.ids -unknown- obsolete +./usr/X11R7/lib/libI810XvMC.so -unknown- xorg +./usr/X11R7/lib/libI810XvMC.so.1 -unknown- xorg +./usr/X11R7/lib/libI810XvMC.so.1.0 -unknown- xorg +./usr/X11R7/lib/libIntelXvMC.so -unknown- xorg +./usr/X11R7/lib/libIntelXvMC.so.1 -unknown- xorg +./usr/X11R7/lib/libIntelXvMC.so.1.0 -unknown- xorg +./usr/X11R7/lib/libchromeXvMC.so -unknown- xorg +./usr/X11R7/lib/libchromeXvMC.so.1 -unknown- xorg +./usr/X11R7/lib/libchromeXvMC.so.1.0 -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro.so -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro.so.1 -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro.so.1.0 -unknown- xorg +./usr/X11R7/lib/libdrm_intel.so -unknown- xorg +./usr/X11R7/lib/libdrm_intel.so.0 -unknown- xorg +./usr/X11R7/lib/libdrm_intel.so.0.0 -unknown- xorg diff --git a/distrib/sets/lists/xbase/md.i386 b/distrib/sets/lists/xbase/md.i386 new file mode 100644 index 000000000..de2b0be69 --- /dev/null +++ b/distrib/sets/lists/xbase/md.i386 @@ -0,0 +1,17 @@ +# $NetBSD: md.i386,v 1.26 2011/01/20 18:55:38 jmcneill Exp $ +./usr/X11R7/share/pciids/pci.ids -unknown- obsolete +./usr/X11R7/lib/libI810XvMC.so -unknown- xorg +./usr/X11R7/lib/libI810XvMC.so.1 -unknown- xorg +./usr/X11R7/lib/libI810XvMC.so.1.0 -unknown- xorg +./usr/X11R7/lib/libIntelXvMC.so -unknown- xorg +./usr/X11R7/lib/libIntelXvMC.so.1 -unknown- xorg +./usr/X11R7/lib/libIntelXvMC.so.1.0 -unknown- xorg +./usr/X11R7/lib/libchromeXvMC.so -unknown- xorg +./usr/X11R7/lib/libchromeXvMC.so.1 -unknown- xorg +./usr/X11R7/lib/libchromeXvMC.so.1.0 -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro.so -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro.so.1 -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro.so.1.0 -unknown- xorg +./usr/X11R7/lib/libdrm_intel.so -unknown- xorg +./usr/X11R7/lib/libdrm_intel.so.0 -unknown- xorg +./usr/X11R7/lib/libdrm_intel.so.0.0 -unknown- xorg diff --git a/distrib/sets/lists/xbase/mi b/distrib/sets/lists/xbase/mi new file mode 100644 index 000000000..7d961c27a --- /dev/null +++ b/distrib/sets/lists/xbase/mi @@ -0,0 +1,2931 @@ +# $NetBSD: mi,v 1.114 2012/06/13 18:51:36 martin Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.xbase xbase-sys-root +./usr/X11R6 base-x11-root x11 +./usr/X11R6/bin base-x11-root x11 +./usr/X11R6/bin/Xmark -unknown- x11 +./usr/X11R6/bin/appres -unknown- x11 +./usr/X11R6/bin/atobm -unknown- x11 +./usr/X11R6/bin/bdftopcf -unknown- x11 +./usr/X11R6/bin/bdftruncate -unknown- x11 +./usr/X11R6/bin/beforelight -unknown- x11 +./usr/X11R6/bin/bitmap -unknown- x11 +./usr/X11R6/bin/bmtoa -unknown- x11 +./usr/X11R6/bin/cxpm -unknown- x11 +./usr/X11R6/bin/dga -unknown- x11 +./usr/X11R6/bin/dpsexec -unknown- x11 +./usr/X11R6/bin/dpsinfo -unknown- x11 +./usr/X11R6/bin/editres -unknown- x11 +./usr/X11R6/bin/fc-cache -unknown- x11 +./usr/X11R6/bin/fc-list -unknown- x11 +./usr/X11R6/bin/fontconfig-config xbase-obsolete obsolete +./usr/X11R6/bin/fonttosfnt -unknown- x11 +./usr/X11R6/bin/fslsfonts -unknown- x11 +./usr/X11R6/bin/fstobdf -unknown- x11 +./usr/X11R6/bin/glxgears -unknown- x11 +./usr/X11R6/bin/glxinfo -unknown- x11 +./usr/X11R6/bin/iceauth -unknown- x11 +./usr/X11R6/bin/ico -unknown- x11 +./usr/X11R6/bin/lbxproxy -unknown- x11 +./usr/X11R6/bin/listres -unknown- x11 +./usr/X11R6/bin/luit -unknown- x11 +./usr/X11R6/bin/makepsres -unknown- x11 +./usr/X11R6/bin/mkcfm -unknown- x11 +./usr/X11R6/bin/mkfontdir -unknown- x11 +./usr/X11R6/bin/mkfontscale -unknown- x11 +./usr/X11R6/bin/oclock -unknown- x11 +./usr/X11R6/bin/proxymngr -unknown- x11 +./usr/X11R6/bin/resize -unknown- x11 +./usr/X11R6/bin/revpath -unknown- x11 +./usr/X11R6/bin/rgb -unknown- x11 +./usr/X11R6/bin/rman -unknown- x11 +./usr/X11R6/bin/rstart -unknown- x11 +./usr/X11R6/bin/rstartd -unknown- x11 +./usr/X11R6/bin/sessreg -unknown- x11 +./usr/X11R6/bin/setxkbmap -unknown- x11 +./usr/X11R6/bin/showfont -unknown- x11 +./usr/X11R6/bin/showrgb -unknown- x11 +./usr/X11R6/bin/smproxy -unknown- x11 +./usr/X11R6/bin/ssh-askpass -unknown- x11 +./usr/X11R6/bin/startx -unknown- x11 +./usr/X11R6/bin/sxpm -unknown- x11 +./usr/X11R6/bin/texteroids -unknown- x11 +./usr/X11R6/bin/twm -unknown- x11 +./usr/X11R6/bin/ucs2any -unknown- x11 +./usr/X11R6/bin/ucs2any.pl xbase-obsolete obsolete +./usr/X11R6/bin/uxterm -unknown- x11 +./usr/X11R6/bin/viewres -unknown- x11 +./usr/X11R6/bin/x11perf -unknown- x11 +./usr/X11R6/bin/x11perfcomp -unknown- x11 +./usr/X11R6/bin/xauth -unknown- x11 +./usr/X11R6/bin/xbiff -unknown- x11 +./usr/X11R6/bin/xcalc -unknown- x11 +./usr/X11R6/bin/xclipboard -unknown- x11 +./usr/X11R6/bin/xclock -unknown- x11 +./usr/X11R6/bin/xcmsdb -unknown- x11 +./usr/X11R6/bin/xconsole -unknown- x11 +./usr/X11R6/bin/xcursor-config -unknown- x11 +./usr/X11R6/bin/xcutsel -unknown- x11 +./usr/X11R6/bin/xditview -unknown- x11 +./usr/X11R6/bin/xdm -unknown- x11 +./usr/X11R6/bin/xdpyinfo -unknown- x11 +./usr/X11R6/bin/xedit -unknown- x11 +./usr/X11R6/bin/xev -unknown- x11 +./usr/X11R6/bin/xeyes -unknown- x11 +./usr/X11R6/bin/xfd -unknown- x11 +./usr/X11R6/bin/xfindproxy -unknown- x11 +./usr/X11R6/bin/xfontsel -unknown- x11 +./usr/X11R6/bin/xfs -unknown- x11 +./usr/X11R6/bin/xfsinfo -unknown- x11 +./usr/X11R6/bin/xft-config -unknown- x11 +./usr/X11R6/bin/xftcache xbase-obsolete obsolete +./usr/X11R6/bin/xfwp -unknown- x11 +./usr/X11R6/bin/xgamma -unknown- x11 +./usr/X11R6/bin/xgc -unknown- x11 +./usr/X11R6/bin/xhost -unknown- x11 +./usr/X11R6/bin/xinit -unknown- x11 +./usr/X11R6/bin/xkbbell -unknown- x11 +./usr/X11R6/bin/xkbcomp -unknown- x11 +./usr/X11R6/bin/xkbevd -unknown- x11 +./usr/X11R6/bin/xkbprint -unknown- x11 +./usr/X11R6/bin/xkbvleds -unknown- x11 +./usr/X11R6/bin/xkbwatch -unknown- x11 +./usr/X11R6/bin/xkill -unknown- x11 +./usr/X11R6/bin/xload -unknown- x11 +./usr/X11R6/bin/xlogo -unknown- x11 +./usr/X11R6/bin/xlsatoms -unknown- x11 +./usr/X11R6/bin/xlsclients -unknown- x11 +./usr/X11R6/bin/xlsfonts -unknown- x11 +./usr/X11R6/bin/xmag -unknown- x11 +./usr/X11R6/bin/xman -unknown- x11 +./usr/X11R6/bin/xmessage -unknown- x11 +./usr/X11R6/bin/xmh -unknown- x11 +./usr/X11R6/bin/xmodmap -unknown- x11 +./usr/X11R6/bin/xon -unknown- x11 +./usr/X11R6/bin/xprop -unknown- x11 +./usr/X11R6/bin/xrandr -unknown- x11 +./usr/X11R6/bin/xrdb -unknown- x11 +./usr/X11R6/bin/xrefresh -unknown- x11 +./usr/X11R6/bin/xset -unknown- x11 +./usr/X11R6/bin/xsetmode -unknown- x11 +./usr/X11R6/bin/xsetpointer -unknown- x11 +./usr/X11R6/bin/xsetroot -unknown- x11 +./usr/X11R6/bin/xsm -unknown- x11 +./usr/X11R6/bin/xstdcmap -unknown- x11 +./usr/X11R6/bin/xsystrace xbase-obsolete obsolete +./usr/X11R6/bin/xterm -unknown- x11 +./usr/X11R6/bin/xtrapchar -unknown- x11 +./usr/X11R6/bin/xtrapin -unknown- x11 +./usr/X11R6/bin/xtrapinfo -unknown- x11 +./usr/X11R6/bin/xtrapout -unknown- x11 +./usr/X11R6/bin/xtrapproto -unknown- x11 +./usr/X11R6/bin/xtrapreset -unknown- x11 +./usr/X11R6/bin/xtrapstats -unknown- x11 +./usr/X11R6/bin/xvinfo -unknown- x11 +./usr/X11R6/bin/xwd -unknown- x11 +./usr/X11R6/bin/xwininfo -unknown- x11 +./usr/X11R6/bin/xwud -unknown- x11 +./usr/X11R6/include base-x11-root x11 +./usr/X11R6/include/DPS base-x11-root x11 +./usr/X11R6/include/GL base-x11-root x11 +./usr/X11R6/include/GL/internal base-x11-root x11 +./usr/X11R6/include/X11 base-x11-root x11 +./usr/X11R6/include/X11/ICE base-x11-root x11 +./usr/X11R6/include/X11/PM base-x11-root x11 +./usr/X11R6/include/X11/SM base-x11-root x11 +./usr/X11R6/include/X11/Xaw base-x11-root x11 +./usr/X11R6/include/X11/Xcursor base-x11-root x11 +./usr/X11R6/include/X11/Xft base-x11-root x11 +./usr/X11R6/include/X11/Xmu base-x11-root x11 +./usr/X11R6/include/X11/XprintAppUtil base-x11-root x11 +./usr/X11R6/include/X11/XprintUtil base-x11-root x11 +./usr/X11R6/include/X11/Xtrans base-x11-root x11 +./usr/X11R6/include/X11/bitmaps base-x11-root x11 +./usr/X11R6/include/X11/bitmaps/1x1 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/2x2 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Dashes -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Down -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Excl -unknown- x11 +./usr/X11R6/include/X11/bitmaps/FlipHoriz -unknown- x11 +./usr/X11R6/include/X11/bitmaps/FlipVert -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Fold -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Left -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Right -unknown- x11 +./usr/X11R6/include/X11/bitmaps/RotateLeft -unknown- x11 +./usr/X11R6/include/X11/bitmaps/RotateRight -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Stipple xbase-obsolete obsolete +./usr/X11R6/include/X11/bitmaps/Stippler -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Term -unknown- x11 +./usr/X11R6/include/X11/bitmaps/Up -unknown- x11 +./usr/X11R6/include/X11/bitmaps/black -unknown- x11 +./usr/X11R6/include/X11/bitmaps/black6 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/box6 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/boxes -unknown- x11 +./usr/X11R6/include/X11/bitmaps/calculator -unknown- x11 +./usr/X11R6/include/X11/bitmaps/cntr_ptr -unknown- x11 +./usr/X11R6/include/X11/bitmaps/cntr_ptrmsk -unknown- x11 +./usr/X11R6/include/X11/bitmaps/cross_weave -unknown- x11 +./usr/X11R6/include/X11/bitmaps/dimple1 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/dimple3 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/dot -unknown- x11 +./usr/X11R6/include/X11/bitmaps/dropbar7 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/dropbar8 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/escherknot -unknown- x11 +./usr/X11R6/include/X11/bitmaps/flagdown -unknown- x11 +./usr/X11R6/include/X11/bitmaps/flagup -unknown- x11 +./usr/X11R6/include/X11/bitmaps/flipped_gray -unknown- x11 +./usr/X11R6/include/X11/bitmaps/gray -unknown- x11 +./usr/X11R6/include/X11/bitmaps/gray1 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/gray3 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/grid16 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/grid2 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/grid4 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/grid8 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/hlines2 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/hlines3 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/icon -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard16 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/ldblarrow -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left_ptr -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left_ptrmsk -unknown- x11 +./usr/X11R6/include/X11/bitmaps/letters -unknown- x11 +./usr/X11R6/include/X11/bitmaps/light_gray -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mailempty -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mailemptymsk -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mailfull -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mailfullmsk -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mensetmanus -unknown- x11 +./usr/X11R6/include/X11/bitmaps/menu10 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/menu12 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/menu16 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/menu6 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/menu8 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/noletters -unknown- x11 +./usr/X11R6/include/X11/bitmaps/opendot -unknown- x11 +./usr/X11R6/include/X11/bitmaps/opendotMask -unknown- x11 +./usr/X11R6/include/X11/bitmaps/plaid -unknown- x11 +./usr/X11R6/include/X11/bitmaps/rdblarrow -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right_ptr -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right_ptrmsk -unknown- x11 +./usr/X11R6/include/X11/bitmaps/root_weave -unknown- x11 +./usr/X11R6/include/X11/bitmaps/scales -unknown- x11 +./usr/X11R6/include/X11/bitmaps/sipb -unknown- x11 +./usr/X11R6/include/X11/bitmaps/star -unknown- x11 +./usr/X11R6/include/X11/bitmaps/starMask -unknown- x11 +./usr/X11R6/include/X11/bitmaps/stipple -unknown- x11 +./usr/X11R6/include/X11/bitmaps/target -unknown- x11 +./usr/X11R6/include/X11/bitmaps/terminal -unknown- x11 +./usr/X11R6/include/X11/bitmaps/tie_fighter -unknown- x11 +./usr/X11R6/include/X11/bitmaps/vlines2 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/vlines3 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/weird_size -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wide_weave -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wingdogs -unknown- x11 +./usr/X11R6/include/X11/bitmaps/woman -unknown- x11 +./usr/X11R6/include/X11/bitmaps/xfd_icon -unknown- x11 +./usr/X11R6/include/X11/bitmaps/xlogo11 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/xlogo16 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/xlogo32 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/xlogo64 -unknown- x11 +./usr/X11R6/include/X11/bitmaps/xsnow -unknown- x11 +./usr/X11R6/include/X11/dri base-x11-root x11 +./usr/X11R6/include/X11/drm base-x11-root x11 +./usr/X11R6/include/X11/extensions base-x11-root x11 +./usr/X11R6/include/X11/fonts base-x11-root x11 +./usr/X11R6/include/X11/fonts/codeconv base-obsolete obsolete +./usr/X11R6/include/X11/pixmaps base-x11-root x11 +./usr/X11R6/include/X11/pixmaps/NetBSD.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/NetBSDbw.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/NetBSDinv.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/XFree86.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/XFree86bw.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/deny-always.xpm xbase-obsolete obsolete +./usr/X11R6/include/X11/pixmaps/deny.xpm xbase-obsolete obsolete +./usr/X11R6/include/X11/pixmaps/logo.xpm xbase-obsolete obsolete +./usr/X11R6/include/X11/pixmaps/permit-always.xpm xbase-obsolete obsolete +./usr/X11R6/include/X11/pixmaps/permit.xpm xbase-obsolete obsolete +./usr/X11R6/include/X11/pixmaps/skull.xpm xbase-obsolete obsolete +./usr/X11R6/include/fontconfig base-x11-root x11 +./usr/X11R6/include/freetype2 base-x11-root x11 +./usr/X11R6/include/freetype2/freetype base-x11-root x11 +./usr/X11R6/include/freetype2/freetype/cache base-x11-root x11 +./usr/X11R6/include/freetype2/freetype/config base-x11-root x11 +./usr/X11R6/include/freetype2/freetype/internal base-x11-root x11 +./usr/X11R6/include/freetype2/freetype/internal/services base-x11-root x11 +./usr/X11R6/include/pixman-1 base-x11-root x11 +./usr/X11R6/include/xorg base-x11-root x11 +./usr/X11R6/lib base-x11-root x11 +./usr/X11R6/lib/X11 base-x11-root x11 +./usr/X11R6/lib/X11/XErrorDB -unknown- x11 +./usr/X11R6/lib/X11/XKeysymDB -unknown- x11 +./usr/X11R6/lib/X11/Xcms.txt -unknown- x11 +./usr/X11R6/lib/X11/XftConfig xbase-obsolete obsolete +./usr/X11R6/lib/X11/XftConfig-OBSOLETE xbase-obsolete obsolete +./usr/X11R6/lib/X11/app-defaults base-x11-root x11 +./usr/X11R6/lib/X11/app-defaults/Beforelight -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Bitmap -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Bitmap-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Chooser -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Clock-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Editres -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Editres-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/SshAskpass -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/UXTerm -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Viewres -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XCalc -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XCalc-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XClipboard -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XClock -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XClock-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XConsole -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XFontSel -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XLoad -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XLogo -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XLogo-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XSm -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XTerm -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XTerm-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xditview -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xditview-chrtr -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xedit -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xedit-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xfd -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xgc -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xmag -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xman -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xmessage -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xmessage-color -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xmh -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xsystrace xbase-obsolete obsolete +./usr/X11R6/lib/X11/config base-x11-root x11 +./usr/X11R6/lib/X11/doc base-x11-root x11 +./usr/X11R6/lib/X11/etc base-x11-root x11 +./usr/X11R6/lib/X11/etc/sun.termcap xbase-obsolete obsolete +./usr/X11R6/lib/X11/etc/sun.terminfo xbase-obsolete obsolete +./usr/X11R6/lib/X11/etc/xterm.termcap xbase-obsolete obsolete +./usr/X11R6/lib/X11/etc/xterm.terminfo xbase-obsolete obsolete +./usr/X11R6/lib/X11/fonts base-x11-root x11 +./usr/X11R6/lib/X11/fonts/100dpi base-x11-root x11 +./usr/X11R6/lib/X11/fonts/75dpi base-x11-root x11 +./usr/X11R6/lib/X11/fonts/CID base-x11-root x11 +./usr/X11R6/lib/X11/fonts/Speedo base-x11-root x11 +./usr/X11R6/lib/X11/fonts/TTF base-x11-root x11 +./usr/X11R6/lib/X11/fonts/Type1 base-x11-root x11 +./usr/X11R6/lib/X11/fonts/cyrillic base-x11-root x11 +./usr/X11R6/lib/X11/fonts/encodings base-x11-root x11 +./usr/X11R6/lib/X11/fonts/encodings/large base-x11-root x11 +./usr/X11R6/lib/X11/fonts/local base-x11-root x11 +./usr/X11R6/lib/X11/fonts/misc base-x11-root x11 +./usr/X11R6/lib/X11/fonts/util base-x11-root x11 +./usr/X11R6/lib/X11/locale base-x11-root x11 +./usr/X11R6/lib/X11/locale/C base-x11-root x11 +./usr/X11R6/lib/X11/locale/C/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/C/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/am_ET.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/armscii-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/armscii-8/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/armscii-8/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/armscii-8/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/common/ximcp.so.2 xbase-obsolete obsolete +./usr/X11R6/lib/X11/locale/common/xlcDef.so.2 xbase-obsolete obsolete +./usr/X11R6/lib/X11/locale/common/xlcUTF8Load.so.2 xbase-obsolete obsolete +./usr/X11R6/lib/X11/locale/common/xlibi18n.so.2 xbase-obsolete obsolete +./usr/X11R6/lib/X11/locale/common/xlocale.so.2 xbase-obsolete obsolete +./usr/X11R6/lib/X11/locale/common/xomGeneric.so.2 xbase-obsolete obsolete +./usr/X11R6/lib/X11/locale/compose.dir -unknown- share,x11 +./usr/X11R6/lib/X11/locale/el_GR.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/el_GR.UTF-8/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/en_US.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/en_US.UTF-8/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/en_US.UTF-8/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/en_US.UTF-8/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/georgian-academy base-x11-root x11 +./usr/X11R6/lib/X11/locale/georgian-academy/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/georgian-academy/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/georgian-academy/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/georgian-ps base-x11-root x11 +./usr/X11R6/lib/X11/locale/georgian-ps/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/georgian-ps/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/georgian-ps/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ibm-cp1133 base-x11-root x11 +./usr/X11R6/lib/X11/locale/ibm-cp1133/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ibm-cp1133/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ibm-cp1133/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iscii-dev base-x11-root x11 +./usr/X11R6/lib/X11/locale/iscii-dev/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iscii-dev/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/isiri-3342 base-x11-root x11 +./usr/X11R6/lib/X11/locale/isiri-3342/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/isiri-3342/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-1 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-1/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-1/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-1/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-10 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-10/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-10/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-10/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-11 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-11/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-11/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-13 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-13/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-13/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-13/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-14 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-14/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-14/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-14/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-15 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-15/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-15/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-15/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-2 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-2/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-2/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-2/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-3 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-3/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-3/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-3/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-4 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-4/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-4/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-4/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-5 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-5/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-5/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-5/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-6 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-6/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-6/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-6/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-7 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-7/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-7/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-7/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-8/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-8/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-8/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-9 base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-9/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-9/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-9/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-9e base-x11-root x11 +./usr/X11R6/lib/X11/locale/iso8859-9e/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-9e/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/iso8859-9e/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja base-x11-root x11 +./usr/X11R6/lib/X11/locale/ja.JIS base-x11-root x11 +./usr/X11R6/lib/X11/locale/ja.JIS/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja.JIS/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja.JIS/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja.S90 base-x11-root x11 +./usr/X11R6/lib/X11/locale/ja.SJIS base-x11-root x11 +./usr/X11R6/lib/X11/locale/ja.SJIS/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja.SJIS/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja.SJIS/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja.U90 base-x11-root x11 +./usr/X11R6/lib/X11/locale/ja/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja_JP.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/ja_JP.UTF-8/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ja_JP.UTF-8/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ko base-x11-root x11 +./usr/X11R6/lib/X11/locale/ko/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ko/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ko/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ko_KR.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/ko_KR.UTF-8/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/ko_KR.UTF-8/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-c base-x11-root x11 +./usr/X11R6/lib/X11/locale/koi8-c/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-c/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-c/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-r base-x11-root x11 +./usr/X11R6/lib/X11/locale/koi8-r/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-r/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-r/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-u base-x11-root x11 +./usr/X11R6/lib/X11/locale/koi8-u/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-u/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/koi8-u/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/lib base-x11-root x11 +./usr/X11R6/lib/X11/locale/lib/common base-x11-root x11 +./usr/X11R6/lib/X11/locale/locale.alias -unknown- share,x11 +./usr/X11R6/lib/X11/locale/locale.dir -unknown- share,x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1251 base-x11-root x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1251/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1251/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1255 base-x11-root x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1255/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1255/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1256 base-x11-root x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1256/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/microsoft-cp1256/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/mulelao-1 base-x11-root x11 +./usr/X11R6/lib/X11/locale/mulelao-1/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/mulelao-1/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/mulelao-1/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/nokhchi-1 base-x11-root x11 +./usr/X11R6/lib/X11/locale/nokhchi-1/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/nokhchi-1/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/pt_BR.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/tatar-cyr base-x11-root x11 +./usr/X11R6/lib/X11/locale/tatar-cyr/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/tatar-cyr/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/tbl_data/tabkoi8-r xbase-obsolete obsolete +./usr/X11R6/lib/X11/locale/th_TH base-x11-root x11 +./usr/X11R6/lib/X11/locale/th_TH.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/th_TH.UTF-8/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/th_TH.UTF-8/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/th_TH/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/th_TH/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/tscii-0 base-x11-root x11 +./usr/X11R6/lib/X11/locale/tscii-0/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/tscii-0/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/vi_VN.tcvn base-x11-root x11 +./usr/X11R6/lib/X11/locale/vi_VN.tcvn/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/vi_VN.tcvn/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/vi_VN.tcvn/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/vi_VN.viscii base-x11-root x11 +./usr/X11R6/lib/X11/locale/vi_VN.viscii/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/vi_VN.viscii/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/vi_VN.viscii/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_CN base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_CN.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_CN.UTF-8/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_CN.UTF-8/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_CN.gb18030 base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_CN.gbk base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_CN.gbk/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_CN.gbk/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_CN.gbk/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_CN/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_CN/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_CN/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_HK.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_HK.big5 base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_HK.big5/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_HK.big5hkscs base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_HK.big5hkscs/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_HK.big5hkscs/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_TW base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_TW.UTF-8 base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_TW.UTF-8/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_TW.UTF-8/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_TW.big5 base-x11-root x11 +./usr/X11R6/lib/X11/locale/zh_TW.big5/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_TW.big5/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_TW.big5/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_TW/Compose -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_TW/XI18N_OBJS -unknown- share,x11 +./usr/X11R6/lib/X11/locale/zh_TW/XLC_LOCALE -unknown- share,x11 +./usr/X11R6/lib/X11/rgb.db -unknown- x11 +./usr/X11R6/lib/X11/rgb.txt -unknown- x11 +./usr/X11R6/lib/X11/x11perfcomp base-x11-root x11 +./usr/X11R6/lib/X11/x11perfcomp/fillblnk -unknown- x11 +./usr/X11R6/lib/X11/x11perfcomp/perfboth -unknown- x11 +./usr/X11R6/lib/X11/x11perfcomp/perfratio -unknown- x11 +./usr/X11R6/lib/X11/xedit base-x11-root x11 +./usr/X11R6/lib/X11/xedit/lisp base-x11-root x11 +./usr/X11R6/lib/X11/xedit/lisp/fun.lsp xbase-obsolete obsolete +./usr/X11R6/lib/X11/xedit/lisp/indent.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/lisp.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes base-x11-root x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/c.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/html.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/imake.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/lisp.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/make.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/man.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/patch.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/rpm.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/sgml.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/sh.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/xconf.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/xlog.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/progmodes/xrdb.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/syntax.lsp -unknown- x11 +./usr/X11R6/lib/X11/xedit/lisp/xedit.lsp -unknown- x11 +./usr/X11R6/lib/X11/xkb base-x11-root x11 +./usr/X11R6/lib/X11/xkb/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/README.config -unknown- x11 +./usr/X11R6/lib/X11/xkb/README.enhancing -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat base-x11-root x11 +./usr/X11R6/lib/X11/xkb/compat.dir -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/accessx -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/basic -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/complete -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/default -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/group_led -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/iso9995 -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/japan -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/keypad -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/leds -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/misc -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/mousekeys -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/norepeat -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/pc -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/pc98 -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/xfree86 -unknown- x11 +./usr/X11R6/lib/X11/xkb/compat/xtest -unknown- x11 +./usr/X11R6/lib/X11/xkb/compiled base-x11-root x11 +./usr/X11R6/lib/X11/xkb/compiled/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry base-x11-root x11 +./usr/X11R6/lib/X11/xkb/geometry.dir -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/amiga -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/ataritt -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/chicony -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/dell -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/digital base-x11-root x11 +./usr/X11R6/lib/X11/xkb/geometry/digital/lk -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/digital/pc -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/digital/unix -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/everex -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/fujitsu -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/hp -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/ibm base-x11-root x11 +./usr/X11R6/lib/X11/xkb/geometry/ibm/thinkpad -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/keytronic -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/kinesis -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/macintosh -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/microsoft -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/nec -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/northgate -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/pc -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/sgi base-x11-root x11 +./usr/X11R6/lib/X11/xkb/geometry/sgi/O2 -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/sgi/indigo -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/sgi/indy -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/sharp -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/sony -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/sun -unknown- x11 +./usr/X11R6/lib/X11/xkb/geometry/winbook -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes base-x11-root x11 +./usr/X11R6/lib/X11/xkb/keycodes.dir -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/aliases -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/amiga -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/ataritt -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/digital base-x11-root x11 +./usr/X11R6/lib/X11/xkb/keycodes/digital/lk -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/digital/pc -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/fujitsu -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/hp -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/ibm -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/macintosh -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/powerpcps2 -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/sgi base-x11-root x11 +./usr/X11R6/lib/X11/xkb/keycodes/sgi/indigo -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/sgi/indy -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/sgi/iris -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/sony -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/sun -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/x68k -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/xfree86 -unknown- x11 +./usr/X11R6/lib/X11/xkb/keycodes/xfree98 -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap base-x11-root x11 +./usr/X11R6/lib/X11/xkb/keymap.dir -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/amiga -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/ataritt -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/digital base-x11-root x11 +./usr/X11R6/lib/X11/xkb/keymap/digital/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/macintosh -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi base-x11-root x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/be -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/bg -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/ca -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/cz -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/cz_qwerty -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/de -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/de_CH -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/dk -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/dvorak -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/en_US -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/es -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/fi -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/fr -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/fr_CH -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/gb -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/hu -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/it -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/jp -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/no -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/pl -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/pt -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/ru -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/se -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/sk -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/sk_qwerty -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/th -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sgi/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sony -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun base-x11-root x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/de -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/es -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/fi -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/fr -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/no -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/pl -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/ru -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/se -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/uk -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/sun/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/x68k -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/xfree86 -unknown- x11 +./usr/X11R6/lib/X11/xkb/keymap/xfree98 -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules base-x11-root x11 +./usr/X11R6/lib/X11/xkb/rules/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules/sgi -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules/sgi.lst -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules/sun -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules/sun.lst -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules/xfree86 -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules/xfree86-it.lst -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules/xfree86.lst -unknown- x11 +./usr/X11R6/lib/X11/xkb/rules/xfree86.xml -unknown- x11 +./usr/X11R6/lib/X11/xkb/semantics base-x11-root x11 +./usr/X11R6/lib/X11/xkb/semantics/basic -unknown- x11 +./usr/X11R6/lib/X11/xkb/semantics/complete -unknown- x11 +./usr/X11R6/lib/X11/xkb/semantics/default -unknown- x11 +./usr/X11R6/lib/X11/xkb/semantics/xtest -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols.dir -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/al -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/altwin -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/am -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/apple -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ar -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/az -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/be -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ben -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/bg -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/br -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/bs -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/by -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ca -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ca_enhanced -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/colemak -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/compose -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ctrl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/cz -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/cz_qwerty -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/czsk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/de -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/de_CH -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/dev -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/digital base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/digital/lk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/digital/pc -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/digital/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/digital/vt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/dk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/dvorak -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ee -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/el -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/en_US -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/es -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/fi -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/fo -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/fr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/fr_CH -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/fujitsu base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/fujitsu/jp -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/fujitsu/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/gb -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ge_la -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ge_ru -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/group -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/guj -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/gur -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/hp base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/hp/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/hr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/hr_US -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/hu -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/hu_US -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/hu_qwerty -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ie -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/il -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/il_phonetic -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/inet -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ir -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/is -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/iso9995-3 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/it -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/iu -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/jp -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/kan -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/keypad -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ky -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/la -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/lat -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/level3 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/lo -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/lock -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/lt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/lt_std -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/lv -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/de -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/de_CH -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/dk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/es -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/fi -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/fr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/fr_CH -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/gb -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/it -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/nl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/no -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/pt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/se -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/macintosh/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/mk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ml -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/mm -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/mt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/mt_us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/nec base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/nec/jp -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/nl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/no -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ogham -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ori -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/al -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/am -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ar -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/be -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ben -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/bg -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/br -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/by -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/colemak -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/cz -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/cz_qwerty -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/de -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/dev -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/dk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/dvorak -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/dz -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ee -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/el -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/en_US -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/es -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/fi -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/fo -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/fr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/fr-latin9 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/gb -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ge_la -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ge_ru -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/guj -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/gur -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/hr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/hsb -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/hu -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ie -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/il -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/il_phonetic -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ir -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/is -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/it -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/iu -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/kan -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ky -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/la -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/lat -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/latin -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/lo -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/lt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/lv -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/mk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ml -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/mm -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/mt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/mt_us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/nl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/no -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ogham -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ori -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/pc -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/pl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/pl2 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/pt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ro -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ru -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/sapmi -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/se -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/se_FI -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/se_NO -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/se_SE -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/si -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/sin -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/sk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/sk_qwerty -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/sr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/syr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/syr_phonetic -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/tel -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/th -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/th_pat -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/th_tis -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/tj -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/tml -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/tr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ua -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/ur_PK -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/us_intl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/uz -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc/yu -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pc104 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pl2 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/pt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ralt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ro -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ro2 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ru -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ru_yawerty xbase-obsolete obsolete +./usr/X11R6/lib/X11/xkb/symbols/sapmi -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/se -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/se_FI -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/se_NO -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/se_SE -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sgi base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/sgi/jp -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sharp base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/sharp/jp -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/si -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sk -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sk_qwerty -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sony base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/sony/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/srvr_ctrl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sun base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/sun/se -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sun/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/sun/usb -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/syr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/syr_phonetic -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/tel -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/th -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/th_pat -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/th_tis -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/tj -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/tml -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/tr -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/tr_f -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/ua -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/us -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/us_group2 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/us_group3 -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/us_intl -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/uz -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/vn -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/xfree68 base-x11-root x11 +./usr/X11R6/lib/X11/xkb/symbols/xfree68/amiga -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/xfree68/ataritt -unknown- x11 +./usr/X11R6/lib/X11/xkb/symbols/yu -unknown- x11 +./usr/X11R6/lib/X11/xkb/torture base-x11-root x11 +./usr/X11R6/lib/X11/xkb/types base-x11-root x11 +./usr/X11R6/lib/X11/xkb/types.dir -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/README -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/basic -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/cancel xbase-obsolete obsolete +./usr/X11R6/lib/X11/xkb/types/caps -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/complete -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/default -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/extra -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/iso9995 -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/mousekeys -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/nocancel xbase-obsolete obsolete +./usr/X11R6/lib/X11/xkb/types/numpad -unknown- x11 +./usr/X11R6/lib/X11/xkb/types/pc -unknown- x11 +./usr/X11R6/lib/X11/xkb/xkbcomp -unknown- x11 +./usr/X11R6/lib/X11/xman.help -unknown- x11 +./usr/X11R6/lib/modules base-x11-root x11 +./usr/X11R6/lib/modules/codeconv base-obsolete obsolete +./usr/X11R6/lib/modules/drivers base-x11-root x11 +./usr/X11R6/lib/modules/extensions base-x11-root x11 +./usr/X11R6/lib/modules/fonts base-x11-root x11 +./usr/X11R6/lib/modules/input base-x11-root x11 +./usr/X11R6/lib/pkgconfig base-x11-root x11 +./usr/X11R6/libexec base-x11-root x11 +./usr/X11R6/libexec/chooser -unknown- x11 +./usr/X11R6/libexec/rstartd.real -unknown- x11 +./usr/X11R6/man base-x11-root x11 +./usr/X11R6/man/cat1 base-x11-root x11 +./usr/X11R6/man/cat1/Xmark.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/appres.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/atobm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/bdftopcf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/bdftruncate.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/beforelight.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/bitmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/bmtoa.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/cxpm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/dga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/dpsexec.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/dpsinfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/editres.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/fc-cache.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/fc-list.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/fonttosfnt.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/fslsfonts.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/fstobdf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/glxgears.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/glxinfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/iceauth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/ico.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/lbxproxy.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/listres.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/luit.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/makepsres.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/mkcfm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/mkfontdir.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/mkfontscale.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/oclock.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/proxymngr.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pswrap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/resize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/revpath.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/rman.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/rstart.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/rstartd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/sessreg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/setxkbmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/showfont.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/showrgb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/smproxy.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/ssh-askpass.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/startx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/sxpm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/texteroids.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/twm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/ucs2any.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/viewres.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/x11perf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/x11perfcomp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xauth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xbiff.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xcalc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xclipboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xclock.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xcmsdb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xconsole.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xcutsel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xditview.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xdm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xdpyinfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xedit.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xev.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xeyes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xfd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xfindproxy.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xfontsel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xfs.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xfsinfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xftcache.0 xbase-obsolete obsolete +./usr/X11R6/man/cat1/xfwp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xgamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xgc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xhost.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xinit.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xkbcomp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xkbevd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xkbprint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xkill.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xload.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xlogo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xlsatoms.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xlsclients.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xlsfonts.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xmag.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xman.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xmessage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xmh.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xmodmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xprop.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xrandr.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xrdb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xrefresh.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xset.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xsetmode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xsetpointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xsetroot.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xsm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xstdcmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xsystrace.0 xbase-obsolete obsolete +./usr/X11R6/man/cat1/xterm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xtrap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xtrapchar.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xtrapin.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xtrapinfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xtrapout.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xtrapproto.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xtrapreset.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xtrapstats.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xvinfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xwd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xwininfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xwud.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3 base-x11-root x11 +./usr/X11R6/man/cat4 base-x11-root x11 +./usr/X11R6/man/cat5 base-x11-root x11 +./usr/X11R6/man/cat7 base-x11-root x11 +./usr/X11R6/man/cat7/X.0 -unknown- .cat,x11 +./usr/X11R6/man/cat7/X.Org.0 xbase-obsolete obsolete +./usr/X11R6/man/cat7/XConsortium.0 xbase-obsolete obsolete +./usr/X11R6/man/cat7/XProjectTeam.0 xbase-obsolete obsolete +./usr/X11R6/man/cat7/XStandards.0 -unknown- .cat,x11 +./usr/X11R6/man/cat7/Xsecurity.0 -unknown- .cat,x11 +./usr/X11R6/man/html1 base-x11-root x11 +./usr/X11R6/man/html1/Xmark.html -unknown- html,x11 +./usr/X11R6/man/html1/appres.html -unknown- html,x11 +./usr/X11R6/man/html1/atobm.html -unknown- html,x11 +./usr/X11R6/man/html1/bdftopcf.html -unknown- html,x11 +./usr/X11R6/man/html1/bdftruncate.html -unknown- html,x11 +./usr/X11R6/man/html1/beforelight.html -unknown- html,x11 +./usr/X11R6/man/html1/bitmap.html -unknown- html,x11 +./usr/X11R6/man/html1/bmtoa.html -unknown- html,x11 +./usr/X11R6/man/html1/cxpm.html -unknown- html,x11 +./usr/X11R6/man/html1/dga.html -unknown- html,x11 +./usr/X11R6/man/html1/dpsexec.html -unknown- html,x11 +./usr/X11R6/man/html1/dpsinfo.html -unknown- html,x11 +./usr/X11R6/man/html1/editres.html -unknown- html,x11 +./usr/X11R6/man/html1/fc-cache.html -unknown- html,x11 +./usr/X11R6/man/html1/fc-list.html -unknown- html,x11 +./usr/X11R6/man/html1/fonttosfnt.html -unknown- html,x11 +./usr/X11R6/man/html1/fslsfonts.html -unknown- html,x11 +./usr/X11R6/man/html1/fstobdf.html -unknown- html,x11 +./usr/X11R6/man/html1/glxgears.html -unknown- html,x11 +./usr/X11R6/man/html1/glxinfo.html -unknown- html,x11 +./usr/X11R6/man/html1/iceauth.html -unknown- html,x11 +./usr/X11R6/man/html1/ico.html -unknown- html,x11 +./usr/X11R6/man/html1/lbxproxy.html -unknown- html,x11 +./usr/X11R6/man/html1/listres.html -unknown- html,x11 +./usr/X11R6/man/html1/luit.html -unknown- html,x11 +./usr/X11R6/man/html1/makepsres.html -unknown- html,x11 +./usr/X11R6/man/html1/mkcfm.html -unknown- html,x11 +./usr/X11R6/man/html1/mkfontdir.html -unknown- html,x11 +./usr/X11R6/man/html1/mkfontscale.html -unknown- html,x11 +./usr/X11R6/man/html1/oclock.html -unknown- html,x11 +./usr/X11R6/man/html1/proxymngr.html -unknown- html,x11 +./usr/X11R6/man/html1/pswrap.html -unknown- html,x11 +./usr/X11R6/man/html1/resize.html -unknown- html,x11 +./usr/X11R6/man/html1/revpath.html -unknown- html,x11 +./usr/X11R6/man/html1/rman.html -unknown- html,x11 +./usr/X11R6/man/html1/rstart.html -unknown- html,x11 +./usr/X11R6/man/html1/rstartd.html -unknown- html,x11 +./usr/X11R6/man/html1/sessreg.html -unknown- html,x11 +./usr/X11R6/man/html1/setxkbmap.html -unknown- html,x11 +./usr/X11R6/man/html1/showfont.html -unknown- html,x11 +./usr/X11R6/man/html1/showrgb.html -unknown- html,x11 +./usr/X11R6/man/html1/smproxy.html -unknown- html,x11 +./usr/X11R6/man/html1/ssh-askpass.html -unknown- html,x11 +./usr/X11R6/man/html1/startx.html -unknown- html,x11 +./usr/X11R6/man/html1/sxpm.html -unknown- html,x11 +./usr/X11R6/man/html1/texteroids.html -unknown- html,x11 +./usr/X11R6/man/html1/twm.html -unknown- html,x11 +./usr/X11R6/man/html1/ucs2any.html -unknown- html,x11 +./usr/X11R6/man/html1/viewres.html -unknown- html,x11 +./usr/X11R6/man/html1/x11perf.html -unknown- html,x11 +./usr/X11R6/man/html1/x11perfcomp.html -unknown- html,x11 +./usr/X11R6/man/html1/xauth.html -unknown- html,x11 +./usr/X11R6/man/html1/xbiff.html -unknown- html,x11 +./usr/X11R6/man/html1/xcalc.html -unknown- html,x11 +./usr/X11R6/man/html1/xclipboard.html -unknown- html,x11 +./usr/X11R6/man/html1/xclock.html -unknown- html,x11 +./usr/X11R6/man/html1/xcmsdb.html -unknown- html,x11 +./usr/X11R6/man/html1/xconsole.html -unknown- html,x11 +./usr/X11R6/man/html1/xcutsel.html -unknown- html,x11 +./usr/X11R6/man/html1/xditview.html -unknown- html,x11 +./usr/X11R6/man/html1/xdm.html -unknown- html,x11 +./usr/X11R6/man/html1/xdpyinfo.html -unknown- html,x11 +./usr/X11R6/man/html1/xedit.html -unknown- html,x11 +./usr/X11R6/man/html1/xev.html -unknown- html,x11 +./usr/X11R6/man/html1/xeyes.html -unknown- html,x11 +./usr/X11R6/man/html1/xfd.html -unknown- html,x11 +./usr/X11R6/man/html1/xfindproxy.html -unknown- html,x11 +./usr/X11R6/man/html1/xfontsel.html -unknown- html,x11 +./usr/X11R6/man/html1/xfs.html -unknown- html,x11 +./usr/X11R6/man/html1/xfsinfo.html -unknown- html,x11 +./usr/X11R6/man/html1/xfwp.html -unknown- html,x11 +./usr/X11R6/man/html1/xgamma.html -unknown- html,x11 +./usr/X11R6/man/html1/xgc.html -unknown- html,x11 +./usr/X11R6/man/html1/xhost.html -unknown- html,x11 +./usr/X11R6/man/html1/xinit.html -unknown- html,x11 +./usr/X11R6/man/html1/xkbcomp.html -unknown- html,x11 +./usr/X11R6/man/html1/xkbevd.html -unknown- html,x11 +./usr/X11R6/man/html1/xkbprint.html -unknown- html,x11 +./usr/X11R6/man/html1/xkill.html -unknown- html,x11 +./usr/X11R6/man/html1/xload.html -unknown- html,x11 +./usr/X11R6/man/html1/xlogo.html -unknown- html,x11 +./usr/X11R6/man/html1/xlsatoms.html -unknown- html,x11 +./usr/X11R6/man/html1/xlsclients.html -unknown- html,x11 +./usr/X11R6/man/html1/xlsfonts.html -unknown- html,x11 +./usr/X11R6/man/html1/xmag.html -unknown- html,x11 +./usr/X11R6/man/html1/xman.html -unknown- html,x11 +./usr/X11R6/man/html1/xmessage.html -unknown- html,x11 +./usr/X11R6/man/html1/xmh.html -unknown- html,x11 +./usr/X11R6/man/html1/xmodmap.html -unknown- html,x11 +./usr/X11R6/man/html1/xon.html -unknown- html,x11 +./usr/X11R6/man/html1/xprop.html -unknown- html,x11 +./usr/X11R6/man/html1/xrandr.html -unknown- html,x11 +./usr/X11R6/man/html1/xrdb.html -unknown- html,x11 +./usr/X11R6/man/html1/xrefresh.html -unknown- html,x11 +./usr/X11R6/man/html1/xset.html -unknown- html,x11 +./usr/X11R6/man/html1/xsetmode.html -unknown- html,x11 +./usr/X11R6/man/html1/xsetpointer.html -unknown- html,x11 +./usr/X11R6/man/html1/xsetroot.html -unknown- html,x11 +./usr/X11R6/man/html1/xsm.html -unknown- html,x11 +./usr/X11R6/man/html1/xstdcmap.html -unknown- html,x11 +./usr/X11R6/man/html1/xterm.html -unknown- html,x11 +./usr/X11R6/man/html1/xtrap.html -unknown- html,x11 +./usr/X11R6/man/html1/xtrapchar.html -unknown- html,x11 +./usr/X11R6/man/html1/xtrapin.html -unknown- html,x11 +./usr/X11R6/man/html1/xtrapinfo.html -unknown- html,x11 +./usr/X11R6/man/html1/xtrapout.html -unknown- html,x11 +./usr/X11R6/man/html1/xtrapproto.html -unknown- html,x11 +./usr/X11R6/man/html1/xtrapreset.html -unknown- html,x11 +./usr/X11R6/man/html1/xtrapstats.html -unknown- html,x11 +./usr/X11R6/man/html1/xvinfo.html -unknown- html,x11 +./usr/X11R6/man/html1/xwd.html -unknown- html,x11 +./usr/X11R6/man/html1/xwininfo.html -unknown- html,x11 +./usr/X11R6/man/html1/xwud.html -unknown- html,x11 +./usr/X11R6/man/html3 base-x11-root x11 +./usr/X11R6/man/html4 base-x11-root x11 +./usr/X11R6/man/html5 base-x11-root x11 +./usr/X11R6/man/html7 base-x11-root x11 +./usr/X11R6/man/html7/X.html -unknown- html,x11 +./usr/X11R6/man/html7/XStandards.html -unknown- html,x11 +./usr/X11R6/man/html7/Xsecurity.html -unknown- html,x11 +./usr/X11R6/man/man1 base-x11-root x11 +./usr/X11R6/man/man1/Xmark.1 -unknown- .man,x11 +./usr/X11R6/man/man1/appres.1 -unknown- .man,x11 +./usr/X11R6/man/man1/atobm.1 -unknown- .man,x11 +./usr/X11R6/man/man1/bdftopcf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/bdftruncate.1 -unknown- .man,x11 +./usr/X11R6/man/man1/beforelight.1 -unknown- .man,x11 +./usr/X11R6/man/man1/bitmap.1 -unknown- .man,x11 +./usr/X11R6/man/man1/bmtoa.1 -unknown- .man,x11 +./usr/X11R6/man/man1/cxpm.1 -unknown- .man,x11 +./usr/X11R6/man/man1/dga.1 -unknown- .man,x11 +./usr/X11R6/man/man1/dpsexec.1 -unknown- .man,x11 +./usr/X11R6/man/man1/dpsinfo.1 -unknown- .man,x11 +./usr/X11R6/man/man1/editres.1 -unknown- .man,x11 +./usr/X11R6/man/man1/fc-cache.1 -unknown- .man,x11 +./usr/X11R6/man/man1/fc-list.1 -unknown- .man,x11 +./usr/X11R6/man/man1/fonttosfnt.1 -unknown- .man,x11 +./usr/X11R6/man/man1/fslsfonts.1 -unknown- .man,x11 +./usr/X11R6/man/man1/fstobdf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/glxgears.1 -unknown- .man,x11 +./usr/X11R6/man/man1/glxinfo.1 -unknown- .man,x11 +./usr/X11R6/man/man1/iceauth.1 -unknown- .man,x11 +./usr/X11R6/man/man1/ico.1 -unknown- .man,x11 +./usr/X11R6/man/man1/lbxproxy.1 -unknown- .man,x11 +./usr/X11R6/man/man1/listres.1 -unknown- .man,x11 +./usr/X11R6/man/man1/luit.1 -unknown- .man,x11 +./usr/X11R6/man/man1/makepsres.1 -unknown- .man,x11 +./usr/X11R6/man/man1/mkcfm.1 -unknown- .man,x11 +./usr/X11R6/man/man1/mkfontdir.1 -unknown- .man,x11 +./usr/X11R6/man/man1/mkfontscale.1 -unknown- .man,x11 +./usr/X11R6/man/man1/oclock.1 -unknown- .man,x11 +./usr/X11R6/man/man1/proxymngr.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pswrap.1 -unknown- .man,x11 +./usr/X11R6/man/man1/resize.1 -unknown- .man,x11 +./usr/X11R6/man/man1/revpath.1 -unknown- .man,x11 +./usr/X11R6/man/man1/rman.1 -unknown- .man,x11 +./usr/X11R6/man/man1/rstart.1 -unknown- .man,x11 +./usr/X11R6/man/man1/rstartd.1 -unknown- .man,x11 +./usr/X11R6/man/man1/sessreg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/setxkbmap.1 -unknown- .man,x11 +./usr/X11R6/man/man1/showfont.1 -unknown- .man,x11 +./usr/X11R6/man/man1/showrgb.1 -unknown- .man,x11 +./usr/X11R6/man/man1/smproxy.1 -unknown- .man,x11 +./usr/X11R6/man/man1/ssh-askpass.1 -unknown- .man,x11 +./usr/X11R6/man/man1/startx.1 -unknown- .man,x11 +./usr/X11R6/man/man1/sxpm.1 -unknown- .man,x11 +./usr/X11R6/man/man1/texteroids.1 -unknown- .man,x11 +./usr/X11R6/man/man1/twm.1 -unknown- .man,x11 +./usr/X11R6/man/man1/ucs2any.1 -unknown- .man,x11 +./usr/X11R6/man/man1/viewres.1 -unknown- .man,x11 +./usr/X11R6/man/man1/x11perf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/x11perfcomp.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xauth.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xbiff.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xcalc.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xclipboard.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xclock.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xcmsdb.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xconsole.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xcutsel.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xditview.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xdm.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xdpyinfo.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xedit.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xev.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xeyes.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xfd.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xfindproxy.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xfontsel.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xfs.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xfsinfo.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xftcache.1 xbase-obsolete obsolete +./usr/X11R6/man/man1/xfwp.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xgamma.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xgc.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xhost.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xinit.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xkbcomp.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xkbevd.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xkbprint.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xkill.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xload.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xlogo.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xlsatoms.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xlsclients.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xlsfonts.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xmag.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xman.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xmessage.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xmh.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xmodmap.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xon.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xprop.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xrandr.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xrdb.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xrefresh.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xset.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xsetmode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xsetpointer.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xsetroot.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xsm.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xstdcmap.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xsystrace.1 xbase-obsolete obsolete +./usr/X11R6/man/man1/xterm.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xtrap.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xtrapchar.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xtrapin.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xtrapinfo.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xtrapout.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xtrapproto.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xtrapreset.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xtrapstats.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xvinfo.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xwd.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xwininfo.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xwud.1 -unknown- .man,x11 +./usr/X11R6/man/man3 base-x11-root x11 +./usr/X11R6/man/man4 base-x11-root x11 +./usr/X11R6/man/man5 base-x11-root x11 +./usr/X11R6/man/man7 base-x11-root x11 +./usr/X11R6/man/man7/X.7 -unknown- .man,x11 +./usr/X11R6/man/man7/X.Org.7 xbase-obsolete obsolete +./usr/X11R6/man/man7/XConsortium.7 xbase-obsolete obsolete +./usr/X11R6/man/man7/XProjectTeam.7 xbase-obsolete obsolete +./usr/X11R6/man/man7/XStandards.7 -unknown- .man,x11 +./usr/X11R6/man/man7/Xsecurity.7 -unknown- .man,x11 +./usr/X11R6/man/whatis.db -unknown- man,x11,!makemandb +./usr/X11R6/share base-x11-root x11 +./usr/X11R6/share/examples base-x11-root x11 +./usr/X11R6/share/examples/ssh-askpass base-x11-root x11 +./usr/X11R6/share/examples/ssh-askpass/SshAskpass-1337.ad -unknown- x11 +./usr/X11R6/share/examples/ssh-askpass/SshAskpass-NeXTish.ad -unknown- x11 +./usr/X11R6/share/examples/ssh-askpass/SshAskpass-default.ad -unknown- x11 +./usr/X11R6/share/examples/ssh-askpass/SshAskpass-green.ad -unknown- x11 +./usr/X11R6/share/examples/ssh-askpass/SshAskpass-motif.ad -unknown- x11 +./usr/X11R7 base-x11-root xorg +./usr/X11R7/bin base-x11-root xorg +./usr/X11R7/bin/Xmark -unknown- xorg +./usr/X11R7/bin/appres -unknown- xorg +./usr/X11R7/bin/atobm -unknown- xorg +./usr/X11R7/bin/bdftopcf -unknown- xorg +./usr/X11R7/bin/bdftruncate -unknown- xorg +./usr/X11R7/bin/beforelight -unknown- xorg +./usr/X11R7/bin/bitmap -unknown- xorg +./usr/X11R7/bin/bmtoa -unknown- xorg +./usr/X11R7/bin/ccmakedep -unknown- xorg +./usr/X11R7/bin/cleanlinks -unknown- xorg +./usr/X11R7/bin/cxpm -unknown- xorg +./usr/X11R7/bin/dga -unknown- xorg +./usr/X11R7/bin/editres -unknown- xorg +./usr/X11R7/bin/fc-cache -unknown- xorg +./usr/X11R7/bin/fc-cat -unknown- xorg +./usr/X11R7/bin/fc-list -unknown- xorg +./usr/X11R7/bin/fc-match -unknown- xorg +./usr/X11R7/bin/fc-query -unknown- xorg +./usr/X11R7/bin/fc-scan -unknown- xorg +./usr/X11R7/bin/fillblnk -unknown- xorg +./usr/X11R7/bin/fonttosfnt -unknown- xorg +./usr/X11R7/bin/fslsfonts -unknown- xorg +./usr/X11R7/bin/fstobdf -unknown- xorg +./usr/X11R7/bin/glxgears -unknown- xorg +./usr/X11R7/bin/glxinfo -unknown- xorg +./usr/X11R7/bin/iceauth -unknown- xorg +./usr/X11R7/bin/ico -unknown- xorg +./usr/X11R7/bin/imake -unknown- xorg +./usr/X11R7/bin/lbxproxy -obsolete obsolete +./usr/X11R7/bin/listres -unknown- xorg +./usr/X11R7/bin/lndir -unknown- xorg +./usr/X11R7/bin/luit -unknown- xorg +./usr/X11R7/bin/makedepend -unknown- xorg +./usr/X11R7/bin/makeg -unknown- xorg +./usr/X11R7/bin/makestrs -unknown- xorg +./usr/X11R7/bin/mergelib -unknown- xorg +./usr/X11R7/bin/mkdirhier -unknown- xorg +./usr/X11R7/bin/mkfontdir -unknown- xorg +./usr/X11R7/bin/mkfontscale -unknown- xorg +./usr/X11R7/bin/mkhtmlindex -unknown- xorg +./usr/X11R7/bin/oclock -unknown- xorg +./usr/X11R7/bin/perfboth -unknown- xorg +./usr/X11R7/bin/perfratio -unknown- xorg +./usr/X11R7/bin/proxymngr -unknown- xorg +./usr/X11R7/bin/resize -unknown- xorg +./usr/X11R7/bin/revpath -unknown- xorg +./usr/X11R7/bin/sessreg -unknown- xorg +./usr/X11R7/bin/setxkbmap -unknown- xorg +./usr/X11R7/bin/showrgb -unknown- xorg +./usr/X11R7/bin/smproxy -unknown- xorg +./usr/X11R7/bin/ssh-askpass -unknown- xorg +./usr/X11R7/bin/startx -unknown- xorg +./usr/X11R7/bin/sxpm -unknown- xorg +./usr/X11R7/bin/twm -unknown- xorg +./usr/X11R7/bin/ucs2any -unknown- xorg +./usr/X11R7/bin/uxterm -unknown- xorg +./usr/X11R7/bin/viewres -unknown- xorg +./usr/X11R7/bin/x11perf -unknown- xorg +./usr/X11R7/bin/x11perfcomp -unknown- xorg +./usr/X11R7/bin/xauth -unknown- xorg +./usr/X11R7/bin/xbiff -unknown- xorg +./usr/X11R7/bin/xcalc -unknown- xorg +./usr/X11R7/bin/xclipboard -unknown- xorg +./usr/X11R7/bin/xclock -unknown- xorg +./usr/X11R7/bin/xcmsdb -unknown- xorg +./usr/X11R7/bin/xconsole -unknown- xorg +./usr/X11R7/bin/xcutsel -unknown- xorg +./usr/X11R7/bin/xditview -unknown- xorg +./usr/X11R7/bin/xdm -unknown- xorg +./usr/X11R7/bin/xdpyinfo -unknown- xorg +./usr/X11R7/bin/xdriinfo -unknown- xorg +./usr/X11R7/bin/xedit -unknown- xorg +./usr/X11R7/bin/xev -unknown- xorg +./usr/X11R7/bin/xeyes -unknown- xorg +./usr/X11R7/bin/xfd -unknown- xorg +./usr/X11R7/bin/xfindproxy -unknown- xorg +./usr/X11R7/bin/xfontsel -unknown- xorg +./usr/X11R7/bin/xfs -unknown- xorg +./usr/X11R7/bin/xfsinfo -unknown- xorg +./usr/X11R7/bin/xfwp -unknown- xorg +./usr/X11R7/bin/xgamma -unknown- xorg +./usr/X11R7/bin/xgc -unknown- xorg +./usr/X11R7/bin/xhost -unknown- xorg +./usr/X11R7/bin/xinit -unknown- xorg +./usr/X11R7/bin/xinput -unknown- xorg +./usr/X11R7/bin/xkbbell -unknown- xorg +./usr/X11R7/bin/xkbcomp -unknown- xorg +./usr/X11R7/bin/xkbevd -unknown- xorg +./usr/X11R7/bin/xkbprint -unknown- xorg +./usr/X11R7/bin/xkbvleds -unknown- xorg +./usr/X11R7/bin/xkbwatch -unknown- xorg +./usr/X11R7/bin/xkill -unknown- xorg +./usr/X11R7/bin/xload -unknown- xorg +./usr/X11R7/bin/xlogo -unknown- xorg +./usr/X11R7/bin/xlsatoms -unknown- xorg +./usr/X11R7/bin/xlsclients -unknown- xorg +./usr/X11R7/bin/xlsfonts -unknown- xorg +./usr/X11R7/bin/xmag -unknown- xorg +./usr/X11R7/bin/xman -unknown- xorg +./usr/X11R7/bin/xmessage -unknown- xorg +./usr/X11R7/bin/xmh -unknown- xorg +./usr/X11R7/bin/xmkmf -unknown- xorg +./usr/X11R7/bin/xmlwf -unknown- xorg +./usr/X11R7/bin/xmodmap -unknown- xorg +./usr/X11R7/bin/xmore -unknown- xorg +./usr/X11R7/bin/xphelloworld -obsolete- obsolete +./usr/X11R7/bin/xplsprinters -obsolete- obsolete +./usr/X11R7/bin/xprehashprinterlist -obsolete- obsolete +./usr/X11R7/bin/xprop -unknown- xorg +./usr/X11R7/bin/xpsimplehelloworld -obsolete- obsolete +./usr/X11R7/bin/xpxthelloworld -obsolete- obsolete +./usr/X11R7/bin/xrandr -unknown- xorg +./usr/X11R7/bin/xrdb -unknown- xorg +./usr/X11R7/bin/xrefresh -unknown- xorg +./usr/X11R7/bin/xset -unknown- xorg +./usr/X11R7/bin/xsetmode -unknown- xorg +./usr/X11R7/bin/xsetpointer -unknown- xorg +./usr/X11R7/bin/xsetroot -unknown- xorg +./usr/X11R7/bin/xsetwallpaper -unknown- xorg +./usr/X11R7/bin/xsm -unknown- xorg +./usr/X11R7/bin/xstdcmap -unknown- xorg +./usr/X11R7/bin/xterm -unknown- xorg +./usr/X11R7/bin/xtrapchar -unknown- xorg +./usr/X11R7/bin/xtrapin -unknown- xorg +./usr/X11R7/bin/xtrapinfo -unknown- xorg +./usr/X11R7/bin/xtrapout -unknown- xorg +./usr/X11R7/bin/xtrapproto -unknown- xorg +./usr/X11R7/bin/xtrapreset -unknown- xorg +./usr/X11R7/bin/xtrapstats -unknown- xorg +./usr/X11R7/bin/xvidtune -unknown- xorg +./usr/X11R7/bin/xvinfo -unknown- xorg +./usr/X11R7/bin/xwd -unknown- xorg +./usr/X11R7/bin/xwininfo -unknown- xorg +./usr/X11R7/bin/xwud -unknown- xorg +./usr/X11R7/include base-x11-root xorg +./usr/X11R7/include/DPS base-x11-root xorg +./usr/X11R7/include/GL base-x11-root xorg +./usr/X11R7/include/GL/internal base-x11-root xorg +./usr/X11R7/include/X11 base-x11-root xorg +./usr/X11R7/include/X11/ICE base-x11-root xorg +./usr/X11R7/include/X11/PM base-x11-root xorg +./usr/X11R7/include/X11/SM base-x11-root xorg +./usr/X11R7/include/X11/Xaw base-x11-root xorg +./usr/X11R7/include/X11/Xcursor base-x11-root xorg +./usr/X11R7/include/X11/Xft base-x11-root xorg +./usr/X11R7/include/X11/Xmu base-x11-root xorg +./usr/X11R7/include/X11/XprintAppUtil base-obsolete obsolete +./usr/X11R7/include/X11/XprintUtil base-obsolete obsolete +./usr/X11R7/include/X11/Xtrans base-x11-root xorg +./usr/X11R7/include/X11/bitmaps base-x11-root xorg +./usr/X11R7/include/X11/dri base-x11-root xorg +./usr/X11R7/include/X11/drm base-obsolete obsolete +./usr/X11R7/include/X11/extensions base-x11-root xorg +./usr/X11R7/include/X11/fonts base-x11-root xorg +./usr/X11R7/include/X11/pixmaps base-x11-root xorg +./usr/X11R7/include/X11/pixmaps/NetBSD-bw.xpm -unknown- xorg +./usr/X11R7/include/X11/pixmaps/NetBSD-inv.xpm -unknown- xorg +./usr/X11R7/include/X11/pixmaps/NetBSD.xpm -unknown- xorg +./usr/X11R7/include/X11/pixmaps/NetBSD-flag.png -unknown- xorg +./usr/X11R7/include/X11/pixmaps/NetBSD-flag1.xpm -unknown- xorg +./usr/X11R7/include/X11/pixmaps/NetBSD-flag2.xpm -unknown- xorg +./usr/X11R7/include/X11/pixmaps/xorg-bw.xpm -unknown- xorg +./usr/X11R7/include/X11/pixmaps/xorg.xpm -unknown- xorg +./usr/X11R7/include/drm base-x11-root obsolete +./usr/X11R7/include/libdrm base-x11-root xorg +./usr/X11R7/include/libkms base-x11-root xorg +./usr/X11R7/include/fontconfig base-x11-root xorg +./usr/X11R7/include/freetype2 base-x11-root xorg +./usr/X11R7/include/freetype2/freetype base-x11-root xorg +./usr/X11R7/include/freetype2/freetype/cache base-x11-root xorg +./usr/X11R7/include/freetype2/freetype/config base-x11-root xorg +./usr/X11R7/include/freetype2/freetype/internal base-x11-root xorg +./usr/X11R7/include/freetype2/freetype/internal/services base-x11-root xorg +./usr/X11R7/include/pixman-1 base-x11-root xorg +./usr/X11R7/include/xcb base-x11-root xorg +./usr/X11R7/include/xorg base-x11-root xorg +./usr/X11R7/lib base-x11-root xorg +./usr/X11R7/lib/X11 base-x11-root xorg +./usr/X11R7/lib/X11/XErrorDB -unknown- xorg +./usr/X11R7/lib/X11/XKeysymDB -unknown- xorg +./usr/X11R7/lib/X11/Xcms.txt -unknown- xorg +./usr/X11R7/lib/X11/app-defaults base-x11-root xorg +./usr/X11R7/lib/X11/app-defaults/Beforelight -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Bitmap -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Bitmap-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Chooser -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Clock-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Editres -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Editres-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/SshAskpass -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/UXTerm -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Viewres -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Viewres-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XCalc -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XCalc-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XClipboard -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XClock -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XClock-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XConsole -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XFontSel -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XLoad -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XLogo -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XLogo-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XMore -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XSm -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XTerm -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/XTerm-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xditview -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xditview-chrtr -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xedit -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xedit-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xfd -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xgc -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xgc-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xmag -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xman -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xmessage -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xmessage-color -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xmh -unknown- xorg +./usr/X11R7/lib/X11/app-defaults/Xvidtune -unknown- xorg +./usr/X11R7/lib/X11/config base-x11-root xorg +./usr/X11R7/lib/X11/doc base-x11-root xorg +./usr/X11R7/lib/X11/etc base-x11-root xorg +./usr/X11R7/lib/X11/fonts base-x11-root xorg +./usr/X11R7/lib/X11/fonts/100dpi base-x11-root xorg +./usr/X11R7/lib/X11/fonts/75dpi base-x11-root xorg +./usr/X11R7/lib/X11/fonts/CID base-x11-root xorg +./usr/X11R7/lib/X11/fonts/Speedo base-x11-root xorg +./usr/X11R7/lib/X11/fonts/TTF base-x11-root xorg +./usr/X11R7/lib/X11/fonts/Type1 base-x11-root xorg +./usr/X11R7/lib/X11/fonts/cyrillic base-x11-root xorg +./usr/X11R7/lib/X11/fonts/encodings base-x11-root xorg +./usr/X11R7/lib/X11/fonts/encodings/large base-x11-root xorg +./usr/X11R7/lib/X11/fonts/local base-x11-root xorg +./usr/X11R7/lib/X11/fonts/misc base-x11-root xorg +./usr/X11R7/lib/X11/fonts/util base-x11-root xorg +./usr/X11R7/lib/X11/locale base-x11-root xorg +./usr/X11R7/lib/X11/locale/C base-x11-root xorg +./usr/X11R7/lib/X11/locale/C/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/C/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/C/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/am_ET.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/am_ET.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/am_ET.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/am_ET.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/armscii-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/armscii-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/armscii-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/armscii-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/compose.dir -unknown- xorg +./usr/X11R7/lib/X11/locale/el_GR.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/el_GR.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/el_GR.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/el_GR.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/en_US.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/en_US.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/en_US.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/en_US.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/georgian-academy base-x11-root xorg +./usr/X11R7/lib/X11/locale/georgian-academy/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/georgian-academy/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/georgian-academy/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/georgian-ps base-x11-root xorg +./usr/X11R7/lib/X11/locale/georgian-ps/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/georgian-ps/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/georgian-ps/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ibm-cp1133 base-x11-root xorg +./usr/X11R7/lib/X11/locale/ibm-cp1133/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ibm-cp1133/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ibm-cp1133/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iscii-dev base-x11-root xorg +./usr/X11R7/lib/X11/locale/iscii-dev/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iscii-dev/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iscii-dev/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/isiri-3342 base-x11-root xorg +./usr/X11R7/lib/X11/locale/isiri-3342/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/isiri-3342/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/isiri-3342/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-1 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-1/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-1/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-1/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-10 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-10/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-10/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-10/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-11 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-11/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-11/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-11/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-13 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-13/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-13/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-13/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-14 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-14/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-14/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-14/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-15 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-15/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-15/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-15/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-2 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-2/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-2/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-2/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-3 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-3/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-3/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-3/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-4 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-4/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-4/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-4/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-5 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-5/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-5/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-5/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-6 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-6/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-6/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-6/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-7 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-7/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-7/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-7/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-9 base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-9/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-9/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-9/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-9e base-x11-root xorg +./usr/X11R7/lib/X11/locale/iso8859-9e/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-9e/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/iso8859-9e/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ja base-x11-root xorg +./usr/X11R7/lib/X11/locale/ja.JIS base-x11-root xorg +./usr/X11R7/lib/X11/locale/ja.JIS/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.JIS/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.JIS/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.S90 base-x11-root xorg +./usr/X11R7/lib/X11/locale/ja.S90/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.S90/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.S90/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.SJIS base-x11-root xorg +./usr/X11R7/lib/X11/locale/ja.SJIS/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.SJIS/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.SJIS/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.U90 base-x11-root xorg +./usr/X11R7/lib/X11/locale/ja.U90/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.U90/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ja.U90/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ja/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ja/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ja/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ja_JP.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/ja_JP.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ja_JP.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ja_JP.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ko base-x11-root xorg +./usr/X11R7/lib/X11/locale/ko/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ko/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ko/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/ko_KR.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/ko_KR.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/ko_KR.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/ko_KR.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-c base-x11-root xorg +./usr/X11R7/lib/X11/locale/koi8-c/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-c/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-c/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-r base-x11-root xorg +./usr/X11R7/lib/X11/locale/koi8-r/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-r/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-r/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-u base-x11-root xorg +./usr/X11R7/lib/X11/locale/koi8-u/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-u/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/koi8-u/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/lib base-x11-root xorg +./usr/X11R7/lib/X11/locale/lib/common base-x11-root xorg +./usr/X11R7/lib/X11/locale/locale.alias -unknown- xorg +./usr/X11R7/lib/X11/locale/locale.dir -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1251 base-x11-root xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1251/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1251/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1251/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1255 base-x11-root xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1255/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1255/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1255/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1256 base-x11-root xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1256/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1256/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/microsoft-cp1256/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/mulelao-1 base-x11-root xorg +./usr/X11R7/lib/X11/locale/mulelao-1/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/mulelao-1/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/mulelao-1/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/nokhchi-1 base-x11-root xorg +./usr/X11R7/lib/X11/locale/nokhchi-1/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/nokhchi-1/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/nokhchi-1/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/pt_BR.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/pt_BR.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/pt_BR.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/pt_BR.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/tatar-cyr base-x11-root xorg +./usr/X11R7/lib/X11/locale/tatar-cyr/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/tatar-cyr/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/tatar-cyr/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/th_TH base-x11-root xorg +./usr/X11R7/lib/X11/locale/th_TH.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/th_TH.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/th_TH.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/th_TH.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/th_TH/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/th_TH/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/th_TH/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/tscii-0 base-x11-root xorg +./usr/X11R7/lib/X11/locale/tscii-0/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/tscii-0/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/tscii-0/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/vi_VN.tcvn base-x11-root xorg +./usr/X11R7/lib/X11/locale/vi_VN.tcvn/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/vi_VN.tcvn/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/vi_VN.tcvn/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/vi_VN.viscii base-x11-root xorg +./usr/X11R7/lib/X11/locale/vi_VN.viscii/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/vi_VN.viscii/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/vi_VN.viscii/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_CN.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_CN.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN.gb18030 base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_CN.gb18030/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN.gb18030/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN.gb18030/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN.gbk base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_CN.gbk/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN.gbk/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN.gbk/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_CN/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_HK.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.big5 base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_HK.big5/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.big5/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.big5/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.big5hkscs base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_HK.big5hkscs/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.big5hkscs/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_HK.big5hkscs/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_TW.UTF-8 base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_TW.UTF-8/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW.UTF-8/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW.UTF-8/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW.big5 base-x11-root xorg +./usr/X11R7/lib/X11/locale/zh_TW.big5/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW.big5/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW.big5/XLC_LOCALE -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW/Compose -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW/XI18N_OBJS -unknown- xorg +./usr/X11R7/lib/X11/locale/zh_TW/XLC_LOCALE -unknown- share,xorg +./usr/X11R7/lib/X11/rgb.txt -unknown- xorg +./usr/X11R7/lib/X11/x11perfcomp base-x11-root xorg +./usr/X11R7/lib/X11/xedit base-x11-root xorg +./usr/X11R7/lib/X11/xedit/lisp base-x11-root xorg +./usr/X11R7/lib/X11/xedit/lisp/indent.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/lisp.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes base-x11-root xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/c.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/html.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/imake.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/lisp.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/make.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/man.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/patch.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/rpm.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/sgml.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/sh.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/xconf.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/xlog.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/progmodes/xrdb.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/syntax.lsp -unknown- xorg +./usr/X11R7/lib/X11/xedit/lisp/xedit.lsp -unknown- xorg +./usr/X11R7/lib/X11/xkb base-x11-root xorg +./usr/X11R7/lib/X11/xkb/README -unknown- xorg +./usr/X11R7/lib/X11/xkb/README.config -unknown- obsolete +./usr/X11R7/lib/X11/xkb/README.enhancing -unknown- obsolete +./usr/X11R7/lib/X11/xkb/compat base-x11-root xorg +./usr/X11R7/lib/X11/xkb/compat.dir -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/README -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/accessx -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/basic -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/caps -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/complete -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/default -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/iso9995 -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/japan -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/keypad -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/ledcaps -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/lednum -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/ledscroll -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/level5 -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/misc -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/mousekeys -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/norepeat -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/olpc -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/pc -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/pc98 -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/xfree86 -unknown- xorg +./usr/X11R7/lib/X11/xkb/compat/xtest -unknown- xorg +./usr/X11R7/lib/X11/xkb/compiled base-x11-root xorg +./usr/X11R7/lib/X11/xkb/geometry base-x11-root xorg +./usr/X11R7/lib/X11/xkb/geometry.dir -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/README -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/amiga -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/ataritt -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/chicony -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/dell -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/digital -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/geometry/digital/lk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/geometry/digital/pc -unknown- obsolete +./usr/X11R7/lib/X11/xkb/geometry/digital/unix -unknown- obsolete +./usr/X11R7/lib/X11/xkb/geometry/digital_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/geometry/digital_vndr/lk -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/digital_vndr/pc -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/digital_vndr/unix -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/everex -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/fujitsu -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/hhk -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/hp -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/ibm -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/geometry/ibm/thinkpad -unknown- obsolete +./usr/X11R7/lib/X11/xkb/geometry/keytronic -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/kinesis -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/macintosh -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/microsoft -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/nec -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/nokia -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/northgate -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/pc -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/sanwa -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/sgi -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/geometry/sgi/O2 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/geometry/sgi/indigo -unknown- obsolete +./usr/X11R7/lib/X11/xkb/geometry/sgi/indy -unknown- obsolete +./usr/X11R7/lib/X11/xkb/geometry/sgi_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/geometry/sgi_vndr/O2 -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/sgi_vndr/indigo -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/sgi_vndr/indy -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/sony -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/sun -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/thinkpad -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/typematrix -unknown- xorg +./usr/X11R7/lib/X11/xkb/geometry/winbook -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes base-x11-root xorg +./usr/X11R7/lib/X11/xkb/keycodes.dir -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/README -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/aliases -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/amiga -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/ataritt -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/digital -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/keycodes/digital/lk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keycodes/digital/pc -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keycodes/digital_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/keycodes/digital_vndr/lk -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/digital_vndr/pc -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/empty -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/evdev -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/fujitsu -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/hp -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/ibm -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/macintosh -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/powerpcps2 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keycodes/sgi -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/keycodes/sgi/indigo -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keycodes/sgi/indy -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keycodes/sgi/iris -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keycodes/sgi_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/keycodes/sgi_vndr/indigo -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/sgi_vndr/indy -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/sgi_vndr/iris -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/sony -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/sun -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/xfree86 -unknown- xorg +./usr/X11R7/lib/X11/xkb/keycodes/xfree98 -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap base-x11-root xorg +./usr/X11R7/lib/X11/xkb/keymap.dir -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/README -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/amiga -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/ataritt -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/digital -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/keymap/digital/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/digital_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/keymap/digital_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/macintosh -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/be -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/bg -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/ca -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/ch -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/cz -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/cz_qwerty -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/de -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/de_CH -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/dk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/dvorak -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/en_US -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/es -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/fi -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/fr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/fr_CH -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/gb -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/hu -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/it -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/jp -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/no -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/pl -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/pt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/ru -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/se -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/sk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/sk_qwerty -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/th -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/be -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/bg -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/ca -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/ch -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/cz -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/de -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/dk -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/dvorak -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/es -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/fi -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/fr -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/gb -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/hu -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/it -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/jp -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/no -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/pl -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/pt -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/ru -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/se -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/sk -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/th -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sgi_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sony -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/de -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/es -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/fi -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/fr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/no -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/pl -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/ru -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/se -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/uk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/all -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/de -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/es -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/fi -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/fr -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/no -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/pl -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/ru -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/se -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/uk -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/sun_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/xfree86 -unknown- xorg +./usr/X11R7/lib/X11/xkb/keymap/xfree98 -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules base-x11-root xorg +./usr/X11R7/lib/X11/xkb/rules/README -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/base -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/base.extras.xml -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/base.lst -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/base.xml -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/evdev -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/evdev.extras.xml -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/evdev.lst -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/evdev.xml -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/sgi -unknown- obsolete +./usr/X11R7/lib/X11/xkb/rules/sgi.lst -unknown- obsolete +./usr/X11R7/lib/X11/xkb/rules/sun -unknown- obsolete +./usr/X11R7/lib/X11/xkb/rules/sun.lst -unknown- obsolete +./usr/X11R7/lib/X11/xkb/rules/xfree98 -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/xfree98.lst -unknown- obsolete +./usr/X11R7/lib/X11/xkb/rules/xkb.dtd -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/xml2lst.pl -unknown- obsolete +./usr/X11R7/lib/X11/xkb/rules/xorg -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/xorg-it.lst -unknown- obsolete +./usr/X11R7/lib/X11/xkb/rules/xorg.lst -unknown- xorg +./usr/X11R7/lib/X11/xkb/rules/xorg.xml -unknown- xorg +./usr/X11R7/lib/X11/xkb/semantics base-x11-root xorg +./usr/X11R7/lib/X11/xkb/semantics/basic -unknown- xorg +./usr/X11R7/lib/X11/xkb/semantics/complete -unknown- xorg +./usr/X11R7/lib/X11/xkb/semantics/default -unknown- xorg +./usr/X11R7/lib/X11/xkb/semantics/xtest -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols.dir -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/README -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ad -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/af -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/al -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/altwin -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/am -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/apl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/apple -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ar -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ara -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/at -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/az -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ba -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/bd -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/be -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ben -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/bg -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/br -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/braille -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/brai -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/bs -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/bt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/bw -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/by -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ca -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ca_enhanced -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/capslock -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/cd -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ch -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/cm -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/cn -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/colemak -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/compose -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ctrl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/cz -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/cz_qwerty -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/czsk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/de -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/de_CH -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/dev -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/digital -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/digital/lk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/digital/pc -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/digital/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/digital/vt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/digital_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/digital_vndr/lk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/digital_vndr/pc -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/digital_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/digital_vndr/vt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/dk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/dvorak -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ee -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/el -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/en_US -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/empty -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/epo -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/es -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/et -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/extras base-x11-root obsolete +./usr/X11R7/lib/X11/xkb/symbols/extras/apl -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/extras/ir -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/extras/rs -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/extras/ru -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/extras/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/eurosign -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/fi -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/fo -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/fr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/fr_CH -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/fujitsu -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/fujitsu/jp -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/fujitsu/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/fujitsu_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/fujitsu_vndr/jp -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/fujitsu_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/gb -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ge -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ge_la -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ge_ru -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/gh -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/gn -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/gr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/group -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/guj -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/gur -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/hp -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/hp/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/hp_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/hp_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/hr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/hr_US -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/hu -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/hu_US -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/hu_qwerty -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ie -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/il -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/il_phonetic -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/in -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/inet -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/iq -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ir -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/is -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/iso9995-3 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/it -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/iu -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/jp -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/kan -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ke -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/keypad -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/kg -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/kh -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/kpdl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/kr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/kz -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/la -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/latam -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/latin -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/level3 -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/level5 -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/lk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/lo -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/lock -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/lt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/lt_a -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/lt_p -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/lt_std -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/lv -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ma -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/de -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/de_CH -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/dk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/es -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/fi -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/fr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/fr_CH -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/gb -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/it -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/nl -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/no -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/pt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/se -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/apple -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/ch -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/de -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/dk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/es -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/fi -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/fr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/gb -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/it -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/jp -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/nl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/no -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/pt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/se -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/macintosh_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/mao -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/me -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/mk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ml -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/mm -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/mn -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/mt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/mt_us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/mv -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/nbsp -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/nec -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/nec/jp -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/nec_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/nec_vndr/jp -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ng -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/nl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/no -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/nokia_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/nokia_vndr/rx-44 -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/nokia_vndr/rx-51 -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/nokia_vndr/su-8w -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/np -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ogham -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/olpc -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ori -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/pc/al -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/am -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ara -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/az -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ba -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/bd -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/be -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/bg -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/br -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/bt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/by -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ca -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ch -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/colemak -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/cz -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/de -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/dk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ee -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/es -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/fi -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/fo -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/fr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/gb -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ge -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/gr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/hr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/hu -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ie -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/in -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ir -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/is -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/it -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/jp -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/kg -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/la -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/latam -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/latin -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/lk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/lt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/lv -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/mao -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/mkd -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/mm -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/mn -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/mt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/nl -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/no -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/pc -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/pk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/pl -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/pt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ro -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ru -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/se -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/si -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/sk -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/srp -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/sy -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/th -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/tj -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/tr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/ua -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/uz -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc/vn -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pc104 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ph -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/pk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/pl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/pl2 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/pt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ralt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/ro -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ro2 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/rs -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ru -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/rupeesign -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sapmi -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/se -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/se_FI -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/se_NO -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/se_SE -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sgi -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sgi/jp -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sgi_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/sgi_vndr/jp -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sharp -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sharp_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/sharp_vndr/sl-c3x00 -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sharp_vndr/ws003sh -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sharp_vndr/ws007sh -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sharp_vndr/ws011sh -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sharp_vndr/ws020sh -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/shift -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/si -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sk_qwerty -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sn -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sony -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sony/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sony_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/sony_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/srvr_ctrl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sun/se -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sun/us -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sun/usb -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/ara -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/be -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/br -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/ca -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/ch -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/cs -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/cz -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/de -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/dk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/ee -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/es -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/fi -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/fr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/gb -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/gr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/hu -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/it -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/jp -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/ko -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/kr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/lt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/lv -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/nl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/no -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/pl -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/pt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/ro -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/ru -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/se -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/sk -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/solaris -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/sw -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/tr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/tuv -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/tw -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/ua -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/sun_vndr/usb -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/sy -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/syr -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/syr_phonetic -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/tel -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/terminate -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/th -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/th_pat -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/th_tis -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/tj -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/tm -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/tml -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/tr -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/tr_f -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/typo -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/tw -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/tz -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/ua -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/us -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/us_group2 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/us_group3 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/us_intl -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/uz -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/vn -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/xfree68 -obsolete- obsolete +./usr/X11R7/lib/X11/xkb/symbols/xfree68/amiga -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/xfree68/ataritt -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/xfree68_vndr base-x11-root xorg +./usr/X11R7/lib/X11/xkb/symbols/xfree68_vndr/amiga -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/xfree68_vndr/ataritt -unknown- xorg +./usr/X11R7/lib/X11/xkb/symbols/yu -unknown- obsolete +./usr/X11R7/lib/X11/xkb/symbols/za -unknown- xorg +./usr/X11R7/lib/X11/xkb/torture base-x11-root xorg +./usr/X11R7/lib/X11/xkb/torture/indicator -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/indicator1 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/indicator2 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/indicator3 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/mod_compat -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/mod_compat1 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/mod_compat2 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/mod_compat3 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/mod_compat4 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/sym_interp -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/sym_interp1 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/sym_interp2 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/sym_interp3 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/sym_interp4 -unknown- obsolete +./usr/X11R7/lib/X11/xkb/torture/types -unknown- obsolete +./usr/X11R7/lib/X11/xkb/types base-x11-root xorg +./usr/X11R7/lib/X11/xkb/types.dir -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/README -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/basic -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/cancel -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/caps -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/complete -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/default -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/extra -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/iso9995 -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/level5 -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/mousekeys -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/nokia -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/numpad -unknown- xorg +./usr/X11R7/lib/X11/xkb/types/pc -unknown- xorg +./usr/X11R7/lib/X11/xkb/xkbcomp -unknown- xorg +./usr/X11R7/lib/X11/xman.help -unknown- xorg +./usr/X11R7/lib/modules base-x11-root xorg +./usr/X11R7/lib/modules/dri base-x11-root xorg +./usr/X11R7/lib/modules/drivers base-x11-root xorg +./usr/X11R7/lib/modules/extensions base-x11-root xorg +./usr/X11R7/lib/modules/fonts base-x11-root xorg +./usr/X11R7/lib/modules/input base-x11-root xorg +./usr/X11R7/lib/pkgconfig base-x11-root xorg +./usr/X11R7/lib/xorg base-x11-root xorg +./usr/X11R7/lib/xorg/protocol.txt -unknown- xorg +./usr/X11R7/libexec base-x11-root xorg +./usr/X11R7/libexec/chooser -unknown- xorg +./usr/X11R7/man base-x11-root xorg +./usr/X11R7/man/cat1 base-x11-root xorg +./usr/X11R7/man/cat1/appres.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/atobm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/bdftopcf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/bdftruncate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/beforelight.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/bitmap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/bmtoa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/ccmakedep.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cleanlinks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cxpm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/dga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/editres.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fc-cache.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fc-cat.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fc-list.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fc-match.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fc-query.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fc-scan.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fonttosfnt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fslsfonts.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/fstobdf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/iceauth.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/ico.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/imake.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/lbxproxy.0 -obsolete obsolete +./usr/X11R7/man/cat1/listres.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/lndir.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/luit.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/makedepend.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/makeg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/makestrs.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/mkdirhier.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/mkfontdir.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/mkfontscale.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/mkhtmlindex.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/oclock.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/proxymngr.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/resize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/revpath.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/sessreg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/setxkbmap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/showrgb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/smproxy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/ssh-askpass.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/startx.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/sxpm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/twm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/ucs2any.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/viewres.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/x11perf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/x11perfcomp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xauth.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xbiff.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xcalc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xclipboard.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xclock.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xcmsdb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xconsole.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xcutsel.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xditview.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xdm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xdpyinfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xdriinfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xedit.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xev.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xeyes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xfd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xfindproxy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xfontsel.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xfs.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xfsinfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xfwp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xgamma.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xgc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xhost.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xinit.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xinput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xkbbell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xkbcomp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xkbevd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xkbprint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xkbvleds.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xkbwatch.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xkill.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xload.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xlogo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xlsatoms.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xlsclients.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xlsfonts.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xmag.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xman.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xmessage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xmh.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xmkmf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xmlwf.0 -obsolete- obsolete +./usr/X11R7/man/cat1/xmodmap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xmore.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xphelloworld.0 -obsolete- obsolete +./usr/X11R7/man/cat1/xplsprinters.0 -obsolete- obsolete +./usr/X11R7/man/cat1/xprehashprinterlist.0 -obsolete- obsolete +./usr/X11R7/man/cat1/xprop.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xpsimplehelloworld.0 -obsolete- obsolete +./usr/X11R7/man/cat1/xpxthelloworld.0 -obsolete- obsolete +./usr/X11R7/man/cat1/xrandr.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xrdb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xrefresh.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xset.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xsetmode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xsetpointer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xsetroot.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xsm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xstdcmap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xterm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xtrap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xtrapchar.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xtrapin.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xtrapinfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xtrapout.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xtrapproto.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xtrapreset.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xtrapstats.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xvidtune.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xvinfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xwd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xwininfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xwud.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3 base-x11-root xorg +./usr/X11R7/man/cat4 base-x11-root xorg +./usr/X11R7/man/cat5 base-x11-root xorg +./usr/X11R7/man/cat5/fonts-conf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat7 base-x11-root xorg +./usr/X11R7/man/cat7/Consortium.0 -unknown- .cat,xorg +./usr/X11R7/man/cat7/Standards.0 -unknown- .cat,xorg +./usr/X11R7/man/cat7/X.0 -unknown- .cat,xorg +./usr/X11R7/man/cat7/XOrgFoundation.0 -unknown- .cat,xorg +./usr/X11R7/man/cat7/XProjectTeam.0 -unknown- .cat,xorg +./usr/X11R7/man/cat7/Xsecurity.0 -unknown- .cat,xorg +./usr/X11R7/man/html1 base-x11-root xorg +./usr/X11R7/man/html1/appres.html -unknown- html,xorg +./usr/X11R7/man/html1/atobm.html -unknown- html,xorg +./usr/X11R7/man/html1/bdftopcf.html -unknown- html,xorg +./usr/X11R7/man/html1/bdftruncate.html -unknown- html,xorg +./usr/X11R7/man/html1/beforelight.html -unknown- html,xorg +./usr/X11R7/man/html1/bitmap.html -unknown- html,xorg +./usr/X11R7/man/html1/bmtoa.html -unknown- html,xorg +./usr/X11R7/man/html1/ccmakedep.html -unknown- html,xorg +./usr/X11R7/man/html1/cleanlinks.html -unknown- html,xorg +./usr/X11R7/man/html1/cxpm.html -unknown- html,xorg +./usr/X11R7/man/html1/dga.html -unknown- html,xorg +./usr/X11R7/man/html1/editres.html -unknown- html,xorg +./usr/X11R7/man/html1/fc-cache.html -unknown- html,xorg +./usr/X11R7/man/html1/fc-cat.html -unknown- html,xorg +./usr/X11R7/man/html1/fc-list.html -unknown- html,xorg +./usr/X11R7/man/html1/fc-match.html -unknown- html,xorg +./usr/X11R7/man/html1/fc-query.html -unknown- html,xorg +./usr/X11R7/man/html1/fc-scan.html -unknown- html,xorg +./usr/X11R7/man/html1/fonttosfnt.html -unknown- html,xorg +./usr/X11R7/man/html1/fslsfonts.html -unknown- html,xorg +./usr/X11R7/man/html1/fstobdf.html -unknown- html,xorg +./usr/X11R7/man/html1/iceauth.html -unknown- html,xorg +./usr/X11R7/man/html1/ico.html -unknown- html,xorg +./usr/X11R7/man/html1/imake.html -unknown- html,xorg +./usr/X11R7/man/html1/lbxproxy.html -obsolete obsolete +./usr/X11R7/man/html1/listres.html -unknown- html,xorg +./usr/X11R7/man/html1/lndir.html -unknown- html,xorg +./usr/X11R7/man/html1/luit.html -unknown- html,xorg +./usr/X11R7/man/html1/makedepend.html -unknown- html,xorg +./usr/X11R7/man/html1/makeg.html -unknown- html,xorg +./usr/X11R7/man/html1/makestrs.html -unknown- html,xorg +./usr/X11R7/man/html1/mkdirhier.html -unknown- html,xorg +./usr/X11R7/man/html1/mkfontdir.html -unknown- html,xorg +./usr/X11R7/man/html1/mkfontscale.html -unknown- html,xorg +./usr/X11R7/man/html1/mkhtmlindex.html -unknown- html,xorg +./usr/X11R7/man/html1/oclock.html -unknown- html,xorg +./usr/X11R7/man/html1/proxymngr.html -unknown- html,xorg +./usr/X11R7/man/html1/resize.html -unknown- html,xorg +./usr/X11R7/man/html1/revpath.html -unknown- html,xorg +./usr/X11R7/man/html1/sessreg.html -unknown- html,xorg +./usr/X11R7/man/html1/setxkbmap.html -unknown- html,xorg +./usr/X11R7/man/html1/showrgb.html -unknown- html,xorg +./usr/X11R7/man/html1/smproxy.html -unknown- html,xorg +./usr/X11R7/man/html1/ssh-askpass.html -unknown- html,xorg +./usr/X11R7/man/html1/startx.html -unknown- html,xorg +./usr/X11R7/man/html1/sxpm.html -unknown- html,xorg +./usr/X11R7/man/html1/twm.html -unknown- html,xorg +./usr/X11R7/man/html1/ucs2any.html -unknown- html,xorg +./usr/X11R7/man/html1/viewres.html -unknown- html,xorg +./usr/X11R7/man/html1/x11perf.html -unknown- html,xorg +./usr/X11R7/man/html1/x11perfcomp.html -unknown- html,xorg +./usr/X11R7/man/html1/xauth.html -unknown- html,xorg +./usr/X11R7/man/html1/xbiff.html -unknown- html,xorg +./usr/X11R7/man/html1/xcalc.html -unknown- html,xorg +./usr/X11R7/man/html1/xclipboard.html -unknown- html,xorg +./usr/X11R7/man/html1/xclock.html -unknown- html,xorg +./usr/X11R7/man/html1/xcmsdb.html -unknown- html,xorg +./usr/X11R7/man/html1/xconsole.html -unknown- html,xorg +./usr/X11R7/man/html1/xcutsel.html -unknown- html,xorg +./usr/X11R7/man/html1/xditview.html -unknown- html,xorg +./usr/X11R7/man/html1/xdm.html -unknown- html,xorg +./usr/X11R7/man/html1/xdpyinfo.html -unknown- html,xorg +./usr/X11R7/man/html1/xdriinfo.html -unknown- html,xorg +./usr/X11R7/man/html1/xedit.html -unknown- html,xorg +./usr/X11R7/man/html1/xev.html -unknown- html,xorg +./usr/X11R7/man/html1/xeyes.html -unknown- html,xorg +./usr/X11R7/man/html1/xfd.html -unknown- html,xorg +./usr/X11R7/man/html1/xfindproxy.html -unknown- html,xorg +./usr/X11R7/man/html1/xfontsel.html -unknown- html,xorg +./usr/X11R7/man/html1/xfs.html -unknown- html,xorg +./usr/X11R7/man/html1/xfsinfo.html -unknown- html,xorg +./usr/X11R7/man/html1/xfwp.html -unknown- html,xorg +./usr/X11R7/man/html1/xgamma.html -unknown- html,xorg +./usr/X11R7/man/html1/xgc.html -unknown- html,xorg +./usr/X11R7/man/html1/xhost.html -unknown- html,xorg +./usr/X11R7/man/html1/xinit.html -unknown- html,xorg +./usr/X11R7/man/html1/xinput.html -unknown- html,xorg +./usr/X11R7/man/html1/xkbbell.html -unknown- html,xorg +./usr/X11R7/man/html1/xkbcomp.html -unknown- html,xorg +./usr/X11R7/man/html1/xkbevd.html -unknown- html,xorg +./usr/X11R7/man/html1/xkbprint.html -unknown- html,xorg +./usr/X11R7/man/html1/xkbvleds.html -unknown- html,xorg +./usr/X11R7/man/html1/xkbwatch.html -unknown- html,xorg +./usr/X11R7/man/html1/xkill.html -unknown- html,xorg +./usr/X11R7/man/html1/xload.html -unknown- html,xorg +./usr/X11R7/man/html1/xlogo.html -unknown- html,xorg +./usr/X11R7/man/html1/xlsatoms.html -unknown- html,xorg +./usr/X11R7/man/html1/xlsclients.html -unknown- html,xorg +./usr/X11R7/man/html1/xlsfonts.html -unknown- html,xorg +./usr/X11R7/man/html1/xmag.html -unknown- html,xorg +./usr/X11R7/man/html1/xman.html -unknown- html,xorg +./usr/X11R7/man/html1/xmessage.html -unknown- html,xorg +./usr/X11R7/man/html1/xmh.html -unknown- html,xorg +./usr/X11R7/man/html1/xmkmf.html -unknown- html,xorg +./usr/X11R7/man/html1/xmlwf.html -obsolete- obsolete +./usr/X11R7/man/html1/xmodmap.html -unknown- html,xorg +./usr/X11R7/man/html1/xmore.html -unknown- html,xorg +./usr/X11R7/man/html1/xphelloworld.html -obsolete- obsolete +./usr/X11R7/man/html1/xplsprinters.html -obsolete- obsolete +./usr/X11R7/man/html1/xprehashprinterlist.html -obsolete- obsolete +./usr/X11R7/man/html1/xprop.html -unknown- html,xorg +./usr/X11R7/man/html1/xpsimplehelloworld.html -obsolete- obsolete +./usr/X11R7/man/html1/xpxthelloworld.html -obsolete- obsolete +./usr/X11R7/man/html1/xrandr.html -unknown- html,xorg +./usr/X11R7/man/html1/xrdb.html -unknown- html,xorg +./usr/X11R7/man/html1/xrefresh.html -unknown- html,xorg +./usr/X11R7/man/html1/xset.html -unknown- html,xorg +./usr/X11R7/man/html1/xsetmode.html -unknown- html,xorg +./usr/X11R7/man/html1/xsetpointer.html -unknown- html,xorg +./usr/X11R7/man/html1/xsetroot.html -unknown- html,xorg +./usr/X11R7/man/html1/xsm.html -unknown- html,xorg +./usr/X11R7/man/html1/xstdcmap.html -unknown- html,xorg +./usr/X11R7/man/html1/xterm.html -unknown- html,xorg +./usr/X11R7/man/html1/xtrap.html -unknown- html,xorg +./usr/X11R7/man/html1/xtrapchar.html -unknown- html,xorg +./usr/X11R7/man/html1/xtrapin.html -unknown- html,xorg +./usr/X11R7/man/html1/xtrapinfo.html -unknown- html,xorg +./usr/X11R7/man/html1/xtrapout.html -unknown- html,xorg +./usr/X11R7/man/html1/xtrapproto.html -unknown- html,xorg +./usr/X11R7/man/html1/xtrapreset.html -unknown- html,xorg +./usr/X11R7/man/html1/xtrapstats.html -unknown- html,xorg +./usr/X11R7/man/html1/xvidtune.html -unknown- html,xorg +./usr/X11R7/man/html1/xvinfo.html -unknown- html,xorg +./usr/X11R7/man/html1/xwd.html -unknown- html,xorg +./usr/X11R7/man/html1/xwininfo.html -unknown- html,xorg +./usr/X11R7/man/html1/xwud.html -unknown- html,xorg +./usr/X11R7/man/html3 base-x11-root xorg +./usr/X11R7/man/html4 base-x11-root xorg +./usr/X11R7/man/html5 base-x11-root xorg +./usr/X11R7/man/html5/fonts-conf.html -unknown- html,xorg +./usr/X11R7/man/html7 base-x11-root xorg +./usr/X11R7/man/html7/Consortium.html -unknown- html,xorg +./usr/X11R7/man/html7/Standards.html -unknown- html,xorg +./usr/X11R7/man/html7/X.html -unknown- html,xorg +./usr/X11R7/man/html7/XOrgFoundation.html -unknown- html,xorg +./usr/X11R7/man/html7/XProjectTeam.html -unknown- html,xorg +./usr/X11R7/man/html7/Xsecurity.html -unknown- html,xorg +./usr/X11R7/man/man1 base-x11-root xorg +./usr/X11R7/man/man1/appres.1 -unknown- .man,xorg +./usr/X11R7/man/man1/atobm.1 -unknown- .man,xorg +./usr/X11R7/man/man1/bdftopcf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/bdftruncate.1 -unknown- .man,xorg +./usr/X11R7/man/man1/beforelight.1 -unknown- .man,xorg +./usr/X11R7/man/man1/bitmap.1 -unknown- .man,xorg +./usr/X11R7/man/man1/bmtoa.1 -unknown- .man,xorg +./usr/X11R7/man/man1/ccmakedep.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cleanlinks.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cxpm.1 -unknown- .man,xorg +./usr/X11R7/man/man1/dga.1 -unknown- .man,xorg +./usr/X11R7/man/man1/editres.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fc-cache.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fc-cat.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fc-list.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fc-match.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fc-query.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fc-scan.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fonttosfnt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fslsfonts.1 -unknown- .man,xorg +./usr/X11R7/man/man1/fstobdf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/iceauth.1 -unknown- .man,xorg +./usr/X11R7/man/man1/ico.1 -unknown- .man,xorg +./usr/X11R7/man/man1/imake.1 -unknown- .man,xorg +./usr/X11R7/man/man1/lbxproxy.1 -obsolete obsolete +./usr/X11R7/man/man1/listres.1 -unknown- .man,xorg +./usr/X11R7/man/man1/lndir.1 -unknown- .man,xorg +./usr/X11R7/man/man1/luit.1 -unknown- .man,xorg +./usr/X11R7/man/man1/makedepend.1 -unknown- .man,xorg +./usr/X11R7/man/man1/makeg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/makestrs.1 -unknown- .man,xorg +./usr/X11R7/man/man1/mergelib.1 -unknown- .man,xorg +./usr/X11R7/man/man1/mkdirhier.1 -unknown- .man,xorg +./usr/X11R7/man/man1/mkfontdir.1 -unknown- .man,xorg +./usr/X11R7/man/man1/mkfontscale.1 -unknown- .man,xorg +./usr/X11R7/man/man1/mkhtmlindex.1 -unknown- .man,xorg +./usr/X11R7/man/man1/oclock.1 -unknown- .man,xorg +./usr/X11R7/man/man1/proxymngr.1 -unknown- .man,xorg +./usr/X11R7/man/man1/resize.1 -unknown- .man,xorg +./usr/X11R7/man/man1/revpath.1 -unknown- .man,xorg +./usr/X11R7/man/man1/sessreg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/setxkbmap.1 -unknown- .man,xorg +./usr/X11R7/man/man1/showrgb.1 -unknown- .man,xorg +./usr/X11R7/man/man1/smproxy.1 -unknown- .man,xorg +./usr/X11R7/man/man1/ssh-askpass.1 -unknown- .man,xorg +./usr/X11R7/man/man1/startx.1 -unknown- .man,xorg +./usr/X11R7/man/man1/sxpm.1 -unknown- .man,xorg +./usr/X11R7/man/man1/twm.1 -unknown- .man,xorg +./usr/X11R7/man/man1/ucs2any.1 -unknown- .man,xorg +./usr/X11R7/man/man1/viewres.1 -unknown- .man,xorg +./usr/X11R7/man/man1/x11perf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/x11perfcomp.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xauth.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xbiff.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xcalc.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xclipboard.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xclock.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xcmsdb.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xconsole.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xcutsel.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xditview.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xdm.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xdpyinfo.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xdriinfo.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xedit.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xev.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xeyes.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xfd.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xfindproxy.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xfontsel.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xfs.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xfsinfo.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xfwp.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xgamma.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xgc.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xhost.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xinit.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xinput.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xkbbell.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xkbcomp.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xkbevd.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xkbprint.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xkbvleds.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xkbwatch.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xkill.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xload.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xlogo.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xlsatoms.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xlsclients.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xlsfonts.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xmag.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xman.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xmessage.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xmh.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xmkmf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xmlwf.1 -obsolete- obsolete +./usr/X11R7/man/man1/xmodmap.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xmore.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xphelloworld.1 -obsolete- obsolete +./usr/X11R7/man/man1/xplsprinters.1 -obsolete- obsolete +./usr/X11R7/man/man1/xprehashprinterlist.1 -obsolete- obsolete +./usr/X11R7/man/man1/xprop.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xpsimplehelloworld.1 -obsolete- obsolete +./usr/X11R7/man/man1/xpxthelloworld.1 -obsolete- obsolete +./usr/X11R7/man/man1/xrandr.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xrdb.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xrefresh.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xset.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xsetmode.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xsetpointer.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xsetroot.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xsm.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xstdcmap.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xterm.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xtrap.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xtrapchar.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xtrapin.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xtrapinfo.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xtrapout.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xtrapproto.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xtrapreset.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xtrapstats.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xvidtune.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xvinfo.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xwd.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xwininfo.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xwud.1 -unknown- .man,xorg +./usr/X11R7/man/man3 base-x11-root xorg +./usr/X11R7/man/man4 base-x11-root xorg +./usr/X11R7/man/man5 base-x11-root xorg +./usr/X11R7/man/man5/fonts-conf.5 -unknown- .man,xorg +./usr/X11R7/man/man7 base-x11-root xorg +./usr/X11R7/man/man7/Consortium.7 -unknown- .man,xorg +./usr/X11R7/man/man7/Standards.7 -unknown- .man,xorg +./usr/X11R7/man/man7/X.7 -unknown- .man,xorg +./usr/X11R7/man/man7/XOrgFoundation.7 -unknown- .man,xorg +./usr/X11R7/man/man7/XProjectTeam.7 -unknown- .man,xorg +./usr/X11R7/man/man7/Xsecurity.7 -unknown- .man,xorg +./usr/X11R7/man/whatis.db -unknown- man,xorg,!makemandb +./usr/X11R7/share base-x11-root xorg +./usr/X11R7/share/aclocal base-x11-root xorg +./usr/X11R7/share/examples base-x11-root xorg +./usr/X11R7/share/examples/ssh-askpass base-x11-root xorg +./usr/X11R7/share/examples/ssh-askpass/SshAskpass-1337.ad -unknown- xorg +./usr/X11R7/share/examples/ssh-askpass/SshAskpass-NeXTish.ad -unknown- xorg +./usr/X11R7/share/examples/ssh-askpass/SshAskpass-default.ad -unknown- xorg +./usr/X11R7/share/examples/ssh-askpass/SshAskpass-green.ad -unknown- xorg +./usr/X11R7/share/examples/ssh-askpass/SshAskpass-motif.ad -unknown- xorg +./usr/X11R7/share/pciids base-x11-root xorg +./usr/X11R7/share/xcb base-x11-root xorg +./usr/libdata/debug/usr/X11R6 base-sys-usr x11 +./usr/libdata/debug/usr/X11R6/bin base-sys-usr x11 +./usr/libdata/debug/usr/X11R6/lib base-sys-usr x11 +./usr/libdata/debug/usr/X11R6/libexec base-sys-usr x11 +./usr/libdata/debug/usr/X11R7 base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/bin base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib/X11 base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib/X11/locale base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib/X11/locale/lib base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib/X11/locale/lib/common base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib/modules base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions base-sys-usr xorg +./usr/libdata/debug/usr/X11R7/libexec base-sys-usr xorg +./var/db/obsolete/xbase xbase-sys-root x11 +./var/db/obsolete/xbase xbase-sys-root xorg +./var/db/obsolete/xcomp xbase-sys-root x11 +./var/db/obsolete/xcomp xbase-sys-root xorg +./var/db/obsolete/xetc xbase-sys-root x11 +./var/db/obsolete/xetc xbase-sys-root xorg +./var/db/obsolete/xfont xbase-sys-root x11 +./var/db/obsolete/xfont xbase-sys-root xorg +./var/db/obsolete/xserver xbase-sys-root x11 +./var/db/obsolete/xserver xbase-sys-root xorg diff --git a/distrib/sets/lists/xbase/shl.mi b/distrib/sets/lists/xbase/shl.mi new file mode 100644 index 000000000..aa6bdbd98 --- /dev/null +++ b/distrib/sets/lists/xbase/shl.mi @@ -0,0 +1,428 @@ +# $NetBSD: shl.mi,v 1.45 2012/02/29 20:07:55 tron Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2 -unknown- x11 +./usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2 -unknown- x11 +./usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2 -unknown- x11 +./usr/X11R6/lib/X11/locale/lib/common/xlibi18n.so.2 -unknown- x11 +./usr/X11R6/lib/X11/locale/lib/common/xlocale.so.2 -unknown- x11 +./usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2 -unknown- x11 +./usr/X11R6/lib/libFS.so -unknown- x11 +./usr/X11R6/lib/libFS.so.6 -unknown- x11 +./usr/X11R6/lib/libFS.so.6.0 -unknown- x11 +./usr/X11R6/lib/libGL.so -unknown- x11 +./usr/X11R6/lib/libGL.so.1 -unknown- x11 +./usr/X11R6/lib/libGL.so.1.2 -unknown- x11 +./usr/X11R6/lib/libGLU.so -unknown- x11 +./usr/X11R6/lib/libGLU.so.1 -unknown- x11 +./usr/X11R6/lib/libGLU.so.1.3 -unknown- x11 +./usr/X11R6/lib/libGLw.so -unknown- x11 +./usr/X11R6/lib/libGLw.so.1 -unknown- x11 +./usr/X11R6/lib/libGLw.so.1.0 -unknown- x11 +./usr/X11R6/lib/libICE.so -unknown- x11 +./usr/X11R6/lib/libICE.so.6 -unknown- x11 +./usr/X11R6/lib/libICE.so.6.3 -unknown- x11 +./usr/X11R6/lib/libOSMesa.so -unknown- x11 +./usr/X11R6/lib/libOSMesa.so.4 -unknown- x11 +./usr/X11R6/lib/libOSMesa.so.4.0 -unknown- x11 +./usr/X11R6/lib/libSM.so -unknown- x11 +./usr/X11R6/lib/libSM.so.6 -unknown- x11 +./usr/X11R6/lib/libSM.so.6.0 -unknown- x11 +./usr/X11R6/lib/libX11.so -unknown- x11 +./usr/X11R6/lib/libX11.so.6 -unknown- x11 +./usr/X11R6/lib/libX11.so.6.2 -unknown- x11 +./usr/X11R6/lib/libXRes.so -unknown- x11 +./usr/X11R6/lib/libXRes.so.1 -unknown- x11 +./usr/X11R6/lib/libXRes.so.1.0 -unknown- x11 +./usr/X11R6/lib/libXTrap.so -unknown- x11 +./usr/X11R6/lib/libXTrap.so.6 -unknown- x11 +./usr/X11R6/lib/libXTrap.so.6.4 -unknown- x11 +./usr/X11R6/lib/libXau.so -unknown- x11 +./usr/X11R6/lib/libXau.so.6 -unknown- x11 +./usr/X11R6/lib/libXau.so.6.0 -unknown- x11 +./usr/X11R6/lib/libXaw.so -unknown- x11 +./usr/X11R6/lib/libXaw.so.6 -unknown- x11 +./usr/X11R6/lib/libXaw.so.6.1 -unknown- x11 +./usr/X11R6/lib/libXaw.so.7 -unknown- x11 +./usr/X11R6/lib/libXaw.so.7.0 -unknown- x11 +./usr/X11R6/lib/libXcursor.so -unknown- x11 +./usr/X11R6/lib/libXcursor.so.1 -unknown- x11 +./usr/X11R6/lib/libXcursor.so.1.0 -unknown- x11 +./usr/X11R6/lib/libXdmcp.so -unknown- x11 +./usr/X11R6/lib/libXdmcp.so.6 -unknown- x11 +./usr/X11R6/lib/libXdmcp.so.6.0 -unknown- x11 +./usr/X11R6/lib/libXext.so -unknown- x11 +./usr/X11R6/lib/libXext.so.6 -unknown- x11 +./usr/X11R6/lib/libXext.so.6.4 -unknown- x11 +./usr/X11R6/lib/libXfont.so -unknown- x11 +./usr/X11R6/lib/libXfont.so.1 -unknown- x11 +./usr/X11R6/lib/libXfont.so.1.5 -unknown- x11 +./usr/X11R6/lib/libXfontcache.so -unknown- x11 +./usr/X11R6/lib/libXfontcache.so.1 -unknown- x11 +./usr/X11R6/lib/libXfontcache.so.1.2 -unknown- x11 +./usr/X11R6/lib/libXft.so -unknown- x11 +./usr/X11R6/lib/libXft.so.1 -unknown- x11 +./usr/X11R6/lib/libXft.so.1.1 -unknown- x11 +./usr/X11R6/lib/libXft.so.2 -unknown- x11 +./usr/X11R6/lib/libXft.so.2.1 -unknown- x11 +./usr/X11R6/lib/libXi.so -unknown- x11 +./usr/X11R6/lib/libXi.so.6 -unknown- x11 +./usr/X11R6/lib/libXi.so.6.0 -unknown- x11 +./usr/X11R6/lib/libXinerama.so -unknown- x11 +./usr/X11R6/lib/libXinerama.so.1 -unknown- x11 +./usr/X11R6/lib/libXinerama.so.1.0 -unknown- x11 +./usr/X11R6/lib/libXmu.so -unknown- x11 +./usr/X11R6/lib/libXmu.so.6 -unknown- x11 +./usr/X11R6/lib/libXmu.so.6.2 -unknown- x11 +./usr/X11R6/lib/libXmuu.so -unknown- x11 +./usr/X11R6/lib/libXmuu.so.1 -unknown- x11 +./usr/X11R6/lib/libXmuu.so.1.0 -unknown- x11 +./usr/X11R6/lib/libXp.so -unknown- x11 +./usr/X11R6/lib/libXp.so.6 -unknown- x11 +./usr/X11R6/lib/libXp.so.6.2 -unknown- x11 +./usr/X11R6/lib/libXpm.so -unknown- x11 +./usr/X11R6/lib/libXpm.so.4 -unknown- x11 +./usr/X11R6/lib/libXpm.so.4.11 -unknown- x11 +./usr/X11R6/lib/libXrandr.so -unknown- x11 +./usr/X11R6/lib/libXrandr.so.2 -unknown- x11 +./usr/X11R6/lib/libXrandr.so.2.0 -unknown- x11 +./usr/X11R6/lib/libXrender.so -unknown- x11 +./usr/X11R6/lib/libXrender.so.1 -unknown- x11 +./usr/X11R6/lib/libXrender.so.1.2 -unknown- x11 +./usr/X11R6/lib/libXss.so -unknown- x11 +./usr/X11R6/lib/libXss.so.1 -unknown- x11 +./usr/X11R6/lib/libXss.so.1.0 -unknown- x11 +./usr/X11R6/lib/libXt.so -unknown- x11 +./usr/X11R6/lib/libXt.so.6 -unknown- x11 +./usr/X11R6/lib/libXt.so.6.0 -unknown- x11 +./usr/X11R6/lib/libXtst.so -unknown- x11 +./usr/X11R6/lib/libXtst.so.6 -unknown- x11 +./usr/X11R6/lib/libXtst.so.6.1 -unknown- x11 +./usr/X11R6/lib/libXv.so -unknown- x11 +./usr/X11R6/lib/libXv.so.1 -unknown- x11 +./usr/X11R6/lib/libXv.so.1.0 -unknown- x11 +./usr/X11R6/lib/libXvMC.so -unknown- x11 +./usr/X11R6/lib/libXvMC.so.1 -unknown- x11 +./usr/X11R6/lib/libXvMC.so.1.0 -unknown- x11 +./usr/X11R6/lib/libXxf86dga.so -unknown- x11 +./usr/X11R6/lib/libXxf86dga.so.1 -unknown- x11 +./usr/X11R6/lib/libXxf86dga.so.1.1 -unknown- x11 +./usr/X11R6/lib/libXxf86misc.so -unknown- x11 +./usr/X11R6/lib/libXxf86misc.so.1 -unknown- x11 +./usr/X11R6/lib/libXxf86misc.so.1.1 -unknown- x11 +./usr/X11R6/lib/libXxf86vm.so -unknown- x11 +./usr/X11R6/lib/libXxf86vm.so.1 -unknown- x11 +./usr/X11R6/lib/libXxf86vm.so.1.0 -unknown- x11 +./usr/X11R6/lib/libdmx.so -unknown- x11 +./usr/X11R6/lib/libdmx.so.1 -unknown- x11 +./usr/X11R6/lib/libdmx.so.1.0 -unknown- x11 +./usr/X11R6/lib/libdps.so -unknown- x11 +./usr/X11R6/lib/libdps.so.1 -unknown- x11 +./usr/X11R6/lib/libdps.so.1.0 -unknown- x11 +./usr/X11R6/lib/libdpstk.so -unknown- x11 +./usr/X11R6/lib/libdpstk.so.1 -unknown- x11 +./usr/X11R6/lib/libdpstk.so.1.0 -unknown- x11 +./usr/X11R6/lib/libexpat.so -obsolete- obsolete +./usr/X11R6/lib/libexpat.so.4 -obsolete- obsolete +./usr/X11R6/lib/libexpat.so.4.0 -obsolete- obsolete +./usr/X11R6/lib/libfontconfig.so -unknown- x11 +./usr/X11R6/lib/libfontconfig.so.1 -unknown- x11 +./usr/X11R6/lib/libfontconfig.so.1.0 -unknown- x11 +./usr/X11R6/lib/libfontenc.so -unknown- x11 +./usr/X11R6/lib/libfontenc.so.1 -unknown- x11 +./usr/X11R6/lib/libfontenc.so.1.0 -unknown- x11 +./usr/X11R6/lib/libfreetype.so -unknown- x11 +./usr/X11R6/lib/libfreetype.so.9 -unknown- x11 +./usr/X11R6/lib/libfreetype.so.9.0 -unknown- x11 +./usr/X11R6/lib/liboldX.so -unknown- x11 +./usr/X11R6/lib/liboldX.so.6 -unknown- x11 +./usr/X11R6/lib/liboldX.so.6.0 -unknown- x11 +./usr/X11R6/lib/libpsres.so -unknown- x11 +./usr/X11R6/lib/libpsres.so.1 -unknown- x11 +./usr/X11R6/lib/libpsres.so.1.0 -unknown- x11 +./usr/X11R6/lib/libxkbfile.so -unknown- x11 +./usr/X11R6/lib/libxkbfile.so.1 -unknown- x11 +./usr/X11R6/lib/libxkbfile.so.1.0 -unknown- x11 +./usr/X11R6/lib/libxkbui.so -unknown- x11 +./usr/X11R6/lib/libxkbui.so.1 -unknown- x11 +./usr/X11R6/lib/libxkbui.so.1.0 -unknown- x11 +./usr/X11R7/lib/X11/locale/lib/common/ximcp.so -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/ximcp.so.2 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/ximcp.so.2.0 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlcDef.so -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlcDef.so.2 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlcDef.so.2.0 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlcUTF8Load.so -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlcUTF8Load.so.2 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlcUTF8Load.so.2.0 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlibi18n.so -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlibi18n.so.2 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlibi18n.so.2.0 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlocale.so -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlocale.so.2 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xlocale.so.2.0 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xomGeneric.so -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xomGeneric.so.2 -unknown- xorg +./usr/X11R7/lib/X11/locale/lib/common/xomGeneric.so.2.0 -unknown- xorg +./usr/X11R7/lib/libFS.so -unknown- xorg +./usr/X11R7/lib/libFS.so.7 -unknown- xorg +./usr/X11R7/lib/libFS.so.7.0 -unknown- xorg +./usr/X11R7/lib/libGL.so -unknown- xorg +./usr/X11R7/lib/libGL.so.2 -unknown- xorg +./usr/X11R7/lib/libGL.so.2.0 -unknown- xorg +./usr/X11R7/lib/libGLU.so -unknown- xorg +./usr/X11R7/lib/libGLU.so.2 -unknown- xorg +./usr/X11R7/lib/libGLU.so.2.0 -unknown- xorg +./usr/X11R7/lib/libGLw.so -unknown- xorg +./usr/X11R7/lib/libGLw.so.2 -unknown- xorg +./usr/X11R7/lib/libGLw.so.2.0 -unknown- xorg +./usr/X11R7/lib/libICE.so -unknown- xorg +./usr/X11R7/lib/libICE.so.7 -unknown- xorg +./usr/X11R7/lib/libICE.so.7.0 -unknown- xorg +./usr/X11R7/lib/libOSMesa.so -unknown- xorg +./usr/X11R7/lib/libOSMesa.so.7 -unknown- xorg +./usr/X11R7/lib/libOSMesa.so.7.0 -unknown- xorg +./usr/X11R7/lib/libSM.so -unknown- xorg +./usr/X11R7/lib/libSM.so.7 -unknown- xorg +./usr/X11R7/lib/libSM.so.7.0 -unknown- xorg +./usr/X11R7/lib/libX11.so -unknown- xorg +./usr/X11R7/lib/libX11.so.7 -unknown- xorg +./usr/X11R7/lib/libX11.so.7.0 -unknown- xorg +./usr/X11R7/lib/libX11-xcb.so -unknown- xorg +./usr/X11R7/lib/libX11-xcb.so.1 -unknown- xorg +./usr/X11R7/lib/libX11-xcb.so.1.0 -unknown- xorg +./usr/X11R7/lib/libXRes.so -unknown- xorg +./usr/X11R7/lib/libXRes.so.2 -unknown- xorg +./usr/X11R7/lib/libXRes.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXTrap.so -unknown- xorg +./usr/X11R7/lib/libXTrap.so.7 -unknown- xorg +./usr/X11R7/lib/libXTrap.so.7.0 -unknown- xorg +./usr/X11R7/lib/libXau.so -unknown- xorg +./usr/X11R7/lib/libXau.so.7 -unknown- xorg +./usr/X11R7/lib/libXau.so.7.0 -unknown- xorg +./usr/X11R7/lib/libXaw.so -unknown- xorg +./usr/X11R7/lib/libXaw6.so.7 -unknown- xorg +./usr/X11R7/lib/libXaw6.so.7.0 -unknown- xorg +./usr/X11R7/lib/libXaw7.so -unknown- xorg +./usr/X11R7/lib/libXaw7.so.10 -unknown- xorg +./usr/X11R7/lib/libXaw7.so.10.0 -unknown xorg +./usr/X11R7/lib/libXaw8.so -obsolete- obsolete +./usr/X11R7/lib/libXaw8.so.9 -obsolete- obsolete +./usr/X11R7/lib/libXaw8.so.9.0 -obsolete- obsolete +./usr/X11R7/lib/libXcomposite.so -unknown- xorg +./usr/X11R7/lib/libXcomposite.so.2 -unknown- xorg +./usr/X11R7/lib/libXcomposite.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXcursor.so -unknown- xorg +./usr/X11R7/lib/libXcursor.so.2 -unknown- xorg +./usr/X11R7/lib/libXcursor.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXdamage.so -unknown- xorg +./usr/X11R7/lib/libXdamage.so.2 -unknown- xorg +./usr/X11R7/lib/libXdamage.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXdmcp.so -unknown- xorg +./usr/X11R7/lib/libXdmcp.so.7 -unknown- xorg +./usr/X11R7/lib/libXdmcp.so.7.0 -unknown- xorg +./usr/X11R7/lib/libXevie.so -unknown- xorg +./usr/X11R7/lib/libXevie.so.2 -unknown- xorg +./usr/X11R7/lib/libXevie.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXext.so -unknown- xorg +./usr/X11R7/lib/libXext.so.7 -unknown- xorg +./usr/X11R7/lib/libXext.so.7.1 -unknown- xorg +./usr/X11R7/lib/libXfixes.so -unknown- xorg +./usr/X11R7/lib/libXfixes.so.4 -unknown- xorg +./usr/X11R7/lib/libXfixes.so.4.0 -unknown- xorg +./usr/X11R7/lib/libXfont.so -unknown- xorg +./usr/X11R7/lib/libXfont.so.3 -unknown- xorg +./usr/X11R7/lib/libXfont.so.3.0 -unknown- xorg +./usr/X11R7/lib/libXfontcache.so -unknown- xorg +./usr/X11R7/lib/libXfontcache.so.2 -unknown- xorg +./usr/X11R7/lib/libXfontcache.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXft.so -unknown- xorg +./usr/X11R7/lib/libXft.so.3 -unknown- xorg +./usr/X11R7/lib/libXft.so.3.0 -unknown- xorg +./usr/X11R7/lib/libXi.so -unknown- xorg +./usr/X11R7/lib/libXi.so.7 -unknown- xorg +./usr/X11R7/lib/libXi.so.7.0 -unknown- xorg +./usr/X11R7/lib/libXinerama.so -unknown- xorg +./usr/X11R7/lib/libXinerama.so.2 -unknown- xorg +./usr/X11R7/lib/libXinerama.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXmu.so -unknown- xorg +./usr/X11R7/lib/libXmu.so.7 -unknown- xorg +./usr/X11R7/lib/libXmu.so.7.0 -unknown- xorg +./usr/X11R7/lib/libXmuu.so -unknown- xorg +./usr/X11R7/lib/libXmuu.so.2 -unknown- xorg +./usr/X11R7/lib/libXmuu.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXp.so -obsolete- obsolete +./usr/X11R7/lib/libXp.so.7 -obsolete- obsolete +./usr/X11R7/lib/libXp.so.7.0 -obsolete- obsolete +./usr/X11R7/lib/libXpm.so -unknown- xorg +./usr/X11R7/lib/libXpm.so.5 -unknown- xorg +./usr/X11R7/lib/libXpm.so.5.0 -unknown- xorg +./usr/X11R7/lib/libXprintAppUtil.so -obsolete- obsolete +./usr/X11R7/lib/libXprintAppUtil.so.2 -obsolete- obsolete +./usr/X11R7/lib/libXprintAppUtil.so.2.0 -obsolete- obsolete +./usr/X11R7/lib/libXprintUtil.so -obsolete- obsolete +./usr/X11R7/lib/libXprintUtil.so.2 -obsolete- obsolete +./usr/X11R7/lib/libXprintUtil.so.2.0 -obsolete- obsolete +./usr/X11R7/lib/libXrandr.so -unknown- xorg +./usr/X11R7/lib/libXrandr.so.3 -unknown- xorg +./usr/X11R7/lib/libXrandr.so.3.0 -unknown- xorg +./usr/X11R7/lib/libXrender.so -unknown- xorg +./usr/X11R7/lib/libXrender.so.2 -unknown- xorg +./usr/X11R7/lib/libXrender.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXres.so -obsolete- obsolete +./usr/X11R7/lib/libXres.so.1 -obsolete- obsolete +./usr/X11R7/lib/libXres.so.1.0 -obsolete- obsolete +./usr/X11R7/lib/libXss.so -unknown- xorg +./usr/X11R7/lib/libXss.so.2 -unknown- xorg +./usr/X11R7/lib/libXss.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXt.so -unknown- xorg +./usr/X11R7/lib/libXt.so.7 -unknown- xorg +./usr/X11R7/lib/libXt.so.7.0 -unknown- xorg +./usr/X11R7/lib/libXtst.so -unknown- xorg +./usr/X11R7/lib/libXtst.so.7 -unknown- xorg +./usr/X11R7/lib/libXtst.so.7.0 -unknown- xorg +./usr/X11R7/lib/libXv.so -unknown- xorg +./usr/X11R7/lib/libXv.so.2 -unknown- xorg +./usr/X11R7/lib/libXv.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXvMC.so -unknown- xorg +./usr/X11R7/lib/libXvMC.so.2 -unknown- xorg +./usr/X11R7/lib/libXvMC.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXvMCW.so -unknown- xorg +./usr/X11R7/lib/libXvMCW.so.1 -unknown- xorg +./usr/X11R7/lib/libXvMCW.so.1.0 -unknown- xorg +./usr/X11R7/lib/libXxf86dga.so -unknown- xorg +./usr/X11R7/lib/libXxf86dga.so.2 -unknown- xorg +./usr/X11R7/lib/libXxf86dga.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXxf86misc.so -unknown- xorg +./usr/X11R7/lib/libXxf86misc.so.2 -unknown- xorg +./usr/X11R7/lib/libXxf86misc.so.2.0 -unknown- xorg +./usr/X11R7/lib/libXxf86vm.so -unknown- xorg +./usr/X11R7/lib/libXxf86vm.so.2 -unknown- xorg +./usr/X11R7/lib/libXxf86vm.so.2.0 -unknown- xorg +./usr/X11R7/lib/libdrm.so -unknown- xorg +./usr/X11R7/lib/libdrm.so.3 -unknown- xorg +./usr/X11R7/lib/libdrm.so.3.2 -unknown- xorg +./usr/X11R7/lib/libdrm_radeon.so -unknown- xorg +./usr/X11R7/lib/libdrm_radeon.so.0 -unknown- xorg +./usr/X11R7/lib/libdrm_radeon.so.0.0 -unknown- xorg +./usr/X11R7/lib/libexpat.so -obsolete- obsolete +./usr/X11R7/lib/libexpat.so.2 -obsolete- obsolete +./usr/X11R7/lib/libexpat.so.2.0 -obsolete- obsolete +./usr/X11R7/lib/libfontconfig.so -unknown- xorg +./usr/X11R7/lib/libfontconfig.so.2 -unknown- xorg +./usr/X11R7/lib/libfontconfig.so.2.0 -unknown- xorg +./usr/X11R7/lib/libfontenc.so -unknown- xorg +./usr/X11R7/lib/libfontenc.so.2 -unknown- xorg +./usr/X11R7/lib/libfontenc.so.2.0 -unknown- xorg +./usr/X11R7/lib/libfreetype.so -unknown- xorg +./usr/X11R7/lib/libfreetype.so.7 -unknown- xorg +./usr/X11R7/lib/libfreetype.so.7.3 -unknown- xorg +./usr/X11R7/lib/libglut.so -unknown- xorg +./usr/X11R7/lib/libglut.so.4 -unknown- xorg +./usr/X11R7/lib/libglut.so.4.0 -unknown- xorg +./usr/X11R7/lib/liblbxutil.so -obsolete obsolete +./usr/X11R7/lib/liblbxutil.so.2 -obsolete obsolete +./usr/X11R7/lib/liblbxutil.so.2.0 -obsolete- obsolete +./usr/X11R7/lib/libpciaccess.so -unknown- xorg +./usr/X11R7/lib/libpciaccess.so.0 -unknown- xorg +./usr/X11R7/lib/libpciaccess.so.0.2 -unknown- xorg +./usr/X11R7/lib/libpixman-1.so -unknown- xorg +./usr/X11R7/lib/libpixman-1.so.2 -unknown- xorg +./usr/X11R7/lib/libpixman-1.so.2.1 -unknown- xorg +./usr/X11R7/lib/libxcb-atom.so -unknown- xorg +./usr/X11R7/lib/libxcb-atom.so.1 -unknown- xorg +./usr/X11R7/lib/libxcb-atom.so.1.0 -unknown- xorg +./usr/X11R7/lib/libxcb-aux.so -unknown- xorg +./usr/X11R7/lib/libxcb-aux.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-aux.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-composite.so -unknown- xorg +./usr/X11R7/lib/libxcb-composite.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-composite.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-damage.so -unknown- xorg +./usr/X11R7/lib/libxcb-damage.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-damage.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-dpms.so -unknown- xorg +./usr/X11R7/lib/libxcb-dpms.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-dpms.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-dri2.so -unknown- xorg +./usr/X11R7/lib/libxcb-dri2.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-dri2.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-event.so -unknown- xorg +./usr/X11R7/lib/libxcb-event.so.1 -unknown- xorg +./usr/X11R7/lib/libxcb-event.so.1.0 -unknown- xorg +./usr/X11R7/lib/libxcb-glx.so -unknown- xorg +./usr/X11R7/lib/libxcb-glx.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-glx.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-icccm.so -unknown- xorg +./usr/X11R7/lib/libxcb-icccm.so.1 -unknown- xorg +./usr/X11R7/lib/libxcb-icccm.so.1.0 -unknown- xorg +./usr/X11R7/lib/libxcb-image.so -unknown- xorg +./usr/X11R7/lib/libxcb-image.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-image.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-keysyms.so -unknown- xorg +./usr/X11R7/lib/libxcb-keysyms.so.1 -unknown- xorg +./usr/X11R7/lib/libxcb-keysyms.so.1.0 -unknown- xorg +./usr/X11R7/lib/libxcb-property.so -unknown- xorg +./usr/X11R7/lib/libxcb-property.so.1 -unknown- xorg +./usr/X11R7/lib/libxcb-property.so.1.0 -unknown- xorg +./usr/X11R7/lib/libxcb-randr.so -unknown- xorg +./usr/X11R7/lib/libxcb-randr.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-randr.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-record.so -unknown- xorg +./usr/X11R7/lib/libxcb-record.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-record.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-render-util.so -unknown- xorg +./usr/X11R7/lib/libxcb-render-util.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-render-util.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-render.so -unknown- xorg +./usr/X11R7/lib/libxcb-render.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-render.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-reply.so -unknown- xorg +./usr/X11R7/lib/libxcb-reply.so.1 -unknown- xorg +./usr/X11R7/lib/libxcb-reply.so.1.0 -unknown- xorg +./usr/X11R7/lib/libxcb-res.so -unknown- xorg +./usr/X11R7/lib/libxcb-res.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-res.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-screensaver.so -unknown- xorg +./usr/X11R7/lib/libxcb-screensaver.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-screensaver.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-shape.so -unknown- xorg +./usr/X11R7/lib/libxcb-shape.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-shape.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-shm.so -unknown- xorg +./usr/X11R7/lib/libxcb-shm.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-shm.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-sync.so -unknown- xorg +./usr/X11R7/lib/libxcb-sync.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-sync.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xevie.so -unknown- xorg +./usr/X11R7/lib/libxcb-xevie.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xevie.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xf86dri.so -unknown- xorg +./usr/X11R7/lib/libxcb-xf86dri.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xf86dri.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xfixes.so -unknown- xorg +./usr/X11R7/lib/libxcb-xfixes.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xfixes.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xinerama.so -unknown- xorg +./usr/X11R7/lib/libxcb-xinerama.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xinerama.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xtest.so -unknown- xorg +./usr/X11R7/lib/libxcb-xtest.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xtest.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xv.so -unknown- xorg +./usr/X11R7/lib/libxcb-xv.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xv.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xvmc.so -unknown- xorg +./usr/X11R7/lib/libxcb-xvmc.so.0 -unknown- xorg +./usr/X11R7/lib/libxcb-xvmc.so.0.0 -unknown- xorg +./usr/X11R7/lib/libxcb.so -unknown- xorg +./usr/X11R7/lib/libxcb.so.1 -unknown- xorg +./usr/X11R7/lib/libxcb.so.1.1 -unknown- xorg +./usr/X11R7/lib/libxkbfile.so -unknown- xorg +./usr/X11R7/lib/libxkbfile.so.2 -unknown- xorg +./usr/X11R7/lib/libxkbfile.so.2.0 -unknown- xorg +./usr/X11R7/lib/libxkbui.so -unknown- xorg +./usr/X11R7/lib/libxkbui.so.2 -unknown- xorg +./usr/X11R7/lib/libxkbui.so.2.0 -unknown- xorg diff --git a/distrib/sets/lists/xcomp/md.acorn32 b/distrib/sets/lists/xcomp/md.acorn32 new file mode 100644 index 000000000..e70068a93 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.acorn32 @@ -0,0 +1,3 @@ +# $NetBSD: md.acorn32,v 1.1 2010/03/15 01:17:36 mrg Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xarm32VIDC.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 diff --git a/distrib/sets/lists/xcomp/md.alpha b/distrib/sets/lists/xcomp/md.alpha new file mode 100644 index 000000000..81316b80b --- /dev/null +++ b/distrib/sets/lists/xcomp/md.alpha @@ -0,0 +1,7 @@ +# $NetBSD: md.alpha,v 1.5 2010/03/14 23:19:18 mrg Exp $ +./usr/libdata/debug/usr/X11R6/bin/XalphaNetBSD.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/XdecNetBSD.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.amd64 b/distrib/sets/lists/xcomp/md.amd64 new file mode 100644 index 000000000..3b0107f2e --- /dev/null +++ b/distrib/sets/lists/xcomp/md.amd64 @@ -0,0 +1,199 @@ +# $NetBSD: md.amd64,v 1.33 2012/07/24 17:41:50 njoly Exp $ +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/man/cat3/XF86VidMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeDeleteModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetAllModeLines.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetDotClocks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRampSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetMonitor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetPermissions.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeLockModeSwitch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeModModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetClientVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchToMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeValidateModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/html3/XF86VidMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeDeleteModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetAllModeLines.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetDotClocks.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRampSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetMonitor.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetPermissions.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeLockModeSwitch.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeModModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetClientVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchToMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeValidateModeLine.html -unknown- html,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/man3/XF86VidMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeDeleteModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetAllModeLines.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetDotClocks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRampSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetMonitor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetPermissions.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeLockModeSwitch.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeModModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetClientVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchToMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeValidateModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/X11R7/include/intel_bufmgr.h -unknown- obsolete +./usr/X11R7/lib/libI810XvMC.a -unknown- xorg +./usr/X11R7/lib/libI810XvMC_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libI810XvMC_p.a -unknown- profile,xorg +./usr/X11R7/lib/libI810XvMC_pic.a -unknown- xorg +./usr/X11R7/lib/libIntelXvMC.a -unknown- xorg +./usr/X11R7/lib/libIntelXvMC_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libIntelXvMC_p.a -unknown- profile,xorg +./usr/X11R7/lib/libIntelXvMC_pic.a -unknown- xorg +./usr/X11R7/lib/libchromeXvMC.a -unknown- xorg +./usr/X11R7/lib/libchromeXvMC_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libchromeXvMC_p.a -unknown- profile,xorg +./usr/X11R7/lib/libchromeXvMC_pic.a -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro.a -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libchromeXvMCPro_p.a -unknown- profile,xorg +./usr/X11R7/lib/libchromeXvMCPro_pic.a -unknown- xorg +./usr/X11R7/lib/libdrm_intel.a -unknown- xorg +./usr/X11R7/lib/libdrm_intel_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libdrm_intel_p.a -unknown- profile,xorg +./usr/X11R7/lib/libdrm_intel_pic.a -unknown- xorg +./usr/X11R7/lib/pkgconfig/libdrm_intel.pc -unknown- xorg +./usr/libdata/debug/usr/X11R6/bin/XFree86.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/gtf.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/ioport.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/kbd_mode.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapr.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapw.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/pcitweak.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/scanpci.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86cfg.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86config.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/Xvfb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/ioport.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/pcitweak.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/scanpci.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xorgconfig.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/libI810XvMC.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libIntelXvMC.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libchromeXvMC.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libchromeXvMCPro.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libdrm_intel.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libi810_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libi915_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libi965_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmach64_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmga_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr128_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr200_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr300_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr600_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libradeon_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libs3v_dri.so.0.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libsavage_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libsis_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libtdfx_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libtrident_dri.so.0.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libunichrome_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libapm_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libark_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libast_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libati_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libch7017_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libch7xxx_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libchips_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_alpine.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_laguna.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libglint_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libi128_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libi740_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libintel_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libivch_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmach64_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libneomagic_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libnv_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libopenchrome_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libr128_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeon_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeonhd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libs3_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libs3virge_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsavage_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsil164_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsiliconmotion_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsis_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtdfx_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtfp410_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtrident_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtseng_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvesa_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvmmouse_drv.so.12.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvmware_drv.so.11.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvmwlegacy_drv.so.11.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvoid_drv.so.1.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libxgi_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libint10.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxf8_16bpp.so.0.debug -unknown- obsolete +./usr/libdata/lint/llib-lI810XvMC.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lIntelXvMC.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lchromeXvMC.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lchromeXvMCPro.ln -unknown- lint,xorg +./usr/libdata/lint/llib-ldrm_intel.ln -unknown- lint,xorg diff --git a/distrib/sets/lists/xcomp/md.amiga b/distrib/sets/lists/xcomp/md.amiga new file mode 100644 index 000000000..f4580a307 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.amiga @@ -0,0 +1,3 @@ +# $NetBSD: md.amiga,v 1.3 2010/03/15 07:28:56 mrg Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xamiga.debug -unknown- debug +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug diff --git a/distrib/sets/lists/xcomp/md.atari b/distrib/sets/lists/xcomp/md.atari new file mode 100644 index 000000000..3a0576f12 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.atari @@ -0,0 +1,67 @@ +# $NetBSD: md.atari,v 1.9 2008/09/02 02:23:11 lukem Exp $ +./usr/X11R6/man/cat3/XF86VidMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeDeleteModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetAllModeLines.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetDotClocks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRampSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetMonitor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetPermissions.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeLockModeSwitch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeModModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetClientVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchToMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeValidateModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/html3/XF86VidMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeDeleteModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetAllModeLines.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetDotClocks.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRampSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetMonitor.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetPermissions.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeLockModeSwitch.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeModModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetClientVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchToMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeValidateModeLine.html -unknown- html,x11 +./usr/X11R6/man/man3/XF86VidMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeDeleteModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetAllModeLines.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetDotClocks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRampSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetMonitor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetPermissions.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeLockModeSwitch.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeModModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetClientVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchToMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeValidateModeLine.3 -unknown- .man,x11 diff --git a/distrib/sets/lists/xcomp/md.cats b/distrib/sets/lists/xcomp/md.cats new file mode 100644 index 000000000..296645123 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.cats @@ -0,0 +1,119 @@ +# $NetBSD: md.cats,v 1.11 2011/08/03 01:43:25 mrg Exp $ +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/man/cat3/XF86VidMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeDeleteModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetAllModeLines.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetDotClocks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRampSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetMonitor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetPermissions.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeLockModeSwitch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeModModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetClientVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchToMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeValidateModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/html3/XF86VidMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeDeleteModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetAllModeLines.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetDotClocks.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRampSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetMonitor.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetPermissions.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeLockModeSwitch.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeModModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetClientVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchToMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeValidateModeLine.html -unknown- html,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/man3/XF86VidMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeDeleteModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetAllModeLines.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetDotClocks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRampSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetMonitor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetPermissions.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeLockModeSwitch.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeModModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetClientVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchToMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeValidateModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libapm_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libark_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libast_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libati_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libchips_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_alpine.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_laguna.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libglint_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libi128_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libi740_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libneomagic_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libnv_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeon_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeonhd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libs3_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libs3virge_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsavage_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsiliconmotion_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtdfx_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtrident_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtseng_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvesa_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxf8_16bpp.so.0.debug -unknown- obsolete diff --git a/distrib/sets/lists/xcomp/md.dreamcast b/distrib/sets/lists/xcomp/md.dreamcast new file mode 100644 index 000000000..c2328485e --- /dev/null +++ b/distrib/sets/lists/xcomp/md.dreamcast @@ -0,0 +1,6 @@ +# $NetBSD: md.dreamcast,v 1.2 2010/06/19 18:17:55 tsutsui Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xdreamcast.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.evbmips b/distrib/sets/lists/xcomp/md.evbmips new file mode 100644 index 000000000..4fe934915 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.evbmips @@ -0,0 +1,26 @@ +# $NetBSD: md.evbmips,v 1.1 2012/03/21 05:43:09 matt Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xews4800mips.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsiliconmotion_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsis_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- xorg,debug diff --git a/distrib/sets/lists/xcomp/md.ews4800mips b/distrib/sets/lists/xcomp/md.ews4800mips new file mode 100644 index 000000000..42e391ea1 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.ews4800mips @@ -0,0 +1,6 @@ +# $NetBSD: md.ews4800mips,v 1.1 2011/02/09 13:41:00 tsutsui Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xews4800mips.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.hp300 b/distrib/sets/lists/xcomp/md.hp300 new file mode 100644 index 000000000..d82e767db --- /dev/null +++ b/distrib/sets/lists/xcomp/md.hp300 @@ -0,0 +1,4 @@ +# $NetBSD: md.hp300,v 1.3 2011/02/09 13:41:00 tsutsui Exp $ +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.hpcarm b/distrib/sets/lists/xcomp/md.hpcarm new file mode 100644 index 000000000..a950378ca --- /dev/null +++ b/distrib/sets/lists/xcomp/md.hpcarm @@ -0,0 +1,6 @@ +# $NetBSD: md.hpcarm,v 1.2 2010/06/18 09:18:16 tsutsui Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xhpc.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.hpcmips b/distrib/sets/lists/xcomp/md.hpcmips new file mode 100644 index 000000000..b9bf2c593 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.hpcmips @@ -0,0 +1,6 @@ +# $NetBSD: md.hpcmips,v 1.2 2010/06/18 15:55:33 tsutsui Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xhpc.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.hpcsh b/distrib/sets/lists/xcomp/md.hpcsh new file mode 100644 index 000000000..53b4bb595 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.hpcsh @@ -0,0 +1,6 @@ +# $NetBSD: md.hpcsh,v 1.3 2010/06/19 18:07:38 tsutsui Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xhpc.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.i386 b/distrib/sets/lists/xcomp/md.i386 new file mode 100644 index 000000000..e8cc64a38 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.i386 @@ -0,0 +1,198 @@ +# $NetBSD: md.i386,v 1.40 2012/07/24 17:41:50 njoly Exp $ +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/man/cat3/XF86VidMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeDeleteModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetAllModeLines.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetDotClocks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRampSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetMonitor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetPermissions.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeLockModeSwitch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeModModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetClientVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchToMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeValidateModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/html3/XF86VidMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeDeleteModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetAllModeLines.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetDotClocks.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRampSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetMonitor.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetPermissions.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeLockModeSwitch.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeModModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetClientVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchToMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeValidateModeLine.html -unknown- html,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/man3/XF86VidMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeDeleteModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetAllModeLines.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetDotClocks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRampSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetMonitor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetPermissions.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeLockModeSwitch.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeModModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetClientVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchToMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeValidateModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/X11R7/include/intel_bufmgr.h -unknown- obsolete +./usr/X11R7/lib/libI810XvMC.a -unknown- xorg +./usr/X11R7/lib/libI810XvMC_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libI810XvMC_p.a -unknown- profile,xorg +./usr/X11R7/lib/libI810XvMC_pic.a -unknown- xorg +./usr/X11R7/lib/libIntelXvMC.a -unknown- xorg +./usr/X11R7/lib/libIntelXvMC_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libIntelXvMC_p.a -unknown- profile,xorg +./usr/X11R7/lib/libIntelXvMC_pic.a -unknown- xorg +./usr/X11R7/lib/libchromeXvMC.a -unknown- xorg +./usr/X11R7/lib/libchromeXvMC_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libchromeXvMC_p.a -unknown- profile,xorg +./usr/X11R7/lib/libchromeXvMC_pic.a -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro.a -unknown- xorg +./usr/X11R7/lib/libchromeXvMCPro_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libchromeXvMCPro_p.a -unknown- profile,xorg +./usr/X11R7/lib/libchromeXvMCPro_pic.a -unknown- xorg +./usr/X11R7/lib/libdrm_intel.a -unknown- xorg +./usr/X11R7/lib/libdrm_intel_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libdrm_intel_p.a -unknown- profile,xorg +./usr/X11R7/lib/libdrm_intel_pic.a -unknown- xorg +./usr/X11R7/lib/pkgconfig/libdrm_intel.pc -unknown- xorg +./usr/libdata/debug/usr/X11R6/bin/XFree86.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/gtf.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/ioport.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/kbd_mode.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapr.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapw.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/pcitweak.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/scanpci.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86cfg.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86config.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/ioport.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xorgconfig.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/libI810XvMC.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libIntelXvMC.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libchromeXvMC.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libchromeXvMCPro.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libdrm_intel.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libi810_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libi915_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libi965_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmach64_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmga_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr128_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr200_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr300_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr600_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libradeon_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libs3v_dri.so.0.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libsavage_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libsis_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libtdfx_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libtrident_dri.so.0.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libunichrome_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libapm_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libark_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libast_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libati_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libch7017_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libch7xxx_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libchips_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_alpine.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcirrus_laguna.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libelographics_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libgeode_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libglint_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libi128_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libi740_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libintel_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libivch_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmach64_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libneomagic_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libnv_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libopenchrome_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libr128_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeon_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeonhd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libs3_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libs3virge_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsavage_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsil164_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsiliconmotion_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsis_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtdfx_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtfp410_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtrident_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtseng_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvesa_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvmmouse_drv.so.12.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvmware_drv.so.11.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvmwlegacy_drv.so.11.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvoid_drv.so.1.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libxgi_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libint10.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxf8_16bpp.so.0.debug -unknown- obsolete +./usr/libdata/lint/llib-lI810XvMC.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lIntelXvMC.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lchromeXvMC.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lchromeXvMCPro.ln -unknown- lint,xorg +./usr/libdata/lint/llib-ldrm_intel.ln -unknown- lint,xorg diff --git a/distrib/sets/lists/xcomp/md.luna68k b/distrib/sets/lists/xcomp/md.luna68k new file mode 100644 index 000000000..4af692241 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.luna68k @@ -0,0 +1,4 @@ +# $NetBSD: md.luna68k,v 1.1 2011/07/21 10:20:25 tsutsui Exp $ +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.mac68k b/distrib/sets/lists/xcomp/md.mac68k new file mode 100644 index 000000000..4b2c8fe72 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.mac68k @@ -0,0 +1,3 @@ +# $NetBSD: md.mac68k,v 1.3 2010/03/15 02:17:29 mrg Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xmac68k.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- x11,debug diff --git a/distrib/sets/lists/xcomp/md.macppc b/distrib/sets/lists/xcomp/md.macppc new file mode 100644 index 000000000..c99696532 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.macppc @@ -0,0 +1,137 @@ +# $NetBSD: md.macppc,v 1.19 2011/08/03 01:43:25 mrg Exp $ +./usr/X11R6/include/X11/extensions/xf86dga.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86dga1.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86dga1str.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86dgastr.h -unknown- x11 +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/lib/libXxf86dga.a -unknown- x11 +./usr/X11R6/man/cat3/XF86VidMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeDeleteModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetAllModeLines.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetDotClocks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRampSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetMonitor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetPermissions.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeLockModeSwitch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeModModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetClientVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchToMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeValidateModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/html3/XF86VidMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeDeleteModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetAllModeLines.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetDotClocks.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRampSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetMonitor.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetPermissions.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeLockModeSwitch.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeModModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetClientVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchToMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeValidateModeLine.html -unknown- html,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/man3/XF86VidMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeDeleteModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetAllModeLines.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetDotClocks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRampSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetMonitor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetPermissions.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeLockModeSwitch.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeModModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetClientVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchToMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeValidateModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/X11R7/include/X11/extensions/xf86dga.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga1.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga1str.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dgastr.h -unknown- xorg +./usr/X11R7/lib/libXxf86dga.a -unknown- xorg +./usr/libdata/debug/usr/X11R6/bin/XFree86.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xmacppc.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/gtf.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/kbd_mode.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapr.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapw.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/pcitweak.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/scanpci.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86cfg.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86config.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/Xvfb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/pcitweak.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/scanpci.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xf86cfg.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xf86config.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmach64_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmga_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr128_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr200_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr300_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr600_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libradeon_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libtdfx_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libati_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libchips_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmach64_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libnv_drv.so.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libr128_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeon_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtdfx_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libint10.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxf8_16bpp.so.0.debug -unknown- obsolete diff --git a/distrib/sets/lists/xcomp/md.netwinder b/distrib/sets/lists/xcomp/md.netwinder new file mode 100644 index 000000000..e07aecf89 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.netwinder @@ -0,0 +1,21 @@ +# $NetBSD: md.netwinder,v 1.7 2010/03/14 23:19:18 mrg Exp $ +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/libdata/debug/usr/X11R6/bin/XFree86.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/gtf.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/ioport.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/kbd_mode.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapr.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapw.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/pcitweak.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/scanpci.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86cfg.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86config.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xorgconfig.debug -unknown- obsolete diff --git a/distrib/sets/lists/xcomp/md.newsmips b/distrib/sets/lists/xcomp/md.newsmips new file mode 100644 index 000000000..d7b9ce7a0 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.newsmips @@ -0,0 +1,6 @@ +# $NetBSD: md.newsmips,v 1.2 2011/05/21 11:52:29 tsutsui Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xnewsmips.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.ofppc b/distrib/sets/lists/xcomp/md.ofppc new file mode 100644 index 000000000..9f882b2b7 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.ofppc @@ -0,0 +1,49 @@ +# $NetBSD: md.ofppc,v 1.2 2011/12/14 14:18:19 njoly Exp $ +./usr/libdata/debug/usr/X11R6/bin/XFree86.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/gtf.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/kbd_mode.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapr.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapw.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/pcitweak.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/scanpci.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86cfg.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86config.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmach64_dri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmga_dri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr128_dri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr200_dri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr300_dri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr600_dri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libradeon_dri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libtdfx_dri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libati_drv.so.6.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libchips_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmach64_drv.so.6.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmga_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libnv_drv.so.2.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libr128_drv.so.6.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeon_drv.so.6.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libtdfx_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libint10.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.pmax b/distrib/sets/lists/xcomp/md.pmax new file mode 100644 index 000000000..386dfda4f --- /dev/null +++ b/distrib/sets/lists/xcomp/md.pmax @@ -0,0 +1,3 @@ +# $NetBSD: md.pmax,v 1.3 2010/03/14 08:24:18 mrg Exp $ +./usr/libdata/debug/usr/X11R6/bin/XdecNetBSD.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 diff --git a/distrib/sets/lists/xcomp/md.sgimips b/distrib/sets/lists/xcomp/md.sgimips new file mode 100644 index 000000000..e20f8c993 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.sgimips @@ -0,0 +1,32 @@ +# $NetBSD: md.sgimips,v 1.10 2011/08/03 01:43:25 mrg Exp $ +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/Xvfb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/pcitweak.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/scanpci.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xf86cfg.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xf86config.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libcrime_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libnewport_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxf8_16bpp.so.0.debug -unknown- obsolete diff --git a/distrib/sets/lists/xcomp/md.shark b/distrib/sets/lists/xcomp/md.shark new file mode 100644 index 000000000..61271fd5d --- /dev/null +++ b/distrib/sets/lists/xcomp/md.shark @@ -0,0 +1,103 @@ +# $NetBSD: md.shark,v 1.13 2011/08/03 01:43:25 mrg Exp $ +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/man/cat3/XF86VidMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeDeleteModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetAllModeLines.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetDotClocks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetGammaRampSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetMonitor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetPermissions.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeGetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeLockModeSwitch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeModModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetClientVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGamma.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetGammaRamp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSetViewPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeSwitchToMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86VidModeValidateModeLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/html3/XF86VidMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeDeleteModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetAllModeLines.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetDotClocks.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetGammaRampSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetMonitor.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetPermissions.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeGetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeLockModeSwitch.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeModModeLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetClientVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGamma.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetGammaRamp.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSetViewPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeSwitchToMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86VidModeValidateModeLine.html -unknown- html,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/man3/XF86VidMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeDeleteModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetAllModeLines.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetDotClocks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetGammaRampSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetMonitor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetPermissions.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeGetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeLockModeSwitch.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeModModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetClientVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGamma.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetGammaRamp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSetViewPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeSwitchToMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86VidModeValidateModeLine.3 -unknown- .man,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/libdata/debug/usr/X11R6/bin/XFree86.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/kbd_mode.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapr.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mmapw.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86cfg.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xf86config.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libchips_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libigs_drv.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libxf8_16bpp.so.0.debug -unknown- obsolete diff --git a/distrib/sets/lists/xcomp/md.sparc b/distrib/sets/lists/xcomp/md.sparc new file mode 100644 index 000000000..0ac476f15 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.sparc @@ -0,0 +1,47 @@ +# $NetBSD: md.sparc,v 1.11 2012/02/14 17:29:51 njoly Exp $ +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/Xvfb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/pcitweak.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/scanpci.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xf86cfg.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xf86config.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmach64_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmga_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr128_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr200_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr300_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr600_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libradeon_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libag10e_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libati_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libglint_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmach64_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libpnozz_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libr128_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeon_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsuncg14_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsuncg6_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsunffb_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsunleo_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsuntcx_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- xorg,debug diff --git a/distrib/sets/lists/xcomp/md.sparc64 b/distrib/sets/lists/xcomp/md.sparc64 new file mode 100644 index 000000000..5a5978469 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.sparc64 @@ -0,0 +1,57 @@ +# $NetBSD: md.sparc64,v 1.12 2011/08/03 01:43:25 mrg Exp $ +./usr/X11R6/include/X11/extensions/dpms.h -unknown- x11 +./usr/X11R6/include/X11/extensions/dpmsstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86misc.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86mscstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86vmode.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86vmstr.h -unknown- x11 +./usr/X11R7/include/X11/extensions/xf86dga.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga1.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga1str.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dgastr.h -unknown- xorg +./usr/X11R7/lib/libXxf86dga.a -unknown- xorg +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/Xvfb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/pcitweak.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/scanpci.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xf86cfg.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/xf86config.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmach64_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmga_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr128_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr200_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr300_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libr600_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libradeon_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libag10e_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libati_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libglint_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmach64_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmga_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libr128_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libradeon_drv.so.6.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsuncg6_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsunffb_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libsunleo_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libvoid_drv.so.1.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/libxf8_16bpp.so.0.debug -unknown- obsolete diff --git a/distrib/sets/lists/xcomp/md.sun3 b/distrib/sets/lists/xcomp/md.sun3 new file mode 100644 index 000000000..2a6aa077d --- /dev/null +++ b/distrib/sets/lists/xcomp/md.sun3 @@ -0,0 +1,6 @@ +# $NetBSD: md.sun3,v 1.3 2010/03/16 01:48:53 mrg Exp $ +./usr/libdata/debug/usr/X11R6/bin/Xsun.debug -unknown- debug +./usr/libdata/debug/usr/X11R6/bin/XsunMono.debug -unknown- debug +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug +./usr/libdata/debug/usr/X11R6/bin/constype.debug -unknown- debug +./usr/libdata/debug/usr/X11R6/bin/kbd_mode.debug -unknown- debug diff --git a/distrib/sets/lists/xcomp/md.vax b/distrib/sets/lists/xcomp/md.vax new file mode 100644 index 000000000..80d48d596 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.vax @@ -0,0 +1,22 @@ +# $NetBSD: md.vax,v 1.3 2012/07/16 18:19:04 matt Exp $ +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libkbd_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libmouse_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libws_drv.so.1.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/drivers/libwsfb_drv.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdbe.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libdri2.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libextmod.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libglx.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/librecord.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/extensions/libshadow.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libexa.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libfb.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libi2c.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libshadowfb.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libvbe.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libvgahw.so.0.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/lib/modules/libxaa.so.0.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/md.x68k b/distrib/sets/lists/xcomp/md.x68k new file mode 100644 index 000000000..d1827aae1 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.x68k @@ -0,0 +1,3 @@ +# $NetBSD: md.x68k,v 1.3 2010/03/16 01:48:53 mrg Exp $ +./usr/libdata/debug/usr/X11R6/bin/X68k.debug -unknown- debug +./usr/libdata/debug/usr/X11R6/bin/Xvfb.debug -unknown- debug diff --git a/distrib/sets/lists/xcomp/md.zaurus b/distrib/sets/lists/xcomp/md.zaurus new file mode 100644 index 000000000..1748893a0 --- /dev/null +++ b/distrib/sets/lists/xcomp/md.zaurus @@ -0,0 +1,4 @@ +# $NetBSD: md.zaurus,v 1.1 2010/03/14 23:19:18 mrg Exp $ +./usr/libdata/debug/usr/X11R7/bin/Xorg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cvt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/gtf.debug -unknown- debug,xorg diff --git a/distrib/sets/lists/xcomp/mi b/distrib/sets/lists/xcomp/mi new file mode 100644 index 000000000..b6f30a0c3 --- /dev/null +++ b/distrib/sets/lists/xcomp/mi @@ -0,0 +1,9644 @@ +# $NetBSD: mi,v 1.134 2012/02/29 20:07:55 tron Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.xcomp xcomp-sys-root +./usr/X11R6/bin/bdftruncate.pl xcomp-obsolete obsolete +./usr/X11R6/bin/ccmakedep -unknown- x11 +./usr/X11R6/bin/cleanlinks -unknown- x11 +./usr/X11R6/bin/freetype-config -unknown- x11 +./usr/X11R6/bin/gccmakedep -unknown- x11 +./usr/X11R6/bin/imake -unknown- x11 +./usr/X11R6/bin/lndir -unknown- x11 +./usr/X11R6/bin/makedepend -unknown- x11 +./usr/X11R6/bin/makeg -unknown- x11 +./usr/X11R6/bin/makestrs -unknown- x11 +./usr/X11R6/bin/mergelib -unknown- x11 +./usr/X11R6/bin/mkdirhier -unknown- x11 +./usr/X11R6/bin/mkhtmlindex -unknown- x11 +./usr/X11R6/bin/pswrap -unknown- x11 +./usr/X11R6/bin/xft-config -unknown- x11 +./usr/X11R6/bin/xmkmf -unknown- x11 +./usr/X11R6/include/DPS/ColorSB.h -unknown- x11 +./usr/X11R6/include/DPS/ColorSBP.h -unknown- x11 +./usr/X11R6/include/DPS/DPSScrollW.h -unknown- x11 +./usr/X11R6/include/DPS/DPSScrollWP.h -unknown- x11 +./usr/X11R6/include/DPS/FontCreatP.h -unknown- x11 +./usr/X11R6/include/DPS/FontCreato.h -unknown- x11 +./usr/X11R6/include/DPS/FontSB.h -unknown- x11 +./usr/X11R6/include/DPS/FontSBP.h -unknown- x11 +./usr/X11R6/include/DPS/FontSamplP.h -unknown- x11 +./usr/X11R6/include/DPS/FontSample.h -unknown- x11 +./usr/X11R6/include/DPS/PSres.h -unknown- x11 +./usr/X11R6/include/DPS/XDPS.h -unknown- x11 +./usr/X11R6/include/DPS/XDPSlib.h -unknown- x11 +./usr/X11R6/include/DPS/XDPSproto.h -unknown- x11 +./usr/X11R6/include/DPS/dpsNXargs.h -unknown- x11 +./usr/X11R6/include/DPS/dpsXclient.h -unknown- x11 +./usr/X11R6/include/DPS/dpsXcommon.h -unknown- x11 +./usr/X11R6/include/DPS/dpsXpreview.h -unknown- x11 +./usr/X11R6/include/DPS/dpsXshare.h -unknown- x11 +./usr/X11R6/include/DPS/dpsXuserpath.h -unknown- x11 +./usr/X11R6/include/DPS/dpsclient.h -unknown- x11 +./usr/X11R6/include/DPS/dpsconfig.h -unknown- x11 +./usr/X11R6/include/DPS/dpsexcept.h -unknown- x11 +./usr/X11R6/include/DPS/dpsfriends.h -unknown- x11 +./usr/X11R6/include/DPS/dpsops.h -unknown- x11 +./usr/X11R6/include/DPS/psops.h -unknown- x11 +./usr/X11R6/include/GL/GLwDrawA.h -unknown- x11 +./usr/X11R6/include/GL/GLwDrawAP.h -unknown- x11 +./usr/X11R6/include/GL/GLwMDrawA.h -unknown- x11 +./usr/X11R6/include/GL/GLwMDrawAP.h -unknown- x11 +./usr/X11R6/include/GL/gl.h -unknown- x11 +./usr/X11R6/include/GL/glext.h -unknown- x11 +./usr/X11R6/include/GL/glu.h -unknown- x11 +./usr/X11R6/include/GL/glx.h -unknown- x11 +./usr/X11R6/include/GL/glxext.h -unknown- x11 +./usr/X11R6/include/GL/glxint.h -unknown- x11 +./usr/X11R6/include/GL/glxmd.h -unknown- x11 +./usr/X11R6/include/GL/glxproto.h -unknown- x11 +./usr/X11R6/include/GL/glxtokens.h -unknown- x11 +./usr/X11R6/include/GL/osmesa.h -unknown- x11 +./usr/X11R6/include/X11/Composite.h -unknown- x11 +./usr/X11R6/include/X11/CompositeP.h -unknown- x11 +./usr/X11R6/include/X11/ConstrainP.h -unknown- x11 +./usr/X11R6/include/X11/Constraint.h -unknown- x11 +./usr/X11R6/include/X11/Core.h -unknown- x11 +./usr/X11R6/include/X11/CoreP.h -unknown- x11 +./usr/X11R6/include/X11/DECkeysym.h -unknown- x11 +./usr/X11R6/include/X11/HPkeysym.h -unknown- x11 +./usr/X11R6/include/X11/ICE/ICE.h -unknown- x11 +./usr/X11R6/include/X11/ICE/ICEconn.h -unknown- x11 +./usr/X11R6/include/X11/ICE/ICElib.h -unknown- x11 +./usr/X11R6/include/X11/ICE/ICEmsg.h -unknown- x11 +./usr/X11R6/include/X11/ICE/ICEproto.h -unknown- x11 +./usr/X11R6/include/X11/ICE/ICEutil.h -unknown- x11 +./usr/X11R6/include/X11/Intrinsic.h -unknown- x11 +./usr/X11R6/include/X11/IntrinsicP.h -unknown- x11 +./usr/X11R6/include/X11/Object.h -unknown- x11 +./usr/X11R6/include/X11/ObjectP.h -unknown- x11 +./usr/X11R6/include/X11/PM/PM.h -unknown- x11 +./usr/X11R6/include/X11/PM/PMproto.h -unknown- x11 +./usr/X11R6/include/X11/RectObj.h -unknown- x11 +./usr/X11R6/include/X11/RectObjP.h -unknown- x11 +./usr/X11R6/include/X11/SM/SM.h -unknown- x11 +./usr/X11R6/include/X11/SM/SMlib.h -unknown- x11 +./usr/X11R6/include/X11/SM/SMproto.h -unknown- x11 +./usr/X11R6/include/X11/Shell.h -unknown- x11 +./usr/X11R6/include/X11/ShellP.h -unknown- x11 +./usr/X11R6/include/X11/StringDefs.h -unknown- x11 +./usr/X11R6/include/X11/Sunkeysym.h -unknown- x11 +./usr/X11R6/include/X11/Vendor.h -unknown- x11 +./usr/X11R6/include/X11/VendorP.h -unknown- x11 +./usr/X11R6/include/X11/X.h -unknown- x11 +./usr/X11R6/include/X11/X10.h -unknown- x11 +./usr/X11R6/include/X11/XF86keysym.h -unknown- x11 +./usr/X11R6/include/X11/XKBlib.h -unknown- x11 +./usr/X11R6/include/X11/XWDFile.h -unknown- x11 +./usr/X11R6/include/X11/Xalloca.h -unknown- x11 +./usr/X11R6/include/X11/Xarch.h -unknown- x11 +./usr/X11R6/include/X11/Xatom.h -unknown- x11 +./usr/X11R6/include/X11/Xauth.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/AllWidgets.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/AsciiSink.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/AsciiSinkP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/AsciiSrc.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/AsciiSrcP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/AsciiText.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/AsciiTextP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Box.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/BoxP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Cardinals.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Command.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/CommandP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Dialog.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/DialogP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Form.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/FormP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Grip.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/GripP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Label.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/LabelP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/List.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/ListP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/MenuButtoP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/MenuButton.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/MultiSink.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/MultiSinkP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/MultiSrc.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/MultiSrcP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Paned.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/PanedP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Panner.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/PannerP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Porthole.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/PortholeP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Repeater.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/RepeaterP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Reports.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Scrollbar.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/ScrollbarP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Simple.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/SimpleMenP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/SimpleMenu.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/SimpleP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Sme.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/SmeBSB.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/SmeBSBP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/SmeLine.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/SmeLineP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/SmeP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/StripCharP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/StripChart.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Template.c -unknown- x11 +./usr/X11R6/include/X11/Xaw/Template.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/TemplateP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Text.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/TextP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/TextSink.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/TextSinkP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/TextSrc.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/TextSrcP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Tip.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/TipP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Toggle.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/ToggleP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Tree.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/TreeP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/VendorEP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/Viewport.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/ViewportP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/XawImP.h -unknown- x11 +./usr/X11R6/include/X11/Xaw/XawInit.h -unknown- x11 +./usr/X11R6/include/X11/Xcms.h -unknown- x11 +./usr/X11R6/include/X11/Xcursor/Xcursor.h -unknown- x11 +./usr/X11R6/include/X11/Xdefs.h -unknown- x11 +./usr/X11R6/include/X11/Xdmcp.h -unknown- x11 +./usr/X11R6/include/X11/Xft/Xft.h -unknown- x11 +./usr/X11R6/include/X11/Xft/XftCompat.h -unknown- x11 +./usr/X11R6/include/X11/Xft/XftFreetype.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/Xfuncproto.h -unknown- x11 +./usr/X11R6/include/X11/Xfuncs.h -unknown- x11 +./usr/X11R6/include/X11/Xlib.h -unknown- x11 +./usr/X11R6/include/X11/Xlibint.h -unknown- x11 +./usr/X11R6/include/X11/Xlocale.h -unknown- x11 +./usr/X11R6/include/X11/Xmd.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Atoms.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/CharSet.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/CloseHook.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Converters.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/CurUtil.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/CvtCache.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/DisplayQue.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Drawing.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Editres.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/EditresP.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Error.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/ExtAgent.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Initer.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Lookup.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Misc.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/StdCmap.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/StdSel.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/SysUtil.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/WidgetNode.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/WinUtil.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Xct.h -unknown- x11 +./usr/X11R6/include/X11/Xmu/Xmu.h -unknown- x11 +./usr/X11R6/include/X11/Xos.h -unknown- x11 +./usr/X11R6/include/X11/Xos_r.h -unknown- x11 +./usr/X11R6/include/X11/Xosdefs.h -unknown- x11 +./usr/X11R6/include/X11/Xpoll.h -unknown- x11 +./usr/X11R6/include/X11/Xproto.h -unknown- x11 +./usr/X11R6/include/X11/Xprotostr.h -unknown- x11 +./usr/X11R6/include/X11/Xresource.h -unknown- x11 +./usr/X11R6/include/X11/Xthreads.h -unknown- x11 +./usr/X11R6/include/X11/Xtrans.h -unknown- x11 +./usr/X11R6/include/X11/Xutil.h -unknown- x11 +./usr/X11R6/include/X11/ap_keysym.h -unknown- x11 +./usr/X11R6/include/X11/cursorfont.h -unknown- x11 +./usr/X11R6/include/X11/extensions/MITMisc.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Print.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Printstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XEVI.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XEVIstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XI.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XIE.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/extensions/XIEproto.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/extensions/XIEprotost.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/extensions/XInput.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XIproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKB.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBbells.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBconfig.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBfile.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBgeom.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBrules.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBsrv.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKBui.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKM.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XKMformat.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XLbx.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XRes.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XResproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XShm.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XTest.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xag.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xagsrv.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xagstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xcup.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xcupstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xdbe.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xdbeproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xext.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xinerama.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xrandr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xrender.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xv.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XvMC.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XvMClib.h -unknown- x11 +./usr/X11R6/include/X11/extensions/XvMCproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xvlib.h -unknown- x11 +./usr/X11R6/include/X11/extensions/Xvproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/bigreqstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/dmxext.h -unknown- x11 +./usr/X11R6/include/X11/extensions/dmxproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/dpms.h -unknown- x11 +./usr/X11R6/include/X11/extensions/dpmsstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/extutil.h -unknown- x11 +./usr/X11R6/include/X11/extensions/fontcache.h -unknown- x11 +./usr/X11R6/include/X11/extensions/fontcacheP.h -unknown- x11 +./usr/X11R6/include/X11/extensions/fontcachstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/lbxbuf.h -unknown- x11 +./usr/X11R6/include/X11/extensions/lbxbufstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/lbxdeltastr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/lbximage.h -unknown- x11 +./usr/X11R6/include/X11/extensions/lbxopts.h -unknown- x11 +./usr/X11R6/include/X11/extensions/lbxstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/lbxzlib.h -unknown- x11 +./usr/X11R6/include/X11/extensions/mitmiscstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/multibuf.h -unknown- x11 +./usr/X11R6/include/X11/extensions/multibufst.h -unknown- x11 +./usr/X11R6/include/X11/extensions/panoramiXext.h -unknown- x11 +./usr/X11R6/include/X11/extensions/panoramiXproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/panoramiXwrap.h -unknown- x11 +./usr/X11R6/include/X11/extensions/randr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/randrproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/record.h -unknown- x11 +./usr/X11R6/include/X11/extensions/recordstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/render.h -unknown- x11 +./usr/X11R6/include/X11/extensions/renderproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/saver.h -unknown- x11 +./usr/X11R6/include/X11/extensions/saverproto.h -unknown- x11 +./usr/X11R6/include/X11/extensions/scrnsaver.h -unknown- x11 +./usr/X11R6/include/X11/extensions/security.h -unknown- x11 +./usr/X11R6/include/X11/extensions/securstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/shape.h -unknown- x11 +./usr/X11R6/include/X11/extensions/shapestr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/shmstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/sync.h -unknown- x11 +./usr/X11R6/include/X11/extensions/syncstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xcmiscstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86bigfont.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86bigfstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86dga.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86dga1.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86dga1str.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86dgastr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86misc.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86mscstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86rush.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86rushstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86vmode.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xf86vmstr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xtestext1.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xteststr.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xtrapbits.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xtrapddmi.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xtrapdi.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xtrapemacros.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xtraplib.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xtraplibp.h -unknown- x11 +./usr/X11R6/include/X11/extensions/xtrapproto.h -unknown- x11 +./usr/X11R6/include/X11/fonts/FS.h -unknown- x11 +./usr/X11R6/include/X11/fonts/FSlib.h -unknown- x11 +./usr/X11R6/include/X11/fonts/FSproto.h -unknown- x11 +./usr/X11R6/include/X11/fonts/codeconv/cconvversion.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/fonts/codeconv/xttcap.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/fonts/codeconv/xttcconv.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/fonts/codeconv/xttcconvP.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/fonts/codeconv/xttcommon.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/fonts/codeconv/xttversion.h xcomp-obsolete obsolete +./usr/X11R6/include/X11/fonts/fontenc.h -unknown- x11 +./usr/X11R6/include/X11/fonts/fsmasks.h -unknown- x11 +./usr/X11R6/include/X11/keysym.h -unknown- x11 +./usr/X11R6/include/X11/keysymdef.h -unknown- x11 +./usr/X11R6/include/X11/xpm.h -unknown- x11 +./usr/X11R6/include/expat.h xcomp-obsolete obsolete +./usr/X11R6/include/fontconfig/fcfreetype.h -unknown- x11 +./usr/X11R6/include/fontconfig/fcprivate.h -unknown- x11 +./usr/X11R6/include/fontconfig/fontconfig.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/cache/ftccache.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/cache/ftccmap.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/cache/ftcglyph.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/cache/ftcimage.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/cache/ftcmanag.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/cache/ftcmru.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/cache/ftcsbits.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/cache/ftlru.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/config/ftconfig.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/config/ftheader.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/config/ftmodule.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/config/ftoption.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/config/ftstdlib.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/freetype.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftbbox.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftbdf.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftcache.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftchapters.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/fterrdef.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/fterrors.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftglyph.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftgzip.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftimage.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftincrem.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftlist.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftlzw.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftmac.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftmm.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftmodapi.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftmoderr.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftmodule.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/ftoutln.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftpfr.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftrender.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftsizes.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftsnames.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftstroke.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftstroker.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/ftsynth.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftsysio.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftsysmem.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftsystem.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/fttrigon.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/fttypes.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftwinfnt.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ftxf86.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/autohint.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/bdftypes.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/cfftypes.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/fnttypes.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/ftcalc.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/ftcore.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/ftdebug.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/ftdriver.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/ftexcept.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/ftextend.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/ftgloadr.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/fthash.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/ftmemory.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/ftobject.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/ftobjs.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/ftrfork.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/ftserv.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/ftstream.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/fttrace.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/internal.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/pcftypes.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/pfr.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/psaux.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/psglobal.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/pshints.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/psnames.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/services/svbdf.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svgldict.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svmm.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svpfr.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svpostnm.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svpscmap.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svpsinfo.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svsfnt.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svttcmap.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svwinfnt.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/services/svxf86nm.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/sfnt.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/t1types.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/internal/t42types.h xcomp-obsolete obsolete +./usr/X11R6/include/freetype2/freetype/internal/tttypes.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/t1tables.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ttnameid.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/tttables.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/tttags.h -unknown- x11 +./usr/X11R6/include/freetype2/freetype/ttunpat.h -unknown- x11 +./usr/X11R6/include/freetype2/ft2build.h xcomp-obsolete obsolete +./usr/X11R6/include/ft2build.h -unknown- x11 +./usr/X11R6/lib/X11/config/Amoeba.cf -unknown- x11 +./usr/X11R6/lib/X11/config/DGUX.cf -unknown- x11 +./usr/X11R6/lib/X11/config/FreeBSD.cf -unknown- x11 +./usr/X11R6/lib/X11/config/Imake.cf -unknown- x11 +./usr/X11R6/lib/X11/config/Imake.rules -unknown- x11 +./usr/X11R6/lib/X11/config/Imake.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/Library.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/Mips.cf -unknown- x11 +./usr/X11R6/lib/X11/config/Motif.rules -unknown- x11 +./usr/X11R6/lib/X11/config/Motif.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/NetBSD.cf -unknown- x11 +./usr/X11R6/lib/X11/config/Oki.cf -unknown- x11 +./usr/X11R6/lib/X11/config/OpenBSD.cf -unknown- x11 +./usr/X11R6/lib/X11/config/QNX4.cf -unknown- x11 +./usr/X11R6/lib/X11/config/QNX4.rules -unknown- x11 +./usr/X11R6/lib/X11/config/Server.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/ServerLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/Threads.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/Win32.cf -unknown- x11 +./usr/X11R6/lib/X11/config/Win32.rules -unknown- x11 +./usr/X11R6/lib/X11/config/WinLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/X11.rules -unknown- x11 +./usr/X11R6/lib/X11/config/X11.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/apollo.cf -unknown- x11 +./usr/X11R6/lib/X11/config/bsd.cf -unknown- x11 +./usr/X11R6/lib/X11/config/bsdLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/bsdLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/bsdi.cf -unknown- x11 +./usr/X11R6/lib/X11/config/cde.rules -unknown- x11 +./usr/X11R6/lib/X11/config/cde.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/convex.cf -unknown- x11 +./usr/X11R6/lib/X11/config/cray.cf -unknown- x11 +./usr/X11R6/lib/X11/config/cygwin.cf -unknown- x11 +./usr/X11R6/lib/X11/config/cygwin.rules -unknown- x11 +./usr/X11R6/lib/X11/config/cygwin.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/darwin.cf -unknown- x11 +./usr/X11R6/lib/X11/config/darwinLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/darwinLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/date.def -unknown- x11 +./usr/X11R6/lib/X11/config/fujitsu.cf -unknown- x11 +./usr/X11R6/lib/X11/config/generic.cf -unknown- x11 +./usr/X11R6/lib/X11/config/gnu.cf -unknown- x11 +./usr/X11R6/lib/X11/config/gnuLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/gnuLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/host.def -unknown- x11 +./usr/X11R6/lib/X11/config/hp.cf -unknown- x11 +./usr/X11R6/lib/X11/config/hpLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/hpLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/ibm.cf -unknown- x11 +./usr/X11R6/lib/X11/config/ibmLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/ibmLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/isc.cf -unknown- x11 +./usr/X11R6/lib/X11/config/linux.cf -unknown- x11 +./usr/X11R6/lib/X11/config/lnxLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/lnxLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/lnxdoc.rules -unknown- x11 +./usr/X11R6/lib/X11/config/lnxdoc.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/luna.cf -unknown- x11 +./usr/X11R6/lib/X11/config/lynx.cf -unknown- x11 +./usr/X11R6/lib/X11/config/macII.cf -unknown- x11 +./usr/X11R6/lib/X11/config/mach.cf -unknown- x11 +./usr/X11R6/lib/X11/config/minix.cf -unknown- x11 +./usr/X11R6/lib/X11/config/moto.cf -unknown- x11 +./usr/X11R6/lib/X11/config/ncr.cf -unknown- x11 +./usr/X11R6/lib/X11/config/nec.cf -unknown- x11 +./usr/X11R6/lib/X11/config/necLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/necLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/noop.rules -unknown- x11 +./usr/X11R6/lib/X11/config/nto.cf -unknown- x11 +./usr/X11R6/lib/X11/config/nto.rules -unknown- x11 +./usr/X11R6/lib/X11/config/oldlib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/os2.cf -unknown- x11 +./usr/X11R6/lib/X11/config/os2.rules -unknown- x11 +./usr/X11R6/lib/X11/config/os2Lib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/os2Lib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/osf1.cf -unknown- x11 +./usr/X11R6/lib/X11/config/osfLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/osfLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/pegasus.cf -unknown- x11 +./usr/X11R6/lib/X11/config/sco.cf -unknown- x11 +./usr/X11R6/lib/X11/config/sco5.cf -unknown- x11 +./usr/X11R6/lib/X11/config/scoLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/sequent.cf -unknown- x11 +./usr/X11R6/lib/X11/config/sgi.cf -unknown- x11 +./usr/X11R6/lib/X11/config/sgiLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/sgiLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/site.def -unknown- x11 +./usr/X11R6/lib/X11/config/sony.cf -unknown- x11 +./usr/X11R6/lib/X11/config/sun.cf -unknown- x11 +./usr/X11R6/lib/X11/config/sunLib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/sunLib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/sv3Lib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/sv3Lib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/sv4Lib.rules -unknown- x11 +./usr/X11R6/lib/X11/config/sv4Lib.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/svr3.cf -unknown- x11 +./usr/X11R6/lib/X11/config/svr4.cf -unknown- x11 +./usr/X11R6/lib/X11/config/ultrix.cf -unknown- x11 +./usr/X11R6/lib/X11/config/usl.cf -unknown- x11 +./usr/X11R6/lib/X11/config/version.def -unknown- x11 +./usr/X11R6/lib/X11/config/x386.cf -unknown- x11 +./usr/X11R6/lib/X11/config/xf86.rules -unknown- x11 +./usr/X11R6/lib/X11/config/xf86.tmpl -unknown- x11 +./usr/X11R6/lib/X11/config/xf86site.def -unknown- x11 +./usr/X11R6/lib/X11/config/xfree86.cf -unknown- x11 +./usr/X11R6/lib/libFS.a -unknown- x11 +./usr/X11R6/lib/libFS_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libFS_p.a -unknown- profile,x11 +./usr/X11R6/lib/libGL.a -unknown- x11 +./usr/X11R6/lib/libGLU.a -unknown- x11 +./usr/X11R6/lib/libGLU_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libGLU_p.a -unknown- profile,x11 +./usr/X11R6/lib/libGL_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libGL_p.a -unknown- profile,x11 +./usr/X11R6/lib/libGLw.a -unknown- x11 +./usr/X11R6/lib/libGLw_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libGLw_p.a -unknown- profile,x11 +./usr/X11R6/lib/libICE.a -unknown- x11 +./usr/X11R6/lib/libICE_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libICE_p.a -unknown- profile,x11 +./usr/X11R6/lib/libOSMesa.a -unknown- x11 +./usr/X11R6/lib/libOSMesa_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libOSMesa_p.a -unknown- profile,x11 +./usr/X11R6/lib/libSM.a -unknown- x11 +./usr/X11R6/lib/libSM_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libSM_p.a -unknown- profile,x11 +./usr/X11R6/lib/libX11.a -unknown- x11 +./usr/X11R6/lib/libX11_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libX11_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXRes.a -unknown- x11 +./usr/X11R6/lib/libXRes_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXRes_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXTrap.a -unknown- x11 +./usr/X11R6/lib/libXTrap_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXTrap_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXau.a -unknown- x11 +./usr/X11R6/lib/libXau_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXau_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXaw.a -unknown- x11 +./usr/X11R6/lib/libXaw_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXaw_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXcursor.a -unknown- x11 +./usr/X11R6/lib/libXcursor_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXcursor_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXdmcp.a -unknown- x11 +./usr/X11R6/lib/libXdmcp_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXdmcp_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXext.a -unknown- x11 +./usr/X11R6/lib/libXext_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXext_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXfont.a -unknown- x11 +./usr/X11R6/lib/libXfont_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXfont_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXfontcache.a -unknown- x11 +./usr/X11R6/lib/libXfontcache_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXfontcache_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXft.a -unknown- x11 +./usr/X11R6/lib/libXft_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXft_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXi.a -unknown- x11 +./usr/X11R6/lib/libXi_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXi_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXinerama.a -unknown- x11 +./usr/X11R6/lib/libXinerama_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXinerama_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXmu.a -unknown- x11 +./usr/X11R6/lib/libXmu_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXmu_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXmuu.a -unknown- x11 +./usr/X11R6/lib/libXmuu_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXmuu_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXp.a -unknown- x11 +./usr/X11R6/lib/libXp_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXp_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXpm.a -unknown- x11 +./usr/X11R6/lib/libXpm_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXpm_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXrandr.a -unknown- x11 +./usr/X11R6/lib/libXrandr_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXrandr_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXrender.a -unknown- x11 +./usr/X11R6/lib/libXrender_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXrender_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXss.a -unknown- x11 +./usr/X11R6/lib/libXss_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXss_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXt.a -unknown- x11 +./usr/X11R6/lib/libXt_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXt_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXtst.a -unknown- x11 +./usr/X11R6/lib/libXtst_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXtst_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXv.a -unknown- x11 +./usr/X11R6/lib/libXvMC.a -unknown- x11 +./usr/X11R6/lib/libXvMC_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXvMC_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXv_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXv_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXxf86dga.a -unknown- x11 +./usr/X11R6/lib/libXxf86dga_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXxf86dga_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXxf86misc.a -unknown- x11 +./usr/X11R6/lib/libXxf86misc_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXxf86misc_p.a -unknown- profile,x11 +./usr/X11R6/lib/libXxf86vm.a -unknown- x11 +./usr/X11R6/lib/libXxf86vm_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libXxf86vm_p.a -unknown- profile,x11 +./usr/X11R6/lib/libdmx.a -unknown- x11 +./usr/X11R6/lib/libdmx_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libdmx_p.a -unknown- profile,x11 +./usr/X11R6/lib/libdps.a -unknown- x11 +./usr/X11R6/lib/libdps_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libdps_p.a -unknown- profile,x11 +./usr/X11R6/lib/libdpstk.a -unknown- x11 +./usr/X11R6/lib/libdpstk_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libdpstk_p.a -unknown- profile,x11 +./usr/X11R6/lib/libexpat.a -obsolete- obsolete +./usr/X11R6/lib/libexpat_g.a -obsolete- obsolete +./usr/X11R6/lib/libexpat_p.a -obsolete- obsolete +./usr/X11R6/lib/libfntstubs.a -unknown- x11 +./usr/X11R6/lib/libfntstubs_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libfntstubs_p.a -unknown- profile,x11 +./usr/X11R6/lib/libfontconfig.a -unknown- x11 +./usr/X11R6/lib/libfontconfig_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libfontconfig_p.a -unknown- profile,x11 +./usr/X11R6/lib/libfontenc.a -unknown- x11 +./usr/X11R6/lib/libfontenc_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libfontenc_p.a -unknown- profile,x11 +./usr/X11R6/lib/libfreetype.a -unknown- x11 +./usr/X11R6/lib/libfreetype_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libfreetype_p.a -unknown- profile,x11 +./usr/X11R6/lib/liblbxutil.a -unknown- x11 +./usr/X11R6/lib/liblbxutil_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/liblbxutil_p.a -unknown- profile,x11 +./usr/X11R6/lib/liboldX.a -unknown- x11 +./usr/X11R6/lib/liboldX_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/liboldX_p.a -unknown- profile,x11 +./usr/X11R6/lib/libpsres.a -unknown- x11 +./usr/X11R6/lib/libpsres_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libpsres_p.a -unknown- profile,x11 +./usr/X11R6/lib/libxkbfile.a -unknown- x11 +./usr/X11R6/lib/libxkbfile_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libxkbfile_p.a -unknown- profile,x11 +./usr/X11R6/lib/libxkbui.a -unknown- x11 +./usr/X11R6/lib/libxkbui_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/libxkbui_p.a -unknown- profile,x11 +./usr/X11R6/lib/pkgconfig/fontconfig.pc -unknown- x11 +./usr/X11R6/lib/pkgconfig/xcursor.pc -unknown- x11 +./usr/X11R6/lib/pkgconfig/xft.pc -unknown- x11 +./usr/X11R6/man/cat1/ccmakedep.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/cleanlinks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gccmakedep.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/imake.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/lndir.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/makedepend.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/makeg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/makestrs.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/mergelib.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/mkdirhier.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/mkhtmlindex.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xmkmf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/AllPlanes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/BitmapBitOrder.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/BitmapPad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/BitmapUnit.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/BlackPixel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/BlackPixelOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/CellsOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ClientWhitePointOfCCC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ConnectionNumber.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DBE.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMX.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXAddBackendInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXAddConsoleInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXAddInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXAddScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXChangeDesktopAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXChangeScreensAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXForceWindowCreation.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXGetDesktopAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXGetInputAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXGetInputCount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXGetScreenAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXGetScreenCount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXGetWindowAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXRemoveInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXRemoveScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DMXSync.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultColormapOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultDepth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultDepthOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultGCOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultRootWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultScreenOfDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultVisual.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DefaultVisualOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayCells.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayHeight.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayHeightMM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayOfCCC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayPlanes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayWidth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DisplayWidthMM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DoesBackingStore.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/DoesSaveUnders.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/EventMaskOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/FontCacheChangeCacheSettings.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/FontCacheGetCacheSettings.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/FontCacheGetCacheStatistics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/FontCacheQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/FontCacheQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/GLwCreateMDrawingArea.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/GLwDrawingArea.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/GLwDrawingAreaMakeCurrent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/GLwDrawingAreaSwapBuffers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/GLwMDrawingArea.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/HeightMMOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/HeightOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ImageByteOrder.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/IsCursorKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/IsFunctionKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/IsKeypadKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/IsMiscFunctionKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/IsModiferKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/IsPFKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/IsPrivateKeypadKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/LastKnownRequestProcessed.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/MaxCmapsOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/MenuPopdown.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/MenuPopup.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/MinCmapsOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/NextRequest.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/PlanesOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ProtocolRevision.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ProtocolVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/QLength.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/RootWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/RootWindowOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ScreenCount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ScreenNumberOfCCC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ScreenOfDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ScreenWhitePointOfCCC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/ServerVendor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/VendorRelease.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/VisualOfCCC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/WhitePixel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/WhitePixelOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/WidthMMOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/WidthOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/X.0 xcomp-obsolete obsolete +./usr/X11R6/man/cat3/XActivateScreenSaver.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAddConnectionWatch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAddHost.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAddHosts.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAddPixel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAddToSaveSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocClassHint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocColorCells.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocColorPlanes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocIconSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocNamedColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocSizeHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocStandardColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllocWMHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllowDeviceEvents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAllowEvents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAnyEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XArc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAutoRepeatOff.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XAutoRepeatOn.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XBaseFontNameListOfFontSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XBell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XButtonEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeActivePointerGrab.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeDeviceControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeDeviceDontPropagateList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeDeviceKeyMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeFeedbackControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeKeyboardControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeKeyboardDevice.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeKeyboardMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangePointerControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangePointerDevice.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeSaveSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChangeWindowAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XChar2b.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCharStruct.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCheckIfEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCheckMaskEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCheckTypedEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCheckTypedWindowEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCheckWindowEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCirculateEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCirculateRequestEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCirculateSubwindows.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCirculateSubwindowsDown.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCirculateSubwindowsUp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XClassHint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XClearArea.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XClearWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XClientMessageEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XClipBox.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCloseDevice.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCloseDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCloseIM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCloseOM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XColormapEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XConfigureEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XConfigureRequestEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XConfigureWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XConsortium.0 xcomp-obsolete obsolete +./usr/X11R6/man/cat3/XContextDependentDrawing.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XContextualDrawing.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XConvertCase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XConvertSelection.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCopyArea.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCopyColormapAndFree.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCopyGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCopyPlane.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateBitmapFromData.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateFontCursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateFontSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateGlyphCursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateIC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateOC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreatePixmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreatePixmapCursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreatePixmapFromBitmapData.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateSimpleWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCreateWindowEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XCrossingEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGA.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAChangePixmapMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGACloseFramebuffer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGACopyArea.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGACopyTransparentArea.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGACreateColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAFillRectangle.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAGetViewportStatus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAInstallColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAKeyEventToXKeyEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAOpenFramebuffer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAQueryModes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGAQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGASelectInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGASetClientVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGASetMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGASetViewport.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDGASync.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDefaultString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDefineCursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDeleteContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDeleteModifiermapEntry.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDeleteProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDestroyIC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDestroyImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDestroyOC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDestroyRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDestroySubwindows.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDestroyWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDestroyWindowEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDeviceBell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDeviceTimeCoord.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDirectionalDependentDrawing.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDisableAccessControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDisplayKeycodes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDisplayMotionBufferSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDisplayName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDisplayOfIM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDisplayOfOM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawArc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawArcs.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawImageString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawImageString16.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawLine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawLines.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawPoint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawPoints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawRectangle.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawRectangles.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawSegments.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawString16.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawText.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XDrawText16.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XEmptyRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XEnableAccessControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XEqualRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XErrorEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XEventsQueued.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XExposeEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XExtendedMaxRequestSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XExtentsOfFontSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XF86DGA.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFetchBuffer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFetchBytes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFetchName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFillArc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFillArcs.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFillPolygon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFillRectangle.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFillRectangles.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFilterEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFindContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFlush.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFocusChangeEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFontProp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFontSetExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFontStruct.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFontsOfFontSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XForceScreenSaver.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFree.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFree86-DGA.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeColors.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeCursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeDeviceList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeFont.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeFontInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeFontNames.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeFontPath.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeFontSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeModifierMap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreePixmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XFreeStringList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGCValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGContextFromGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetAtomName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetAtomNames.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetClassHint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetCommand.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetDeviceButtonMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetDeviceControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetDeviceDontPropagateList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetDeviceFocus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetDeviceKeyMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetDeviceModifierMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetDeviceMotionEvents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetErrorDatabaseText.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetErrorText.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetExtensionVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetFeedbackControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetFontPath.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetFontProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetGCValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetGeometry.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetICValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetIMValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetIconName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetIconSizes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetInputFocus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetKeyboardControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetKeyboardMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetModifierMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetMotionEvents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetOCValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetOMValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetPixel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetPointerControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetPointerMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetRGBColormaps.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetScreenSaver.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetSelectedExtensionEvents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetSelectionOwner.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetSubImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetTextProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetTransientForHint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetVisualInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWMClientMachine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWMColormapWindows.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWMHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWMIconName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWMName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWMNormalHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWMProtocols.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWMSizeHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWindowAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGetWindowProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGrabButton.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGrabDevice.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGrabDeviceButton.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGrabDeviceKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGrabKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGrabKeyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGrabPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGrabServer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGraphicsExposeEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XGravityEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XHostAddress.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XIMOfIC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XIconSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XIconifyWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XIfEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XInitImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XInitThreads.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XInsertModifiermapEntry.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XInstallColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XInternAtom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XInternAtoms.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XInternalConnectionNumbers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XIntersectRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XKeyEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XKeyboardControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XKeycodeToKeysym.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XKeymapEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XKeysymToKeycode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XKeysymToString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XKillClient.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XListDepths.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XListFonts.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XListFontsWithInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XListHosts.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XListInputDevices.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XListInstalledColormaps.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XListPixmapFormats.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XListProperties.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLoadFont.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLoadQueryFont.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLocaleOfFontSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLocaleOfIM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLocaleOfOM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLockDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLookupColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLookupKeysym.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLookupString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XLowerWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMapEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMapRaised.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMapRequestEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMapSubwindows.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMapWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMappingEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMaskEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMatchVisualInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMaxRequestSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XModifierKeymap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMotionEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMoveResizeWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XMoveWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XNewModifiermap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XNextEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XNoExposeEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XNoOp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XOMOfOC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XOffsetRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XOpenDevice.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XOpenDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XOpenIM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XOpenOM.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XParseColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XParseGeometry.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPeekEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPeekIfEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPending.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPixmapFormatValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPoint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPointInRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPolygonRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XProcessInternalConnection.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPropertyEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPutBackEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPutImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XPutPixel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryBestCursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryBestSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryBestStipple.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryBestTile.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryColors.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryDeviceState.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryFont.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryKeymap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryTextExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryTextExtents16.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XQueryTree.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRaiseWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XReadBitmapFile.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XReadBitmapFileData.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRebindKeySym.0 xcomp-obsolete obsolete +./usr/X11R6/man/cat3/XRebindKeysym.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRecolorCursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XReconfigureWMWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRectInRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRectangle.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRefreshKeyboardMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRegisterIMInstantiateCallback.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRemoveConnectionWatch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRemoveFromSaveSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRemoveHost.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRemoveHosts.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XReparentEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XReparentWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResQueryClientPixmapBytes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResQueryClientResources.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResQueryClients.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResetScreenSaver.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResizeRequestEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResizeWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XResourceManagerString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRestackWindows.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRotateBuffers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XRotateWindowProperties.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSaveContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenNumberOfScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenResourceString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverAllocInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverGetRegistered.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverQueryInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverRegister.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverSelectInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverSetAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverUnregister.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XScreenSaverUnsetAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSegment.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSelectExtensionEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSelectInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSelectionClearEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSelectionEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSelectionRequestEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSendEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSendExtensionEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetAccessControl.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetAfterFunction.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetArcMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetBackground.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetClassHint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetClipMask.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetClipOrigin.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetClipRectangles.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetCloseDownMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetCommand.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetDashes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetDeviceButtonMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetDeviceFocus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetDeviceMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetDeviceModifierMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetDeviceValuators.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetErrorHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetFillRule.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetFillStyle.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetFont.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetFontPath.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetForeground.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetFunction.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetGraphicsExposure.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetICFocus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetICValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetIMValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetIOErrorHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetIconName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetIconSizes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetInputFocus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetLineAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetLocaleModifiers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetModifierMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetOCValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetOMValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetPlaneMask.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetPointerMapping.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetRGBColormaps.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetScreenSaver.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetSelectionOwner.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetState.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetStipple.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetSubwindowMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetTSOrigin.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetTextProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetTile.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetTransientForHint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMClientMachine.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMColormapWindows.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMIconName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMNormalHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMProperties.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMProtocols.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWMSizeHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWindowAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWindowBackground.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWindowBackgroundPixmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWindowBorder.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWindowBorderPixmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWindowBorderWidth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSetWindowColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeCombineMask.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeCombineRectangles.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeCombineRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeCombineShape.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeGetRectangles.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeInputSelected.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeOffsetShape.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeQueryExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShapeSelectInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XShrinkRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSizeHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStandardColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStandards.0 xcomp-obsolete obsolete +./usr/X11R6/man/cat3/XStoreBuffer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStoreBytes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStoreColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStoreColors.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStoreName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStoreNamedColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStringListToTextProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XStringToKeysym.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSubImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSubtractRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSupportsLocale.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSync.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XSynchronize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTextExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTextExtents16.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTextItem.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTextItem16.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTextProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTextPropertyToStringList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTextWidth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTextWidth16.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTimeCoord.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XTranslateCoordinates.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUndefineCursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUngrabButton.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUngrabDevice.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUngrabDeviceButton.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUngrabDeviceKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUngrabKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUngrabKeyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUngrabPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUngrabServer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUninstallColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnionRectWithRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnionRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUniqueContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnloadFont.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnlockDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnmapEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnmapSubwindows.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnmapWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnregisterIMInstantiateCallback.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XUnsetICFocus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XVaCreateNestedList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XVisibilityEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XVisualIDFromVisual.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XVisualInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XWMGeometry.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XWMHints.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XWarpPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XWindowAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XWindowChanges.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XWindowEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XWithdrawWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XWriteBitmapFile.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XXorRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xau.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XauDisposeAuth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XauFileName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XauGetAuthByAddr.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XauGetBestAuthByAddr.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XauLockAuth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XauReadAuth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XauUnlockAuth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XauWriteAuth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xaw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsAllocColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsAllocNamedColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCCCOfColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELab.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELabQueryMaxC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELabQueryMaxL.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELabQueryMaxLC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELabQueryMinL.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELuv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELuvQueryMaxC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELuvQueryMaxL.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELuvQueryMaxLC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIELuvQueryMinL.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIEXYZ.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIEuvY.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCIExyY.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsConvertColors.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsCreateCCC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsDefaultCCC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsFreeCCC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsLookupColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsPad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsQueryBlack.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsQueryBlue.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsQueryColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsQueryColors.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsQueryGreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsQueryRed.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsQueryWhite.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsRGB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsRGBi.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsSetCCCOfColormap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsSetWhiteAdjustProc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsSetWhitePoint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsStoreColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsStoreColors.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsTekHVC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsTekHVCQueryMaxC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsTekHVCQueryMaxV.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsTekHVCQueryMaxVC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsTekHVCQueryMaxVSamples.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XcmsTekHVCQueryMinV.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xcursor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeAllocateBackBufferName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeBeginIdiom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeDeallocateBackBufferName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeEndIdiom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeFreeVisualInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeGetBackBufferAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeGetVisualInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XdbeSwapBuffers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XeviGetVisualInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XeviQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XeviQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xfontcache.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xft.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbDrawImageString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbDrawString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbDrawText.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbLookupString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbResetIC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbSetWMProperties.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbTextEscapement.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbTextExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbTextListToTextProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbTextPerCharExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbTextPropertyToTextList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufChangeBufferAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufChangeWindowAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufCreateBuffers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufCreateStereoWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufDestroyBuffers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufDisplayBuffers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufGetBufferAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufGetScreenInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufGetVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufGetWindowAttributes.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XmbufQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xrandr.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmCombineDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmCombineFileDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmDestroyDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmEnumerateDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmGetDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmGetFileDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmGetResource.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmGetStringDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmInitialize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmLocaleOfDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmMergeDatabases.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmOptionDescRec.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmOptionKind.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmParseCommand.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmPermStringToQuark.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmPutFileDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmPutLineResource.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmPutResource.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmPutStringResource.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmQGetResource.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmQGetSearchList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmQGetSearchResource.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmQPutResource.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmQPutStringResource.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmQuarkToString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmSetDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmStringToBindingQuarkList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmStringToQuark.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmStringToQuarkList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmUniqueQuark.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XrmValue.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xsecurity.0 xcomp-obsolete obsolete +./usr/X11R6/man/cat3/Xss.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddActions.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddCallback.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddCallbacks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddConverter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddEventHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddExposureToRegion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddGrab.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddRawEventHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddTimeOut.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAddTimeout.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAllocateGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddActionHook.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddActions.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddBlockHook.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddConverter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddSignal.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddTimeOut.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddTimeout.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppAddWorkProc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppCreateShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppError.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppErrorMsg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppGetErrorDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppGetErrorDatabaseText.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppGetExitFlag.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppGetSelectionTimeout.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppInitialize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppLock.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppMainLoop.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppNextEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppPeekEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppPending.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppProcessEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppReleaseCacheRefs.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppSetErrorHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppSetErrorMsgHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppSetExitFlag.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppSetFallbackResources.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppSetSelectionTimeout.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppSetTypeConverter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppSetWarningHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppSetWarningMsgHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppUnlock.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppWarning.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAppWarningMsg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtAugmentTranslations.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtBuildEventMask.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallAcceptFocus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallActionProc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallCallbackList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallCallbacks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallConverter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallbackExclusive.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallbackNone.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallbackNonexclusive.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCallbackPopdown.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCalloc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCancelSelectionRequest.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtChangeManagedSet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCheckSubclass.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtClass.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCloseDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtConfigureWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtConvert.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtConvertAndStore.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtConvertCase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCreateApplicationContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCreateApplicationShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCreateManagedWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCreatePopupShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCreateSelectionRequest.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCreateWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtCreateWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDestroyApplicationContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDestroyWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDirectConvert.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDisownSelection.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDispatchEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDispatchEventToWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDisplayInitialize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDisplayOfObject.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDisplayStringConversionWarning.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtDisplayToApplicationContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtError.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtErrorMsg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtFindFile.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtFree.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetActionKeysym.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetActionList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetApplicationNameAndClass.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetApplicationResources.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetClassExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetConstraintResourceList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetDisplays.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetErrorDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetErrorDatabaseText.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetKeyboardFocusWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetKeysymTable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetMultiClickTime.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetResourceList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSelectionParameters.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSelectionRequest.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSelectionTimeout.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSelectionValue.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSelectionValueIncremental.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSelectionValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSelectionValuesIncremental.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSubresources.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetSubvalues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGetValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGrabButton.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGrabKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGrabKeyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtGrabPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtHasCallbacks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtHooksOfDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtInitialize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtInitializeWidgetClass.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtInsertEventHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtInsertEventTypeHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtInsertRawEventHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtInstallAccelerators.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtInstallAllAccelerators.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsApplicationShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsComposite.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsConstraint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsManaged.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsObject.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsOverrideShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsRealized.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsRectObj.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsSensitive.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsSessionShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsSubclass.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsTopLevelShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsTransientShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsVendorShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsWMShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtIsWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtKeysymToKeycodeList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtLastEventProcessed.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtLastTimestampProcessed.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtMainLoop.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtMakeGeometryRequest.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtMakeResizeRequest.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtMalloc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtManageChild.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtManageChildren.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtMapWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtMergeArgLists.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtMoveWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtNameToWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtNew.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtNewString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtNextEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtNoticeSignal.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtNumber.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtOffset.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtOffsetOf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtOpenApplication.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtOpenDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtOverrideTranslations.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtOwnSelection.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtOwnSelectionIncremental.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtParent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtParseAcceleratorTable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtParseTranslationTable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtPeekEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtPending.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtPopdown.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtPopup.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtPopupSpringLoaded.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtProcessEvent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtProcessLock.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtProcessUnlock.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtQueryGeometry.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRealizeWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRealloc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRegisterCaseConverter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRegisterDrawable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRegisterExtensionSelector.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRegisterGrabAction.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtReleaseGC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtReleasePropertyAtom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveActionHook.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveAllCallbacks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveBlockHook.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveCallback.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveCallbacks.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveEventHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveEventTypeHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveGrab.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveInput.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveRawEventHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveSignal.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveTimeOut.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtRemoveWorkProc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtReservePropertyAtom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtResizeWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtResolvePathname.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtScreen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtScreenDatabase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtScreenOfObject.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSendSelectionRequest.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSessionGetToken.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSessionReturnToken.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetArg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetErrorHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetErrorMsgHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetEventDispatcher.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetKeyTranslator.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetKeyboardFocus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetLanguageProc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetMappedWhenManaged.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetMultiClickTime.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetSelectionParameters.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetSelectionTimeout.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetSensitive.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetSubvalues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetTypeConverter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetWMColormapWindows.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetWarningHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSetWarningMsgHandler.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtStringConversionWarning.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtSuperclass.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtToolkitInitialize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtToolkitThreadInitialize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtTranslateCoords.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtTranslateKeycode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUngrabButton.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUngrabKey.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUngrabKeyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUngrabPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUninstallTranslations.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUnmanageChild.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUnmanageChildren.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUnmapWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUnrealizeWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtUnregisterDrawable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaAppCreateShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaAppInitialize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaCreateArgsList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaCreateManagedWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaCreatePopupShell.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaCreateWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaGetApplicationResources.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaGetSubresources.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaGetSubvalues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaGetValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaOpenApplication.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaSetSubvalues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtVaSetValues.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtWarning.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtWarningMsg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtWidgetToApplicationContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtWindow.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtWindowOfObject.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XtWindowToWidget.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8DrawImageString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8DrawString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8DrawText.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8LookupString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8ResetIC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8SetWMProperties.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8TextEscapement.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8TextExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8TextListToTextProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8TextPerCharExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xutf8TextPropertyToTextList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/Xv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvFreeAdaptorInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvFreeEncodingInfo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvGetPortAttribute.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvGetStill.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvGetVideo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvGrabPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvPortNotify.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvPutStill.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvPutVideo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvQueryAdaptors.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvQueryBestSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvQueryEncodings.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvSelectPortNotify.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvSelectVideoNotify.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvSetPortAttribute.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvStopVideo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvUngrabPort.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XvVideoNotify.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcDrawImageString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcDrawString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcDrawText.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcFreeStringList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcLookupString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcResetIC.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcTextEscapement.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcTextExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcTextListToTextProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcTextPerCharExtents.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/XwcTextPropertyToTextList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/fontconfig.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glAccum.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glActiveTextureARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glAlphaFunc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glAreTexturesResident.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glArrayElement.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glBegin.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glBindTexture.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glBitmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glBlendColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glBlendEquation.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glBlendFunc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCallList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCallLists.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glClear.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glClearAccum.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glClearColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glClearDepth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glClearIndex.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glClearStencil.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glClientActiveTextureARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glClipPlane.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3b.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3bv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3ub.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3ubv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3ui.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3uiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3us.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor3usv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4b.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4bv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4ub.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4ubv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4ui.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4uiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4us.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColor4usv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColorMask.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColorMaterial.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColorPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColorSubTable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColorTable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColorTableParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColorTableParameterfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glColorTableParameteriv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glConvolutionFilter1D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glConvolutionFilter2D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glConvolutionParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyColorSubTable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyColorTable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyConvolutionFilter1D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyConvolutionFilter2D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyPixels.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyTexImage1D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyTexImage2D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyTexSubImage1D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyTexSubImage2D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCopyTexSubImage3D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glCullFace.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDeleteLists.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDeleteTextures.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDepthFunc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDepthMask.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDepthRange.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDisable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDisableClientState.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDrawArrays.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDrawBuffer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDrawElements.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDrawPixels.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glDrawRangeElements.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEdgeFlag.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEdgeFlagPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEdgeFlagv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEnable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEnableClientState.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEnd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEndList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalCoord.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalCoord1d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalCoord1dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalCoord1fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalCoord2d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalCoord2dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalCoord2f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalCoord2fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalMesh.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalMesh1.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalMesh2.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalPoint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalPoint1.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glEvalPoint2.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFeedbackBuffer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFinish.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFlush.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFog.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFogf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFogfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFogi.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFogiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFrontFace.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glFrustum.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGenLists.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGenTextures.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetBooleanv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetClipPlane.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetColorTable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetColorTableParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetColorTableParameterfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetColorTableParameteriv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetConvolutionFilter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetConvolutionParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetDoublev.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetError.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetFloatv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetHistogram.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetHistogramParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetIntegerv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetLight.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetLightfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetLightiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMapdv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMapfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMapiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMaterial.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMaterialfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMaterialiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMinmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetMinmaxParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetPixelMap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetPixelMapfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetPixelMapuiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetPixelMapusv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetPointerv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetPolygonStipple.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetSeparableFilter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexEnv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexEnvfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexEnviv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexGen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexGendv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexGenfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexGeniv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexLevelParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexLevelParameterfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexLevelParameteriv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexParameterfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glGetTexParameteriv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glHint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glHistogram.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndex.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexMask.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexdv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexi.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexs.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexsv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexub.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIndexubv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glInitNames.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glInterleavedArrays.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIsEnabled.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIsTexture.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glIslist.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLight.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLightModel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLightModelf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLightModelfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLightModeli.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLightModeliv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLightf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLightfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLighti.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLightiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLineStipple.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLineWidth.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glListBase.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLoadIdentity.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLoadMatrix.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLoadMatrixd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLoadMatrixf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLoadName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glLogicOp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMap1.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMap1d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMap1f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMap2.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMap2d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMap2f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMapGrid.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMapGrid1d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMapGrid1f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMapGrid2d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMapGrid2f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMaterial.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMaterialf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMaterialfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMateriali.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMaterialiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMatrixMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMinmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultMatrix.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultMatrixd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultMatrixf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord1dARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord1dvARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord1fARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord1fvARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord1iARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord1ivARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord1sARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord1svARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord2dARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord2dvARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord2fARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord2fvARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord2iARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord2ivARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord2sARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord2svARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord3dARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord3dvARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord3fARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord3fvARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord3iARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord3ivARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord3sARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord3svARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord4dARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord4dvARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord4fARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord4fvARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord4iARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord4ivARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord4sARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoord4svARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glMultiTexCoordARB.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNewList.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3b.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3bv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormal3sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glNormalPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glOrtho.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPassThrough.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelMap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelMapfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelMapuiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelMapusv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelStore.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelStoref.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelStorei.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelTransfer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelTransferf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelTransferi.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPixelZoom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPointSize.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPolygonMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPolygonOffset.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPolygonStipple.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPopAttrib.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPopClientAttrib.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPopMatrix.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPopName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPrioritizeTextures.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPushAttrib.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPushClientAttrib.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPushMatrix.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glPushName.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos2d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos2dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos2f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos2fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos2i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos2iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos2s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos2sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos3d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos3dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos3f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos3fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos3i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos3iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos3s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos3sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos4d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos4dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos4f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos4fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos4i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos4iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos4s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRasterPos4sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glReadBuffer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glReadPixels.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRect.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRectd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRectdv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRectf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRectfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRecti.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRectiv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRects.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRectsv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRenderMode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glResetHistogram.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glResetMinmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRotate.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRotated.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glRotatef.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glScale.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glScaled.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glScalef.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glScissor.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glSelectBuffer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glSeparableFilter2D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glShadeModel.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glStencilFunc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glStencilMask.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glStencilOp.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord1d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord1dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord1f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord1fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord1i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord1iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord1s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord1sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord2d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord2dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord2f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord2fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord2i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord2iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord2s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord2sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord3d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord3dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord3f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord3fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord3i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord3iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord3s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord3sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord4d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord4dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord4f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord4fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord4i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord4iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord4s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoord4sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexCoordPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexEnv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexEnvf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexEnvfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexEnvi.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexEnviv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexGen.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexGend.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexGendv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexGenf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexGenfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexGeni.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexGeniv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexImage1D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexImage2D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexImage3D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexParameter.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexParameterf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexParameterfv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexParameteri.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexParameteriv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexSubImage1D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexSubImage2D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTexSubImage3D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTranslate.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTranslated.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glTranslatef.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex2d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex2dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex2f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex2fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex2i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex2iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex2s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex2sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex3d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex3dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex3f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex3fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex3i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex3iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex3s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex3sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex4d.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex4dv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex4f.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex4fv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex4i.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex4iv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex4s.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertex4sv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glVertexPointer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glViewport.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXChooseVisual.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXCopyContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXCreateContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXCreateGLXPixmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXDestroyContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXDestroyGLXPixmap.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXFreeContextEXT.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXGetClientString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXGetConfig.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXGetContextIDEXT.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXGetCurrentContext.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXGetCurrentDisplay.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXGetCurrentDrawable.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXImportContextEXT.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXIntro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXIsDirect.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXMakeCurrent.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXQueryContextInfoEXT.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXQueryExtension.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXQueryExtensionsString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXQueryServerString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXQueryVersion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXSwapBuffers.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXUseXFont.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXWaitGL.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/glXWaitX.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluBeginCurve.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluBeginPolygon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluBeginSurface.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluBeginTrim.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluBuild1DMipmaps.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluBuild2DMipmaps.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluCylinder.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluDeleteNurbsRenderer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluDeleteQuadric.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluDeleteTess.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluDisk.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluEndCurve.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluEndPolygon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluEndSurface.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluEndTrim.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluErrorString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluGetNurbsProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluGetString.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluGetTessProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluLoadSamplingMatrices.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluLookAt.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNewNurbsRenderer.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNewQuadric.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNewTess.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNextContour.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNurbsCallback.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNurbsCallbackDataEXT.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNurbsCurve.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNurbsProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluNurbsSurface.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluOrtho2D.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluPartialDisk.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluPerspective.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluPickMatrix.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluProject.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluPwlCurve.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluQuadricCallback.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluQuadricDrawStyle.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluQuadricNormals.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluQuadricOrientation.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluQuadricTexture.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluScaleImage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluSphere.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluTessBeginContour.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluTessBeginPolygon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluTessCallback.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluTessEndContour.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluTessEndPolygon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluTessNormal.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluTessProperty.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluTessVertex.0 -unknown- .cat,x11 +./usr/X11R6/man/cat3/gluUnProject.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/ccmakedep.html -unknown- html,x11 +./usr/X11R6/man/html1/cleanlinks.html -unknown- html,x11 +./usr/X11R6/man/html1/gccmakedep.html -unknown- html,x11 +./usr/X11R6/man/html1/imake.html -unknown- html,x11 +./usr/X11R6/man/html1/lndir.html -unknown- html,x11 +./usr/X11R6/man/html1/makedepend.html -unknown- html,x11 +./usr/X11R6/man/html1/makeg.html -unknown- html,x11 +./usr/X11R6/man/html1/makestrs.html -unknown- html,x11 +./usr/X11R6/man/html1/mergelib.html -unknown- html,x11 +./usr/X11R6/man/html1/mkdirhier.html -unknown- html,x11 +./usr/X11R6/man/html1/mkhtmlindex.html -unknown- html,x11 +./usr/X11R6/man/html1/xmkmf.html -unknown- html,x11 +./usr/X11R6/man/html3/AllPlanes.html -unknown- html,x11 +./usr/X11R6/man/html3/BitmapBitOrder.html -unknown- html,x11 +./usr/X11R6/man/html3/BitmapPad.html -unknown- html,x11 +./usr/X11R6/man/html3/BitmapUnit.html -unknown- html,x11 +./usr/X11R6/man/html3/BlackPixel.html -unknown- html,x11 +./usr/X11R6/man/html3/BlackPixelOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/CellsOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/ClientWhitePointOfCCC.html -unknown- html,x11 +./usr/X11R6/man/html3/ConnectionNumber.html -unknown- html,x11 +./usr/X11R6/man/html3/DBE.html -unknown- html,x11 +./usr/X11R6/man/html3/DMX.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXAddBackendInput.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXAddConsoleInput.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXAddInput.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXAddScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXChangeDesktopAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXChangeScreensAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXForceWindowCreation.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXGetDesktopAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXGetInputAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXGetInputCount.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXGetScreenAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXGetScreenCount.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXGetWindowAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXRemoveInput.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXRemoveScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/DMXSync.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultColormapOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultDepth.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultDepthOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultGC.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultGCOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultRootWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultScreenOfDisplay.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultVisual.html -unknown- html,x11 +./usr/X11R6/man/html3/DefaultVisualOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayCells.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayHeight.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayHeightMM.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayOfCCC.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayPlanes.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayString.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayWidth.html -unknown- html,x11 +./usr/X11R6/man/html3/DisplayWidthMM.html -unknown- html,x11 +./usr/X11R6/man/html3/DoesBackingStore.html -unknown- html,x11 +./usr/X11R6/man/html3/DoesSaveUnders.html -unknown- html,x11 +./usr/X11R6/man/html3/EventMaskOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/FontCacheChangeCacheSettings.html -unknown- html,x11 +./usr/X11R6/man/html3/FontCacheGetCacheSettings.html -unknown- html,x11 +./usr/X11R6/man/html3/FontCacheGetCacheStatistics.html -unknown- html,x11 +./usr/X11R6/man/html3/FontCacheQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/FontCacheQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/GLwCreateMDrawingArea.html -unknown- html,x11 +./usr/X11R6/man/html3/GLwDrawingArea.html -unknown- html,x11 +./usr/X11R6/man/html3/GLwDrawingAreaMakeCurrent.html -unknown- html,x11 +./usr/X11R6/man/html3/GLwDrawingAreaSwapBuffers.html -unknown- html,x11 +./usr/X11R6/man/html3/GLwMDrawingArea.html -unknown- html,x11 +./usr/X11R6/man/html3/HeightMMOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/HeightOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/ImageByteOrder.html -unknown- html,x11 +./usr/X11R6/man/html3/IsCursorKey.html -unknown- html,x11 +./usr/X11R6/man/html3/IsFunctionKey.html -unknown- html,x11 +./usr/X11R6/man/html3/IsKeypadKey.html -unknown- html,x11 +./usr/X11R6/man/html3/IsMiscFunctionKey.html -unknown- html,x11 +./usr/X11R6/man/html3/IsModiferKey.html -unknown- html,x11 +./usr/X11R6/man/html3/IsPFKey.html -unknown- html,x11 +./usr/X11R6/man/html3/IsPrivateKeypadKey.html -unknown- html,x11 +./usr/X11R6/man/html3/LastKnownRequestProcessed.html -unknown- html,x11 +./usr/X11R6/man/html3/MaxCmapsOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/MinCmapsOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/NextRequest.html -unknown- html,x11 +./usr/X11R6/man/html3/PlanesOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/ProtocolRevision.html -unknown- html,x11 +./usr/X11R6/man/html3/ProtocolVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/QLength.html -unknown- html,x11 +./usr/X11R6/man/html3/RootWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/RootWindowOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/ScreenCount.html -unknown- html,x11 +./usr/X11R6/man/html3/ScreenNumberOfCCC.html -unknown- html,x11 +./usr/X11R6/man/html3/ScreenOfDisplay.html -unknown- html,x11 +./usr/X11R6/man/html3/ScreenWhitePointOfCCC.html -unknown- html,x11 +./usr/X11R6/man/html3/ServerVendor.html -unknown- html,x11 +./usr/X11R6/man/html3/VendorRelease.html -unknown- html,x11 +./usr/X11R6/man/html3/VisualOfCCC.html -unknown- html,x11 +./usr/X11R6/man/html3/WhitePixel.html -unknown- html,x11 +./usr/X11R6/man/html3/WhitePixelOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/WidthMMOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/WidthOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/XActivateScreenSaver.html -unknown- html,x11 +./usr/X11R6/man/html3/XAddConnectionWatch.html -unknown- html,x11 +./usr/X11R6/man/html3/XAddHost.html -unknown- html,x11 +./usr/X11R6/man/html3/XAddHosts.html -unknown- html,x11 +./usr/X11R6/man/html3/XAddPixel.html -unknown- html,x11 +./usr/X11R6/man/html3/XAddToSaveSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocClassHint.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocColorCells.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocColorPlanes.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocIconSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocNamedColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocSizeHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocStandardColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllocWMHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllowDeviceEvents.html -unknown- html,x11 +./usr/X11R6/man/html3/XAllowEvents.html -unknown- html,x11 +./usr/X11R6/man/html3/XAnyEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XArc.html -unknown- html,x11 +./usr/X11R6/man/html3/XAutoRepeatOff.html -unknown- html,x11 +./usr/X11R6/man/html3/XAutoRepeatOn.html -unknown- html,x11 +./usr/X11R6/man/html3/XBaseFontNameListOfFontSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XBell.html -unknown- html,x11 +./usr/X11R6/man/html3/XButtonEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeActivePointerGrab.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeDeviceControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeDeviceDontPropagateList.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeDeviceKeyMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeFeedbackControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeGC.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeKeyboardControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeKeyboardDevice.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeKeyboardMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangePointerControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangePointerDevice.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeSaveSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XChangeWindowAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XChar2b.html -unknown- html,x11 +./usr/X11R6/man/html3/XCharStruct.html -unknown- html,x11 +./usr/X11R6/man/html3/XCheckIfEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XCheckMaskEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XCheckTypedEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XCheckTypedWindowEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XCheckWindowEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XCirculateEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XCirculateRequestEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XCirculateSubwindows.html -unknown- html,x11 +./usr/X11R6/man/html3/XCirculateSubwindowsDown.html -unknown- html,x11 +./usr/X11R6/man/html3/XCirculateSubwindowsUp.html -unknown- html,x11 +./usr/X11R6/man/html3/XClassHint.html -unknown- html,x11 +./usr/X11R6/man/html3/XClearArea.html -unknown- html,x11 +./usr/X11R6/man/html3/XClearWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XClientMessageEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XClipBox.html -unknown- html,x11 +./usr/X11R6/man/html3/XCloseDevice.html -unknown- html,x11 +./usr/X11R6/man/html3/XCloseDisplay.html -unknown- html,x11 +./usr/X11R6/man/html3/XCloseIM.html -unknown- html,x11 +./usr/X11R6/man/html3/XCloseOM.html -unknown- html,x11 +./usr/X11R6/man/html3/XColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XColormapEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XConfigureEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XConfigureRequestEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XConfigureWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XContextDependentDrawing.html -unknown- html,x11 +./usr/X11R6/man/html3/XContextualDrawing.html -unknown- html,x11 +./usr/X11R6/man/html3/XConvertCase.html -unknown- html,x11 +./usr/X11R6/man/html3/XConvertSelection.html -unknown- html,x11 +./usr/X11R6/man/html3/XCopyArea.html -unknown- html,x11 +./usr/X11R6/man/html3/XCopyColormapAndFree.html -unknown- html,x11 +./usr/X11R6/man/html3/XCopyGC.html -unknown- html,x11 +./usr/X11R6/man/html3/XCopyPlane.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateBitmapFromData.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateFontCursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateFontSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateGC.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateGlyphCursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateIC.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateImage.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateOC.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreatePixmap.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreatePixmapCursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreatePixmapFromBitmapData.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateSimpleWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XCreateWindowEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XCrossingEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGA.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAChangePixmapMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGACloseFramebuffer.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGACopyArea.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGACopyTransparentArea.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGACreateColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAFillRectangle.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAGetViewportStatus.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAInstallColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAKeyEventToXKeyEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAOpenFramebuffer.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAQueryModes.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGAQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGASelectInput.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGASetClientVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGASetMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGASetViewport.html -unknown- html,x11 +./usr/X11R6/man/html3/XDGASync.html -unknown- html,x11 +./usr/X11R6/man/html3/XDefaultString.html -unknown- html,x11 +./usr/X11R6/man/html3/XDefineCursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XDeleteContext.html -unknown- html,x11 +./usr/X11R6/man/html3/XDeleteModifiermapEntry.html -unknown- html,x11 +./usr/X11R6/man/html3/XDeleteProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XDestroyIC.html -unknown- html,x11 +./usr/X11R6/man/html3/XDestroyImage.html -unknown- html,x11 +./usr/X11R6/man/html3/XDestroyOC.html -unknown- html,x11 +./usr/X11R6/man/html3/XDestroyRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XDestroySubwindows.html -unknown- html,x11 +./usr/X11R6/man/html3/XDestroyWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XDestroyWindowEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XDeviceBell.html -unknown- html,x11 +./usr/X11R6/man/html3/XDeviceTimeCoord.html -unknown- html,x11 +./usr/X11R6/man/html3/XDirectionalDependentDrawing.html -unknown- html,x11 +./usr/X11R6/man/html3/XDisableAccessControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XDisplayKeycodes.html -unknown- html,x11 +./usr/X11R6/man/html3/XDisplayMotionBufferSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XDisplayName.html -unknown- html,x11 +./usr/X11R6/man/html3/XDisplayOfIM.html -unknown- html,x11 +./usr/X11R6/man/html3/XDisplayOfOM.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawArc.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawArcs.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawImageString.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawImageString16.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawLine.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawLines.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawPoint.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawPoints.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawRectangle.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawRectangles.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawSegments.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawString.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawString16.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawText.html -unknown- html,x11 +./usr/X11R6/man/html3/XDrawText16.html -unknown- html,x11 +./usr/X11R6/man/html3/XEmptyRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XEnableAccessControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XEqualRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XErrorEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XEventsQueued.html -unknown- html,x11 +./usr/X11R6/man/html3/XExposeEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XExtendedMaxRequestSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XExtentsOfFontSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XF86DGA.html -unknown- html,x11 +./usr/X11R6/man/html3/XFetchBuffer.html -unknown- html,x11 +./usr/X11R6/man/html3/XFetchBytes.html -unknown- html,x11 +./usr/X11R6/man/html3/XFetchName.html -unknown- html,x11 +./usr/X11R6/man/html3/XFillArc.html -unknown- html,x11 +./usr/X11R6/man/html3/XFillArcs.html -unknown- html,x11 +./usr/X11R6/man/html3/XFillPolygon.html -unknown- html,x11 +./usr/X11R6/man/html3/XFillRectangle.html -unknown- html,x11 +./usr/X11R6/man/html3/XFillRectangles.html -unknown- html,x11 +./usr/X11R6/man/html3/XFilterEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XFindContext.html -unknown- html,x11 +./usr/X11R6/man/html3/XFlush.html -unknown- html,x11 +./usr/X11R6/man/html3/XFocusChangeEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XFontProp.html -unknown- html,x11 +./usr/X11R6/man/html3/XFontSetExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/XFontStruct.html -unknown- html,x11 +./usr/X11R6/man/html3/XFontsOfFontSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XForceScreenSaver.html -unknown- html,x11 +./usr/X11R6/man/html3/XFree.html -unknown- html,x11 +./usr/X11R6/man/html3/XFree86-DGA.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeColors.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeCursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeDeviceList.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeFont.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeFontInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeFontNames.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeFontPath.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeFontSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeGC.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeModifierMap.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreePixmap.html -unknown- html,x11 +./usr/X11R6/man/html3/XFreeStringList.html -unknown- html,x11 +./usr/X11R6/man/html3/XGCValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XGContextFromGC.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetAtomName.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetAtomNames.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetClassHint.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetCommand.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetDeviceButtonMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetDeviceControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetDeviceDontPropagateList.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetDeviceFocus.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetDeviceKeyMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetDeviceModifierMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetDeviceMotionEvents.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetErrorDatabaseText.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetErrorText.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetExtensionVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetFeedbackControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetFontPath.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetFontProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetGCValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetGeometry.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetICValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetIMValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetIconName.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetIconSizes.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetImage.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetInputFocus.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetKeyboardControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetKeyboardMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetModifierMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetMotionEvents.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetOCValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetOMValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetPixel.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetPointerControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetPointerMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetRGBColormaps.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetScreenSaver.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetSelectedExtensionEvents.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetSelectionOwner.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetSubImage.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetTextProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetTransientForHint.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetVisualInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWMClientMachine.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWMColormapWindows.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWMHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWMIconName.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWMName.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWMNormalHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWMProtocols.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWMSizeHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWindowAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XGetWindowProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XGrabButton.html -unknown- html,x11 +./usr/X11R6/man/html3/XGrabDevice.html -unknown- html,x11 +./usr/X11R6/man/html3/XGrabDeviceButton.html -unknown- html,x11 +./usr/X11R6/man/html3/XGrabDeviceKey.html -unknown- html,x11 +./usr/X11R6/man/html3/XGrabKey.html -unknown- html,x11 +./usr/X11R6/man/html3/XGrabKeyboard.html -unknown- html,x11 +./usr/X11R6/man/html3/XGrabPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/XGrabServer.html -unknown- html,x11 +./usr/X11R6/man/html3/XGraphicsExposeEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XGravityEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XHostAddress.html -unknown- html,x11 +./usr/X11R6/man/html3/XIMOfIC.html -unknown- html,x11 +./usr/X11R6/man/html3/XIconSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XIconifyWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XIfEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XInitImage.html -unknown- html,x11 +./usr/X11R6/man/html3/XInitThreads.html -unknown- html,x11 +./usr/X11R6/man/html3/XInsertModifiermapEntry.html -unknown- html,x11 +./usr/X11R6/man/html3/XInstallColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XInternAtom.html -unknown- html,x11 +./usr/X11R6/man/html3/XInternAtoms.html -unknown- html,x11 +./usr/X11R6/man/html3/XInternalConnectionNumbers.html -unknown- html,x11 +./usr/X11R6/man/html3/XIntersectRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XKeyEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XKeyboardControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XKeycodeToKeysym.html -unknown- html,x11 +./usr/X11R6/man/html3/XKeymapEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XKeysymToKeycode.html -unknown- html,x11 +./usr/X11R6/man/html3/XKeysymToString.html -unknown- html,x11 +./usr/X11R6/man/html3/XKillClient.html -unknown- html,x11 +./usr/X11R6/man/html3/XListDepths.html -unknown- html,x11 +./usr/X11R6/man/html3/XListFonts.html -unknown- html,x11 +./usr/X11R6/man/html3/XListFontsWithInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XListHosts.html -unknown- html,x11 +./usr/X11R6/man/html3/XListInputDevices.html -unknown- html,x11 +./usr/X11R6/man/html3/XListInstalledColormaps.html -unknown- html,x11 +./usr/X11R6/man/html3/XListPixmapFormats.html -unknown- html,x11 +./usr/X11R6/man/html3/XListProperties.html -unknown- html,x11 +./usr/X11R6/man/html3/XLoadFont.html -unknown- html,x11 +./usr/X11R6/man/html3/XLoadQueryFont.html -unknown- html,x11 +./usr/X11R6/man/html3/XLocaleOfFontSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XLocaleOfIM.html -unknown- html,x11 +./usr/X11R6/man/html3/XLocaleOfOM.html -unknown- html,x11 +./usr/X11R6/man/html3/XLockDisplay.html -unknown- html,x11 +./usr/X11R6/man/html3/XLookupColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XLookupKeysym.html -unknown- html,x11 +./usr/X11R6/man/html3/XLookupString.html -unknown- html,x11 +./usr/X11R6/man/html3/XLowerWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XMapEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XMapRaised.html -unknown- html,x11 +./usr/X11R6/man/html3/XMapRequestEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XMapSubwindows.html -unknown- html,x11 +./usr/X11R6/man/html3/XMapWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XMappingEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XMaskEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XMatchVisualInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XMaxRequestSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XModifierKeymap.html -unknown- html,x11 +./usr/X11R6/man/html3/XMotionEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XMoveResizeWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XMoveWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XNewModifiermap.html -unknown- html,x11 +./usr/X11R6/man/html3/XNextEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XNoExposeEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XNoOp.html -unknown- html,x11 +./usr/X11R6/man/html3/XOMOfOC.html -unknown- html,x11 +./usr/X11R6/man/html3/XOffsetRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XOpenDevice.html -unknown- html,x11 +./usr/X11R6/man/html3/XOpenDisplay.html -unknown- html,x11 +./usr/X11R6/man/html3/XOpenIM.html -unknown- html,x11 +./usr/X11R6/man/html3/XOpenOM.html -unknown- html,x11 +./usr/X11R6/man/html3/XParseColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XParseGeometry.html -unknown- html,x11 +./usr/X11R6/man/html3/XPeekEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XPeekIfEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XPending.html -unknown- html,x11 +./usr/X11R6/man/html3/XPixmapFormatValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XPoint.html -unknown- html,x11 +./usr/X11R6/man/html3/XPointInRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XPolygonRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XProcessInternalConnection.html -unknown- html,x11 +./usr/X11R6/man/html3/XPropertyEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XPutBackEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XPutImage.html -unknown- html,x11 +./usr/X11R6/man/html3/XPutPixel.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryBestCursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryBestSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryBestStipple.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryBestTile.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryColors.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryDeviceState.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryFont.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryKeymap.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryTextExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryTextExtents16.html -unknown- html,x11 +./usr/X11R6/man/html3/XQueryTree.html -unknown- html,x11 +./usr/X11R6/man/html3/XRaiseWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XReadBitmapFile.html -unknown- html,x11 +./usr/X11R6/man/html3/XReadBitmapFileData.html -unknown- html,x11 +./usr/X11R6/man/html3/XRebindKeysym.html -unknown- html,x11 +./usr/X11R6/man/html3/XRecolorCursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XReconfigureWMWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XRectInRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XRectangle.html -unknown- html,x11 +./usr/X11R6/man/html3/XRefreshKeyboardMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XRegisterIMInstantiateCallback.html -unknown- html,x11 +./usr/X11R6/man/html3/XRemoveConnectionWatch.html -unknown- html,x11 +./usr/X11R6/man/html3/XRemoveFromSaveSet.html -unknown- html,x11 +./usr/X11R6/man/html3/XRemoveHost.html -unknown- html,x11 +./usr/X11R6/man/html3/XRemoveHosts.html -unknown- html,x11 +./usr/X11R6/man/html3/XReparentEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XReparentWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XRes.html -unknown- html,x11 +./usr/X11R6/man/html3/XResQueryClientPixmapBytes.html -unknown- html,x11 +./usr/X11R6/man/html3/XResQueryClientResources.html -unknown- html,x11 +./usr/X11R6/man/html3/XResQueryClients.html -unknown- html,x11 +./usr/X11R6/man/html3/XResQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XResQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XResetScreenSaver.html -unknown- html,x11 +./usr/X11R6/man/html3/XResizeRequestEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XResizeWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XResourceManagerString.html -unknown- html,x11 +./usr/X11R6/man/html3/XRestackWindows.html -unknown- html,x11 +./usr/X11R6/man/html3/XRotateBuffers.html -unknown- html,x11 +./usr/X11R6/man/html3/XRotateWindowProperties.html -unknown- html,x11 +./usr/X11R6/man/html3/XSaveContext.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenNumberOfScreen.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenResourceString.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverAllocInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverGetRegistered.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverQueryInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverRegister.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverSelectInput.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverSetAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverUnregister.html -unknown- html,x11 +./usr/X11R6/man/html3/XScreenSaverUnsetAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XSegment.html -unknown- html,x11 +./usr/X11R6/man/html3/XSelectExtensionEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XSelectInput.html -unknown- html,x11 +./usr/X11R6/man/html3/XSelectionClearEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XSelectionEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XSelectionRequestEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XSendEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XSendExtensionEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetAccessControl.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetAfterFunction.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetArcMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetBackground.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetClassHint.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetClipMask.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetClipOrigin.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetClipRectangles.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetCloseDownMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetCommand.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetDashes.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetDeviceButtonMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetDeviceFocus.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetDeviceMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetDeviceModifierMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetDeviceValuators.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetErrorHandler.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetFillRule.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetFillStyle.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetFont.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetFontPath.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetForeground.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetFunction.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetGraphicsExposure.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetICFocus.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetICValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetIMValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetIOErrorHandler.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetIconName.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetIconSizes.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetInputFocus.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetLineAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetLocaleModifiers.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetModifierMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetOCValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetOMValues.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetPlaneMask.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetPointerMapping.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetRGBColormaps.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetScreenSaver.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetSelectionOwner.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetState.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetStipple.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetSubwindowMode.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetTSOrigin.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetTextProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetTile.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetTransientForHint.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMClientMachine.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMColormapWindows.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMIconName.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMName.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMNormalHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMProperties.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMProtocols.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWMSizeHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWindowAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWindowBackground.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWindowBackgroundPixmap.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWindowBorder.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWindowBorderPixmap.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWindowBorderWidth.html -unknown- html,x11 +./usr/X11R6/man/html3/XSetWindowColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeCombineMask.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeCombineRectangles.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeCombineRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeCombineShape.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeGetRectangles.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeInputSelected.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeOffsetShape.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeQueryExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XShapeSelectInput.html -unknown- html,x11 +./usr/X11R6/man/html3/XShrinkRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XSizeHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XStandardColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XStoreBuffer.html -unknown- html,x11 +./usr/X11R6/man/html3/XStoreBytes.html -unknown- html,x11 +./usr/X11R6/man/html3/XStoreColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XStoreColors.html -unknown- html,x11 +./usr/X11R6/man/html3/XStoreName.html -unknown- html,x11 +./usr/X11R6/man/html3/XStoreNamedColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XStringListToTextProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XStringToKeysym.html -unknown- html,x11 +./usr/X11R6/man/html3/XSubImage.html -unknown- html,x11 +./usr/X11R6/man/html3/XSubtractRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XSupportsLocale.html -unknown- html,x11 +./usr/X11R6/man/html3/XSync.html -unknown- html,x11 +./usr/X11R6/man/html3/XSynchronize.html -unknown- html,x11 +./usr/X11R6/man/html3/XTextExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/XTextExtents16.html -unknown- html,x11 +./usr/X11R6/man/html3/XTextItem.html -unknown- html,x11 +./usr/X11R6/man/html3/XTextItem16.html -unknown- html,x11 +./usr/X11R6/man/html3/XTextProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XTextPropertyToStringList.html -unknown- html,x11 +./usr/X11R6/man/html3/XTextWidth.html -unknown- html,x11 +./usr/X11R6/man/html3/XTextWidth16.html -unknown- html,x11 +./usr/X11R6/man/html3/XTimeCoord.html -unknown- html,x11 +./usr/X11R6/man/html3/XTranslateCoordinates.html -unknown- html,x11 +./usr/X11R6/man/html3/XUndefineCursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XUngrabButton.html -unknown- html,x11 +./usr/X11R6/man/html3/XUngrabDevice.html -unknown- html,x11 +./usr/X11R6/man/html3/XUngrabDeviceButton.html -unknown- html,x11 +./usr/X11R6/man/html3/XUngrabDeviceKey.html -unknown- html,x11 +./usr/X11R6/man/html3/XUngrabKey.html -unknown- html,x11 +./usr/X11R6/man/html3/XUngrabKeyboard.html -unknown- html,x11 +./usr/X11R6/man/html3/XUngrabPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/XUngrabServer.html -unknown- html,x11 +./usr/X11R6/man/html3/XUninstallColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnionRectWithRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnionRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/XUniqueContext.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnloadFont.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnlockDisplay.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnmapEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnmapSubwindows.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnmapWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnregisterIMInstantiateCallback.html -unknown- html,x11 +./usr/X11R6/man/html3/XUnsetICFocus.html -unknown- html,x11 +./usr/X11R6/man/html3/XVaCreateNestedList.html -unknown- html,x11 +./usr/X11R6/man/html3/XVisibilityEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XVisualIDFromVisual.html -unknown- html,x11 +./usr/X11R6/man/html3/XVisualInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XWMGeometry.html -unknown- html,x11 +./usr/X11R6/man/html3/XWMHints.html -unknown- html,x11 +./usr/X11R6/man/html3/XWarpPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/XWindowAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XWindowChanges.html -unknown- html,x11 +./usr/X11R6/man/html3/XWindowEvent.html -unknown- html,x11 +./usr/X11R6/man/html3/XWithdrawWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XWriteBitmapFile.html -unknown- html,x11 +./usr/X11R6/man/html3/XXorRegion.html -unknown- html,x11 +./usr/X11R6/man/html3/Xau.html -unknown- html,x11 +./usr/X11R6/man/html3/XauDisposeAuth.html -unknown- html,x11 +./usr/X11R6/man/html3/XauFileName.html -unknown- html,x11 +./usr/X11R6/man/html3/XauGetAuthByAddr.html -unknown- html,x11 +./usr/X11R6/man/html3/XauGetBestAuthByAddr.html -unknown- html,x11 +./usr/X11R6/man/html3/XauLockAuth.html -unknown- html,x11 +./usr/X11R6/man/html3/XauReadAuth.html -unknown- html,x11 +./usr/X11R6/man/html3/XauUnlockAuth.html -unknown- html,x11 +./usr/X11R6/man/html3/XauWriteAuth.html -unknown- html,x11 +./usr/X11R6/man/html3/Xaw.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsAllocColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsAllocNamedColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCCCOfColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELab.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELabQueryMaxC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELabQueryMaxL.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELabQueryMaxLC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELabQueryMinL.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELuv.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELuvQueryMaxC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELuvQueryMaxL.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELuvQueryMaxLC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIELuvQueryMinL.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIEXYZ.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIEuvY.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCIExyY.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsConvertColors.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsCreateCCC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsDefaultCCC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsFreeCCC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsLookupColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsPad.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsQueryBlack.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsQueryBlue.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsQueryColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsQueryColors.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsQueryGreen.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsQueryRed.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsQueryWhite.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsRGB.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsRGBi.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsSetCCCOfColormap.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsSetWhiteAdjustProc.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsSetWhitePoint.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsStoreColor.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsStoreColors.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsTekHVC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsTekHVCQueryMaxC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsTekHVCQueryMaxV.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsTekHVCQueryMaxVC.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsTekHVCQueryMaxVSamples.html -unknown- html,x11 +./usr/X11R6/man/html3/XcmsTekHVCQueryMinV.html -unknown- html,x11 +./usr/X11R6/man/html3/Xcursor.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeAllocateBackBufferName.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeBeginIdiom.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeDeallocateBackBufferName.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeEndIdiom.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeFreeVisualInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeGetBackBufferAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeGetVisualInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XdbeSwapBuffers.html -unknown- html,x11 +./usr/X11R6/man/html3/XeviGetVisualInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XeviQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XeviQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/Xfontcache.html -unknown- html,x11 +./usr/X11R6/man/html3/Xft.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbDrawImageString.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbDrawString.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbDrawText.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbLookupString.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbResetIC.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbSetWMProperties.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbTextEscapement.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbTextExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbTextListToTextProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbTextPerCharExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbTextPropertyToTextList.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufChangeBufferAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufChangeWindowAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufCreateBuffers.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufCreateStereoWindow.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufDestroyBuffers.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufDisplayBuffers.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufGetBufferAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufGetScreenInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufGetVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufGetWindowAttributes.html -unknown- html,x11 +./usr/X11R6/man/html3/XmbufQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/Xrandr.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmCombineDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmCombineFileDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmDestroyDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmEnumerateDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmGetDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmGetFileDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmGetResource.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmGetStringDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmInitialize.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmLocaleOfDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmMergeDatabases.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmOptionDescRec.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmOptionKind.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmParseCommand.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmPermStringToQuark.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmPutFileDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmPutLineResource.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmPutResource.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmPutStringResource.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmQGetResource.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmQGetSearchList.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmQGetSearchResource.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmQPutResource.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmQPutStringResource.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmQuarkToString.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmSetDatabase.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmStringToBindingQuarkList.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmStringToQuark.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmStringToQuarkList.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmUniqueQuark.html -unknown- html,x11 +./usr/X11R6/man/html3/XrmValue.html -unknown- html,x11 +./usr/X11R6/man/html3/Xss.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8DrawImageString.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8DrawString.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8DrawText.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8LookupString.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8ResetIC.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8SetWMProperties.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8TextEscapement.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8TextExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8TextListToTextProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8TextPerCharExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/Xutf8TextPropertyToTextList.html -unknown- html,x11 +./usr/X11R6/man/html3/Xv.html -unknown- html,x11 +./usr/X11R6/man/html3/XvFreeAdaptorInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XvFreeEncodingInfo.html -unknown- html,x11 +./usr/X11R6/man/html3/XvGetPortAttribute.html -unknown- html,x11 +./usr/X11R6/man/html3/XvGetStill.html -unknown- html,x11 +./usr/X11R6/man/html3/XvGetVideo.html -unknown- html,x11 +./usr/X11R6/man/html3/XvGrabPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XvPortNotify.html -unknown- html,x11 +./usr/X11R6/man/html3/XvPutStill.html -unknown- html,x11 +./usr/X11R6/man/html3/XvPutVideo.html -unknown- html,x11 +./usr/X11R6/man/html3/XvQueryAdaptors.html -unknown- html,x11 +./usr/X11R6/man/html3/XvQueryBestSize.html -unknown- html,x11 +./usr/X11R6/man/html3/XvQueryEncodings.html -unknown- html,x11 +./usr/X11R6/man/html3/XvQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/XvSelectPortNotify.html -unknown- html,x11 +./usr/X11R6/man/html3/XvSelectVideoNotify.html -unknown- html,x11 +./usr/X11R6/man/html3/XvSetPortAttribute.html -unknown- html,x11 +./usr/X11R6/man/html3/XvStopVideo.html -unknown- html,x11 +./usr/X11R6/man/html3/XvUngrabPort.html -unknown- html,x11 +./usr/X11R6/man/html3/XvVideoNotify.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcDrawImageString.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcDrawString.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcDrawText.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcFreeStringList.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcLookupString.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcResetIC.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcTextEscapement.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcTextExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcTextListToTextProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcTextPerCharExtents.html -unknown- html,x11 +./usr/X11R6/man/html3/XwcTextPropertyToTextList.html -unknown- html,x11 +./usr/X11R6/man/html3/fontconfig.html -unknown- html,x11 +./usr/X11R6/man/html3/glAccum.html -unknown- html,x11 +./usr/X11R6/man/html3/glActiveTextureARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glAlphaFunc.html -unknown- html,x11 +./usr/X11R6/man/html3/glAreTexturesResident.html -unknown- html,x11 +./usr/X11R6/man/html3/glArrayElement.html -unknown- html,x11 +./usr/X11R6/man/html3/glBegin.html -unknown- html,x11 +./usr/X11R6/man/html3/glBindTexture.html -unknown- html,x11 +./usr/X11R6/man/html3/glBitmap.html -unknown- html,x11 +./usr/X11R6/man/html3/glBlendColor.html -unknown- html,x11 +./usr/X11R6/man/html3/glBlendEquation.html -unknown- html,x11 +./usr/X11R6/man/html3/glBlendFunc.html -unknown- html,x11 +./usr/X11R6/man/html3/glCallList.html -unknown- html,x11 +./usr/X11R6/man/html3/glCallLists.html -unknown- html,x11 +./usr/X11R6/man/html3/glClear.html -unknown- html,x11 +./usr/X11R6/man/html3/glClearAccum.html -unknown- html,x11 +./usr/X11R6/man/html3/glClearColor.html -unknown- html,x11 +./usr/X11R6/man/html3/glClearDepth.html -unknown- html,x11 +./usr/X11R6/man/html3/glClearIndex.html -unknown- html,x11 +./usr/X11R6/man/html3/glClearStencil.html -unknown- html,x11 +./usr/X11R6/man/html3/glClientActiveTextureARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glClipPlane.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3b.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3bv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3d.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3f.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3i.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3s.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3ub.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3ubv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3ui.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3uiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3us.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor3usv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4b.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4bv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4d.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4f.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4i.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4s.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4ub.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4ubv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4ui.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4uiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4us.html -unknown- html,x11 +./usr/X11R6/man/html3/glColor4usv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColorMask.html -unknown- html,x11 +./usr/X11R6/man/html3/glColorMaterial.html -unknown- html,x11 +./usr/X11R6/man/html3/glColorPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/glColorSubTable.html -unknown- html,x11 +./usr/X11R6/man/html3/glColorTable.html -unknown- html,x11 +./usr/X11R6/man/html3/glColorTableParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glColorTableParameterfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glColorTableParameteriv.html -unknown- html,x11 +./usr/X11R6/man/html3/glConvolutionFilter1D.html -unknown- html,x11 +./usr/X11R6/man/html3/glConvolutionFilter2D.html -unknown- html,x11 +./usr/X11R6/man/html3/glConvolutionParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyColorSubTable.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyColorTable.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyConvolutionFilter1D.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyConvolutionFilter2D.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyPixels.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyTexImage1D.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyTexImage2D.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyTexSubImage1D.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyTexSubImage2D.html -unknown- html,x11 +./usr/X11R6/man/html3/glCopyTexSubImage3D.html -unknown- html,x11 +./usr/X11R6/man/html3/glCullFace.html -unknown- html,x11 +./usr/X11R6/man/html3/glDeleteLists.html -unknown- html,x11 +./usr/X11R6/man/html3/glDeleteTextures.html -unknown- html,x11 +./usr/X11R6/man/html3/glDepthFunc.html -unknown- html,x11 +./usr/X11R6/man/html3/glDepthMask.html -unknown- html,x11 +./usr/X11R6/man/html3/glDepthRange.html -unknown- html,x11 +./usr/X11R6/man/html3/glDisable.html -unknown- html,x11 +./usr/X11R6/man/html3/glDisableClientState.html -unknown- html,x11 +./usr/X11R6/man/html3/glDrawArrays.html -unknown- html,x11 +./usr/X11R6/man/html3/glDrawBuffer.html -unknown- html,x11 +./usr/X11R6/man/html3/glDrawElements.html -unknown- html,x11 +./usr/X11R6/man/html3/glDrawPixels.html -unknown- html,x11 +./usr/X11R6/man/html3/glDrawRangeElements.html -unknown- html,x11 +./usr/X11R6/man/html3/glEdgeFlag.html -unknown- html,x11 +./usr/X11R6/man/html3/glEdgeFlagPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/glEdgeFlagv.html -unknown- html,x11 +./usr/X11R6/man/html3/glEnable.html -unknown- html,x11 +./usr/X11R6/man/html3/glEnableClientState.html -unknown- html,x11 +./usr/X11R6/man/html3/glEnd.html -unknown- html,x11 +./usr/X11R6/man/html3/glEndList.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalCoord.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalCoord1d.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalCoord1dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalCoord1fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalCoord2d.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalCoord2dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalCoord2f.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalCoord2fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalMesh.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalMesh1.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalMesh2.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalPoint.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalPoint1.html -unknown- html,x11 +./usr/X11R6/man/html3/glEvalPoint2.html -unknown- html,x11 +./usr/X11R6/man/html3/glFeedbackBuffer.html -unknown- html,x11 +./usr/X11R6/man/html3/glFinish.html -unknown- html,x11 +./usr/X11R6/man/html3/glFlush.html -unknown- html,x11 +./usr/X11R6/man/html3/glFog.html -unknown- html,x11 +./usr/X11R6/man/html3/glFogf.html -unknown- html,x11 +./usr/X11R6/man/html3/glFogfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glFogi.html -unknown- html,x11 +./usr/X11R6/man/html3/glFogiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glFrontFace.html -unknown- html,x11 +./usr/X11R6/man/html3/glFrustum.html -unknown- html,x11 +./usr/X11R6/man/html3/glGenLists.html -unknown- html,x11 +./usr/X11R6/man/html3/glGenTextures.html -unknown- html,x11 +./usr/X11R6/man/html3/glGet.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetBooleanv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetClipPlane.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetColorTable.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetColorTableParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetColorTableParameterfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetColorTableParameteriv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetConvolutionFilter.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetConvolutionParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetDoublev.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetError.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetFloatv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetHistogram.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetHistogramParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetIntegerv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetLight.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetLightfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetLightiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMap.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMapdv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMapfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMapiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMaterial.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMaterialfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMaterialiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMinmax.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetMinmaxParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetPixelMap.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetPixelMapfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetPixelMapuiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetPixelMapusv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetPointerv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetPolygonStipple.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetSeparableFilter.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetString.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexEnv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexEnvfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexEnviv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexGen.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexGendv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexGenfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexGeniv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexImage.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexLevelParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexLevelParameterfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexLevelParameteriv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexParameterfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glGetTexParameteriv.html -unknown- html,x11 +./usr/X11R6/man/html3/glHint.html -unknown- html,x11 +./usr/X11R6/man/html3/glHistogram.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndex.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexMask.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexd.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexdv.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexf.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexi.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexs.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexsv.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexub.html -unknown- html,x11 +./usr/X11R6/man/html3/glIndexubv.html -unknown- html,x11 +./usr/X11R6/man/html3/glInitNames.html -unknown- html,x11 +./usr/X11R6/man/html3/glInterleavedArrays.html -unknown- html,x11 +./usr/X11R6/man/html3/glIsEnabled.html -unknown- html,x11 +./usr/X11R6/man/html3/glIsTexture.html -unknown- html,x11 +./usr/X11R6/man/html3/glIslist.html -unknown- html,x11 +./usr/X11R6/man/html3/glLight.html -unknown- html,x11 +./usr/X11R6/man/html3/glLightModel.html -unknown- html,x11 +./usr/X11R6/man/html3/glLightModelf.html -unknown- html,x11 +./usr/X11R6/man/html3/glLightModelfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glLightModeli.html -unknown- html,x11 +./usr/X11R6/man/html3/glLightModeliv.html -unknown- html,x11 +./usr/X11R6/man/html3/glLightf.html -unknown- html,x11 +./usr/X11R6/man/html3/glLightfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glLighti.html -unknown- html,x11 +./usr/X11R6/man/html3/glLightiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glLineStipple.html -unknown- html,x11 +./usr/X11R6/man/html3/glLineWidth.html -unknown- html,x11 +./usr/X11R6/man/html3/glListBase.html -unknown- html,x11 +./usr/X11R6/man/html3/glLoadIdentity.html -unknown- html,x11 +./usr/X11R6/man/html3/glLoadMatrix.html -unknown- html,x11 +./usr/X11R6/man/html3/glLoadMatrixd.html -unknown- html,x11 +./usr/X11R6/man/html3/glLoadMatrixf.html -unknown- html,x11 +./usr/X11R6/man/html3/glLoadName.html -unknown- html,x11 +./usr/X11R6/man/html3/glLogicOp.html -unknown- html,x11 +./usr/X11R6/man/html3/glMap1.html -unknown- html,x11 +./usr/X11R6/man/html3/glMap1d.html -unknown- html,x11 +./usr/X11R6/man/html3/glMap1f.html -unknown- html,x11 +./usr/X11R6/man/html3/glMap2.html -unknown- html,x11 +./usr/X11R6/man/html3/glMap2d.html -unknown- html,x11 +./usr/X11R6/man/html3/glMap2f.html -unknown- html,x11 +./usr/X11R6/man/html3/glMapGrid.html -unknown- html,x11 +./usr/X11R6/man/html3/glMapGrid1d.html -unknown- html,x11 +./usr/X11R6/man/html3/glMapGrid1f.html -unknown- html,x11 +./usr/X11R6/man/html3/glMapGrid2d.html -unknown- html,x11 +./usr/X11R6/man/html3/glMapGrid2f.html -unknown- html,x11 +./usr/X11R6/man/html3/glMaterial.html -unknown- html,x11 +./usr/X11R6/man/html3/glMaterialf.html -unknown- html,x11 +./usr/X11R6/man/html3/glMaterialfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glMateriali.html -unknown- html,x11 +./usr/X11R6/man/html3/glMaterialiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glMatrixMode.html -unknown- html,x11 +./usr/X11R6/man/html3/glMinmax.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultMatrix.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultMatrixd.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultMatrixf.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord1dARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord1dvARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord1fARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord1fvARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord1iARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord1ivARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord1sARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord1svARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord2dARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord2dvARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord2fARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord2fvARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord2iARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord2ivARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord2sARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord2svARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord3dARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord3dvARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord3fARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord3fvARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord3iARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord3ivARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord3sARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord3svARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord4dARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord4dvARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord4fARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord4fvARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord4iARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord4ivARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord4sARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoord4svARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glMultiTexCoordARB.html -unknown- html,x11 +./usr/X11R6/man/html3/glNewList.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3b.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3bv.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3d.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3f.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3i.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3s.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormal3sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glNormalPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/glOrtho.html -unknown- html,x11 +./usr/X11R6/man/html3/glPassThrough.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelMap.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelMapfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelMapuiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelMapusv.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelStore.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelStoref.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelStorei.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelTransfer.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelTransferf.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelTransferi.html -unknown- html,x11 +./usr/X11R6/man/html3/glPixelZoom.html -unknown- html,x11 +./usr/X11R6/man/html3/glPointSize.html -unknown- html,x11 +./usr/X11R6/man/html3/glPolygonMode.html -unknown- html,x11 +./usr/X11R6/man/html3/glPolygonOffset.html -unknown- html,x11 +./usr/X11R6/man/html3/glPolygonStipple.html -unknown- html,x11 +./usr/X11R6/man/html3/glPopAttrib.html -unknown- html,x11 +./usr/X11R6/man/html3/glPopClientAttrib.html -unknown- html,x11 +./usr/X11R6/man/html3/glPopMatrix.html -unknown- html,x11 +./usr/X11R6/man/html3/glPopName.html -unknown- html,x11 +./usr/X11R6/man/html3/glPrioritizeTextures.html -unknown- html,x11 +./usr/X11R6/man/html3/glPushAttrib.html -unknown- html,x11 +./usr/X11R6/man/html3/glPushClientAttrib.html -unknown- html,x11 +./usr/X11R6/man/html3/glPushMatrix.html -unknown- html,x11 +./usr/X11R6/man/html3/glPushName.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos2d.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos2dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos2f.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos2fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos2i.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos2iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos2s.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos2sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos3d.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos3dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos3f.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos3fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos3i.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos3iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos3s.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos3sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos4d.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos4dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos4f.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos4fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos4i.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos4iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos4s.html -unknown- html,x11 +./usr/X11R6/man/html3/glRasterPos4sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glReadBuffer.html -unknown- html,x11 +./usr/X11R6/man/html3/glReadPixels.html -unknown- html,x11 +./usr/X11R6/man/html3/glRect.html -unknown- html,x11 +./usr/X11R6/man/html3/glRectd.html -unknown- html,x11 +./usr/X11R6/man/html3/glRectdv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRectf.html -unknown- html,x11 +./usr/X11R6/man/html3/glRectfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRecti.html -unknown- html,x11 +./usr/X11R6/man/html3/glRectiv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRects.html -unknown- html,x11 +./usr/X11R6/man/html3/glRectsv.html -unknown- html,x11 +./usr/X11R6/man/html3/glRenderMode.html -unknown- html,x11 +./usr/X11R6/man/html3/glResetHistogram.html -unknown- html,x11 +./usr/X11R6/man/html3/glResetMinmax.html -unknown- html,x11 +./usr/X11R6/man/html3/glRotate.html -unknown- html,x11 +./usr/X11R6/man/html3/glRotated.html -unknown- html,x11 +./usr/X11R6/man/html3/glRotatef.html -unknown- html,x11 +./usr/X11R6/man/html3/glScale.html -unknown- html,x11 +./usr/X11R6/man/html3/glScaled.html -unknown- html,x11 +./usr/X11R6/man/html3/glScalef.html -unknown- html,x11 +./usr/X11R6/man/html3/glScissor.html -unknown- html,x11 +./usr/X11R6/man/html3/glSelectBuffer.html -unknown- html,x11 +./usr/X11R6/man/html3/glSeparableFilter2D.html -unknown- html,x11 +./usr/X11R6/man/html3/glShadeModel.html -unknown- html,x11 +./usr/X11R6/man/html3/glStencilFunc.html -unknown- html,x11 +./usr/X11R6/man/html3/glStencilMask.html -unknown- html,x11 +./usr/X11R6/man/html3/glStencilOp.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord1d.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord1dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord1f.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord1fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord1i.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord1iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord1s.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord1sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord2d.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord2dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord2f.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord2fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord2i.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord2iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord2s.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord2sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord3d.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord3dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord3f.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord3fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord3i.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord3iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord3s.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord3sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord4d.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord4dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord4f.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord4fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord4i.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord4iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord4s.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoord4sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexCoordPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexEnv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexEnvf.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexEnvfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexEnvi.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexEnviv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexGen.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexGend.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexGendv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexGenf.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexGenfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexGeni.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexGeniv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexImage1D.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexImage2D.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexImage3D.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexParameter.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexParameterf.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexParameterfv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexParameteri.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexParameteriv.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexSubImage1D.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexSubImage2D.html -unknown- html,x11 +./usr/X11R6/man/html3/glTexSubImage3D.html -unknown- html,x11 +./usr/X11R6/man/html3/glTranslate.html -unknown- html,x11 +./usr/X11R6/man/html3/glTranslated.html -unknown- html,x11 +./usr/X11R6/man/html3/glTranslatef.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex2d.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex2dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex2f.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex2fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex2i.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex2iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex2s.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex2sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex3d.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex3dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex3f.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex3fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex3i.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex3iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex3s.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex3sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex4d.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex4dv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex4f.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex4fv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex4i.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex4iv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex4s.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertex4sv.html -unknown- html,x11 +./usr/X11R6/man/html3/glVertexPointer.html -unknown- html,x11 +./usr/X11R6/man/html3/glViewport.html -unknown- html,x11 +./usr/X11R6/man/html3/glXChooseVisual.html -unknown- html,x11 +./usr/X11R6/man/html3/glXCopyContext.html -unknown- html,x11 +./usr/X11R6/man/html3/glXCreateContext.html -unknown- html,x11 +./usr/X11R6/man/html3/glXCreateGLXPixmap.html -unknown- html,x11 +./usr/X11R6/man/html3/glXDestroyContext.html -unknown- html,x11 +./usr/X11R6/man/html3/glXDestroyGLXPixmap.html -unknown- html,x11 +./usr/X11R6/man/html3/glXFreeContextEXT.html -unknown- html,x11 +./usr/X11R6/man/html3/glXGetClientString.html -unknown- html,x11 +./usr/X11R6/man/html3/glXGetConfig.html -unknown- html,x11 +./usr/X11R6/man/html3/glXGetContextIDEXT.html -unknown- html,x11 +./usr/X11R6/man/html3/glXGetCurrentContext.html -unknown- html,x11 +./usr/X11R6/man/html3/glXGetCurrentDisplay.html -unknown- html,x11 +./usr/X11R6/man/html3/glXGetCurrentDrawable.html -unknown- html,x11 +./usr/X11R6/man/html3/glXImportContextEXT.html -unknown- html,x11 +./usr/X11R6/man/html3/glXIntro.html -unknown- html,x11 +./usr/X11R6/man/html3/glXIsDirect.html -unknown- html,x11 +./usr/X11R6/man/html3/glXMakeCurrent.html -unknown- html,x11 +./usr/X11R6/man/html3/glXQueryContextInfoEXT.html -unknown- html,x11 +./usr/X11R6/man/html3/glXQueryExtension.html -unknown- html,x11 +./usr/X11R6/man/html3/glXQueryExtensionsString.html -unknown- html,x11 +./usr/X11R6/man/html3/glXQueryServerString.html -unknown- html,x11 +./usr/X11R6/man/html3/glXQueryVersion.html -unknown- html,x11 +./usr/X11R6/man/html3/glXSwapBuffers.html -unknown- html,x11 +./usr/X11R6/man/html3/glXUseXFont.html -unknown- html,x11 +./usr/X11R6/man/html3/glXWaitGL.html -unknown- html,x11 +./usr/X11R6/man/html3/glXWaitX.html -unknown- html,x11 +./usr/X11R6/man/html3/gluBeginCurve.html -unknown- html,x11 +./usr/X11R6/man/html3/gluBeginPolygon.html -unknown- html,x11 +./usr/X11R6/man/html3/gluBeginSurface.html -unknown- html,x11 +./usr/X11R6/man/html3/gluBeginTrim.html -unknown- html,x11 +./usr/X11R6/man/html3/gluBuild1DMipmaps.html -unknown- html,x11 +./usr/X11R6/man/html3/gluBuild2DMipmaps.html -unknown- html,x11 +./usr/X11R6/man/html3/gluCylinder.html -unknown- html,x11 +./usr/X11R6/man/html3/gluDeleteNurbsRenderer.html -unknown- html,x11 +./usr/X11R6/man/html3/gluDeleteQuadric.html -unknown- html,x11 +./usr/X11R6/man/html3/gluDeleteTess.html -unknown- html,x11 +./usr/X11R6/man/html3/gluDisk.html -unknown- html,x11 +./usr/X11R6/man/html3/gluEndCurve.html -unknown- html,x11 +./usr/X11R6/man/html3/gluEndPolygon.html -unknown- html,x11 +./usr/X11R6/man/html3/gluEndSurface.html -unknown- html,x11 +./usr/X11R6/man/html3/gluEndTrim.html -unknown- html,x11 +./usr/X11R6/man/html3/gluErrorString.html -unknown- html,x11 +./usr/X11R6/man/html3/gluGetNurbsProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/gluGetString.html -unknown- html,x11 +./usr/X11R6/man/html3/gluGetTessProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/gluLoadSamplingMatrices.html -unknown- html,x11 +./usr/X11R6/man/html3/gluLookAt.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNewNurbsRenderer.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNewQuadric.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNewTess.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNextContour.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNurbsCallback.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNurbsCallbackDataEXT.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNurbsCurve.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNurbsProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/gluNurbsSurface.html -unknown- html,x11 +./usr/X11R6/man/html3/gluOrtho2D.html -unknown- html,x11 +./usr/X11R6/man/html3/gluPartialDisk.html -unknown- html,x11 +./usr/X11R6/man/html3/gluPerspective.html -unknown- html,x11 +./usr/X11R6/man/html3/gluPickMatrix.html -unknown- html,x11 +./usr/X11R6/man/html3/gluProject.html -unknown- html,x11 +./usr/X11R6/man/html3/gluPwlCurve.html -unknown- html,x11 +./usr/X11R6/man/html3/gluQuadricCallback.html -unknown- html,x11 +./usr/X11R6/man/html3/gluQuadricDrawStyle.html -unknown- html,x11 +./usr/X11R6/man/html3/gluQuadricNormals.html -unknown- html,x11 +./usr/X11R6/man/html3/gluQuadricOrientation.html -unknown- html,x11 +./usr/X11R6/man/html3/gluQuadricTexture.html -unknown- html,x11 +./usr/X11R6/man/html3/gluScaleImage.html -unknown- html,x11 +./usr/X11R6/man/html3/gluSphere.html -unknown- html,x11 +./usr/X11R6/man/html3/gluTessBeginContour.html -unknown- html,x11 +./usr/X11R6/man/html3/gluTessBeginPolygon.html -unknown- html,x11 +./usr/X11R6/man/html3/gluTessCallback.html -unknown- html,x11 +./usr/X11R6/man/html3/gluTessEndContour.html -unknown- html,x11 +./usr/X11R6/man/html3/gluTessEndPolygon.html -unknown- html,x11 +./usr/X11R6/man/html3/gluTessNormal.html -unknown- html,x11 +./usr/X11R6/man/html3/gluTessProperty.html -unknown- html,x11 +./usr/X11R6/man/html3/gluTessVertex.html -unknown- html,x11 +./usr/X11R6/man/html3/gluUnProject.html -unknown- html,x11 +./usr/X11R6/man/man1/ccmakedep.1 -unknown- .man,x11 +./usr/X11R6/man/man1/cleanlinks.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gccmakedep.1 -unknown- .man,x11 +./usr/X11R6/man/man1/imake.1 -unknown- .man,x11 +./usr/X11R6/man/man1/lndir.1 -unknown- .man,x11 +./usr/X11R6/man/man1/makedepend.1 -unknown- .man,x11 +./usr/X11R6/man/man1/makeg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/makestrs.1 -unknown- .man,x11 +./usr/X11R6/man/man1/mergelib.1 -unknown- .man,x11 +./usr/X11R6/man/man1/mkdirhier.1 -unknown- .man,x11 +./usr/X11R6/man/man1/mkhtmlindex.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xmkmf.1 -unknown- .man,x11 +./usr/X11R6/man/man3/AllPlanes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/BitmapBitOrder.3 -unknown- .man,x11 +./usr/X11R6/man/man3/BitmapPad.3 -unknown- .man,x11 +./usr/X11R6/man/man3/BitmapUnit.3 -unknown- .man,x11 +./usr/X11R6/man/man3/BlackPixel.3 -unknown- .man,x11 +./usr/X11R6/man/man3/BlackPixelOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/CellsOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ClientWhitePointOfCCC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ConnectionNumber.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DBE.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMX.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXAddBackendInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXAddConsoleInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXAddInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXAddScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXChangeDesktopAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXChangeScreensAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXForceWindowCreation.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXGetDesktopAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXGetInputAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXGetInputCount.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXGetScreenAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXGetScreenCount.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXGetWindowAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXRemoveInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXRemoveScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DMXSync.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultColormapOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultDepth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultDepthOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultGCOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultRootWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultScreenOfDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultVisual.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DefaultVisualOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayCells.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayHeight.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayHeightMM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayOfCCC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayPlanes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayWidth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DisplayWidthMM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DoesBackingStore.3 -unknown- .man,x11 +./usr/X11R6/man/man3/DoesSaveUnders.3 -unknown- .man,x11 +./usr/X11R6/man/man3/EventMaskOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/FontCacheChangeCacheSettings.3 -unknown- .man,x11 +./usr/X11R6/man/man3/FontCacheGetCacheSettings.3 -unknown- .man,x11 +./usr/X11R6/man/man3/FontCacheGetCacheStatistics.3 -unknown- .man,x11 +./usr/X11R6/man/man3/FontCacheQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/FontCacheQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/GLwCreateMDrawingArea.3 -unknown- .man,x11 +./usr/X11R6/man/man3/GLwDrawingArea.3 -unknown- .man,x11 +./usr/X11R6/man/man3/GLwDrawingAreaMakeCurrent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/GLwDrawingAreaSwapBuffers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/GLwMDrawingArea.3 -unknown- .man,x11 +./usr/X11R6/man/man3/HeightMMOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/HeightOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ImageByteOrder.3 -unknown- .man,x11 +./usr/X11R6/man/man3/IsCursorKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/IsFunctionKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/IsKeypadKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/IsMiscFunctionKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/IsModiferKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/IsPFKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/IsPrivateKeypadKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/LastKnownRequestProcessed.3 -unknown- .man,x11 +./usr/X11R6/man/man3/MaxCmapsOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/MenuPopdown.3 -unknown- .man,x11 +./usr/X11R6/man/man3/MenuPopup.3 -unknown- .man,x11 +./usr/X11R6/man/man3/MinCmapsOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/NextRequest.3 -unknown- .man,x11 +./usr/X11R6/man/man3/PlanesOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ProtocolRevision.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ProtocolVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/QLength.3 -unknown- .man,x11 +./usr/X11R6/man/man3/RootWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/RootWindowOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ScreenCount.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ScreenNumberOfCCC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ScreenOfDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ScreenWhitePointOfCCC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/ServerVendor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/VendorRelease.3 -unknown- .man,x11 +./usr/X11R6/man/man3/VisualOfCCC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/WhitePixel.3 -unknown- .man,x11 +./usr/X11R6/man/man3/WhitePixelOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/WidthMMOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/WidthOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/X.3 xcomp-obsolete obsolete +./usr/X11R6/man/man3/XActivateScreenSaver.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAddConnectionWatch.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAddHost.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAddHosts.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAddPixel.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAddToSaveSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocClassHint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocColorCells.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocColorPlanes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocIconSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocNamedColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocSizeHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocStandardColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllocWMHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllowDeviceEvents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAllowEvents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAnyEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XArc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAutoRepeatOff.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XAutoRepeatOn.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XBaseFontNameListOfFontSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XBell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XButtonEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeActivePointerGrab.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeDeviceControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeDeviceDontPropagateList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeDeviceKeyMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeFeedbackControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeKeyboardControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeKeyboardDevice.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeKeyboardMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangePointerControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangePointerDevice.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeSaveSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChangeWindowAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XChar2b.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCharStruct.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCheckIfEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCheckMaskEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCheckTypedEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCheckTypedWindowEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCheckWindowEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCirculateEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCirculateRequestEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCirculateSubwindows.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCirculateSubwindowsDown.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCirculateSubwindowsUp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XClassHint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XClearArea.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XClearWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XClientMessageEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XClipBox.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCloseDevice.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCloseDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCloseIM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCloseOM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XColormapEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XConfigureEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XConfigureRequestEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XConfigureWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XConsortium.3 xcomp-obsolete obsolete +./usr/X11R6/man/man3/XContextDependentDrawing.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XContextualDrawing.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XConvertCase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XConvertSelection.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCopyArea.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCopyColormapAndFree.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCopyGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCopyPlane.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateBitmapFromData.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateFontCursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateFontSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateGlyphCursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateIC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateOC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreatePixmap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreatePixmapCursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreatePixmapFromBitmapData.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateSimpleWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCreateWindowEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XCrossingEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGA.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAChangePixmapMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGACloseFramebuffer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGACopyArea.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGACopyTransparentArea.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGACreateColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAFillRectangle.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAGetViewportStatus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAInstallColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAKeyEventToXKeyEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAOpenFramebuffer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAQueryModes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGAQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGASelectInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGASetClientVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGASetMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGASetViewport.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDGASync.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDefaultString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDefineCursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDeleteContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDeleteModifiermapEntry.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDeleteProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDestroyIC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDestroyImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDestroyOC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDestroyRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDestroySubwindows.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDestroyWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDestroyWindowEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDeviceBell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDeviceTimeCoord.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDirectionalDependentDrawing.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDisableAccessControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDisplayKeycodes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDisplayMotionBufferSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDisplayName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDisplayOfIM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDisplayOfOM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawArc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawArcs.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawImageString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawImageString16.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawLine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawLines.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawPoint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawPoints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawRectangle.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawRectangles.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawSegments.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawString16.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawText.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XDrawText16.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XEmptyRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XEnableAccessControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XEqualRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XErrorEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XEventsQueued.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XExposeEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XExtendedMaxRequestSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XExtentsOfFontSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XF86DGA.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFetchBuffer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFetchBytes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFetchName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFillArc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFillArcs.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFillPolygon.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFillRectangle.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFillRectangles.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFilterEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFindContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFlush.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFocusChangeEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFontProp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFontSetExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFontStruct.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFontsOfFontSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XForceScreenSaver.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFree.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFree86-DGA.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeColors.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeCursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeDeviceList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeFont.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeFontInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeFontNames.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeFontPath.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeFontSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeModifierMap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreePixmap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XFreeStringList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGCValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGContextFromGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetAtomName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetAtomNames.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetClassHint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetCommand.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetDeviceButtonMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetDeviceControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetDeviceDontPropagateList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetDeviceFocus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetDeviceKeyMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetDeviceModifierMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetDeviceMotionEvents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetErrorDatabaseText.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetErrorText.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetExtensionVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetFeedbackControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetFontPath.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetFontProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetGCValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetGeometry.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetICValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetIMValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetIconName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetIconSizes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetInputFocus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetKeyboardControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetKeyboardMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetModifierMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetMotionEvents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetOCValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetOMValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetPixel.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetPointerControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetPointerMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetRGBColormaps.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetScreenSaver.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetSelectedExtensionEvents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetSelectionOwner.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetSubImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetTextProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetTransientForHint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetVisualInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWMClientMachine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWMColormapWindows.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWMHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWMIconName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWMName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWMNormalHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWMProtocols.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWMSizeHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWindowAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGetWindowProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGrabButton.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGrabDevice.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGrabDeviceButton.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGrabDeviceKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGrabKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGrabKeyboard.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGrabPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGrabServer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGraphicsExposeEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XGravityEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XHostAddress.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XIMOfIC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XIconSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XIconifyWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XIfEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XInitImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XInitThreads.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XInsertModifiermapEntry.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XInstallColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XInternAtom.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XInternAtoms.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XInternalConnectionNumbers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XIntersectRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XKeyEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XKeyboardControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XKeycodeToKeysym.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XKeymapEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XKeysymToKeycode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XKeysymToString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XKillClient.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XListDepths.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XListFonts.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XListFontsWithInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XListHosts.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XListInputDevices.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XListInstalledColormaps.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XListPixmapFormats.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XListProperties.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLoadFont.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLoadQueryFont.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLocaleOfFontSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLocaleOfIM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLocaleOfOM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLockDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLookupColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLookupKeysym.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLookupString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XLowerWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMapEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMapRaised.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMapRequestEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMapSubwindows.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMapWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMappingEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMaskEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMatchVisualInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMaxRequestSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XModifierKeymap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMotionEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMoveResizeWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XMoveWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XNewModifiermap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XNextEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XNoExposeEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XNoOp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XOMOfOC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XOffsetRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XOpenDevice.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XOpenDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XOpenIM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XOpenOM.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XParseColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XParseGeometry.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPeekEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPeekIfEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPending.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPixmapFormatValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPoint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPointInRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPolygonRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XProcessInternalConnection.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPropertyEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPutBackEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPutImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XPutPixel.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryBestCursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryBestSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryBestStipple.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryBestTile.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryColors.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryDeviceState.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryFont.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryKeymap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryTextExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryTextExtents16.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XQueryTree.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRaiseWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XReadBitmapFile.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XReadBitmapFileData.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRebindKeySym.3 xcomp-obsolete obsolete +./usr/X11R6/man/man3/XRebindKeysym.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRecolorCursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XReconfigureWMWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRectInRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRectangle.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRefreshKeyboardMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRegisterIMInstantiateCallback.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRemoveConnectionWatch.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRemoveFromSaveSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRemoveHost.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRemoveHosts.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XReparentEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XReparentWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResQueryClientPixmapBytes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResQueryClientResources.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResQueryClients.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResetScreenSaver.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResizeRequestEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResizeWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XResourceManagerString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRestackWindows.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRotateBuffers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XRotateWindowProperties.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSaveContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenNumberOfScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenResourceString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverAllocInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverGetRegistered.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverQueryInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverRegister.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverSelectInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverSetAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverUnregister.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XScreenSaverUnsetAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSegment.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSelectExtensionEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSelectInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSelectionClearEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSelectionEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSelectionRequestEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSendEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSendExtensionEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetAccessControl.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetAfterFunction.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetArcMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetBackground.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetClassHint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetClipMask.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetClipOrigin.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetClipRectangles.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetCloseDownMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetCommand.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetDashes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetDeviceButtonMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetDeviceFocus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetDeviceMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetDeviceModifierMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetDeviceValuators.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetErrorHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetFillRule.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetFillStyle.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetFont.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetFontPath.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetForeground.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetFunction.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetGraphicsExposure.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetICFocus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetICValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetIMValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetIOErrorHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetIconName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetIconSizes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetInputFocus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetLineAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetLocaleModifiers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetModifierMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetOCValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetOMValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetPlaneMask.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetPointerMapping.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetRGBColormaps.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetScreenSaver.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetSelectionOwner.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetState.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetStipple.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetSubwindowMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetTSOrigin.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetTextProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetTile.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetTransientForHint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMClientMachine.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMColormapWindows.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMIconName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMNormalHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMProperties.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMProtocols.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWMSizeHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWindowAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWindowBackground.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWindowBackgroundPixmap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWindowBorder.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWindowBorderPixmap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWindowBorderWidth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSetWindowColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeCombineMask.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeCombineRectangles.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeCombineRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeCombineShape.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeGetRectangles.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeInputSelected.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeOffsetShape.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeQueryExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShapeSelectInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XShrinkRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSizeHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStandardColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStandards.3 xcomp-obsolete obsolete +./usr/X11R6/man/man3/XStoreBuffer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStoreBytes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStoreColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStoreColors.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStoreName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStoreNamedColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStringListToTextProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XStringToKeysym.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSubImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSubtractRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSupportsLocale.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSync.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XSynchronize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTextExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTextExtents16.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTextItem.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTextItem16.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTextProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTextPropertyToStringList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTextWidth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTextWidth16.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTimeCoord.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XTranslateCoordinates.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUndefineCursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUngrabButton.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUngrabDevice.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUngrabDeviceButton.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUngrabDeviceKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUngrabKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUngrabKeyboard.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUngrabPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUngrabServer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUninstallColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnionRectWithRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnionRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUniqueContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnloadFont.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnlockDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnmapEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnmapSubwindows.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnmapWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnregisterIMInstantiateCallback.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XUnsetICFocus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XVaCreateNestedList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XVisibilityEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XVisualIDFromVisual.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XVisualInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XWMGeometry.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XWMHints.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XWarpPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XWindowAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XWindowChanges.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XWindowEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XWithdrawWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XWriteBitmapFile.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XXorRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xau.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XauDisposeAuth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XauFileName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XauGetAuthByAddr.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XauGetBestAuthByAddr.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XauLockAuth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XauReadAuth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XauUnlockAuth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XauWriteAuth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xaw.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsAllocColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsAllocNamedColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCCCOfColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELab.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELabQueryMaxC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELabQueryMaxL.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELabQueryMaxLC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELabQueryMinL.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELuv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELuvQueryMaxC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELuvQueryMaxL.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELuvQueryMaxLC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIELuvQueryMinL.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIEXYZ.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIEuvY.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCIExyY.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsConvertColors.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsCreateCCC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsDefaultCCC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsFreeCCC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsLookupColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsPad.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsQueryBlack.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsQueryBlue.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsQueryColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsQueryColors.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsQueryGreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsQueryRed.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsQueryWhite.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsRGB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsRGBi.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsSetCCCOfColormap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsSetWhiteAdjustProc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsSetWhitePoint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsStoreColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsStoreColors.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsTekHVC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsTekHVCQueryMaxC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsTekHVCQueryMaxV.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsTekHVCQueryMaxVC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsTekHVCQueryMaxVSamples.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XcmsTekHVCQueryMinV.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xcursor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeAllocateBackBufferName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeBeginIdiom.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeDeallocateBackBufferName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeEndIdiom.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeFreeVisualInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeGetBackBufferAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeGetVisualInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XdbeSwapBuffers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XeviGetVisualInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XeviQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XeviQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xfontcache.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xft.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbDrawImageString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbDrawString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbDrawText.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbLookupString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbResetIC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbSetWMProperties.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbTextEscapement.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbTextExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbTextListToTextProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbTextPerCharExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbTextPropertyToTextList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufChangeBufferAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufChangeWindowAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufCreateBuffers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufCreateStereoWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufDestroyBuffers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufDisplayBuffers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufGetBufferAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufGetScreenInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufGetVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufGetWindowAttributes.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XmbufQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xrandr.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmCombineDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmCombineFileDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmDestroyDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmEnumerateDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmGetDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmGetFileDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmGetResource.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmGetStringDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmInitialize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmLocaleOfDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmMergeDatabases.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmOptionDescRec.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmOptionKind.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmParseCommand.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmPermStringToQuark.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmPutFileDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmPutLineResource.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmPutResource.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmPutStringResource.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmQGetResource.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmQGetSearchList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmQGetSearchResource.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmQPutResource.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmQPutStringResource.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmQuarkToString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmSetDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmStringToBindingQuarkList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmStringToQuark.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmStringToQuarkList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmUniqueQuark.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XrmValue.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xsecurity.3 xcomp-obsolete obsolete +./usr/X11R6/man/man3/Xss.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddActions.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddCallback.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddCallbacks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddConverter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddEventHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddExposureToRegion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddGrab.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddRawEventHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddTimeOut.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAddTimeout.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAllocateGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddActionHook.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddActions.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddBlockHook.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddConverter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddSignal.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddTimeOut.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddTimeout.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppAddWorkProc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppCreateShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppError.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppErrorMsg.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppGetErrorDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppGetErrorDatabaseText.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppGetExitFlag.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppGetSelectionTimeout.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppInitialize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppLock.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppMainLoop.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppNextEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppPeekEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppPending.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppProcessEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppReleaseCacheRefs.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppSetErrorHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppSetErrorMsgHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppSetExitFlag.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppSetFallbackResources.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppSetSelectionTimeout.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppSetTypeConverter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppSetWarningHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppSetWarningMsgHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppUnlock.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppWarning.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAppWarningMsg.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtAugmentTranslations.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtBuildEventMask.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallAcceptFocus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallActionProc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallCallbackList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallCallbacks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallConverter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallbackExclusive.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallbackNone.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallbackNonexclusive.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCallbackPopdown.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCalloc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCancelSelectionRequest.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtChangeManagedSet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCheckSubclass.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtClass.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCloseDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtConfigureWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtConvert.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtConvertAndStore.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtConvertCase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCreateApplicationContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCreateApplicationShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCreateManagedWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCreatePopupShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCreateSelectionRequest.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCreateWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtCreateWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDestroyApplicationContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDestroyWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDirectConvert.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDisownSelection.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDispatchEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDispatchEventToWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDisplayInitialize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDisplayOfObject.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDisplayStringConversionWarning.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtDisplayToApplicationContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtError.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtErrorMsg.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtFindFile.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtFree.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetActionKeysym.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetActionList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetApplicationNameAndClass.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetApplicationResources.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetClassExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetConstraintResourceList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetDisplays.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetErrorDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetErrorDatabaseText.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetKeyboardFocusWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetKeysymTable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetMultiClickTime.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetResourceList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSelectionParameters.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSelectionRequest.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSelectionTimeout.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSelectionValue.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSelectionValueIncremental.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSelectionValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSelectionValuesIncremental.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSubresources.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetSubvalues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGetValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGrabButton.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGrabKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGrabKeyboard.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtGrabPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtHasCallbacks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtHooksOfDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtInitialize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtInitializeWidgetClass.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtInsertEventHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtInsertEventTypeHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtInsertRawEventHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtInstallAccelerators.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtInstallAllAccelerators.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsApplicationShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsComposite.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsConstraint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsManaged.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsObject.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsOverrideShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsRealized.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsRectObj.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsSensitive.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsSessionShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsSubclass.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsTopLevelShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsTransientShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsVendorShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsWMShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtIsWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtKeysymToKeycodeList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtLastEventProcessed.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtLastTimestampProcessed.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtMainLoop.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtMakeGeometryRequest.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtMakeResizeRequest.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtMalloc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtManageChild.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtManageChildren.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtMapWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtMergeArgLists.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtMoveWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtNameToWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtNew.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtNewString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtNextEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtNoticeSignal.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtNumber.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtOffset.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtOffsetOf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtOpenApplication.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtOpenDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtOverrideTranslations.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtOwnSelection.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtOwnSelectionIncremental.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtParent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtParseAcceleratorTable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtParseTranslationTable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtPeekEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtPending.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtPopdown.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtPopup.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtPopupSpringLoaded.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtProcessEvent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtProcessLock.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtProcessUnlock.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtQueryGeometry.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRealizeWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRealloc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRegisterCaseConverter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRegisterDrawable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRegisterExtensionSelector.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRegisterGrabAction.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtReleaseGC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtReleasePropertyAtom.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveActionHook.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveAllCallbacks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveBlockHook.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveCallback.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveCallbacks.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveEventHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveEventTypeHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveGrab.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveInput.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveRawEventHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveSignal.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveTimeOut.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtRemoveWorkProc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtReservePropertyAtom.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtResizeWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtResolvePathname.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtScreen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtScreenDatabase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtScreenOfObject.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSendSelectionRequest.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSessionGetToken.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSessionReturnToken.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetArg.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetErrorHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetErrorMsgHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetEventDispatcher.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetKeyTranslator.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetKeyboardFocus.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetLanguageProc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetMappedWhenManaged.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetMultiClickTime.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetSelectionParameters.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetSelectionTimeout.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetSensitive.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetSubvalues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetTypeConverter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetWMColormapWindows.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetWarningHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSetWarningMsgHandler.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtStringConversionWarning.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtSuperclass.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtToolkitInitialize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtToolkitThreadInitialize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtTranslateCoords.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtTranslateKeycode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUngrabButton.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUngrabKey.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUngrabKeyboard.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUngrabPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUninstallTranslations.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUnmanageChild.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUnmanageChildren.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUnmapWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUnrealizeWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtUnregisterDrawable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaAppCreateShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaAppInitialize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaCreateArgsList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaCreateManagedWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaCreatePopupShell.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaCreateWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaGetApplicationResources.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaGetSubresources.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaGetSubvalues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaGetValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaOpenApplication.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaSetSubvalues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtVaSetValues.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtWarning.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtWarningMsg.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtWidgetToApplicationContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtWindow.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtWindowOfObject.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XtWindowToWidget.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8DrawImageString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8DrawString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8DrawText.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8LookupString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8ResetIC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8SetWMProperties.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8TextEscapement.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8TextExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8TextListToTextProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8TextPerCharExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xutf8TextPropertyToTextList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/Xv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvFreeAdaptorInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvFreeEncodingInfo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvGetPortAttribute.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvGetStill.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvGetVideo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvGrabPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvPortNotify.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvPutStill.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvPutVideo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvQueryAdaptors.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvQueryBestSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvQueryEncodings.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvSelectPortNotify.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvSelectVideoNotify.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvSetPortAttribute.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvStopVideo.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvUngrabPort.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XvVideoNotify.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcDrawImageString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcDrawString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcDrawText.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcFreeStringList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcLookupString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcResetIC.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcTextEscapement.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcTextExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcTextListToTextProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcTextPerCharExtents.3 -unknown- .man,x11 +./usr/X11R6/man/man3/XwcTextPropertyToTextList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/fontconfig.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glAccum.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glActiveTextureARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glAlphaFunc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glAreTexturesResident.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glArrayElement.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glBegin.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glBindTexture.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glBitmap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glBlendColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glBlendEquation.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glBlendFunc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCallList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCallLists.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glClear.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glClearAccum.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glClearColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glClearDepth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glClearIndex.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glClearStencil.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glClientActiveTextureARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glClipPlane.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3b.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3bv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3ub.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3ubv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3ui.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3uiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3us.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor3usv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4b.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4bv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4ub.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4ubv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4ui.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4uiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4us.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColor4usv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColorMask.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColorMaterial.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColorPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColorSubTable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColorTable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColorTableParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColorTableParameterfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glColorTableParameteriv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glConvolutionFilter1D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glConvolutionFilter2D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glConvolutionParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyColorSubTable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyColorTable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyConvolutionFilter1D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyConvolutionFilter2D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyPixels.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyTexImage1D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyTexImage2D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyTexSubImage1D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyTexSubImage2D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCopyTexSubImage3D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glCullFace.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDeleteLists.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDeleteTextures.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDepthFunc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDepthMask.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDepthRange.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDisable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDisableClientState.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDrawArrays.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDrawBuffer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDrawElements.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDrawPixels.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glDrawRangeElements.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEdgeFlag.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEdgeFlagPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEdgeFlagv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEnable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEnableClientState.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEnd.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEndList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalCoord.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalCoord1d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalCoord1dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalCoord1fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalCoord2d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalCoord2dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalCoord2f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalCoord2fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalMesh.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalMesh1.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalMesh2.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalPoint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalPoint1.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glEvalPoint2.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFeedbackBuffer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFinish.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFlush.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFog.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFogf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFogfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFogi.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFogiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFrontFace.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glFrustum.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGenLists.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGenTextures.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGet.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetBooleanv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetClipPlane.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetColorTable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetColorTableParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetColorTableParameterfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetColorTableParameteriv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetConvolutionFilter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetConvolutionParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetDoublev.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetError.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetFloatv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetHistogram.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetHistogramParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetIntegerv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetLight.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetLightfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetLightiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMapdv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMapfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMapiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMaterial.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMaterialfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMaterialiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMinmax.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetMinmaxParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetPixelMap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetPixelMapfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetPixelMapuiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetPixelMapusv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetPointerv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetPolygonStipple.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetSeparableFilter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexEnv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexEnvfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexEnviv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexGen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexGendv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexGenfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexGeniv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexLevelParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexLevelParameterfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexLevelParameteriv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexParameterfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glGetTexParameteriv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glHint.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glHistogram.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndex.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexMask.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexd.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexdv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexi.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexs.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexsv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexub.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIndexubv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glInitNames.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glInterleavedArrays.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIsEnabled.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIsTexture.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glIslist.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLight.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLightModel.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLightModelf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLightModelfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLightModeli.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLightModeliv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLightf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLightfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLighti.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLightiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLineStipple.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLineWidth.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glListBase.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLoadIdentity.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLoadMatrix.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLoadMatrixd.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLoadMatrixf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLoadName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glLogicOp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMap1.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMap1d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMap1f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMap2.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMap2d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMap2f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMapGrid.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMapGrid1d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMapGrid1f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMapGrid2d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMapGrid2f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMaterial.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMaterialf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMaterialfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMateriali.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMaterialiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMatrixMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMinmax.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultMatrix.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultMatrixd.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultMatrixf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord1dARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord1dvARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord1fARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord1fvARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord1iARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord1ivARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord1sARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord1svARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord2dARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord2dvARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord2fARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord2fvARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord2iARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord2ivARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord2sARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord2svARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord3dARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord3dvARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord3fARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord3fvARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord3iARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord3ivARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord3sARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord3svARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord4dARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord4dvARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord4fARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord4fvARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord4iARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord4ivARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord4sARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoord4svARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glMultiTexCoordARB.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNewList.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3b.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3bv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormal3sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glNormalPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glOrtho.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPassThrough.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelMap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelMapfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelMapuiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelMapusv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelStore.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelStoref.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelStorei.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelTransfer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelTransferf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelTransferi.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPixelZoom.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPointSize.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPolygonMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPolygonOffset.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPolygonStipple.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPopAttrib.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPopClientAttrib.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPopMatrix.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPopName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPrioritizeTextures.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPushAttrib.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPushClientAttrib.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPushMatrix.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glPushName.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos2d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos2dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos2f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos2fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos2i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos2iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos2s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos2sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos3d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos3dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos3f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos3fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos3i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos3iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos3s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos3sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos4d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos4dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos4f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos4fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos4i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos4iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos4s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRasterPos4sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glReadBuffer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glReadPixels.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRect.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRectd.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRectdv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRectf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRectfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRecti.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRectiv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRects.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRectsv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRenderMode.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glResetHistogram.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glResetMinmax.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRotate.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRotated.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glRotatef.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glScale.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glScaled.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glScalef.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glScissor.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glSelectBuffer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glSeparableFilter2D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glShadeModel.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glStencilFunc.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glStencilMask.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glStencilOp.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord1d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord1dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord1f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord1fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord1i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord1iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord1s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord1sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord2d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord2dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord2f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord2fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord2i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord2iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord2s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord2sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord3d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord3dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord3f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord3fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord3i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord3iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord3s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord3sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord4d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord4dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord4f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord4fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord4i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord4iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord4s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoord4sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexCoordPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexEnv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexEnvf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexEnvfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexEnvi.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexEnviv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexGen.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexGend.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexGendv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexGenf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexGenfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexGeni.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexGeniv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexImage1D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexImage2D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexImage3D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexParameter.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexParameterf.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexParameterfv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexParameteri.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexParameteriv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexSubImage1D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexSubImage2D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTexSubImage3D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTranslate.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTranslated.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glTranslatef.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex2d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex2dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex2f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex2fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex2i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex2iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex2s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex2sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex3d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex3dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex3f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex3fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex3i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex3iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex3s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex3sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex4d.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex4dv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex4f.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex4fv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex4i.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex4iv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex4s.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertex4sv.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glVertexPointer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glViewport.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXChooseVisual.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXCopyContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXCreateContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXCreateGLXPixmap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXDestroyContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXDestroyGLXPixmap.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXFreeContextEXT.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXGetClientString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXGetConfig.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXGetContextIDEXT.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXGetCurrentContext.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXGetCurrentDisplay.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXGetCurrentDrawable.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXImportContextEXT.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXIntro.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXIsDirect.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXMakeCurrent.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXQueryContextInfoEXT.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXQueryExtension.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXQueryExtensionsString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXQueryServerString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXQueryVersion.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXSwapBuffers.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXUseXFont.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXWaitGL.3 -unknown- .man,x11 +./usr/X11R6/man/man3/glXWaitX.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluBeginCurve.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluBeginPolygon.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluBeginSurface.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluBeginTrim.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluBuild1DMipmaps.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluBuild2DMipmaps.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluCylinder.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluDeleteNurbsRenderer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluDeleteQuadric.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluDeleteTess.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluDisk.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluEndCurve.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluEndPolygon.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluEndSurface.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluEndTrim.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluErrorString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluGetNurbsProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluGetString.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluGetTessProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluLoadSamplingMatrices.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluLookAt.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNewNurbsRenderer.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNewQuadric.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNewTess.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNextContour.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNurbsCallback.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNurbsCallbackDataEXT.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNurbsCurve.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNurbsProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluNurbsSurface.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluOrtho2D.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluPartialDisk.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluPerspective.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluPickMatrix.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluProject.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluPwlCurve.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluQuadricCallback.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluQuadricDrawStyle.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluQuadricNormals.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluQuadricOrientation.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluQuadricTexture.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluScaleImage.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluSphere.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluTessBeginContour.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluTessBeginPolygon.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluTessCallback.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluTessEndContour.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluTessEndPolygon.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluTessNormal.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluTessProperty.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluTessVertex.3 -unknown- .man,x11 +./usr/X11R6/man/man3/gluUnProject.3 -unknown- .man,x11 +./usr/X11R7/bin/freetype-config -unknown- xorg +./usr/X11R7/bin/xft-config -unknown- obsolete +./usr/X11R7/include/GL/GLwDrawA.h -unknown- xorg +./usr/X11R7/include/GL/GLwDrawAP.h -unknown- xorg +./usr/X11R7/include/GL/GLwMDrawA.h -unknown- xorg +./usr/X11R7/include/GL/GLwMDrawAP.h -unknown- xorg +./usr/X11R7/include/GL/gl.h -unknown- xorg +./usr/X11R7/include/GL/gl_mangle.h -unknown- xorg +./usr/X11R7/include/GL/glext.h -unknown- xorg +./usr/X11R7/include/GL/glu.h -unknown- xorg +./usr/X11R7/include/GL/glu_mangle.h -unknown- xorg +./usr/X11R7/include/GL/glut.h -unknown- xorg +./usr/X11R7/include/GL/glutf90.h -unknown- xorg +./usr/X11R7/include/GL/glx.h -unknown- xorg +./usr/X11R7/include/GL/glx_mangle.h -unknown- xorg +./usr/X11R7/include/GL/glxext.h -unknown- xorg +./usr/X11R7/include/GL/glxint.h -unknown- xorg +./usr/X11R7/include/GL/glxmd.h -unknown- xorg +./usr/X11R7/include/GL/glxproto.h -unknown- xorg +./usr/X11R7/include/GL/glxtokens.h -unknown- xorg +./usr/X11R7/include/GL/internal/dri_interface.h -unknown- xorg +./usr/X11R7/include/GL/internal/glcore.h -unknown- xorg +./usr/X11R7/include/GL/internal/sarea.h -unknown- xorg +./usr/X11R7/include/GL/osmesa.h -unknown- xorg +./usr/X11R7/include/GL/xmesa.h -unknown- xorg +./usr/X11R7/include/GL/xmesa_x.h -unknown- xorg +./usr/X11R7/include/GL/xmesa_xf86.h -unknown- xorg +./usr/X11R7/include/X11/CallbackI.h -unknown- xorg +./usr/X11R7/include/X11/Composite.h -unknown- xorg +./usr/X11R7/include/X11/CompositeP.h -unknown- xorg +./usr/X11R7/include/X11/ConstrainP.h -unknown- xorg +./usr/X11R7/include/X11/Constraint.h -unknown- xorg +./usr/X11R7/include/X11/ConvertI.h -unknown- xorg +./usr/X11R7/include/X11/Core.h -unknown- xorg +./usr/X11R7/include/X11/CoreP.h -unknown- xorg +./usr/X11R7/include/X11/CreateI.h -unknown- xorg +./usr/X11R7/include/X11/DECkeysym.h -unknown- xorg +./usr/X11R7/include/X11/EventI.h -unknown- xorg +./usr/X11R7/include/X11/HPkeysym.h -unknown- xorg +./usr/X11R7/include/X11/HookObjI.h -unknown- xorg +./usr/X11R7/include/X11/ICE/ICE.h -unknown- xorg +./usr/X11R7/include/X11/ICE/ICEconn.h -unknown- xorg +./usr/X11R7/include/X11/ICE/ICElib.h -unknown- xorg +./usr/X11R7/include/X11/ICE/ICEmsg.h -unknown- xorg +./usr/X11R7/include/X11/ICE/ICEproto.h -unknown- xorg +./usr/X11R7/include/X11/ICE/ICEutil.h -unknown- xorg +./usr/X11R7/include/X11/ImUtil.h -unknown- xorg +./usr/X11R7/include/X11/InitialI.h -unknown- xorg +./usr/X11R7/include/X11/Intrinsic.h -unknown- xorg +./usr/X11R7/include/X11/IntrinsicI.h -unknown- xorg +./usr/X11R7/include/X11/IntrinsicP.h -unknown- xorg +./usr/X11R7/include/X11/Object.h -unknown- xorg +./usr/X11R7/include/X11/ObjectP.h -unknown- xorg +./usr/X11R7/include/X11/PM/PM.h -unknown- xorg +./usr/X11R7/include/X11/PM/PMproto.h -unknown- xorg +./usr/X11R7/include/X11/PassivGraI.h -unknown- xorg +./usr/X11R7/include/X11/RectObj.h -unknown- xorg +./usr/X11R7/include/X11/RectObjP.h -unknown- xorg +./usr/X11R7/include/X11/ResConfigP.h -unknown- xorg +./usr/X11R7/include/X11/ResourceI.h -unknown- xorg +./usr/X11R7/include/X11/SM/SM.h -unknown- xorg +./usr/X11R7/include/X11/SM/SMlib.h -unknown- xorg +./usr/X11R7/include/X11/SM/SMproto.h -unknown- xorg +./usr/X11R7/include/X11/SelectionI.h -unknown- xorg +./usr/X11R7/include/X11/Shell.h -unknown- xorg +./usr/X11R7/include/X11/ShellI.h -unknown- xorg +./usr/X11R7/include/X11/ShellP.h -unknown- xorg +./usr/X11R7/include/X11/StringDefs.h -unknown- xorg +./usr/X11R7/include/X11/Sunkeysym.h -unknown- xorg +./usr/X11R7/include/X11/ThreadsI.h -unknown- xorg +./usr/X11R7/include/X11/TranslateI.h -unknown- xorg +./usr/X11R7/include/X11/VarargsI.h -unknown- xorg +./usr/X11R7/include/X11/Vendor.h -unknown- xorg +./usr/X11R7/include/X11/VendorP.h -unknown- xorg +./usr/X11R7/include/X11/X.h -unknown- xorg +./usr/X11R7/include/X11/XF86keysym.h -unknown- xorg +./usr/X11R7/include/X11/XKBlib.h -unknown- xorg +./usr/X11R7/include/X11/XWDFile.h -unknown- xorg +./usr/X11R7/include/X11/Xalloca.h -unknown- xorg +./usr/X11R7/include/X11/Xarch.h -unknown- xorg +./usr/X11R7/include/X11/Xatom.h -unknown- xorg +./usr/X11R7/include/X11/Xauth.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/AllWidgets.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/AsciiSink.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/AsciiSinkP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/AsciiSrc.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/AsciiSrcP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/AsciiText.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/AsciiTextP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Box.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/BoxP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Cardinals.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Command.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/CommandP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Dialog.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/DialogP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Form.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/FormP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Grip.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/GripP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Label.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/LabelP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/List.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/ListP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/MenuButtoP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/MenuButton.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/MultiSink.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/MultiSinkP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/MultiSrc.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/MultiSrcP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Paned.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/PanedP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Panner.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/PannerP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Porthole.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/PortholeP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Print.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/PrintSP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Repeater.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/RepeaterP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Reports.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Scrollbar.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/ScrollbarP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Simple.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/SimpleMenP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/SimpleMenu.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/SimpleP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Sme.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/SmeBSB.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/SmeBSBP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/SmeLine.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/SmeLineP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/SmeP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/StripCharP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/StripChart.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Template.c -unknown- xorg +./usr/X11R7/include/X11/Xaw/Template.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/TemplateP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Text.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/TextP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/TextSink.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/TextSinkP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/TextSrc.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/TextSrcP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Tip.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/TipP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Toggle.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/ToggleP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Tree.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/TreeP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/VendorEP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/Viewport.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/ViewportP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/XawImP.h -unknown- xorg +./usr/X11R7/include/X11/Xaw/XawInit.h -unknown- xorg +./usr/X11R7/include/X11/Xcms.h -unknown- xorg +./usr/X11R7/include/X11/Xcmsint.h -unknown- xorg +./usr/X11R7/include/X11/Xcursor/Xcursor.h -unknown- xorg +./usr/X11R7/include/X11/Xdefs.h -unknown- xorg +./usr/X11R7/include/X11/Xdmcp.h -unknown- xorg +./usr/X11R7/include/X11/Xft/Xft.h -unknown- xorg +./usr/X11R7/include/X11/Xft/XftCompat.h -unknown- xorg +./usr/X11R7/include/X11/Xfuncproto.h -unknown- xorg +./usr/X11R7/include/X11/Xfuncs.h -unknown- xorg +./usr/X11R7/include/X11/Xlcint.h -unknown- xorg +./usr/X11R7/include/X11/Xlib-xcb.h -unknown- xorg +./usr/X11R7/include/X11/Xlib.h -unknown- xorg +./usr/X11R7/include/X11/XlibConf.h -unknown- xorg +./usr/X11R7/include/X11/Xlibint.h -unknown- xorg +./usr/X11R7/include/X11/Xlocale.h -unknown- xorg +./usr/X11R7/include/X11/Xmd.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Atoms.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/CharSet.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/CloseHook.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Converters.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/CurUtil.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/CvtCache.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/DisplayQue.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Drawing.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Editres.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/EditresP.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Error.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/ExtAgent.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Initer.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Lookup.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Misc.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/StdCmap.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/StdSel.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/SysUtil.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/WhitePoint.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/WidgetNode.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/WinUtil.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Xct.h -unknown- xorg +./usr/X11R7/include/X11/Xmu/Xmu.h -unknown- xorg +./usr/X11R7/include/X11/Xos.h -unknown- xorg +./usr/X11R7/include/X11/Xos_r.h -unknown- xorg +./usr/X11R7/include/X11/Xosdefs.h -unknown- xorg +./usr/X11R7/include/X11/Xpoll.h -unknown- xorg +./usr/X11R7/include/X11/XprintAppUtil/xpapputil.h -obsolete- obsolete +./usr/X11R7/include/X11/XprintUtil/xprintutil.h -obsolete- obsolete +./usr/X11R7/include/X11/Xproto.h -unknown- xorg +./usr/X11R7/include/X11/Xprotostr.h -unknown- xorg +./usr/X11R7/include/X11/Xregion.h -unknown- xorg +./usr/X11R7/include/X11/Xresource.h -unknown- xorg +./usr/X11R7/include/X11/Xthreads.h -unknown- xorg +./usr/X11R7/include/X11/Xtos.h -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtrans.c -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtrans.h -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtransdnet.c -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtransint.h -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtranslcl.c -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtransos2.c -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtranssock.c -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtranstli.c -unknown- xorg +./usr/X11R7/include/X11/Xtrans/Xtransutil.c -unknown- xorg +./usr/X11R7/include/X11/Xtrans/transport.c -unknown- xorg +./usr/X11R7/include/X11/Xutil.h -unknown- xorg +./usr/X11R7/include/X11/Xw32defs.h -unknown- xorg +./usr/X11R7/include/X11/Xwindows.h -unknown- xorg +./usr/X11R7/include/X11/Xwinsock.h -unknown- xorg +./usr/X11R7/include/X11/ap_keysym.h -unknown- xorg +./usr/X11R7/include/X11/bitmaps/1x1 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/2x2 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Dashes -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Down -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Excl -unknown- xorg +./usr/X11R7/include/X11/bitmaps/FlipHoriz -unknown- xorg +./usr/X11R7/include/X11/bitmaps/FlipVert -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Fold -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Left -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Right -unknown- xorg +./usr/X11R7/include/X11/bitmaps/RotateLeft -unknown- xorg +./usr/X11R7/include/X11/bitmaps/RotateRight -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Stipple -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Term -unknown- xorg +./usr/X11R7/include/X11/bitmaps/Up -unknown- xorg +./usr/X11R7/include/X11/bitmaps/black -unknown- xorg +./usr/X11R7/include/X11/bitmaps/black6 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/box6 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/boxes -unknown- xorg +./usr/X11R7/include/X11/bitmaps/calculator -unknown- xorg +./usr/X11R7/include/X11/bitmaps/cntr_ptr -unknown- xorg +./usr/X11R7/include/X11/bitmaps/cntr_ptrmsk -unknown- xorg +./usr/X11R7/include/X11/bitmaps/cross_weave -unknown- xorg +./usr/X11R7/include/X11/bitmaps/dimple1 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/dimple3 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/dot -unknown- xorg +./usr/X11R7/include/X11/bitmaps/dropbar7 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/dropbar8 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/escherknot -unknown- xorg +./usr/X11R7/include/X11/bitmaps/flagdown -unknown- xorg +./usr/X11R7/include/X11/bitmaps/flagup -unknown- xorg +./usr/X11R7/include/X11/bitmaps/flipped_gray -unknown- xorg +./usr/X11R7/include/X11/bitmaps/gray -unknown- xorg +./usr/X11R7/include/X11/bitmaps/gray1 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/gray3 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/grid16 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/grid2 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/grid4 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/grid8 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/hlines2 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/hlines3 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/icon -unknown- xorg +./usr/X11R7/include/X11/bitmaps/keyboard16 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/ldblarrow -unknown- xorg +./usr/X11R7/include/X11/bitmaps/left_ptr -unknown- xorg +./usr/X11R7/include/X11/bitmaps/left_ptrmsk -unknown- xorg +./usr/X11R7/include/X11/bitmaps/letters -unknown- xorg +./usr/X11R7/include/X11/bitmaps/light_gray -unknown- xorg +./usr/X11R7/include/X11/bitmaps/mailempty -unknown- xorg +./usr/X11R7/include/X11/bitmaps/mailemptymsk -unknown- xorg +./usr/X11R7/include/X11/bitmaps/mailfull -unknown- xorg +./usr/X11R7/include/X11/bitmaps/mailfullmsk -unknown- xorg +./usr/X11R7/include/X11/bitmaps/mensetmanus -unknown- xorg +./usr/X11R7/include/X11/bitmaps/menu10 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/menu12 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/menu16 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/menu6 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/menu8 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/noletters -unknown- xorg +./usr/X11R7/include/X11/bitmaps/opendot -unknown- xorg +./usr/X11R7/include/X11/bitmaps/opendotMask -unknown- xorg +./usr/X11R7/include/X11/bitmaps/plaid -unknown- xorg +./usr/X11R7/include/X11/bitmaps/rdblarrow -unknown- xorg +./usr/X11R7/include/X11/bitmaps/right_ptr -unknown- xorg +./usr/X11R7/include/X11/bitmaps/right_ptrmsk -unknown- xorg +./usr/X11R7/include/X11/bitmaps/root_weave -unknown- xorg +./usr/X11R7/include/X11/bitmaps/scales -unknown- xorg +./usr/X11R7/include/X11/bitmaps/sipb -unknown- xorg +./usr/X11R7/include/X11/bitmaps/star -unknown- xorg +./usr/X11R7/include/X11/bitmaps/starMask -unknown- xorg +./usr/X11R7/include/X11/bitmaps/stipple -unknown- xorg +./usr/X11R7/include/X11/bitmaps/target -unknown- xorg +./usr/X11R7/include/X11/bitmaps/terminal -unknown- xorg +./usr/X11R7/include/X11/bitmaps/tie_fighter -unknown- xorg +./usr/X11R7/include/X11/bitmaps/vlines2 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/vlines3 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/weird_size -unknown- xorg +./usr/X11R7/include/X11/bitmaps/wide_weave -unknown- xorg +./usr/X11R7/include/X11/bitmaps/wingdogs -unknown- xorg +./usr/X11R7/include/X11/bitmaps/woman -unknown- xorg +./usr/X11R7/include/X11/bitmaps/xfd_icon -unknown- xorg +./usr/X11R7/include/X11/bitmaps/xlogo11 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/xlogo16 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/xlogo32 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/xlogo64 -unknown- xorg +./usr/X11R7/include/X11/bitmaps/xsnow -unknown- xorg +./usr/X11R7/include/X11/cursorfont.h -unknown- xorg +./usr/X11R7/include/X11/dri/xf86dri.h -unknown- xorg +./usr/X11R7/include/X11/dri/xf86driproto.h -unknown- xorg +./usr/X11R7/include/X11/dri/xf86dristr.h -unknown- xorg +./usr/X11R7/include/X11/drm/drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/drm_mode.h -unknown- obsolete +./usr/X11R7/include/X11/drm/drm_sarea.h -unknown- obsolete +./usr/X11R7/include/X11/drm/i915_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/mach64_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/mga_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/nouveau_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/r128_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/r300_reg.h -unknown- obsolete +./usr/X11R7/include/X11/drm/radeon_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/savage_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/sis_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/via_3d_reg.h -unknown- obsolete +./usr/X11R7/include/X11/drm/via_drm.h -unknown- obsolete +./usr/X11R7/include/X11/drm/xgi_drm.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/EVI.h -unknown- xorg +./usr/X11R7/include/X11/extensions/EVIproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/MITMisc.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Print.h -obsolete- obsolete +./usr/X11R7/include/X11/extensions/Printstr.h -obsolete- obsolete +./usr/X11R7/include/X11/extensions/XEVI.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XEVIstr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/XI.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XI2.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XI2proto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XInput.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XInput2.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XIproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKB.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBbells.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBconfig.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBfile.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBgeom.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBrules.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBsrv.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKBui.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKM.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XKMformat.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XLbx.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XRes.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XResproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XShm.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XTest.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xag.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xagstr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/Xcomposite.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xcup.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xcupstr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/Xdamage.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xdbe.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xdbeproto.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/Xevie.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xeviestr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xext.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xfixes.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xge.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xinerama.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xrandr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xrender.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xv.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XvMC.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XvMClib.h -unknown- xorg +./usr/X11R7/include/X11/extensions/XvMCproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xvlib.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xvproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/Xxf86dga.h -unknown- xorg +./usr/X11R7/include/X11/extensions/ag.h -unknown- xorg +./usr/X11R7/include/X11/extensions/agproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/bigreqsproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/bigreqstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/composite.h -unknown- xorg +./usr/X11R7/include/X11/extensions/compositeproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/cup.h -unknown- xorg +./usr/X11R7/include/X11/extensions/cupproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/damageproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/damagewire.h -unknown- xorg +./usr/X11R7/include/X11/extensions/dbe.h -unknown- xorg +./usr/X11R7/include/X11/extensions/dbeproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/dpms.h -unknown- xorg +./usr/X11R7/include/X11/extensions/dpmsconst.h -unknown- xorg +./usr/X11R7/include/X11/extensions/dpmsproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/dpmsstr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/dri2proto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/dri2tokens.h -unknown- xorg +./usr/X11R7/include/X11/extensions/evieproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/extutil.h -unknown- xorg +./usr/X11R7/include/X11/extensions/fontcache.h -unknown- xorg +./usr/X11R7/include/X11/extensions/fontcacheP.h -unknown- xorg +./usr/X11R7/include/X11/extensions/fontcachstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/ge.h -unknown- xorg +./usr/X11R7/include/X11/extensions/geproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/lbx.h -unknown- xorg +./usr/X11R7/include/X11/extensions/lbxbuf.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/lbxbufstr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/lbxdeltastr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/lbximage.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/lbxopts.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/lbxproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/lbxstr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/lbxzlib.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/mitmiscconst.h -unknown- xorg +./usr/X11R7/include/X11/extensions/mitmiscproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/mitmiscstr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/multibuf.h -unknown- xorg +./usr/X11R7/include/X11/extensions/multibufconst.h -unknown- xorg +./usr/X11R7/include/X11/extensions/multibufproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/multibufst.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/panoramiXext.h -unknown- xorg +./usr/X11R7/include/X11/extensions/panoramiXproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/randr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/randrproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/record.h -unknown- xorg +./usr/X11R7/include/X11/extensions/recordconst.h -unknown- xorg +./usr/X11R7/include/X11/extensions/recordproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/recordstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/render.h -unknown- xorg +./usr/X11R7/include/X11/extensions/renderproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/saver.h -unknown- xorg +./usr/X11R7/include/X11/extensions/saverproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/scrnsaver.h -unknown- xorg +./usr/X11R7/include/X11/extensions/secur.h -unknown- xorg +./usr/X11R7/include/X11/extensions/security.h -unknown- xorg +./usr/X11R7/include/X11/extensions/securproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/securstr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/shape.h -unknown- xorg +./usr/X11R7/include/X11/extensions/shapeconst.h -unknown- xorg +./usr/X11R7/include/X11/extensions/shapeproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/shapestr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/shm.h -unknown- xorg +./usr/X11R7/include/X11/extensions/shmproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/shmstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/sync.h -unknown- xorg +./usr/X11R7/include/X11/extensions/syncconst.h -unknown- xorg +./usr/X11R7/include/X11/extensions/syncproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/syncstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/vldXvMC.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xcmiscproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xcmiscstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86bigfont.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86bigfproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86bigfstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga1.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga1const.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga1proto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dga1str.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dgaconst.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dgaproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86dgastr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86misc.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86mscstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86vm.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86vmode.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86vmproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xf86vmstr.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xfixesproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xfixeswire.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtestconst.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtestext1.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtestext1const.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtestext1proto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtestproto.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xteststr.h -unknown- obsolete +./usr/X11R7/include/X11/extensions/xtrapbits.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtrapddmi.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtrapdi.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtrapemacros.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtraplib.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtraplibp.h -unknown- xorg +./usr/X11R7/include/X11/extensions/xtrapproto.h -unknown- xorg +./usr/X11R7/include/X11/fonts/FS.h -unknown- xorg +./usr/X11R7/include/X11/fonts/FSlib.h -unknown- xorg +./usr/X11R7/include/X11/fonts/FSproto.h -unknown- xorg +./usr/X11R7/include/X11/fonts/bdfint.h -unknown- xorg +./usr/X11R7/include/X11/fonts/bitmap.h -unknown- xorg +./usr/X11R7/include/X11/fonts/bufio.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fntfil.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fntfilio.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fntfilst.h -unknown- xorg +./usr/X11R7/include/X11/fonts/font.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontconf.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontenc.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontencc.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontmisc.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontmod.h -obsolete- obsolete +./usr/X11R7/include/X11/fonts/fontproto.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontshow.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontstruct.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontutil.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fontxlfd.h -unknown- xorg +./usr/X11R7/include/X11/fonts/fsmasks.h -unknown- xorg +./usr/X11R7/include/X11/fonts/ft.h -unknown- xorg +./usr/X11R7/include/X11/fonts/ftfuncs.h -unknown- xorg +./usr/X11R7/include/X11/fonts/pcf.h -unknown- xorg +./usr/X11R7/include/X11/keysym.h -unknown- xorg +./usr/X11R7/include/X11/keysymdef.h -unknown- xorg +./usr/X11R7/include/X11/xf86drm.h -unknown- obsolete +./usr/X11R7/include/X11/xf86drmMode.h -unknown- obsolete +./usr/X11R7/include/X11/xf86mm.h -obsolete- obsolete +./usr/X11R7/include/X11/xpm.h -unknown- xorg +./usr/X11R7/include/drm/drm.h -unknown- obsolete +./usr/X11R7/include/drm/drm_mode.h -unknown- obsolete +./usr/X11R7/include/drm/drm_sarea.h -unknown- obsolete +./usr/X11R7/include/drm/i915_drm.h -unknown- obsolete +./usr/X11R7/include/drm/mach64_drm.h -unknown- obsolete +./usr/X11R7/include/drm/mga_drm.h -unknown- obsolete +./usr/X11R7/include/drm/nouveau_drm.h -unknown- obsolete +./usr/X11R7/include/drm/r128_drm.h -unknown- obsolete +./usr/X11R7/include/drm/r300_reg.h -unknown- obsolete +./usr/X11R7/include/drm/radeon_drm.h -unknown- obsolete +./usr/X11R7/include/drm/savage_drm.h -unknown- obsolete +./usr/X11R7/include/drm/sis_drm.h -unknown- obsolete +./usr/X11R7/include/drm/via_3d_reg.h -unknown- obsolete +./usr/X11R7/include/drm/via_drm.h -unknown- obsolete +./usr/X11R7/include/drm/xgi_drm.h -unknown- obsolete +./usr/X11R7/include/expat.h -unknown- obsolete +./usr/X11R7/include/expat_external.h -unknown- obsolete +./usr/X11R7/include/fontconfig/fcfreetype.h -unknown- xorg +./usr/X11R7/include/fontconfig/fcprivate.h -unknown- xorg +./usr/X11R7/include/fontconfig/fontconfig.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/config/ftconfig.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/config/ftheader.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/config/ftmodule.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/config/ftoption.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/config/ftstdlib.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/freetype.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftadvanc.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftbbox.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftbdf.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftbitmap.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftbzip2.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftcache.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftchapters.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftcid.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/fterrdef.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/fterrors.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftgasp.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftglyph.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftgxval.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftgzip.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftimage.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftincrem.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftlcdfil.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftlist.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftlzw.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftmac.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftmm.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftmodapi.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftmoderr.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftotval.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftoutln.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftpfr.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftrender.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftsizes.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftsnames.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftstroke.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftsynth.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftsystem.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/fttrigon.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/fttypes.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftwinfnt.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ftxf86.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/autohint.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftcalc.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftdebug.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftdriver.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftgloadr.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftmemory.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftobjs.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftrfork.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftserv.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/ftstream.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/fttrace.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/internal.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/pcftypes.h -unknown- obsolete +./usr/X11R7/include/freetype2/freetype/internal/psaux.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/pshints.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svbdf.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svgldict.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svmm.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svpfr.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svpostnm.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svpscmap.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svpsinfo.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svsfnt.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svttcmap.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svwinfnt.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/services/svxf86nm.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/sfnt.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/t1types.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/internal/tttypes.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/t1tables.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ttnameid.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/tttables.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/tttags.h -unknown- xorg +./usr/X11R7/include/freetype2/freetype/ttunpat.h -unknown- xorg +./usr/X11R7/include/ft2build.h -unknown- xorg +./usr/X11R7/include/libdrm/drm.h -unknown- xorg +./usr/X11R7/include/libdrm/drm_mode.h -unknown- xorg +./usr/X11R7/include/libdrm/drm_sarea.h -unknown- xorg +./usr/X11R7/include/libdrm/i915_drm.h -unknown- xorg +./usr/X11R7/include/libdrm/intel_bufmgr.h -unknown- xorg +./usr/X11R7/include/libdrm/mach64_drm.h -unknown- xorg +./usr/X11R7/include/libdrm/mga_drm.h -unknown- xorg +./usr/X11R7/include/libdrm/nouveau_drm.h -unknown- xorg +./usr/X11R7/include/libdrm/r128_drm.h -unknown- xorg +./usr/X11R7/include/libdrm/radeon_bo.h -unknown- xorg +./usr/X11R7/include/libdrm/radeon_bo_gem.h -unknown- xorg +./usr/X11R7/include/libdrm/radeon_bo_int.h -unknown- xorg +./usr/X11R7/include/libdrm/radeon_cs.h -unknown- xorg +./usr/X11R7/include/libdrm/radeon_cs_gem.h -unknown- xorg +./usr/X11R7/include/libdrm/radeon_cs_int.h -unknown- xorg +./usr/X11R7/include/libdrm/radeon_drm.h -unknown- xorg +./usr/X11R7/include/libdrm/savage_drm.h -unknown- xorg +./usr/X11R7/include/libdrm/sis_drm.h -unknown- xorg +./usr/X11R7/include/libdrm/via_drm.h -unknown- xorg +./usr/X11R7/include/libkms/libkms.h -unknown- xorg +./usr/X11R7/include/pciaccess.h -unknown- xorg +./usr/X11R7/include/pixman-1/pixman-version.h -unknown- xorg +./usr/X11R7/include/pixman-1/pixman.h -unknown- xorg +./usr/X11R7/include/xcb/bigreq.h -unknown- xorg +./usr/X11R7/include/xcb/composite.h -unknown- xorg +./usr/X11R7/include/xcb/damage.h -unknown- xorg +./usr/X11R7/include/xcb/dpms.h -unknown- xorg +./usr/X11R7/include/xcb/dri2.h -unknown- xorg +./usr/X11R7/include/xcb/glx.h -unknown- xorg +./usr/X11R7/include/xcb/randr.h -unknown- xorg +./usr/X11R7/include/xcb/record.h -unknown- xorg +./usr/X11R7/include/xcb/render.h -unknown- xorg +./usr/X11R7/include/xcb/res.h -unknown- xorg +./usr/X11R7/include/xcb/screensaver.h -unknown- xorg +./usr/X11R7/include/xcb/shape.h -unknown- xorg +./usr/X11R7/include/xcb/shm.h -unknown- xorg +./usr/X11R7/include/xcb/sync.h -unknown- xorg +./usr/X11R7/include/xcb/xc_misc.h -unknown- xorg +./usr/X11R7/include/xcb/xcb.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_atom.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_aux.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_bitops.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_event.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_icccm.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_image.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_keysyms.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_pixel.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_property.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_renderutil.h -unknown- xorg +./usr/X11R7/include/xcb/xcb_reply.h -unknown- xorg +./usr/X11R7/include/xcb/xcbext.h -unknown- xorg +./usr/X11R7/include/xcb/xevie.h -unknown- xorg +./usr/X11R7/include/xcb/xf86dri.h -unknown- xorg +./usr/X11R7/include/xcb/xfixes.h -unknown- xorg +./usr/X11R7/include/xcb/xinerama.h -unknown- xorg +./usr/X11R7/include/xcb/xinput.h -unknown- xorg +./usr/X11R7/include/xcb/xproto.h -unknown- xorg +./usr/X11R7/include/xcb/xselinux.h -unknown- xorg +./usr/X11R7/include/xcb/xtest.h -unknown- xorg +./usr/X11R7/include/xcb/xv.h -unknown- xorg +./usr/X11R7/include/xcb/xvmc.h -unknown- xorg +./usr/X11R7/include/xf86drm.h -unknown- xorg +./usr/X11R7/include/xf86drmMode.h -unknown- xorg +./usr/X11R7/include/xorg/BT.h -unknown- xorg +./usr/X11R7/include/xorg/IBM.h -unknown- xorg +./usr/X11R7/include/xorg/TI.h -unknown- xorg +./usr/X11R7/include/xorg/XIstubs.h -unknown- xorg +./usr/X11R7/include/xorg/Xprintf.h -unknown- xorg +./usr/X11R7/include/xorg/afb.h -unknown- obsolete +./usr/X11R7/include/xorg/assyntax.h -unknown- obsolete +./usr/X11R7/include/xorg/atKeynames.h -unknown- obsolete +./usr/X11R7/include/xorg/bstore.h -unknown- obsolete +./usr/X11R7/include/xorg/bstorestr.h -unknown- obsolete +./usr/X11R7/include/xorg/bt829.h -unknown- xorg +./usr/X11R7/include/xorg/callback.h -unknown- xorg +./usr/X11R7/include/xorg/cfb.h -unknown- obsolete +./usr/X11R7/include/xorg/cfb16.h -unknown- obsolete +./usr/X11R7/include/xorg/cfb32.h -unknown- obsolete +./usr/X11R7/include/xorg/cfb8_16.h -unknown- obsolete +./usr/X11R7/include/xorg/cfb8_32.h -unknown- obsolete +./usr/X11R7/include/xorg/cfbmap.h -unknown- obsolete +./usr/X11R7/include/xorg/cfbmskbits.h -unknown- obsolete +./usr/X11R7/include/xorg/cfbunmap.h -unknown- obsolete +./usr/X11R7/include/xorg/closestr.h -unknown- xorg +./usr/X11R7/include/xorg/closure.h -unknown- xorg +./usr/X11R7/include/xorg/colormap.h -unknown- xorg +./usr/X11R7/include/xorg/colormapst.h -unknown- xorg +./usr/X11R7/include/xorg/compiler.h -unknown- xorg +./usr/X11R7/include/xorg/cursor.h -unknown- xorg +./usr/X11R7/include/xorg/cursorstr.h -unknown- xorg +./usr/X11R7/include/xorg/damage.h -unknown- xorg +./usr/X11R7/include/xorg/damagestr.h -unknown- xorg +./usr/X11R7/include/xorg/dbestruct.h -unknown- xorg +./usr/X11R7/include/xorg/dgaproc.h -unknown- xorg +./usr/X11R7/include/xorg/dix-config.h -unknown- xorg +./usr/X11R7/include/xorg/dix.h -unknown- xorg +./usr/X11R7/include/xorg/dixaccess.h -unknown- xorg +./usr/X11R7/include/xorg/dixevents.h -unknown- xorg +./usr/X11R7/include/xorg/dixfont.h -unknown- xorg +./usr/X11R7/include/xorg/dixfontstr.h -unknown- xorg +./usr/X11R7/include/xorg/dixgrabs.h -unknown- xorg +./usr/X11R7/include/xorg/dixstruct.h -unknown- xorg +./usr/X11R7/include/xorg/dri.h -unknown- xorg +./usr/X11R7/include/xorg/dri2.h -unknown- xorg +./usr/X11R7/include/xorg/dristruct.h -unknown- xorg +./usr/X11R7/include/xorg/edid.h -unknown- xorg +./usr/X11R7/include/xorg/eventconvert.h -unknown- xorg +./usr/X11R7/include/xorg/events.h -unknown- xorg +./usr/X11R7/include/xorg/eventstr.h -unknown- xorg +./usr/X11R7/include/xorg/exa.h -unknown- xorg +./usr/X11R7/include/xorg/exevents.h -unknown- xorg +./usr/X11R7/include/xorg/extension.h -unknown- xorg +./usr/X11R7/include/xorg/extinit.h -unknown- xorg +./usr/X11R7/include/xorg/extnsionst.h -unknown- xorg +./usr/X11R7/include/xorg/fb.h -unknown- xorg +./usr/X11R7/include/xorg/fbdevhw.h -unknown- xorg +./usr/X11R7/include/xorg/fboverlay.h -unknown- xorg +./usr/X11R7/include/xorg/fbpseudocolor.h -unknown- obsolete +./usr/X11R7/include/xorg/fbrop.h -unknown- xorg +./usr/X11R7/include/xorg/fi1236.h -unknown- xorg +./usr/X11R7/include/xorg/fourcc.h -unknown- xorg +./usr/X11R7/include/xorg/gc.h -unknown- xorg +./usr/X11R7/include/xorg/gcstruct.h -unknown- xorg +./usr/X11R7/include/xorg/geext.h -unknown- xorg +./usr/X11R7/include/xorg/globals.h -unknown- xorg +./usr/X11R7/include/xorg/glyphstr.h -unknown- xorg +./usr/X11R7/include/xorg/hotplug.h -unknown- xorg +./usr/X11R7/include/xorg/i2c_def.h -unknown- xorg +./usr/X11R7/include/xorg/input.h -unknown- xorg +./usr/X11R7/include/xorg/inputstr.h -unknown- xorg +./usr/X11R7/include/xorg/inpututils.h -unknown- xorg +./usr/X11R7/include/xorg/list.h -unknown- xorg +./usr/X11R7/include/xorg/mfb.h -unknown- obsolete +./usr/X11R7/include/xorg/mfbmap.h -unknown- obsolete +./usr/X11R7/include/xorg/mfbunmap.h -unknown- obsolete +./usr/X11R7/include/xorg/mi.h -unknown- xorg +./usr/X11R7/include/xorg/mibank.h -unknown- obsolete +./usr/X11R7/include/xorg/mibstore.h -unknown- xorg +./usr/X11R7/include/xorg/micmap.h -unknown- xorg +./usr/X11R7/include/xorg/micoord.h -unknown- xorg +./usr/X11R7/include/xorg/mifillarc.h -unknown- xorg +./usr/X11R7/include/xorg/mifpoly.h -unknown- xorg +./usr/X11R7/include/xorg/migc.h -unknown- xorg +./usr/X11R7/include/xorg/miline.h -unknown- xorg +./usr/X11R7/include/xorg/mipict.h -unknown- xorg +./usr/X11R7/include/xorg/mipointer.h -unknown- xorg +./usr/X11R7/include/xorg/mipointrst.h -unknown- xorg +./usr/X11R7/include/xorg/misc.h -unknown- xorg +./usr/X11R7/include/xorg/miscstruct.h -unknown- xorg +./usr/X11R7/include/xorg/mispans.h -unknown- xorg +./usr/X11R7/include/xorg/mistruct.h -unknown- xorg +./usr/X11R7/include/xorg/miwideline.h -unknown- xorg +./usr/X11R7/include/xorg/mizerarc.h -unknown- xorg +./usr/X11R7/include/xorg/msp3430.h -unknown- xorg +./usr/X11R7/include/xorg/opaque.h -unknown- xorg +./usr/X11R7/include/xorg/os.h -unknown- xorg +./usr/X11R7/include/xorg/picture.h -unknown- xorg +./usr/X11R7/include/xorg/picturestr.h -unknown- xorg +./usr/X11R7/include/xorg/pixmap.h -unknown- xorg +./usr/X11R7/include/xorg/pixmapstr.h -unknown- xorg +./usr/X11R7/include/xorg/privates.h -unknown- xorg +./usr/X11R7/include/xorg/property.h -unknown- xorg +./usr/X11R7/include/xorg/propertyst.h -unknown- xorg +./usr/X11R7/include/xorg/protocol-versions.h -unknown- xorg +./usr/X11R7/include/xorg/ptrveloc.h -unknown- xorg +./usr/X11R7/include/xorg/randrstr.h -unknown- xorg +./usr/X11R7/include/xorg/region.h -unknown- xorg +./usr/X11R7/include/xorg/regionstr.h -unknown- xorg +./usr/X11R7/include/xorg/registry.h -unknown- xorg +./usr/X11R7/include/xorg/renderedge.h -unknown- obsolete +./usr/X11R7/include/xorg/resource.h -unknown- xorg +./usr/X11R7/include/xorg/rgb.h -unknown- xorg +./usr/X11R7/include/xorg/rrtransform.h -unknown- xorg +./usr/X11R7/include/xorg/sarea.h -unknown- xorg +./usr/X11R7/include/xorg/screenint.h -unknown- xorg +./usr/X11R7/include/xorg/scrnintstr.h -unknown- xorg +./usr/X11R7/include/xorg/selection.h -unknown- xorg +./usr/X11R7/include/xorg/servermd.h -unknown- xorg +./usr/X11R7/include/xorg/set.h -unknown- xorg +./usr/X11R7/include/xorg/shadow.h -unknown- xorg +./usr/X11R7/include/xorg/shadowfb.h -unknown- xorg +./usr/X11R7/include/xorg/site.h -unknown- xorg +./usr/X11R7/include/xorg/swaprep.h -unknown- xorg +./usr/X11R7/include/xorg/swapreq.h -unknown- xorg +./usr/X11R7/include/xorg/tda8425.h -unknown- xorg +./usr/X11R7/include/xorg/tda9850.h -unknown- xorg +./usr/X11R7/include/xorg/tda9885.h -unknown- xorg +./usr/X11R7/include/xorg/uda1380.h -unknown- xorg +./usr/X11R7/include/xorg/validate.h -unknown- xorg +./usr/X11R7/include/xorg/vbe.h -unknown- xorg +./usr/X11R7/include/xorg/vbeModes.h -unknown- xorg +./usr/X11R7/include/xorg/version-config.h -unknown- xorg +./usr/X11R7/include/xorg/vgaHW.h -unknown- xorg +./usr/X11R7/include/xorg/window.h -unknown- xorg +./usr/X11R7/include/xorg/windowstr.h -unknown- xorg +./usr/X11R7/include/xorg/xaa.h -unknown- xorg +./usr/X11R7/include/xorg/xaaWrapper.h -unknown- obsolete +./usr/X11R7/include/xorg/xaalocal.h -unknown- xorg +./usr/X11R7/include/xorg/xaarop.h -unknown- xorg +./usr/X11R7/include/xorg/xf1bpp.h -unknown- obsolete +./usr/X11R7/include/xorg/xf4bpp.h -unknown- obsolete +./usr/X11R7/include/xorg/xf86.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Crtc.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Cursor.h -unknown- xorg +./usr/X11R7/include/xorg/xf86DDC.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Modes.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Module.h -unknown- xorg +./usr/X11R7/include/xorg/xf86OSmouse.h -unknown- obsolete +./usr/X11R7/include/xorg/xf86Opt.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Optrec.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Parser.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Pci.h -unknown- xorg +./usr/X11R7/include/xorg/xf86PciInfo.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Priv.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Privstr.h -unknown- xorg +./usr/X11R7/include/xorg/xf86RAC.h -unknown- obsolete +./usr/X11R7/include/xorg/xf86RamDac.h -unknown- xorg +./usr/X11R7/include/xorg/xf86RandR12.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Rename.h -unknown- xorg +./usr/X11R7/include/xorg/xf86Resources.h -unknown- obsolete +./usr/X11R7/include/xorg/xf86Version.h -unknown- obsolete +./usr/X11R7/include/xorg/xf86Xinput.h -unknown- xorg +./usr/X11R7/include/xorg/xf86_OSlib.h -unknown- xorg +./usr/X11R7/include/xorg/xf86_OSproc.h -unknown- xorg +./usr/X11R7/include/xorg/xf86_ansic.h -unknown- obsolete +./usr/X11R7/include/xorg/xf86_libc.h -unknown- obsolete +./usr/X11R7/include/xorg/xf86cmap.h -unknown- xorg +./usr/X11R7/include/xorg/xf86fbman.h -unknown- xorg +./usr/X11R7/include/xorg/xf86i2c.h -unknown- xorg +./usr/X11R7/include/xorg/xf86int10.h -unknown- xorg +./usr/X11R7/include/xorg/xf86sbusBus.h -unknown- xorg +./usr/X11R7/include/xorg/xf86str.h -unknown- xorg +./usr/X11R7/include/xorg/xf86xv.h -unknown- xorg +./usr/X11R7/include/xorg/xf86xvmc.h -unknown- xorg +./usr/X11R7/include/xorg/xf86xvpriv.h -unknown- xorg +./usr/X11R7/include/xorg/xisb.h -unknown- xorg +./usr/X11R7/include/xorg/xkb.h -unknown- xorg +./usr/X11R7/include/xorg/xkbDflts.h -unknown- xorg +./usr/X11R7/include/xorg/xkbfile.h -unknown- xorg +./usr/X11R7/include/xorg/xkbrules.h -unknown- xorg +./usr/X11R7/include/xorg/xkbsrv.h -unknown- xorg +./usr/X11R7/include/xorg/xkbstr.h -unknown- xorg +./usr/X11R7/include/xorg/xorg-server.h -unknown- xorg +./usr/X11R7/include/xorg/xorgVersion.h -unknown- xorg +./usr/X11R7/include/xorg/xserver-properties.h -unknown- xorg +./usr/X11R7/include/xorg/xsha1.h -unknown- xorg +./usr/X11R7/include/xorg/xvdix.h -unknown- xorg +./usr/X11R7/include/xorg/xvmcext.h -unknown- xorg +./usr/X11R7/lib/X11/config/Amoeba.cf -unknown- xorg +./usr/X11R7/lib/X11/config/DGUX.cf -unknown- xorg +./usr/X11R7/lib/X11/config/FreeBSD.cf -unknown- xorg +./usr/X11R7/lib/X11/config/Imake.cf -unknown- xorg +./usr/X11R7/lib/X11/config/Imake.rules -unknown- xorg +./usr/X11R7/lib/X11/config/Imake.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/Library.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/Mips.cf -unknown- xorg +./usr/X11R7/lib/X11/config/Motif.rules -unknown- xorg +./usr/X11R7/lib/X11/config/Motif.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/NetBSD.cf -unknown- xorg +./usr/X11R7/lib/X11/config/Oki.cf -unknown- xorg +./usr/X11R7/lib/X11/config/OpenBSD.cf -unknown- xorg +./usr/X11R7/lib/X11/config/QNX4.cf -unknown- xorg +./usr/X11R7/lib/X11/config/QNX4.rules -unknown- xorg +./usr/X11R7/lib/X11/config/Server.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/ServerLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/Threads.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/Win32.cf -unknown- xorg +./usr/X11R7/lib/X11/config/Win32.rules -unknown- xorg +./usr/X11R7/lib/X11/config/WinLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/X11.rules -unknown- xorg +./usr/X11R7/lib/X11/config/X11.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/apollo.cf -unknown- xorg +./usr/X11R7/lib/X11/config/bsd.cf -unknown- xorg +./usr/X11R7/lib/X11/config/bsdLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/bsdLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/bsdi.cf -unknown- xorg +./usr/X11R7/lib/X11/config/cde.rules -unknown- xorg +./usr/X11R7/lib/X11/config/cde.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/convex.cf -unknown- xorg +./usr/X11R7/lib/X11/config/cray.cf -unknown- xorg +./usr/X11R7/lib/X11/config/cygwin.cf -unknown- xorg +./usr/X11R7/lib/X11/config/cygwin.rules -unknown- xorg +./usr/X11R7/lib/X11/config/cygwin.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/darwin.cf -unknown- xorg +./usr/X11R7/lib/X11/config/darwinLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/darwinLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/date.def -unknown- xorg +./usr/X11R7/lib/X11/config/fujitsu.cf -unknown- xorg +./usr/X11R7/lib/X11/config/generic.cf -unknown- xorg +./usr/X11R7/lib/X11/config/gnu.cf -unknown- xorg +./usr/X11R7/lib/X11/config/gnuLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/gnuLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/host.def -unknown- xorg +./usr/X11R7/lib/X11/config/hp.cf -unknown- xorg +./usr/X11R7/lib/X11/config/hpLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/hpLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/ibm.cf -unknown- xorg +./usr/X11R7/lib/X11/config/ibmLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/ibmLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/isc.cf -unknown- xorg +./usr/X11R7/lib/X11/config/linux.cf -unknown- xorg +./usr/X11R7/lib/X11/config/lnxLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/lnxLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/lnxdoc.rules -unknown- xorg +./usr/X11R7/lib/X11/config/lnxdoc.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/luna.cf -unknown- xorg +./usr/X11R7/lib/X11/config/lynx.cf -unknown- xorg +./usr/X11R7/lib/X11/config/macII.cf -unknown- xorg +./usr/X11R7/lib/X11/config/mach.cf -unknown- xorg +./usr/X11R7/lib/X11/config/minix.cf -unknown- xorg +./usr/X11R7/lib/X11/config/moto.cf -unknown- xorg +./usr/X11R7/lib/X11/config/ncr.cf -unknown- xorg +./usr/X11R7/lib/X11/config/nec.cf -unknown- xorg +./usr/X11R7/lib/X11/config/necLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/necLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/noop.rules -unknown- xorg +./usr/X11R7/lib/X11/config/nto.cf -unknown- xorg +./usr/X11R7/lib/X11/config/nto.rules -unknown- xorg +./usr/X11R7/lib/X11/config/oldlib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/os2.cf -unknown- xorg +./usr/X11R7/lib/X11/config/os2.rules -unknown- xorg +./usr/X11R7/lib/X11/config/os2Lib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/os2Lib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/osf1.cf -unknown- xorg +./usr/X11R7/lib/X11/config/osfLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/osfLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/pegasus.cf -unknown- xorg +./usr/X11R7/lib/X11/config/sco.cf -unknown- xorg +./usr/X11R7/lib/X11/config/sco5.cf -unknown- xorg +./usr/X11R7/lib/X11/config/scoLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/sequent.cf -unknown- xorg +./usr/X11R7/lib/X11/config/sgi.cf -unknown- xorg +./usr/X11R7/lib/X11/config/sgiLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/sgiLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/site.def -unknown- xorg +./usr/X11R7/lib/X11/config/sony.cf -unknown- xorg +./usr/X11R7/lib/X11/config/sun.cf -unknown- xorg +./usr/X11R7/lib/X11/config/sunLib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/sunLib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/sv3Lib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/sv3Lib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/sv4Lib.rules -unknown- xorg +./usr/X11R7/lib/X11/config/sv4Lib.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/svr3.cf -unknown- xorg +./usr/X11R7/lib/X11/config/svr4.cf -unknown- xorg +./usr/X11R7/lib/X11/config/ultrix.cf -unknown- xorg +./usr/X11R7/lib/X11/config/usl.cf -unknown- xorg +./usr/X11R7/lib/X11/config/version.def -unknown- obsolete +./usr/X11R7/lib/X11/config/x386.cf -unknown- xorg +./usr/X11R7/lib/X11/config/xf86.rules -unknown- xorg +./usr/X11R7/lib/X11/config/xf86.tmpl -unknown- xorg +./usr/X11R7/lib/X11/config/xf86site.def -unknown- xorg +./usr/X11R7/lib/X11/config/xfree86.cf -unknown- xorg +./usr/X11R7/lib/X11/config/xorg.cf -unknown- xorg +./usr/X11R7/lib/X11/config/xorgsite.def -unknown- xorg +./usr/X11R7/lib/X11/config/xorgversion.def -unknown- xorg +./usr/X11R7/lib/libFS.a -unknown- xorg +./usr/X11R7/lib/libFS_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libFS_p.a -unknown- profile,xorg +./usr/X11R7/lib/libGL.a -unknown- xorg +./usr/X11R7/lib/libGLU.a -unknown- xorg +./usr/X11R7/lib/libGLU_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libGLU_p.a -unknown- profile,xorg +./usr/X11R7/lib/libGL_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libGL_p.a -unknown- profile,xorg +./usr/X11R7/lib/libGLw.a -unknown- xorg +./usr/X11R7/lib/libGLw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libGLw_p.a -unknown- profile,xorg +./usr/X11R7/lib/libICE.a -unknown- xorg +./usr/X11R7/lib/libICE_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libICE_p.a -unknown- profile,xorg +./usr/X11R7/lib/libOSMesa.a -unknown- xorg +./usr/X11R7/lib/libOSMesa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libOSMesa_p.a -unknown- profile,xorg +./usr/X11R7/lib/libSM.a -unknown- xorg +./usr/X11R7/lib/libSM_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libSM_p.a -unknown- profile,xorg +./usr/X11R7/lib/libX11-xcb.a -unknown- xorg +./usr/X11R7/lib/libX11-xcb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libX11-xcb_p.a -unknown- profile,xorg +./usr/X11R7/lib/libX11.a -unknown- xorg +./usr/X11R7/lib/libX11_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libX11_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXRes.a -unknown- xorg +./usr/X11R7/lib/libXRes_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXRes_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXTrap.a -unknown- xorg +./usr/X11R7/lib/libXTrap_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXTrap_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXau.a -unknown- xorg +./usr/X11R7/lib/libXau_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXau_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXaw.a -unknown- xorg +./usr/X11R7/lib/libXaw6_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXaw7.a -unknown- xorg +./usr/X11R7/lib/libXaw7_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXaw7_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXaw8.a -obsolete- obsolete +./usr/X11R7/lib/libXaw8_g.a -obsolete- obsolete +./usr/X11R7/lib/libXaw8_p.a -obsolete- obsolete +./usr/X11R7/lib/libXaw_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXcomposite.a -unknown- xorg +./usr/X11R7/lib/libXcomposite_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXcomposite_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXcursor.a -unknown- xorg +./usr/X11R7/lib/libXcursor_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXcursor_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXdamage.a -unknown- xorg +./usr/X11R7/lib/libXdamage_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXdamage_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXdmcp.a -unknown- xorg +./usr/X11R7/lib/libXdmcp_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXdmcp_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXevie.a -unknown- xorg +./usr/X11R7/lib/libXevie_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXevie_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXext.a -unknown- xorg +./usr/X11R7/lib/libXext_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXext_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXfixes.a -unknown- xorg +./usr/X11R7/lib/libXfixes_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXfixes_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXfont.a -unknown- xorg +./usr/X11R7/lib/libXfont_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXfont_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXfontcache.a -unknown- xorg +./usr/X11R7/lib/libXfontcache_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXfontcache_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXft.a -unknown- xorg +./usr/X11R7/lib/libXft_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXft_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXi.a -unknown- xorg +./usr/X11R7/lib/libXi_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXi_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXinerama.a -unknown- xorg +./usr/X11R7/lib/libXinerama_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXinerama_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXmu.a -unknown- xorg +./usr/X11R7/lib/libXmu_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXmu_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXmuu.a -unknown- xorg +./usr/X11R7/lib/libXmuu_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXmuu_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXp.a -obsolete- obsolete +./usr/X11R7/lib/libXp_g.a -obsolete- obsolete +./usr/X11R7/lib/libXp_p.a -obsolete- obsolete +./usr/X11R7/lib/libXpm.a -unknown- xorg +./usr/X11R7/lib/libXpm_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXpm_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXprintAppUtil.a -obsolete- obsolete +./usr/X11R7/lib/libXprintAppUtil_g.a -obsolete- obsolete +./usr/X11R7/lib/libXprintAppUtil_p.a -obsolete- obsolete +./usr/X11R7/lib/libXprintUtil.a -obsolete- obsolete +./usr/X11R7/lib/libXprintUtil_g.a -obsolete- obsolete +./usr/X11R7/lib/libXprintUtil_p.a -obsolete- obsolete +./usr/X11R7/lib/libXrandr.a -unknown- xorg +./usr/X11R7/lib/libXrandr_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXrandr_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXrender.a -unknown- xorg +./usr/X11R7/lib/libXrender_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXrender_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXres.a -obsolete- obsolete +./usr/X11R7/lib/libXres_g.a -obsolete- obsolete +./usr/X11R7/lib/libXres_p.a -obsolete- obsolete +./usr/X11R7/lib/libXss.a -unknown- xorg +./usr/X11R7/lib/libXss_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXss_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXt.a -unknown- xorg +./usr/X11R7/lib/libXt_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXt_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXtst.a -unknown- xorg +./usr/X11R7/lib/libXtst_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXtst_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXv.a -unknown- xorg +./usr/X11R7/lib/libXvMC.a -unknown- xorg +./usr/X11R7/lib/libXvMCW.a -unknown- xorg +./usr/X11R7/lib/libXvMCW_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXvMCW_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXvMC_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXvMC_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXv_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXv_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXxf86dga.a -unknown- xorg +./usr/X11R7/lib/libXxf86dga_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXxf86dga_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXxf86misc.a -unknown- xorg +./usr/X11R7/lib/libXxf86misc_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXxf86misc_p.a -unknown- profile,xorg +./usr/X11R7/lib/libXxf86vm.a -unknown- xorg +./usr/X11R7/lib/libXxf86vm_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libXxf86vm_p.a -unknown- profile,xorg +./usr/X11R7/lib/libdrm.a -unknown- xorg +./usr/X11R7/lib/libdrm_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libdrm_p.a -unknown- profile,xorg +./usr/X11R7/lib/libdrm_radeon.a -unknown- xorg +./usr/X11R7/lib/libdrm_radeon_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libdrm_radeon_p.a -unknown- profile,xorg +./usr/X11R7/lib/libexpat.a -unknown- obsolete +./usr/X11R7/lib/libexpat_g.a -unknown- obsolete +./usr/X11R7/lib/libexpat_p.a -unknown- obsolete +./usr/X11R7/lib/libfontconfig.a -unknown- xorg +./usr/X11R7/lib/libfontconfig_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libfontconfig_p.a -unknown- profile,xorg +./usr/X11R7/lib/libfontenc.a -unknown- xorg +./usr/X11R7/lib/libfontenc_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libfontenc_p.a -unknown- profile,xorg +./usr/X11R7/lib/libfreetype.a -unknown- xorg +./usr/X11R7/lib/libfreetype_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libfreetype_p.a -unknown- profile,xorg +./usr/X11R7/lib/libglut.a -unknown- xorg +./usr/X11R7/lib/libglut_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libglut_p.a -unknown- profile,xorg +./usr/X11R7/lib/liblbxutil.a -obsolete- obsolete +./usr/X11R7/lib/liblbxutil_g.a -obsolete- obsolete +./usr/X11R7/lib/liblbxutil_p.a -obsolete- obsolete +./usr/X11R7/lib/liblisp.a -unknown- xorg +./usr/X11R7/lib/liblisp_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/liblisp_p.a -unknown- profile,xorg +./usr/X11R7/lib/libmp.a -unknown- xorg +./usr/X11R7/lib/libmp_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libmp_p.a -unknown- profile,xorg +./usr/X11R7/lib/libpciaccess.a -unknown- xorg +./usr/X11R7/lib/libpciaccess_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libpciaccess_p.a -unknown- profile,xorg +./usr/X11R7/lib/libpixman-1.a -unknown- xorg +./usr/X11R7/lib/libpixman-1_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libpixman-1_p.a -unknown- profile,xorg +./usr/X11R7/lib/libre.a -unknown- xorg +./usr/X11R7/lib/libre_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libre_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-atom.a -unknown- xorg +./usr/X11R7/lib/libxcb-atom_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-atom_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-aux.a -unknown- xorg +./usr/X11R7/lib/libxcb-aux_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-aux_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-composite.a -unknown- xorg +./usr/X11R7/lib/libxcb-composite_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-composite_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-damage.a -unknown- xorg +./usr/X11R7/lib/libxcb-damage_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-damage_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-dpms.a -unknown- xorg +./usr/X11R7/lib/libxcb-dpms_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-dpms_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-dri2.a -unknown- xorg +./usr/X11R7/lib/libxcb-dri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-dri2_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-event.a -unknown- xorg +./usr/X11R7/lib/libxcb-event_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-event_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-glx.a -unknown- xorg +./usr/X11R7/lib/libxcb-glx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-glx_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-icccm.a -unknown- xorg +./usr/X11R7/lib/libxcb-icccm_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-icccm_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-image.a -unknown- xorg +./usr/X11R7/lib/libxcb-image_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-image_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-keysyms.a -unknown- xorg +./usr/X11R7/lib/libxcb-keysyms_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-keysyms_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-property.a -unknown- xorg +./usr/X11R7/lib/libxcb-property_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-property_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-randr.a -unknown- xorg +./usr/X11R7/lib/libxcb-randr_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-randr_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-record.a -unknown- xorg +./usr/X11R7/lib/libxcb-record_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-record_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-render-util.a -unknown- xorg +./usr/X11R7/lib/libxcb-render-util_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-render-util_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-render.a -unknown- xorg +./usr/X11R7/lib/libxcb-render_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-render_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-reply.a -unknown- xorg +./usr/X11R7/lib/libxcb-reply_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-reply_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-res.a -unknown- xorg +./usr/X11R7/lib/libxcb-res_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-res_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-screensaver.a -unknown- xorg +./usr/X11R7/lib/libxcb-screensaver_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-screensaver_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-shape.a -unknown- xorg +./usr/X11R7/lib/libxcb-shape_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-shape_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-shm.a -unknown- xorg +./usr/X11R7/lib/libxcb-shm_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-shm_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-sync.a -unknown- xorg +./usr/X11R7/lib/libxcb-sync_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-sync_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-xevie.a -unknown- xorg +./usr/X11R7/lib/libxcb-xevie_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-xevie_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-xf86dri.a -unknown- xorg +./usr/X11R7/lib/libxcb-xf86dri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-xf86dri_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-xfixes.a -unknown- xorg +./usr/X11R7/lib/libxcb-xfixes_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-xfixes_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-xinerama.a -unknown- xorg +./usr/X11R7/lib/libxcb-xinerama_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-xinerama_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-xtest.a -unknown- xorg +./usr/X11R7/lib/libxcb-xtest_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-xtest_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-xv.a -unknown- xorg +./usr/X11R7/lib/libxcb-xv_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-xv_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb-xvmc.a -unknown- xorg +./usr/X11R7/lib/libxcb-xvmc_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb-xvmc_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxcb.a -unknown- xorg +./usr/X11R7/lib/libxcb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxcb_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxkbfile.a -unknown- xorg +./usr/X11R7/lib/libxkbfile_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxkbfile_p.a -unknown- profile,xorg +./usr/X11R7/lib/libxkbui.a -unknown- xorg +./usr/X11R7/lib/libxkbui_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/libxkbui_p.a -unknown- profile,xorg +./usr/X11R7/lib/pkgconfig/bigreqsproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/compositeproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/damageproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/dri.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/dri2proto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/evieproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/fixesproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/fontcacheproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/fontconfig.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/fontenc.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/fontsproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/fontutil.pc -unknown- xorg,x11fonts +./usr/X11R7/lib/pkgconfig/freetype2.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/gl.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/glproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/glu.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/glut.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/glw.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/ice.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/inputproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/kbproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/lbxutil.pc -obsolete- obsolete +./usr/X11R7/lib/pkgconfig/libdrm.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/libdrm_radeon.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/libfs.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/pciaccess.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/pixman-1.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/printproto.pc -obsolete- obsolete +./usr/X11R7/lib/pkgconfig/randrproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/recordproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/renderproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/resourceproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/scrnsaverproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/sm.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/trapproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/videoproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/x11-xcb.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/x11.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xau.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xaw6.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xaw7.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xaw8.pc -obsolete- obsolete +./usr/X11R7/lib/pkgconfig/xbitmaps.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-atom.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-aux.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-composite.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-damage.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-dpms.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-dri2.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-event.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-glx.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-icccm.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-image.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-keysyms.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-property.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-proto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-randr.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-record.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-render.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-renderutil.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-reply.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-res.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-screensaver.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-shape.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-shm.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-sync.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-xevie.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-xf86dri.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-xfixes.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-xinerama.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-xtest.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-xv.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb-xvmc.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcb.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcmiscproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcomposite.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xcursor.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xdamage.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xdmcp.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xevie.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xext.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xextproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xf86bigfontproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xf86dgaproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xf86driproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xf86miscproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xf86vidmodeproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xfixes.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xfont.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xfontcache.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xft.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xi.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xinerama.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xineramaproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xkbfile.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xkbui.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xkeyboard-config.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xmu.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xmuu.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xorg-server.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xp.pc -obsolete- obsolete +./usr/X11R7/lib/pkgconfig/xpm.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xprintapputil.pc -obsolete- obsolete +./usr/X11R7/lib/pkgconfig/xprintutil.pc -obsolete- obsolete +./usr/X11R7/lib/pkgconfig/xproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xproxymngproto.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xrandr.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xrender.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xres.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xscrnsaver.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xt.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xtrans.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xtrap.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xtst.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xv.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xvmc.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xxf86dga.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xxf86misc.pc -unknown- xorg +./usr/X11R7/lib/pkgconfig/xxf86vm.pc -unknown- xorg +./usr/X11R7/man/cat1/mergelib.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xft-config.0 -unknown- obsolete +./usr/X11R7/man/cat3/AllPlanes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/BlackPixelOfScreen.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DBE.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSCapable.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSDisable.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSEnable.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSForceLevel.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSGetTimeouts.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSGetVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DPMSSetTimeouts.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/DisplayOfCCC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcAtomicCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcAtomicDeleteNew.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcAtomicDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcAtomicLock.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcAtomicNewFile.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcAtomicOrigFile.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcAtomicReplaceOrig.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcAtomicUnlock.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcBlanksAdd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcBlanksCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcBlanksDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcBlanksIsMember.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCacheCopySet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCacheDir.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCacheNumFont.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCacheNumSubdir.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCacheSubdir.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetAddChar.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetCopy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetCount.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetCoverage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetEqual.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetFirstPage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetHasChar.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetIntersect.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetIntersectCount.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetIsSubset.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetNew.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetNextPage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetSubtract.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetSubtractCount.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcCharSetUnion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigAppFontAddDir.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigAppFontAddFile.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigAppFontClear.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigBuildFonts.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigEnableHome.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigFilename.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetBlanks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetCache.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetCacheDirs.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetConfigDirs.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetConfigFiles.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetCurrent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetFontDirs.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetFonts.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigGetRescanInterval.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigHome.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigParseAndLoad.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigSetCurrent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigSetRescanInterval.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigSubstitute.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigSubstituteWithPat.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcConfigUptoDate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDefaultSubstitute.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDirCacheLoad.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDirCacheLoadFile.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDirCacheRead.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDirCacheUnlink.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDirCacheUnload.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDirCacheValid.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDirSave.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcDirScan.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFileIsDir.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFileScan.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFini.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontMatch.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontRenderPrepare.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSetAdd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSetCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSetDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSetList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSetMatch.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSetPrint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSetSort.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSetSortDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFontSort.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFreeTypeCharIndex.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFreeTypeCharSet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFreeTypeCharSetAndSpacing.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFreeTypeQuery.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcFreeTypeQueryFace.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcGetLangs.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcGetVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcInit.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcInitBringUptoDate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcInitLoadConfig.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcInitLoadConfigAndFonts.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcInitReinitialize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcIsLower.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcIsUpper.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangGetCharSet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetAdd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetCompare.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetContains.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetCopy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetEqual.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetHasLang.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcLangSetHash.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcMatrixCopy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcMatrixEqual.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcMatrixInit.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcMatrixMultiply.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcMatrixRotate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcMatrixScale.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcMatrixShear.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameConstant.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameGetConstant.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameGetObjectType.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameParse.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameRegisterConstants.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameRegisterObjectTypes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameUnparse.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameUnregisterConstants.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcNameUnregisterObjectTypes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcObjectSetAdd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcObjectSetBuild.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcObjectSetCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcObjectSetDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternAdd-Type.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternAdd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternAddWeak.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternBuild.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternDel.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternDuplicate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternEqual.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternEqualSubset.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternGet-Type.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternGet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternHash.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternPrint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternReference.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcPatternRemove.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrBasename.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrCmp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrCmpIgnoreCase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrCopy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrCopyFilename.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrDirname.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrDowncase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrFree.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrListCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrListDone.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrListNext.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrPlus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrSetAdd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrSetAddFilename.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrSetCreate.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrSetDel.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrSetDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrSetEqual.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrSetMember.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrStr.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcStrStrIgnoreCase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcToLower.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcUcs4ToUtf8.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcUtf16Len.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcUtf16ToUcs4.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcUtf8Len.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcUtf8ToUcs4.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcValueDestroy.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcValueEqual.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcValuePrint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FcValueSave.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FontCacheChangeCacheSettings.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FontCacheGetCacheSettings.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FontCacheGetCacheStatistics.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FontCacheQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/FontCacheQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/ImageByteOrder.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/IsCursorKey.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/MenuPopdown.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/MenuPopup.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAddConnectionWatch.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAddHost.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAllocClassHint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAllocColor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAllocIconSize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAllocSizeHints.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAllocStandardColormap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAllocWMHints.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAllowDeviceEvents.0 -unknown- obsolete +./usr/X11R7/man/cat3/XAllowEvents.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XAnyEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XButtonEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XChangeDeviceControl.0 -unknown- obsolete +./usr/X11R7/man/cat3/XChangeDeviceDontPropagateList.0 -unknown- obsolete +./usr/X11R7/man/cat3/XChangeDeviceKeyMapping.0 -unknown- obsolete +./usr/X11R7/man/cat3/XChangeFeedbackControl.0 -unknown- obsolete +./usr/X11R7/man/cat3/XChangeKeyboardControl.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XChangeKeyboardDevice.0 -unknown- obsolete +./usr/X11R7/man/cat3/XChangeKeyboardMapping.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XChangePointerControl.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XChangePointerDevice.0 -unknown- obsolete +./usr/X11R7/man/cat3/XChangeSaveSet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XChangeWindowAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCirculateEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCirculateRequestEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XClearArea.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XClientMessageEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCloseDevice.0 -unknown- obsolete +./usr/X11R7/man/cat3/XColormapEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeCreateRegionFromBorderClip.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeGetOverlayWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeNameWindowPixmap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeRedirectSubwindows.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeRedirectWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeReleaseOverlayWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeUnredirectSubwindows.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeUnredirectWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCompositeVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XConfigureEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XConfigureRequestEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XConfigureWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCopyArea.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateColormap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateFontCursor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateFontSet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateGC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateIC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateOC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreatePixmap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateRegion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCreateWindowEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XCrossingEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGA.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAChangePixmapMode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGACloseFramebuffer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGACopyArea.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGACopyTransparentArea.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGACreateColormap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAFillRectangle.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAGetViewportStatus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAInstallColormap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAKeyEventToXKeyEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAOpenFramebuffer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAQueryModes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGAQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGASelectInput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGASetClientVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGASetMode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGASetViewport.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDGASync.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDefineCursor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDestroyWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDestroyWindowEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDeviceBell.0 -unknown- obsolete +./usr/X11R7/man/cat3/XDeviceTimeCoord.0 -unknown- obsolete +./usr/X11R7/man/cat3/XDrawArc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDrawImageString.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDrawLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDrawPoint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDrawRectangle.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDrawString.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XDrawText.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XEmptyRegion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XErrorEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XExposeEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XExtentsOfFontSet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86DGA.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86Misc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86MiscGetKbdSettings.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86MiscGetMouseSettings.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86MiscGetSaver.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86MiscQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86MiscQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86MiscSetKbdSettings.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86MiscSetMouseSettings.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86MiscSetSaver.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VM.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeDeleteModeLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetAllModeLines.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetDotClocks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetGamma.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetGammaRamp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetGammaRampSize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetModeLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetMonitor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetPermissions.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetViewPort.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeLockModeSwitch.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeModModeLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSetClientVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSetGamma.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSetGammaRamp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSetViewPort.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSwitchMode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSwitchToMode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeValidateModeLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFillRectangle.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFilterEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFlush.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFocusChangeEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFontSetExtents.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFontsOfFontSet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFree.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFree86-DGA.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XFreeDeviceList.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetDeviceButtonMapping.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetDeviceControl.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetDeviceDontPropagateList.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetDeviceFocus.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetDeviceKeyMapping.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetDeviceModifierMapping.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetDeviceMotionEvents.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetDeviceProperty.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetExtensionVersion.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetFeedbackControl.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetSelectedExtensionEvents.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGetVisualInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGetWindowAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGetWindowProperty.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGetXCBConnection.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGrabButton.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGrabDevice.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGrabDeviceButton.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGrabDeviceKey.0 -unknown- obsolete +./usr/X11R7/man/cat3/XGrabKey.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGrabKeyboard.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGrabPointer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGrabServer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGraphicsExposeEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XGravityEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XIconifyWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XIfEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XInitImage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XInitThreads.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XInstallColormap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XInternAtom.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XIntersectRegion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XKeymapEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XListDeviceProperties.0 -unknown- obsolete +./usr/X11R7/man/cat3/XListFonts.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XListInputDevices.0 -unknown- obsolete +./usr/X11R7/man/cat3/XLoadFont.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XLookupKeysym.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XMapEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XMapRequestEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XMapWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XNextEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XNoOp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XOpenDevice.0 -unknown- obsolete +./usr/X11R7/man/cat3/XOpenDisplay.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XOpenIM.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XOpenOM.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XParseGeometry.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XPolygonRegion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XPropertyEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XPutBackEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XPutImage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XQueryBestSize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XQueryColor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XQueryDeviceState.0 -unknown- obsolete +./usr/X11R7/man/cat3/XQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XQueryPointer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XQueryTree.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XRaiseWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XReadBitmapFile.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XRecolorCursor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XReparentEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XReparentWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XRes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XResQueryClientPixmapBytes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XResQueryClientResources.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XResQueryClients.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XResQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XResQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XResizeRequestEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XResourceManagerString.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSaveContext.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverAllocInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverGetRegistered.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverQueryInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverRegister.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverSelectInput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverSetAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverSuspend.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverUnregister.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XScreenSaverUnsetAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSelectExtensionEvent.0 -unknown- obsolete +./usr/X11R7/man/cat3/XSelectInput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSelectionClearEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSelectionEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSelectionRequestEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSendEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSendExtensionEvent.0 -unknown- obsolete +./usr/X11R7/man/cat3/XSetArcMode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetClipOrigin.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetCloseDownMode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetCommand.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetDeviceButtonMapping.0 -unknown- obsolete +./usr/X11R7/man/cat3/XSetDeviceFocus.0 -unknown- obsolete +./usr/X11R7/man/cat3/XSetDeviceMode.0 -unknown- obsolete +./usr/X11R7/man/cat3/XSetDeviceModifierMapping.0 -unknown- obsolete +./usr/X11R7/man/cat3/XSetDeviceValuators.0 -unknown- obsolete +./usr/X11R7/man/cat3/XSetErrorHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetEventQueueOwner.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetFillStyle.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetFont.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetFontPath.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetICFocus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetICValues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetInputFocus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetLineAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetPointerMapping.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetScreenSaver.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetSelectionOwner.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetState.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetTextProperty.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetTile.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetTransientForHint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetWMClientMachine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetWMColormapWindows.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetWMIconName.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetWMName.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetWMProperties.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSetWMProtocols.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShape.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeCombineMask.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeCombineRectangles.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeCombineRegion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeCombineShape.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeGetRectangles.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeInputSelected.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeOffsetShape.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeQueryExtensionXShapeQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeQueryExtents.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShapeSelectInput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmAttach.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmCreateImage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmCreatePixmap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmDetach.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmGetEventBase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmGetImage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmPixmapFormat.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmPutImage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XShmQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XStoreBytes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XStoreColors.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XStringListToTextProperty.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XStringToKeysym.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSupportsLocale.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XSynchronize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XTestCompareCurrentCursorWithWindow.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestCompareCursorWithWindow.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestDiscard.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestFakeButtonEvent.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestFakeKeyEvent.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestFakeMotionEvent.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestFakeRelativeMotionEvent.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestGrabControl.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestQueryExtension.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestSetGContextOfGC.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTestSetVisualIDOfVisual.0 -unknown- obsolete +./usr/X11R7/man/cat3/XTextExtents.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XTextWidth.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XTranslateCoordinates.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XUngrabDevice.0 -unknown- obsolete +./usr/X11R7/man/cat3/XUngrabDeviceButton.0 -unknown- obsolete +./usr/X11R7/man/cat3/XUngrabDeviceKey.0 -unknown- obsolete +./usr/X11R7/man/cat3/XUnmapEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XUnmapWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XVaCreateNestedList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XVisibilityEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XWarpPointer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xau.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XauDisposeAuth.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XauFileName.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XauGetAuthByAddr.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XauGetBestAuthByAddr.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XauLockAuth.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XauReadAuth.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XauUnlockAuth.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XauWriteAuth.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xaw.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsAllocColor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsCCCOfColormap.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsCIELabQueryMaxC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsCIELuvQueryMaxC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsColor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsConvertColors.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsCreateCCC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsDefaultCCC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsQueryBlack.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsQueryColor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsSetWhitePoint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsStoreColor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcmsTekHVCQueryMaxC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xcomposite.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcupGetReservedColormapEntries.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcupQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XcupStoreColors.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xcursor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeAllocateBackBufferName.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeBeginIdiom.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeDeallocateBackBufferName.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeEndIdiom.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeFreeVisualInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeGetBackBufferAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeGetVisualInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XdbeSwapBuffers.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xevi.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XeviGetVisualInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XeviQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XeviQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xevie.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XevieEnd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XevieQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XevieSelectInput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XevieSendEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XevieStart.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xfixes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xfontcache.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xft.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xinerama.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XineramaIsActive.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XineramaQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XineramaQueryScreens.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XineramaQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbDrawImageString.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbDrawString.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbDrawText.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbLookupString.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbResetIC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbTextEscapement.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbTextExtents.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbTextListToTextProperty.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbTextPerCharExtents.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xmbuf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufChangeBufferAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufChangeWindowAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufCreateBuffers.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufCreateStereoWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufDestroyBuffers.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufDisplayBuffers.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufGetBufferAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufGetScreenInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufGetVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufGetWindowAttributes.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XmbufQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XpCancelDoc.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpCancelJob.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpCancelPage.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpCreateContext.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpDestroyContext.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpEndDoc.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpEndJob.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpEndPage.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpFreePrinterList.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetAttributes.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetContext.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetDocumentData.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetImageResolution.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetLocaleHinter.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetOneAttribute.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetPageDimensions.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetPdmStartParams.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetPrinterList.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpGetScreenOfContext.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpInputSelected.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpPutDocumentData.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpQueryExtension.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpQueryScreens.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpQueryVersion.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpRehashPrinterList.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpSelectInput.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpSetAttributes.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpSetContext.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpSetImageResolution.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpSetLocaleHinter.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpStartDoc.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpStartJob.0 -obsolete- obsolete +./usr/X11R7/man/cat3/XpStartPage.0 -obsolete- obsolete +./usr/X11R7/man/cat3/Xrandr.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XrmEnumerateDatabase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XrmGetFileDatabase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XrmGetResource.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XrmInitialize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XrmMergeDatabases.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XrmPutResource.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XrmUniqueQuark.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xss.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddActions.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddCallback.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddCallbacks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddConverter.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddEventHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddExposureToRegion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddGrab.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddInput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddRawEventHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddTimeOut.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAddWorkProc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAllocateGC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppAddActionHook.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppAddActions.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppAddBlockHook.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppAddConverter.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppAddInput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppAddSignal.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppAddTimeOut.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppAddWorkProc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppCreateShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppError.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppErrorMsg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppGetErrorDatabase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppGetErrorDatabaseText.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppGetExitFlag.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppGetSelectionTimeout.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppInitialize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppLock.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppMainLoop.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppNextEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppPeekEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppPending.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppProcessEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppReleaseCacheRefs.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppSetErrorHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppSetErrorMsgHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppSetExitFlag.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppSetFallbackResources.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppSetSelectionTimeout.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppSetTypeConverter.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppSetWarningHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppSetWarningMsgHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppUnlock.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppWarning.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAppWarningMsg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAsprintf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtAugmentTranslations.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtBuildEventMask.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallAcceptFocus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallActionProc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallCallbackList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallCallbacks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallConverter.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallbackExclusive.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallbackNone.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallbackNonexclusive.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCallbackPopdown.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCalloc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCancelSelectionRequest.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtChangeManagedSet.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCheckSubclass.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtClass.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCloseDisplay.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtConfigureWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtConvert.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtConvertAndStore.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtConvertCase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCreateApplicationContext.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCreateApplicationShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCreateManagedWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCreatePopupShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCreateSelectionRequest.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCreateWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtCreateWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDatabase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDestroyApplicationContext.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDestroyWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDirectConvert.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDisownSelection.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDispatchEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDispatchEventToWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDisplay.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDisplayInitialize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDisplayOfObject.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDisplayStringConversionWarning.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtDisplayToApplicationContext.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtError.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtErrorMsg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtFindFile.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtFree.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetActionKeysym.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetActionList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetApplicationNameAndClass.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetApplicationResources.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetClassExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetConstraintResourceList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetDisplays.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetErrorDatabase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetErrorDatabaseText.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetGC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetKeyboardFocusWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetKeysymTable.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetMultiClickTime.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetResourceList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSelectionParameters.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSelectionRequest.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSelectionTimeout.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSelectionValue.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSelectionValueIncremental.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSelectionValues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSelectionValuesIncremental.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSubresources.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetSubvalues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGetValues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGrabButton.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGrabKey.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGrabKeyboard.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtGrabPointer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtHasCallbacks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtHooksOfDisplay.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtInitialize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtInitializeWidgetClass.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtInsertEventHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtInsertEventTypeHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtInsertRawEventHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtInstallAccelerators.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtInstallAllAccelerators.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsApplicationShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsComposite.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsConstraint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsManaged.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsObject.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsOverrideShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsRealized.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsRectObj.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsSensitive.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsSessionShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsSubclass.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsTopLevelShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsTransientShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsVendorShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsWMShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtIsWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtKeysymToKeycodeList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtLastEventProcessed.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtLastTimestampProcessed.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtMainLoop.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtMakeGeometryRequest.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtMakeResizeRequest.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtMalloc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtManageChild.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtManageChildren.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtMapWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtMergeArgLists.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtMoveWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtName.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtNameToWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtNew.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtNewString.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtNextEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtNoticeSignal.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtNumber.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtOffset.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtOffsetOf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtOpenApplication.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtOpenDisplay.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtOverrideTranslations.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtOwnSelection.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtOwnSelectionIncremental.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtParent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtParseAcceleratorTable.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtParseTranslationTable.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtPeekEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtPending.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtPopdown.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtPopup.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtPopupSpringLoaded.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtProcessEvent.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtProcessLock.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtProcessUnlock.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtQueryGeometry.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRealizeWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRealloc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRegisterCaseConverter.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRegisterDrawable.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRegisterExtensionSelector.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRegisterGrabAction.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtReleaseGC.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtReleasePropertyAtom.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveActionHook.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveAllCallbacks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveBlockHook.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveCallback.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveCallbacks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveEventHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveEventTypeHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveGrab.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveInput.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveRawEventHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveSignal.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveTimeOut.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtRemoveWorkProc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtReservePropertyAtom.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtResizeWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtResolvePathname.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtScreen.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtScreenDatabase.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtScreenOfObject.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSendSelectionRequest.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSessionGetToken.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSessionReturnToken.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetArg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetErrorHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetErrorMsgHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetEventDispatcher.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetKeyTranslator.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetKeyboardFocus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetLanguageProc.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetMappedWhenManaged.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetMultiClickTime.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetSelectionParameters.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetSelectionTimeout.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetSensitive.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetSubvalues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetTypeConverter.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetValues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetWMColormapWindows.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetWarningHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSetWarningMsgHandler.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtStringConversionWarning.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtSuperclass.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtToolkitInitialize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtToolkitThreadInitialize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtTranslateCoords.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtTranslateKeycode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUngrabButton.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUngrabKey.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUngrabKeyboard.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUngrabPointer.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUninstallTranslations.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUnmanageChild.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUnmanageChildren.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUnmapWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUnrealizeWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtUnregisterDrawable.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaAppCreateShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaAppInitialize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaCreateArgsList.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaCreateManagedWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaCreatePopupShell.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaCreateWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaGetApplicationResources.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaGetSubresources.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaGetSubvalues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaGetValues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaOpenApplication.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaSetSubvalues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtVaSetValues.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtWarning.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtWarningMsg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtWidgetToApplicationContext.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtWindow.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtWindowOfObject.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XtWindowToWidget.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/Xv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvFreeAdaptorInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvFreeEncodingInfo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvGetPortAttribute.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvGetStill.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvGetVideo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvGrabPort.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvPortNotify.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvPutStill.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvPutVideo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvQueryAdaptors.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvQueryBestSize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvQueryEncodings.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvSelectPortNotify.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvSelectVideoNotify.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvSetPortAttribute.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvStopVideo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvUngrabPort.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XvVideoNotify.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/libXp.0 -obsolete- obsolete +./usr/X11R7/man/html1/mergelib.html -unknown- html,xorg +./usr/X11R7/man/html1/xft-config.html -unknown- obsolete +./usr/X11R7/man/html3/AllPlanes.html -unknown- html,xorg +./usr/X11R7/man/html3/BlackPixelOfScreen.html -unknown- html,xorg +./usr/X11R7/man/html3/DBE.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSCapable.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSDisable.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSEnable.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSForceLevel.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSGetTimeouts.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSGetVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/DPMSSetTimeouts.html -unknown- html,xorg +./usr/X11R7/man/html3/DisplayOfCCC.html -unknown- html,xorg +./usr/X11R7/man/html3/FcAtomicCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcAtomicDeleteNew.html -unknown- html,xorg +./usr/X11R7/man/html3/FcAtomicDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcAtomicLock.html -unknown- html,xorg +./usr/X11R7/man/html3/FcAtomicNewFile.html -unknown- html,xorg +./usr/X11R7/man/html3/FcAtomicOrigFile.html -unknown- html,xorg +./usr/X11R7/man/html3/FcAtomicReplaceOrig.html -unknown- html,xorg +./usr/X11R7/man/html3/FcAtomicUnlock.html -unknown- html,xorg +./usr/X11R7/man/html3/FcBlanksAdd.html -unknown- html,xorg +./usr/X11R7/man/html3/FcBlanksCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcBlanksDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcBlanksIsMember.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCacheCopySet.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCacheDir.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCacheNumFont.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCacheNumSubdir.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCacheSubdir.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetAddChar.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetCopy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetCount.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetCoverage.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetEqual.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetFirstPage.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetHasChar.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetIntersect.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetIntersectCount.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetIsSubset.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetNew.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetNextPage.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetSubtract.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetSubtractCount.html -unknown- html,xorg +./usr/X11R7/man/html3/FcCharSetUnion.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigAppFontAddDir.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigAppFontAddFile.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigAppFontClear.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigBuildFonts.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigEnableHome.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigFilename.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetBlanks.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetCache.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetCacheDirs.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetConfigDirs.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetConfigFiles.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetCurrent.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetFontDirs.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetFonts.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigGetRescanInterval.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigHome.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigParseAndLoad.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigSetCurrent.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigSetRescanInterval.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigSubstitute.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigSubstituteWithPat.html -unknown- html,xorg +./usr/X11R7/man/html3/FcConfigUptoDate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDefaultSubstitute.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDirCacheLoad.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDirCacheLoadFile.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDirCacheRead.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDirCacheUnlink.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDirCacheUnload.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDirCacheValid.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDirSave.html -unknown- html,xorg +./usr/X11R7/man/html3/FcDirScan.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFileIsDir.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFileScan.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFini.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontList.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontMatch.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontRenderPrepare.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSetAdd.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSetCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSetDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSetList.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSetMatch.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSetPrint.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSetSort.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSetSortDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFontSort.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFreeTypeCharIndex.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFreeTypeCharSet.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFreeTypeCharSetAndSpacing.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFreeTypeQuery.html -unknown- html,xorg +./usr/X11R7/man/html3/FcFreeTypeQueryFace.html -unknown- html,xorg +./usr/X11R7/man/html3/FcGetLangs.html -unknown- html,xorg +./usr/X11R7/man/html3/FcGetVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/FcInit.html -unknown- html,xorg +./usr/X11R7/man/html3/FcInitBringUptoDate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcInitLoadConfig.html -unknown- html,xorg +./usr/X11R7/man/html3/FcInitLoadConfigAndFonts.html -unknown- html,xorg +./usr/X11R7/man/html3/FcInitReinitialize.html -unknown- html,xorg +./usr/X11R7/man/html3/FcIsLower.html -unknown- html,xorg +./usr/X11R7/man/html3/FcIsUpper.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangGetCharSet.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetAdd.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetCompare.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetContains.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetCopy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetEqual.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetHasLang.html -unknown- html,xorg +./usr/X11R7/man/html3/FcLangSetHash.html -unknown- html,xorg +./usr/X11R7/man/html3/FcMatrixCopy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcMatrixEqual.html -unknown- html,xorg +./usr/X11R7/man/html3/FcMatrixInit.html -unknown- html,xorg +./usr/X11R7/man/html3/FcMatrixMultiply.html -unknown- html,xorg +./usr/X11R7/man/html3/FcMatrixRotate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcMatrixScale.html -unknown- html,xorg +./usr/X11R7/man/html3/FcMatrixShear.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameConstant.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameGetConstant.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameGetObjectType.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameParse.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameRegisterConstants.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameRegisterObjectTypes.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameUnparse.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameUnregisterConstants.html -unknown- html,xorg +./usr/X11R7/man/html3/FcNameUnregisterObjectTypes.html -unknown- html,xorg +./usr/X11R7/man/html3/FcObjectSetAdd.html -unknown- html,xorg +./usr/X11R7/man/html3/FcObjectSetBuild.html -unknown- html,xorg +./usr/X11R7/man/html3/FcObjectSetCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcObjectSetDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternAdd-Type.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternAdd.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternAddWeak.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternBuild.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternDel.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternDuplicate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternEqual.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternEqualSubset.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternGet-Type.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternGet.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternHash.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternPrint.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternReference.html -unknown- html,xorg +./usr/X11R7/man/html3/FcPatternRemove.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrBasename.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrCmp.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrCmpIgnoreCase.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrCopy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrCopyFilename.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrDirname.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrDowncase.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrFree.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrListCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrListDone.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrListNext.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrPlus.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrSetAdd.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrSetAddFilename.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrSetCreate.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrSetDel.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrSetDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrSetEqual.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrSetMember.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrStr.html -unknown- html,xorg +./usr/X11R7/man/html3/FcStrStrIgnoreCase.html -unknown- html,xorg +./usr/X11R7/man/html3/FcToLower.html -unknown- html,xorg +./usr/X11R7/man/html3/FcUcs4ToUtf8.html -unknown- html,xorg +./usr/X11R7/man/html3/FcUtf16Len.html -unknown- html,xorg +./usr/X11R7/man/html3/FcUtf16ToUcs4.html -unknown- html,xorg +./usr/X11R7/man/html3/FcUtf8Len.html -unknown- html,xorg +./usr/X11R7/man/html3/FcUtf8ToUcs4.html -unknown- html,xorg +./usr/X11R7/man/html3/FcValueDestroy.html -unknown- html,xorg +./usr/X11R7/man/html3/FcValueEqual.html -unknown- html,xorg +./usr/X11R7/man/html3/FcValuePrint.html -unknown- html,xorg +./usr/X11R7/man/html3/FcValueSave.html -unknown- html,xorg +./usr/X11R7/man/html3/FontCacheChangeCacheSettings.html -unknown- html,xorg +./usr/X11R7/man/html3/FontCacheGetCacheSettings.html -unknown- html,xorg +./usr/X11R7/man/html3/FontCacheGetCacheStatistics.html -unknown- html,xorg +./usr/X11R7/man/html3/FontCacheQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/FontCacheQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/ImageByteOrder.html -unknown- html,xorg +./usr/X11R7/man/html3/IsCursorKey.html -unknown- html,xorg +./usr/X11R7/man/html3/MenuPopdown.html -unknown- html,xorg +./usr/X11R7/man/html3/MenuPopup.html -unknown- html,xorg +./usr/X11R7/man/html3/XAddConnectionWatch.html -unknown- html,xorg +./usr/X11R7/man/html3/XAddHost.html -unknown- html,xorg +./usr/X11R7/man/html3/XAllocClassHint.html -unknown- html,xorg +./usr/X11R7/man/html3/XAllocColor.html -unknown- html,xorg +./usr/X11R7/man/html3/XAllocIconSize.html -unknown- html,xorg +./usr/X11R7/man/html3/XAllocSizeHints.html -unknown- html,xorg +./usr/X11R7/man/html3/XAllocStandardColormap.html -unknown- html,xorg +./usr/X11R7/man/html3/XAllocWMHints.html -unknown- html,xorg +./usr/X11R7/man/html3/XAllowDeviceEvents.html -unknown- obsolete +./usr/X11R7/man/html3/XAllowEvents.html -unknown- html,xorg +./usr/X11R7/man/html3/XAnyEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XButtonEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XChangeDeviceControl.html -unknown- obsolete +./usr/X11R7/man/html3/XChangeDeviceDontPropagateList.html -unknown- obsolete +./usr/X11R7/man/html3/XChangeDeviceKeyMapping.html -unknown- obsolete +./usr/X11R7/man/html3/XChangeFeedbackControl.html -unknown- obsolete +./usr/X11R7/man/html3/XChangeKeyboardControl.html -unknown- html,xorg +./usr/X11R7/man/html3/XChangeKeyboardDevice.html -unknown- obsolete +./usr/X11R7/man/html3/XChangeKeyboardMapping.html -unknown- html,xorg +./usr/X11R7/man/html3/XChangePointerControl.html -unknown- html,xorg +./usr/X11R7/man/html3/XChangePointerDevice.html -unknown- obsolete +./usr/X11R7/man/html3/XChangeSaveSet.html -unknown- html,xorg +./usr/X11R7/man/html3/XChangeWindowAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XCirculateEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XCirculateRequestEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XClearArea.html -unknown- html,xorg +./usr/X11R7/man/html3/XClientMessageEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XCloseDevice.html -unknown- obsolete +./usr/X11R7/man/html3/XColormapEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeCreateRegionFromBorderClip.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeGetOverlayWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeNameWindowPixmap.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeRedirectSubwindows.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeRedirectWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeReleaseOverlayWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeUnredirectSubwindows.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeUnredirectWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XCompositeVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XConfigureEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XConfigureRequestEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XConfigureWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XCopyArea.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateColormap.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateFontCursor.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateFontSet.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateGC.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateIC.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateOC.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreatePixmap.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateRegion.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XCreateWindowEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XCrossingEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGA.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAChangePixmapMode.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGACloseFramebuffer.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGACopyArea.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGACopyTransparentArea.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGACreateColormap.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAFillRectangle.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAGetViewportStatus.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAInstallColormap.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAKeyEventToXKeyEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAOpenFramebuffer.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAQueryModes.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGAQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGASelectInput.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGASetClientVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGASetMode.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGASetViewport.html -unknown- html,xorg +./usr/X11R7/man/html3/XDGASync.html -unknown- html,xorg +./usr/X11R7/man/html3/XDefineCursor.html -unknown- html,xorg +./usr/X11R7/man/html3/XDestroyWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XDestroyWindowEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XDeviceBell.html -unknown- obsolete +./usr/X11R7/man/html3/XDeviceTimeCoord.html -unknown- obsolete +./usr/X11R7/man/html3/XDrawArc.html -unknown- html,xorg +./usr/X11R7/man/html3/XDrawImageString.html -unknown- html,xorg +./usr/X11R7/man/html3/XDrawLine.html -unknown- html,xorg +./usr/X11R7/man/html3/XDrawPoint.html -unknown- html,xorg +./usr/X11R7/man/html3/XDrawRectangle.html -unknown- html,xorg +./usr/X11R7/man/html3/XDrawString.html -unknown- html,xorg +./usr/X11R7/man/html3/XDrawText.html -unknown- html,xorg +./usr/X11R7/man/html3/XEmptyRegion.html -unknown- html,xorg +./usr/X11R7/man/html3/XErrorEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XExposeEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XExtentsOfFontSet.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86DGA.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86Misc.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86MiscGetKbdSettings.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86MiscGetMouseSettings.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86MiscGetSaver.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86MiscQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86MiscQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86MiscSetKbdSettings.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86MiscSetMouseSettings.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86MiscSetSaver.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VM.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeDeleteModeLine.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetAllModeLines.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetDotClocks.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetGamma.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetGammaRamp.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetGammaRampSize.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetModeLine.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetMonitor.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetPermissions.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetViewPort.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeLockModeSwitch.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeModModeLine.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSetClientVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSetGamma.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSetGammaRamp.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSetViewPort.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSwitchMode.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSwitchToMode.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeValidateModeLine.html -unknown- html,xorg +./usr/X11R7/man/html3/XFillRectangle.html -unknown- html,xorg +./usr/X11R7/man/html3/XFilterEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XFlush.html -unknown- html,xorg +./usr/X11R7/man/html3/XFocusChangeEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XFontSetExtents.html -unknown- html,xorg +./usr/X11R7/man/html3/XFontsOfFontSet.html -unknown- html,xorg +./usr/X11R7/man/html3/XFree.html -unknown- html,xorg +./usr/X11R7/man/html3/XFree86-DGA.html -unknown- html,xorg +./usr/X11R7/man/html3/XFreeDeviceList.html -unknown- obsolete +./usr/X11R7/man/html3/XGetDeviceButtonMapping.html -unknown- obsolete +./usr/X11R7/man/html3/XGetDeviceControl.html -unknown- obsolete +./usr/X11R7/man/html3/XGetDeviceDontPropagateList.html -unknown- obsolete +./usr/X11R7/man/html3/XGetDeviceFocus.html -unknown- obsolete +./usr/X11R7/man/html3/XGetDeviceKeyMapping.html -unknown- obsolete +./usr/X11R7/man/html3/XGetDeviceModifierMapping.html -unknown- obsolete +./usr/X11R7/man/html3/XGetDeviceMotionEvents.html -unknown- obsolete +./usr/X11R7/man/html3/XGetDeviceProperty.html -unknown- obsolete +./usr/X11R7/man/html3/XGetExtensionVersion.html -unknown- obsolete +./usr/X11R7/man/html3/XGetFeedbackControl.html -unknown- obsolete +./usr/X11R7/man/html3/XGetSelectedExtensionEvents.html -unknown- obsolete +./usr/X11R7/man/html3/XGetVisualInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XGetWindowAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XGetWindowProperty.html -unknown- html,xorg +./usr/X11R7/man/html3/XGetXCBConnection.html -unknown- html,xorg +./usr/X11R7/man/html3/XGrabButton.html -unknown- html,xorg +./usr/X11R7/man/html3/XGrabDevice.html -unknown- obsolete +./usr/X11R7/man/html3/XGrabDeviceButton.html -unknown- obsolete +./usr/X11R7/man/html3/XGrabDeviceKey.html -unknown- obsolete +./usr/X11R7/man/html3/XGrabKey.html -unknown- html,xorg +./usr/X11R7/man/html3/XGrabKeyboard.html -unknown- html,xorg +./usr/X11R7/man/html3/XGrabPointer.html -unknown- html,xorg +./usr/X11R7/man/html3/XGrabServer.html -unknown- html,xorg +./usr/X11R7/man/html3/XGraphicsExposeEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XGravityEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XIconifyWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XIfEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XInitImage.html -unknown- html,xorg +./usr/X11R7/man/html3/XInitThreads.html -unknown- html,xorg +./usr/X11R7/man/html3/XInstallColormap.html -unknown- html,xorg +./usr/X11R7/man/html3/XInternAtom.html -unknown- html,xorg +./usr/X11R7/man/html3/XIntersectRegion.html -unknown- html,xorg +./usr/X11R7/man/html3/XKeymapEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XListDeviceProperties.html -unknown- obsolete +./usr/X11R7/man/html3/XListFonts.html -unknown- html,xorg +./usr/X11R7/man/html3/XListInputDevices.html -unknown- obsolete +./usr/X11R7/man/html3/XLoadFont.html -unknown- html,xorg +./usr/X11R7/man/html3/XLookupKeysym.html -unknown- html,xorg +./usr/X11R7/man/html3/XMapEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XMapRequestEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XMapWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XNextEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XNoOp.html -unknown- html,xorg +./usr/X11R7/man/html3/XOpenDevice.html -unknown- obsolete +./usr/X11R7/man/html3/XOpenDisplay.html -unknown- html,xorg +./usr/X11R7/man/html3/XOpenIM.html -unknown- html,xorg +./usr/X11R7/man/html3/XOpenOM.html -unknown- html,xorg +./usr/X11R7/man/html3/XParseGeometry.html -unknown- html,xorg +./usr/X11R7/man/html3/XPolygonRegion.html -unknown- html,xorg +./usr/X11R7/man/html3/XPropertyEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XPutBackEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XPutImage.html -unknown- html,xorg +./usr/X11R7/man/html3/XQueryBestSize.html -unknown- html,xorg +./usr/X11R7/man/html3/XQueryColor.html -unknown- html,xorg +./usr/X11R7/man/html3/XQueryDeviceState.html -unknown- obsolete +./usr/X11R7/man/html3/XQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XQueryPointer.html -unknown- html,xorg +./usr/X11R7/man/html3/XQueryTree.html -unknown- html,xorg +./usr/X11R7/man/html3/XRaiseWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XReadBitmapFile.html -unknown- html,xorg +./usr/X11R7/man/html3/XRecolorCursor.html -unknown- html,xorg +./usr/X11R7/man/html3/XReparentEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XReparentWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XRes.html -unknown- html,xorg +./usr/X11R7/man/html3/XResQueryClientPixmapBytes.html -unknown- html,xorg +./usr/X11R7/man/html3/XResQueryClientResources.html -unknown- html,xorg +./usr/X11R7/man/html3/XResQueryClients.html -unknown- html,xorg +./usr/X11R7/man/html3/XResQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XResQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XResizeRequestEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XResourceManagerString.html -unknown- html,xorg +./usr/X11R7/man/html3/XSaveContext.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverAllocInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverGetRegistered.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverQueryInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverRegister.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverSelectInput.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverSetAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverSuspend.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverUnregister.html -unknown- html,xorg +./usr/X11R7/man/html3/XScreenSaverUnsetAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XSelectExtensionEvent.html -unknown- obsolete +./usr/X11R7/man/html3/XSelectInput.html -unknown- html,xorg +./usr/X11R7/man/html3/XSelectionClearEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XSelectionEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XSelectionRequestEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XSendEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XSendExtensionEvent.html -unknown- obsolete +./usr/X11R7/man/html3/XSetArcMode.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetClipOrigin.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetCloseDownMode.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetCommand.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetDeviceButtonMapping.html -unknown- obsolete +./usr/X11R7/man/html3/XSetDeviceFocus.html -unknown- obsolete +./usr/X11R7/man/html3/XSetDeviceMode.html -unknown- obsolete +./usr/X11R7/man/html3/XSetDeviceModifierMapping.html -unknown- obsolete +./usr/X11R7/man/html3/XSetDeviceValuators.html -unknown- obsolete +./usr/X11R7/man/html3/XSetErrorHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetEventQueueOwner.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetFillStyle.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetFont.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetFontPath.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetICFocus.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetICValues.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetInputFocus.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetLineAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetPointerMapping.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetScreenSaver.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetSelectionOwner.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetState.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetTextProperty.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetTile.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetTransientForHint.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetWMClientMachine.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetWMColormapWindows.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetWMIconName.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetWMName.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetWMProperties.html -unknown- html,xorg +./usr/X11R7/man/html3/XSetWMProtocols.html -unknown- html,xorg +./usr/X11R7/man/html3/XShape.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeCombineMask.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeCombineRectangles.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeCombineRegion.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeCombineShape.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeGetRectangles.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeInputSelected.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeOffsetShape.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeQueryExtensionXShapeQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeQueryExtents.html -unknown- html,xorg +./usr/X11R7/man/html3/XShapeSelectInput.html -unknown- html,xorg +./usr/X11R7/man/html3/XShm.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmAttach.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmCreateImage.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmCreatePixmap.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmDetach.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmGetEventBase.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmGetImage.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmPixmapFormat.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmPutImage.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XShmQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XStoreBytes.html -unknown- html,xorg +./usr/X11R7/man/html3/XStoreColors.html -unknown- html,xorg +./usr/X11R7/man/html3/XStringListToTextProperty.html -unknown- html,xorg +./usr/X11R7/man/html3/XStringToKeysym.html -unknown- html,xorg +./usr/X11R7/man/html3/XSupportsLocale.html -unknown- html,xorg +./usr/X11R7/man/html3/XSynchronize.html -unknown- html,xorg +./usr/X11R7/man/html3/XTestCompareCurrentCursorWithWindow.html -unknown- obsolete +./usr/X11R7/man/html3/XTestCompareCursorWithWindow.html -unknown- obsolete +./usr/X11R7/man/html3/XTestDiscard.html -unknown- obsolete +./usr/X11R7/man/html3/XTestFakeButtonEvent.html -unknown- obsolete +./usr/X11R7/man/html3/XTestFakeKeyEvent.html -unknown- obsolete +./usr/X11R7/man/html3/XTestFakeMotionEvent.html -unknown- obsolete +./usr/X11R7/man/html3/XTestFakeRelativeMotionEvent.html -unknown- obsolete +./usr/X11R7/man/html3/XTestGrabControl.html -unknown- obsolete +./usr/X11R7/man/html3/XTestQueryExtension.html -unknown- obsolete +./usr/X11R7/man/html3/XTestSetGContextOfGC.html -unknown- obsolete +./usr/X11R7/man/html3/XTestSetVisualIDOfVisual.html -unknown- obsolete +./usr/X11R7/man/html3/XTextExtents.html -unknown- html,xorg +./usr/X11R7/man/html3/XTextWidth.html -unknown- html,xorg +./usr/X11R7/man/html3/XTranslateCoordinates.html -unknown- html,xorg +./usr/X11R7/man/html3/XUngrabDevice.html -unknown- obsolete +./usr/X11R7/man/html3/XUngrabDeviceButton.html -unknown- obsolete +./usr/X11R7/man/html3/XUngrabDeviceKey.html -unknown- obsolete +./usr/X11R7/man/html3/XUnmapEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XUnmapWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XVaCreateNestedList.html -unknown- html,xorg +./usr/X11R7/man/html3/XVisibilityEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XWarpPointer.html -unknown- html,xorg +./usr/X11R7/man/html3/Xau.html -unknown- html,xorg +./usr/X11R7/man/html3/XauDisposeAuth.html -unknown- html,xorg +./usr/X11R7/man/html3/XauFileName.html -unknown- html,xorg +./usr/X11R7/man/html3/XauGetAuthByAddr.html -unknown- html,xorg +./usr/X11R7/man/html3/XauGetBestAuthByAddr.html -unknown- html,xorg +./usr/X11R7/man/html3/XauLockAuth.html -unknown- html,xorg +./usr/X11R7/man/html3/XauReadAuth.html -unknown- html,xorg +./usr/X11R7/man/html3/XauUnlockAuth.html -unknown- html,xorg +./usr/X11R7/man/html3/XauWriteAuth.html -unknown- html,xorg +./usr/X11R7/man/html3/Xaw.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsAllocColor.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsCCCOfColormap.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsCIELabQueryMaxC.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsCIELuvQueryMaxC.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsColor.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsConvertColors.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsCreateCCC.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsDefaultCCC.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsQueryBlack.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsQueryColor.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsSetWhitePoint.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsStoreColor.html -unknown- html,xorg +./usr/X11R7/man/html3/XcmsTekHVCQueryMaxC.html -unknown- html,xorg +./usr/X11R7/man/html3/Xcomposite.html -unknown- html,xorg +./usr/X11R7/man/html3/XcupGetReservedColormapEntries.html -unknown- html,xorg +./usr/X11R7/man/html3/XcupQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XcupStoreColors.html -unknown- html,xorg +./usr/X11R7/man/html3/Xcursor.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeAllocateBackBufferName.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeBeginIdiom.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeDeallocateBackBufferName.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeEndIdiom.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeFreeVisualInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeGetBackBufferAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeGetVisualInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XdbeSwapBuffers.html -unknown- html,xorg +./usr/X11R7/man/html3/Xevi.html -unknown- html,xorg +./usr/X11R7/man/html3/XeviGetVisualInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XeviQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XeviQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/Xevie.html -unknown- html,xorg +./usr/X11R7/man/html3/XevieEnd.html -unknown- html,xorg +./usr/X11R7/man/html3/XevieQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XevieSelectInput.html -unknown- html,xorg +./usr/X11R7/man/html3/XevieSendEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XevieStart.html -unknown- html,xorg +./usr/X11R7/man/html3/Xfixes.html -unknown- html,xorg +./usr/X11R7/man/html3/Xfontcache.html -unknown- html,xorg +./usr/X11R7/man/html3/Xft.html -unknown- html,xorg +./usr/X11R7/man/html3/Xinerama.html -unknown- html,xorg +./usr/X11R7/man/html3/XineramaIsActive.html -unknown- html,xorg +./usr/X11R7/man/html3/XineramaQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XineramaQueryScreens.html -unknown- html,xorg +./usr/X11R7/man/html3/XineramaQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbDrawImageString.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbDrawString.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbDrawText.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbLookupString.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbResetIC.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbTextEscapement.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbTextExtents.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbTextListToTextProperty.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbTextPerCharExtents.html -unknown- html,xorg +./usr/X11R7/man/html3/Xmbuf.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufChangeBufferAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufChangeWindowAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufCreateBuffers.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufCreateStereoWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufDestroyBuffers.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufDisplayBuffers.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufGetBufferAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufGetScreenInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufGetVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufGetWindowAttributes.html -unknown- html,xorg +./usr/X11R7/man/html3/XmbufQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XpCancelDoc.html -obsolete- obsolete +./usr/X11R7/man/html3/XpCancelJob.html -obsolete- obsolete +./usr/X11R7/man/html3/XpCancelPage.html -obsolete- obsolete +./usr/X11R7/man/html3/XpCreateContext.html -obsolete- obsolete +./usr/X11R7/man/html3/XpDestroyContext.html -obsolete- obsolete +./usr/X11R7/man/html3/XpEndDoc.html -obsolete- obsolete +./usr/X11R7/man/html3/XpEndJob.html -obsolete- obsolete +./usr/X11R7/man/html3/XpEndPage.html -obsolete- obsolete +./usr/X11R7/man/html3/XpFreePrinterList.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetAttributes.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetContext.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetDocumentData.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetImageResolution.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetLocaleHinter.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetOneAttribute.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetPageDimensions.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetPdmStartParams.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetPrinterList.html -obsolete- obsolete +./usr/X11R7/man/html3/XpGetScreenOfContext.html -obsolete- obsolete +./usr/X11R7/man/html3/XpInputSelected.html -obsolete- obsolete +./usr/X11R7/man/html3/XpPutDocumentData.html -obsolete- obsolete +./usr/X11R7/man/html3/XpQueryExtension.html -obsolete- obsolete +./usr/X11R7/man/html3/XpQueryScreens.html -obsolete- obsolete +./usr/X11R7/man/html3/XpQueryVersion.html -obsolete- obsolete +./usr/X11R7/man/html3/XpRehashPrinterList.html -obsolete- obsolete +./usr/X11R7/man/html3/XpSelectInput.html -obsolete- obsolete +./usr/X11R7/man/html3/XpSetAttributes.html -obsolete- obsolete +./usr/X11R7/man/html3/XpSetContext.html -obsolete- obsolete +./usr/X11R7/man/html3/XpSetImageResolution.html -obsolete- obsolete +./usr/X11R7/man/html3/XpSetLocaleHinter.html -obsolete- obsolete +./usr/X11R7/man/html3/XpStartDoc.html -obsolete- obsolete +./usr/X11R7/man/html3/XpStartJob.html -obsolete- obsolete +./usr/X11R7/man/html3/XpStartPage.html -obsolete- obsolete +./usr/X11R7/man/html3/Xrandr.html -unknown- html,xorg +./usr/X11R7/man/html3/XrmEnumerateDatabase.html -unknown- html,xorg +./usr/X11R7/man/html3/XrmGetFileDatabase.html -unknown- html,xorg +./usr/X11R7/man/html3/XrmGetResource.html -unknown- html,xorg +./usr/X11R7/man/html3/XrmInitialize.html -unknown- html,xorg +./usr/X11R7/man/html3/XrmMergeDatabases.html -unknown- html,xorg +./usr/X11R7/man/html3/XrmPutResource.html -unknown- html,xorg +./usr/X11R7/man/html3/XrmUniqueQuark.html -unknown- html,xorg +./usr/X11R7/man/html3/Xss.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddActions.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddCallback.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddCallbacks.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddConverter.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddEventHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddExposureToRegion.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddGrab.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddInput.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddRawEventHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddTimeOut.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAddWorkProc.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAllocateGC.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppAddActionHook.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppAddActions.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppAddBlockHook.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppAddConverter.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppAddInput.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppAddSignal.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppAddTimeOut.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppAddWorkProc.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppCreateShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppError.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppErrorMsg.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppGetErrorDatabase.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppGetErrorDatabaseText.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppGetExitFlag.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppGetSelectionTimeout.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppInitialize.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppLock.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppMainLoop.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppNextEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppPeekEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppPending.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppProcessEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppReleaseCacheRefs.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppSetErrorHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppSetErrorMsgHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppSetExitFlag.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppSetFallbackResources.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppSetSelectionTimeout.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppSetTypeConverter.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppSetWarningHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppSetWarningMsgHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppUnlock.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppWarning.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAppWarningMsg.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAsprintf.html -unknown- html,xorg +./usr/X11R7/man/html3/XtAugmentTranslations.html -unknown- html,xorg +./usr/X11R7/man/html3/XtBuildEventMask.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallAcceptFocus.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallActionProc.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallCallbackList.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallCallbacks.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallConverter.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallbackExclusive.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallbackNone.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallbackNonexclusive.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCallbackPopdown.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCalloc.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCancelSelectionRequest.html -unknown- html,xorg +./usr/X11R7/man/html3/XtChangeManagedSet.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCheckSubclass.html -unknown- html,xorg +./usr/X11R7/man/html3/XtClass.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCloseDisplay.html -unknown- html,xorg +./usr/X11R7/man/html3/XtConfigureWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtConvert.html -unknown- html,xorg +./usr/X11R7/man/html3/XtConvertAndStore.html -unknown- html,xorg +./usr/X11R7/man/html3/XtConvertCase.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCreateApplicationContext.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCreateApplicationShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCreateManagedWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCreatePopupShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCreateSelectionRequest.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCreateWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtCreateWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDatabase.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDestroyApplicationContext.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDestroyWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDirectConvert.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDisownSelection.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDispatchEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDispatchEventToWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDisplay.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDisplayInitialize.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDisplayOfObject.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDisplayStringConversionWarning.html -unknown- html,xorg +./usr/X11R7/man/html3/XtDisplayToApplicationContext.html -unknown- html,xorg +./usr/X11R7/man/html3/XtError.html -unknown- html,xorg +./usr/X11R7/man/html3/XtErrorMsg.html -unknown- html,xorg +./usr/X11R7/man/html3/XtFindFile.html -unknown- html,xorg +./usr/X11R7/man/html3/XtFree.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetActionKeysym.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetActionList.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetApplicationNameAndClass.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetApplicationResources.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetClassExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetConstraintResourceList.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetDisplays.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetErrorDatabase.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetErrorDatabaseText.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetGC.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetKeyboardFocusWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetKeysymTable.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetMultiClickTime.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetResourceList.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSelectionParameters.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSelectionRequest.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSelectionTimeout.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSelectionValue.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSelectionValueIncremental.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSelectionValues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSelectionValuesIncremental.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSubresources.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetSubvalues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGetValues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGrabButton.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGrabKey.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGrabKeyboard.html -unknown- html,xorg +./usr/X11R7/man/html3/XtGrabPointer.html -unknown- html,xorg +./usr/X11R7/man/html3/XtHasCallbacks.html -unknown- html,xorg +./usr/X11R7/man/html3/XtHooksOfDisplay.html -unknown- html,xorg +./usr/X11R7/man/html3/XtInitialize.html -unknown- html,xorg +./usr/X11R7/man/html3/XtInitializeWidgetClass.html -unknown- html,xorg +./usr/X11R7/man/html3/XtInsertEventHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtInsertEventTypeHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtInsertRawEventHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtInstallAccelerators.html -unknown- html,xorg +./usr/X11R7/man/html3/XtInstallAllAccelerators.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsApplicationShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsComposite.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsConstraint.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsManaged.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsObject.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsOverrideShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsRealized.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsRectObj.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsSensitive.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsSessionShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsSubclass.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsTopLevelShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsTransientShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsVendorShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsWMShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtIsWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtKeysymToKeycodeList.html -unknown- html,xorg +./usr/X11R7/man/html3/XtLastEventProcessed.html -unknown- html,xorg +./usr/X11R7/man/html3/XtLastTimestampProcessed.html -unknown- html,xorg +./usr/X11R7/man/html3/XtMainLoop.html -unknown- html,xorg +./usr/X11R7/man/html3/XtMakeGeometryRequest.html -unknown- html,xorg +./usr/X11R7/man/html3/XtMakeResizeRequest.html -unknown- html,xorg +./usr/X11R7/man/html3/XtMalloc.html -unknown- html,xorg +./usr/X11R7/man/html3/XtManageChild.html -unknown- html,xorg +./usr/X11R7/man/html3/XtManageChildren.html -unknown- html,xorg +./usr/X11R7/man/html3/XtMapWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtMergeArgLists.html -unknown- html,xorg +./usr/X11R7/man/html3/XtMoveWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtName.html -unknown- html,xorg +./usr/X11R7/man/html3/XtNameToWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtNew.html -unknown- html,xorg +./usr/X11R7/man/html3/XtNewString.html -unknown- html,xorg +./usr/X11R7/man/html3/XtNextEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XtNoticeSignal.html -unknown- html,xorg +./usr/X11R7/man/html3/XtNumber.html -unknown- html,xorg +./usr/X11R7/man/html3/XtOffset.html -unknown- html,xorg +./usr/X11R7/man/html3/XtOffsetOf.html -unknown- html,xorg +./usr/X11R7/man/html3/XtOpenApplication.html -unknown- html,xorg +./usr/X11R7/man/html3/XtOpenDisplay.html -unknown- html,xorg +./usr/X11R7/man/html3/XtOverrideTranslations.html -unknown- html,xorg +./usr/X11R7/man/html3/XtOwnSelection.html -unknown- html,xorg +./usr/X11R7/man/html3/XtOwnSelectionIncremental.html -unknown- html,xorg +./usr/X11R7/man/html3/XtParent.html -unknown- html,xorg +./usr/X11R7/man/html3/XtParseAcceleratorTable.html -unknown- html,xorg +./usr/X11R7/man/html3/XtParseTranslationTable.html -unknown- html,xorg +./usr/X11R7/man/html3/XtPeekEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XtPending.html -unknown- html,xorg +./usr/X11R7/man/html3/XtPopdown.html -unknown- html,xorg +./usr/X11R7/man/html3/XtPopup.html -unknown- html,xorg +./usr/X11R7/man/html3/XtPopupSpringLoaded.html -unknown- html,xorg +./usr/X11R7/man/html3/XtProcessEvent.html -unknown- html,xorg +./usr/X11R7/man/html3/XtProcessLock.html -unknown- html,xorg +./usr/X11R7/man/html3/XtProcessUnlock.html -unknown- html,xorg +./usr/X11R7/man/html3/XtQueryGeometry.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRealizeWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRealloc.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRegisterCaseConverter.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRegisterDrawable.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRegisterExtensionSelector.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRegisterGrabAction.html -unknown- html,xorg +./usr/X11R7/man/html3/XtReleaseGC.html -unknown- html,xorg +./usr/X11R7/man/html3/XtReleasePropertyAtom.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveActionHook.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveAllCallbacks.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveBlockHook.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveCallback.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveCallbacks.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveEventHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveEventTypeHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveGrab.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveInput.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveRawEventHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveSignal.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveTimeOut.html -unknown- html,xorg +./usr/X11R7/man/html3/XtRemoveWorkProc.html -unknown- html,xorg +./usr/X11R7/man/html3/XtReservePropertyAtom.html -unknown- html,xorg +./usr/X11R7/man/html3/XtResizeWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtResolvePathname.html -unknown- html,xorg +./usr/X11R7/man/html3/XtScreen.html -unknown- html,xorg +./usr/X11R7/man/html3/XtScreenDatabase.html -unknown- html,xorg +./usr/X11R7/man/html3/XtScreenOfObject.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSendSelectionRequest.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSessionGetToken.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSessionReturnToken.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetArg.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetErrorHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetErrorMsgHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetEventDispatcher.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetKeyTranslator.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetKeyboardFocus.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetLanguageProc.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetMappedWhenManaged.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetMultiClickTime.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetSelectionParameters.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetSelectionTimeout.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetSensitive.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetSubvalues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetTypeConverter.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetValues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetWMColormapWindows.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetWarningHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSetWarningMsgHandler.html -unknown- html,xorg +./usr/X11R7/man/html3/XtStringConversionWarning.html -unknown- html,xorg +./usr/X11R7/man/html3/XtSuperclass.html -unknown- html,xorg +./usr/X11R7/man/html3/XtToolkitInitialize.html -unknown- html,xorg +./usr/X11R7/man/html3/XtToolkitThreadInitialize.html -unknown- html,xorg +./usr/X11R7/man/html3/XtTranslateCoords.html -unknown- html,xorg +./usr/X11R7/man/html3/XtTranslateKeycode.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUngrabButton.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUngrabKey.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUngrabKeyboard.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUngrabPointer.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUninstallTranslations.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUnmanageChild.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUnmanageChildren.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUnmapWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUnrealizeWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtUnregisterDrawable.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaAppCreateShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaAppInitialize.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaCreateArgsList.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaCreateManagedWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaCreatePopupShell.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaCreateWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaGetApplicationResources.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaGetSubresources.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaGetSubvalues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaGetValues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaOpenApplication.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaSetSubvalues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtVaSetValues.html -unknown- html,xorg +./usr/X11R7/man/html3/XtWarning.html -unknown- html,xorg +./usr/X11R7/man/html3/XtWarningMsg.html -unknown- html,xorg +./usr/X11R7/man/html3/XtWidgetToApplicationContext.html -unknown- html,xorg +./usr/X11R7/man/html3/XtWindow.html -unknown- html,xorg +./usr/X11R7/man/html3/XtWindowOfObject.html -unknown- html,xorg +./usr/X11R7/man/html3/XtWindowToWidget.html -unknown- html,xorg +./usr/X11R7/man/html3/Xv.html -unknown- html,xorg +./usr/X11R7/man/html3/XvFreeAdaptorInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XvFreeEncodingInfo.html -unknown- html,xorg +./usr/X11R7/man/html3/XvGetPortAttribute.html -unknown- html,xorg +./usr/X11R7/man/html3/XvGetStill.html -unknown- html,xorg +./usr/X11R7/man/html3/XvGetVideo.html -unknown- html,xorg +./usr/X11R7/man/html3/XvGrabPort.html -unknown- html,xorg +./usr/X11R7/man/html3/XvPortNotify.html -unknown- html,xorg +./usr/X11R7/man/html3/XvPutStill.html -unknown- html,xorg +./usr/X11R7/man/html3/XvPutVideo.html -unknown- html,xorg +./usr/X11R7/man/html3/XvQueryAdaptors.html -unknown- html,xorg +./usr/X11R7/man/html3/XvQueryBestSize.html -unknown- html,xorg +./usr/X11R7/man/html3/XvQueryEncodings.html -unknown- html,xorg +./usr/X11R7/man/html3/XvQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XvSelectPortNotify.html -unknown- html,xorg +./usr/X11R7/man/html3/XvSelectVideoNotify.html -unknown- html,xorg +./usr/X11R7/man/html3/XvSetPortAttribute.html -unknown- html,xorg +./usr/X11R7/man/html3/XvStopVideo.html -unknown- html,xorg +./usr/X11R7/man/html3/XvUngrabPort.html -unknown- html,xorg +./usr/X11R7/man/html3/XvVideoNotify.html -unknown- html,xorg +./usr/X11R7/man/html3/libXp.html -obsolete- obsolete +./usr/X11R7/man/man1/xft-config.1 -unknown- obsolete +./usr/X11R7/man/man3/AllPlanes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/BlackPixelOfScreen.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DBE.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSCapable.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSDisable.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSEnable.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSForceLevel.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSGetTimeouts.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSGetVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DPMSSetTimeouts.3 -unknown- .man,xorg +./usr/X11R7/man/man3/DisplayOfCCC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcAtomicCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcAtomicDeleteNew.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcAtomicDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcAtomicLock.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcAtomicNewFile.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcAtomicOrigFile.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcAtomicReplaceOrig.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcAtomicUnlock.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcBlanksAdd.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcBlanksCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcBlanksDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcBlanksIsMember.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCacheCopySet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCacheDir.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCacheNumFont.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCacheNumSubdir.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCacheSubdir.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetAddChar.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetCopy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetCount.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetCoverage.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetEqual.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetFirstPage.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetHasChar.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetIntersect.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetIntersectCount.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetIsSubset.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetNew.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetNextPage.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetSubtract.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetSubtractCount.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcCharSetUnion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigAppFontAddDir.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigAppFontAddFile.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigAppFontClear.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigBuildFonts.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigEnableHome.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigFilename.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetBlanks.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetCache.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetCacheDirs.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetConfigDirs.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetConfigFiles.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetCurrent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetFontDirs.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetFonts.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigGetRescanInterval.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigHome.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigParseAndLoad.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigSetCurrent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigSetRescanInterval.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigSubstitute.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigSubstituteWithPat.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcConfigUptoDate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDefaultSubstitute.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDirCacheLoad.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDirCacheLoadFile.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDirCacheRead.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDirCacheUnlink.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDirCacheUnload.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDirCacheValid.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDirSave.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcDirScan.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFileIsDir.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFileScan.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFini.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontMatch.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontRenderPrepare.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSetAdd.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSetCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSetDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSetList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSetMatch.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSetPrint.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSetSort.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSetSortDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFontSort.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFreeTypeCharIndex.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFreeTypeCharSet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFreeTypeCharSetAndSpacing.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFreeTypeQuery.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcFreeTypeQueryFace.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcGetLangs.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcGetVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcInit.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcInitBringUptoDate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcInitLoadConfig.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcInitLoadConfigAndFonts.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcInitReinitialize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcIsLower.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcIsUpper.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangGetCharSet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetAdd.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetCompare.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetContains.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetCopy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetEqual.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetHasLang.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcLangSetHash.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcMatrixCopy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcMatrixEqual.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcMatrixInit.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcMatrixMultiply.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcMatrixRotate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcMatrixScale.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcMatrixShear.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameConstant.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameGetConstant.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameGetObjectType.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameParse.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameRegisterConstants.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameRegisterObjectTypes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameUnparse.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameUnregisterConstants.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcNameUnregisterObjectTypes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcObjectSetAdd.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcObjectSetBuild.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcObjectSetCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcObjectSetDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternAdd-Type.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternAdd.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternAddWeak.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternBuild.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternDel.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternDuplicate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternEqual.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternEqualSubset.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternGet-Type.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternGet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternHash.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternPrint.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternReference.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcPatternRemove.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrBasename.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrCmp.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrCmpIgnoreCase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrCopy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrCopyFilename.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrDirname.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrDowncase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrFree.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrListCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrListDone.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrListNext.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrPlus.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrSetAdd.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrSetAddFilename.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrSetCreate.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrSetDel.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrSetDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrSetEqual.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrSetMember.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrStr.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcStrStrIgnoreCase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcToLower.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcUcs4ToUtf8.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcUtf16Len.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcUtf16ToUcs4.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcUtf8Len.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcUtf8ToUcs4.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcValueDestroy.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcValueEqual.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcValuePrint.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FcValueSave.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FontCacheChangeCacheSettings.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FontCacheGetCacheSettings.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FontCacheGetCacheStatistics.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FontCacheQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/FontCacheQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/ImageByteOrder.3 -unknown- .man,xorg +./usr/X11R7/man/man3/IsCursorKey.3 -unknown- .man,xorg +./usr/X11R7/man/man3/MenuPopdown.3 -unknown- .man,xorg +./usr/X11R7/man/man3/MenuPopup.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAddConnectionWatch.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAddHost.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAllocClassHint.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAllocColor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAllocIconSize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAllocSizeHints.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAllocStandardColormap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAllocWMHints.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAllowDeviceEvents.3 -unknown- obsolete +./usr/X11R7/man/man3/XAllowEvents.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XAnyEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XButtonEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XChangeDeviceControl.3 -unknown- obsolete +./usr/X11R7/man/man3/XChangeDeviceDontPropagateList.3 -unknown- obsolete +./usr/X11R7/man/man3/XChangeDeviceKeyMapping.3 -unknown- obsolete +./usr/X11R7/man/man3/XChangeFeedbackControl.3 -unknown- obsolete +./usr/X11R7/man/man3/XChangeKeyboardControl.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XChangeKeyboardDevice.3 -unknown- obsolete +./usr/X11R7/man/man3/XChangeKeyboardMapping.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XChangePointerControl.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XChangePointerDevice.3 -unknown- obsolete +./usr/X11R7/man/man3/XChangeSaveSet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XChangeWindowAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCirculateEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCirculateRequestEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XClearArea.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XClientMessageEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCloseDevice.3 -unknown- obsolete +./usr/X11R7/man/man3/XColormapEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeCreateRegionFromBorderClip.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeGetOverlayWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeNameWindowPixmap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeRedirectSubwindows.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeRedirectWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeReleaseOverlayWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeUnredirectSubwindows.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeUnredirectWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCompositeVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XConfigureEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XConfigureRequestEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XConfigureWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCopyArea.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateColormap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateFontCursor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateFontSet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateGC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateIC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateOC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreatePixmap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateRegion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCreateWindowEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XCrossingEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGA.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAChangePixmapMode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGACloseFramebuffer.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGACopyArea.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGACopyTransparentArea.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGACreateColormap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAFillRectangle.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAGetViewportStatus.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAInstallColormap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAKeyEventToXKeyEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAOpenFramebuffer.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAQueryModes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGAQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGASelectInput.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGASetClientVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGASetMode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGASetViewport.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDGASync.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDefineCursor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDestroyWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDestroyWindowEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDeviceBell.3 -unknown- obsolete +./usr/X11R7/man/man3/XDeviceTimeCoord.3 -unknown- obsolete +./usr/X11R7/man/man3/XDrawArc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDrawImageString.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDrawLine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDrawPoint.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDrawRectangle.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDrawString.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XDrawText.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XEmptyRegion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XErrorEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XExposeEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XExtentsOfFontSet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86DGA.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86Misc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86MiscGetKbdSettings.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86MiscGetMouseSettings.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86MiscGetSaver.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86MiscQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86MiscQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86MiscSetKbdSettings.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86MiscSetMouseSettings.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86MiscSetSaver.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VM.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeDeleteModeLine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetAllModeLines.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetDotClocks.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetGamma.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetGammaRamp.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetGammaRampSize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetModeLine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetMonitor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetPermissions.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetViewPort.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeLockModeSwitch.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeModModeLine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSetClientVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSetGamma.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSetGammaRamp.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSetViewPort.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSwitchMode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSwitchToMode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeValidateModeLine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFillRectangle.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFilterEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFlush.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFocusChangeEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFontSetExtents.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFontsOfFontSet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFree.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFree86-DGA.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XFreeDeviceList.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetDeviceButtonMapping.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetDeviceControl.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetDeviceDontPropagateList.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetDeviceFocus.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetDeviceKeyMapping.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetDeviceModifierMapping.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetDeviceMotionEvents.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetDeviceProperty.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetExtensionVersion.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetFeedbackControl.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetSelectedExtensionEvents.3 -unknown- obsolete +./usr/X11R7/man/man3/XGetVisualInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGetWindowAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGetWindowProperty.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGetXCBConnection.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGrabButton.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGrabDevice.3 -unknown- obsolete +./usr/X11R7/man/man3/XGrabDeviceButton.3 -unknown- obsolete +./usr/X11R7/man/man3/XGrabDeviceKey.3 -unknown- obsolete +./usr/X11R7/man/man3/XGrabKey.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGrabKeyboard.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGrabPointer.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGrabServer.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGraphicsExposeEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XGravityEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XIconifyWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XIfEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XInitImage.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XInitThreads.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XInstallColormap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XInternAtom.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XIntersectRegion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XKeymapEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XListDeviceProperties.3 -unknown- obsolete +./usr/X11R7/man/man3/XListFonts.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XListInputDevices.3 -unknown- obsolete +./usr/X11R7/man/man3/XLoadFont.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XLookupKeysym.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XMapEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XMapRequestEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XMapWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XNextEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XNoOp.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XOpenDevice.3 -unknown- obsolete +./usr/X11R7/man/man3/XOpenDisplay.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XOpenIM.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XOpenOM.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XParseGeometry.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XPolygonRegion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XPropertyEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XPutBackEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XPutImage.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XQueryBestSize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XQueryColor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XQueryDeviceState.3 -unknown- obsolete +./usr/X11R7/man/man3/XQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XQueryPointer.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XQueryTree.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XRaiseWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XReadBitmapFile.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XRecolorCursor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XReparentEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XReparentWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XRes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XResQueryClientPixmapBytes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XResQueryClientResources.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XResQueryClients.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XResQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XResQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XResizeRequestEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XResourceManagerString.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSaveContext.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverAllocInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverGetRegistered.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverQueryInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverRegister.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverSelectInput.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverSetAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverSuspend.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverUnregister.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XScreenSaverUnsetAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSelectExtensionEvent.3 -unknown- obsolete +./usr/X11R7/man/man3/XSelectInput.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSelectionClearEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSelectionEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSelectionRequestEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSendEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSendExtensionEvent.3 -unknown- obsolete +./usr/X11R7/man/man3/XSetArcMode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetClipOrigin.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetCloseDownMode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetCommand.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetDeviceButtonMapping.3 -unknown- obsolete +./usr/X11R7/man/man3/XSetDeviceFocus.3 -unknown- obsolete +./usr/X11R7/man/man3/XSetDeviceMode.3 -unknown- obsolete +./usr/X11R7/man/man3/XSetDeviceModifierMapping.3 -unknown- obsolete +./usr/X11R7/man/man3/XSetDeviceValuators.3 -unknown- obsolete +./usr/X11R7/man/man3/XSetErrorHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetEventQueueOwner.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetFillStyle.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetFont.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetFontPath.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetICFocus.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetICValues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetInputFocus.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetLineAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetPointerMapping.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetScreenSaver.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetSelectionOwner.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetState.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetTextProperty.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetTile.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetTransientForHint.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetWMClientMachine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetWMColormapWindows.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetWMIconName.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetWMName.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetWMProperties.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSetWMProtocols.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShape.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeCombineMask.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeCombineRectangles.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeCombineRegion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeCombineShape.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeGetRectangles.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeInputSelected.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeOffsetShape.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeQueryExtensionXShapeQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeQueryExtents.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShapeSelectInput.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShm.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmAttach.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmCreateImage.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmCreatePixmap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmDetach.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmGetEventBase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmGetImage.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmPixmapFormat.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmPutImage.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XShmQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XStoreBytes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XStoreColors.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XStringListToTextProperty.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XStringToKeysym.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSupportsLocale.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XSynchronize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XTestCompareCurrentCursorWithWindow.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestCompareCursorWithWindow.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestDiscard.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestFakeButtonEvent.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestFakeKeyEvent.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestFakeMotionEvent.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestFakeRelativeMotionEvent.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestGrabControl.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestQueryExtension.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestSetGContextOfGC.3 -unknown- obsolete +./usr/X11R7/man/man3/XTestSetVisualIDOfVisual.3 -unknown- obsolete +./usr/X11R7/man/man3/XTextExtents.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XTextWidth.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XTranslateCoordinates.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XUngrabDevice.3 -unknown- obsolete +./usr/X11R7/man/man3/XUngrabDeviceButton.3 -unknown- obsolete +./usr/X11R7/man/man3/XUngrabDeviceKey.3 -unknown- obsolete +./usr/X11R7/man/man3/XUnmapEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XUnmapWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XVaCreateNestedList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XVisibilityEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XWarpPointer.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xau.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XauDisposeAuth.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XauFileName.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XauGetAuthByAddr.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XauGetBestAuthByAddr.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XauLockAuth.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XauReadAuth.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XauUnlockAuth.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XauWriteAuth.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xaw.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsAllocColor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsCCCOfColormap.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsCIELabQueryMaxC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsCIELuvQueryMaxC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsColor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsConvertColors.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsCreateCCC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsDefaultCCC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsQueryBlack.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsQueryColor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsSetWhitePoint.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsStoreColor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcmsTekHVCQueryMaxC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xcomposite.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcupGetReservedColormapEntries.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcupQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XcupStoreColors.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xcursor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeAllocateBackBufferName.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeBeginIdiom.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeDeallocateBackBufferName.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeEndIdiom.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeFreeVisualInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeGetBackBufferAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeGetVisualInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XdbeSwapBuffers.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xevi.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XeviGetVisualInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XeviQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XeviQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xevie.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XevieEnd.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XevieQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XevieSelectInput.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XevieSendEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XevieStart.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xfixes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xfontcache.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xft.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xinerama.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XineramaIsActive.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XineramaQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XineramaQueryScreens.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XineramaQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbDrawImageString.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbDrawString.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbDrawText.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbLookupString.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbResetIC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbTextEscapement.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbTextExtents.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbTextListToTextProperty.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbTextPerCharExtents.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xmbuf.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufChangeBufferAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufChangeWindowAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufCreateBuffers.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufCreateStereoWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufDestroyBuffers.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufDisplayBuffers.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufGetBufferAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufGetScreenInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufGetVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufGetWindowAttributes.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XmbufQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XpCancelDoc.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpCancelJob.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpCancelPage.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpCreateContext.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpDestroyContext.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpEndDoc.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpEndJob.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpEndPage.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpFreePrinterList.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetAttributes.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetContext.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetDocumentData.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetImageResolution.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetLocaleHinter.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetOneAttribute.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetPageDimensions.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetPdmStartParams.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetPrinterList.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpGetScreenOfContext.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpInputSelected.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpPutDocumentData.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpQueryExtension.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpQueryScreens.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpQueryVersion.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpRehashPrinterList.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpSelectInput.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpSetAttributes.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpSetContext.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpSetImageResolution.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpSetLocaleHinter.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpStartDoc.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpStartJob.3 -obsolete- obsolete +./usr/X11R7/man/man3/XpStartPage.3 -obsolete- obsolete +./usr/X11R7/man/man3/Xrandr.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XrmEnumerateDatabase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XrmGetFileDatabase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XrmGetResource.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XrmInitialize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XrmMergeDatabases.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XrmPutResource.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XrmUniqueQuark.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xss.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddActions.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddCallback.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddCallbacks.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddConverter.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddEventHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddExposureToRegion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddGrab.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddInput.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddRawEventHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddTimeOut.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAddWorkProc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAllocateGC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppAddActionHook.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppAddActions.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppAddBlockHook.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppAddConverter.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppAddInput.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppAddSignal.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppAddTimeOut.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppAddWorkProc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppCreateShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppError.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppErrorMsg.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppGetErrorDatabase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppGetErrorDatabaseText.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppGetExitFlag.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppGetSelectionTimeout.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppInitialize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppLock.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppMainLoop.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppNextEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppPeekEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppPending.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppProcessEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppReleaseCacheRefs.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppSetErrorHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppSetErrorMsgHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppSetExitFlag.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppSetFallbackResources.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppSetSelectionTimeout.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppSetTypeConverter.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppSetWarningHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppSetWarningMsgHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppUnlock.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppWarning.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAppWarningMsg.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAsprintf.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtAugmentTranslations.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtBuildEventMask.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallAcceptFocus.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallActionProc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallCallbackList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallCallbacks.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallConverter.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallbackExclusive.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallbackNone.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallbackNonexclusive.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCallbackPopdown.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCalloc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCancelSelectionRequest.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtChangeManagedSet.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCheckSubclass.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtClass.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCloseDisplay.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtConfigureWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtConvert.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtConvertAndStore.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtConvertCase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCreateApplicationContext.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCreateApplicationShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCreateManagedWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCreatePopupShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCreateSelectionRequest.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCreateWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtCreateWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDatabase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDestroyApplicationContext.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDestroyWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDirectConvert.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDisownSelection.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDispatchEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDispatchEventToWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDisplay.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDisplayInitialize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDisplayOfObject.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDisplayStringConversionWarning.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtDisplayToApplicationContext.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtError.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtErrorMsg.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtFindFile.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtFree.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetActionKeysym.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetActionList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetApplicationNameAndClass.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetApplicationResources.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetClassExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetConstraintResourceList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetDisplays.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetErrorDatabase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetErrorDatabaseText.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetGC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetKeyboardFocusWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetKeysymTable.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetMultiClickTime.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetResourceList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSelectionParameters.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSelectionRequest.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSelectionTimeout.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSelectionValue.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSelectionValueIncremental.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSelectionValues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSelectionValuesIncremental.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSubresources.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetSubvalues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGetValues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGrabButton.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGrabKey.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGrabKeyboard.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtGrabPointer.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtHasCallbacks.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtHooksOfDisplay.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtInitialize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtInitializeWidgetClass.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtInsertEventHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtInsertEventTypeHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtInsertRawEventHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtInstallAccelerators.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtInstallAllAccelerators.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsApplicationShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsComposite.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsConstraint.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsManaged.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsObject.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsOverrideShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsRealized.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsRectObj.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsSensitive.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsSessionShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsSubclass.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsTopLevelShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsTransientShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsVendorShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsWMShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtIsWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtKeysymToKeycodeList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtLastEventProcessed.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtLastTimestampProcessed.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtMainLoop.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtMakeGeometryRequest.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtMakeResizeRequest.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtMalloc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtManageChild.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtManageChildren.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtMapWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtMergeArgLists.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtMoveWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtName.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtNameToWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtNew.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtNewString.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtNextEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtNoticeSignal.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtNumber.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtOffset.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtOffsetOf.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtOpenApplication.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtOpenDisplay.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtOverrideTranslations.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtOwnSelection.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtOwnSelectionIncremental.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtParent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtParseAcceleratorTable.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtParseTranslationTable.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtPeekEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtPending.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtPopdown.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtPopup.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtPopupSpringLoaded.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtProcessEvent.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtProcessLock.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtProcessUnlock.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtQueryGeometry.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRealizeWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRealloc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRegisterCaseConverter.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRegisterDrawable.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRegisterExtensionSelector.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRegisterGrabAction.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtReleaseGC.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtReleasePropertyAtom.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveActionHook.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveAllCallbacks.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveBlockHook.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveCallback.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveCallbacks.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveEventHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveEventTypeHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveGrab.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveInput.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveRawEventHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveSignal.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveTimeOut.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtRemoveWorkProc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtReservePropertyAtom.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtResizeWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtResolvePathname.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtScreen.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtScreenDatabase.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtScreenOfObject.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSendSelectionRequest.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSessionGetToken.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSessionReturnToken.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetArg.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetErrorHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetErrorMsgHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetEventDispatcher.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetKeyTranslator.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetKeyboardFocus.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetLanguageProc.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetMappedWhenManaged.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetMultiClickTime.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetSelectionParameters.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetSelectionTimeout.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetSensitive.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetSubvalues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetTypeConverter.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetValues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetWMColormapWindows.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetWarningHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSetWarningMsgHandler.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtStringConversionWarning.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtSuperclass.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtToolkitInitialize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtToolkitThreadInitialize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtTranslateCoords.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtTranslateKeycode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUngrabButton.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUngrabKey.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUngrabKeyboard.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUngrabPointer.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUninstallTranslations.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUnmanageChild.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUnmanageChildren.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUnmapWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUnrealizeWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtUnregisterDrawable.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaAppCreateShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaAppInitialize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaCreateArgsList.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaCreateManagedWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaCreatePopupShell.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaCreateWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaGetApplicationResources.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaGetSubresources.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaGetSubvalues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaGetValues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaOpenApplication.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaSetSubvalues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtVaSetValues.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtWarning.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtWarningMsg.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtWidgetToApplicationContext.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtWindow.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtWindowOfObject.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XtWindowToWidget.3 -unknown- .man,xorg +./usr/X11R7/man/man3/Xv.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvFreeAdaptorInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvFreeEncodingInfo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvGetPortAttribute.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvGetStill.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvGetVideo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvGrabPort.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvPortNotify.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvPutStill.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvPutVideo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvQueryAdaptors.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvQueryBestSize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvQueryEncodings.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvSelectPortNotify.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvSelectVideoNotify.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvSetPortAttribute.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvStopVideo.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvUngrabPort.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XvVideoNotify.3 -unknown- .man,xorg +./usr/X11R7/man/man3/libXp.3 -obsolete- obsolete +./usr/X11R7/share/xcb/bigreq.xml -unknown- xorg +./usr/X11R7/share/xcb/composite.xml -unknown- xorg +./usr/X11R7/share/xcb/damage.xml -unknown- xorg +./usr/X11R7/share/xcb/dpms.xml -unknown- xorg +./usr/X11R7/share/xcb/dri2.xml -unknown- xorg +./usr/X11R7/share/xcb/glx.xml -unknown- xorg +./usr/X11R7/share/xcb/randr.xml -unknown- xorg +./usr/X11R7/share/xcb/record.xml -unknown- xorg +./usr/X11R7/share/xcb/render.xml -unknown- xorg +./usr/X11R7/share/xcb/res.xml -unknown- xorg +./usr/X11R7/share/xcb/screensaver.xml -unknown- xorg +./usr/X11R7/share/xcb/shape.xml -unknown- xorg +./usr/X11R7/share/xcb/shm.xml -unknown- xorg +./usr/X11R7/share/xcb/sync.xml -unknown- xorg +./usr/X11R7/share/xcb/xc_misc.xml -unknown- xorg +./usr/X11R7/share/xcb/xcb.xsd -unknown- xorg +./usr/X11R7/share/xcb/xevie.xml -unknown- xorg +./usr/X11R7/share/xcb/xf86dri.xml -unknown- xorg +./usr/X11R7/share/xcb/xfixes.xml -unknown- xorg +./usr/X11R7/share/xcb/xinerama.xml -unknown- xorg +./usr/X11R7/share/xcb/xinput.xml -unknown- xorg +./usr/X11R7/share/xcb/xprint.xml -unknown- xorg +./usr/X11R7/share/xcb/xproto.xml -unknown- xorg +./usr/X11R7/share/xcb/xselinux.xml -unknown- xorg +./usr/X11R7/share/xcb/xtest.xml -unknown- xorg +./usr/X11R7/share/xcb/xv.xml -unknown- xorg +./usr/X11R7/share/xcb/xvmc.xml -unknown- xorg +./usr/libdata/debug/usr/X11R6/bin/Xdmx.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xnest.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/Xprt.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/appres.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/atobm.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/bdftopcf.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/beforelight.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/bitmap.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/bmtoa.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/cxpm.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dga.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmx.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmxaddinput.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmxaddscreen.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmxreconfig.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmxresize.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmxrminput.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmxrmscreen.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmxtodmx.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dmxwininfo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dpsexec.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/dpsinfo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/editres.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/evi.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/fc-cache.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/fc-list.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/fonttosfnt.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/fslsfonts.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/fstobdf.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/glxgears.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/glxinfo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/iceauth.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/ico.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/imake.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/lbxproxy.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/listres.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/lndir.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/luit.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/makedepend.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/makepsres.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/makestrs.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mkcfm.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mkfontdir.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/mkfontscale.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/oclock.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/proxymngr.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/pswrap.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/res.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/resize.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/revpath.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/rgb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/rman.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/sessreg.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/setxkbmap.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/showfont.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/showrgb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/smproxy.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/ssh-askpass.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/sxpm.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/texteroids.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/twm.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/ucs2any.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/vdltodmx.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/viewres.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/x11perf.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xauth.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xbell.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xbiff.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xcalc.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xclipboard.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xclock.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xcmsdb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xconsole.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xcutsel.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xditview.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xdm.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xdmx.debug xcomp-obsolete obsolete +./usr/libdata/debug/usr/X11R6/bin/xdmxconfig.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xdpyinfo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xedit.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xev.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xeyes.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xfd.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xfindproxy.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xfontsel.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xfs.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xfsinfo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xfwp.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xgamma.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xgc.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xhost.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xinit.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xinput.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xkbbell.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xkbcomp.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xkbevd.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xkbprint.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xkbvleds.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xkbwatch.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xkill.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xled.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xload.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xlogo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xlsatoms.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xlsclients.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xlsfonts.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xmag.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xman.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xmessage.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xmh.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xmodmap.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xprop.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xrandr.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xrdb.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xrefresh.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xset.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xsetmode.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xsetpointer.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xsetroot.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xsm.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xstdcmap.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xsystrace.debug xcomp-obsolete obsolete +./usr/libdata/debug/usr/X11R6/bin/xterm.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xtest.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xtrapchar.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xtrapin.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xtrapinfo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xtrapout.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xtrapproto.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xtrapreset.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xtrapstats.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xvidtune.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xvinfo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xwd.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xwininfo.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/bin/xwud.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/libexec/chooser.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R6/libexec/rstartd.real.debug -unknown- debug,x11 +./usr/libdata/debug/usr/X11R7/bin/Xnest.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/Xvfb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/appres.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/atobm.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/bdftopcf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/bdftruncate.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/beforelight.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/bitmap.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/bmtoa.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/cxpm.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/dga.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/editres.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fc-cache.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fc-cat.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fc-list.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fc-match.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fc-query.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fc-scan.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fonttosfnt.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fslsfonts.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/fstobdf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/glxgears.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/glxinfo.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/iceauth.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/ico.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/imake.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/lbxproxy.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R7/bin/listres.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/lndir.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/luit.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/makedepend.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/makestrs.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/mkfontscale.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/oclock.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/pcitweak.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/proxymngr.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/resize.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/revpath.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/scanpci.debug -unknown- obsolete +./usr/libdata/debug/usr/X11R7/bin/sessreg.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/setxkbmap.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/showrgb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/smproxy.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/ssh-askpass.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/sxpm.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/twm.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/ucs2any.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/viewres.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/x11perf.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xauth.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xbiff.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xcalc.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xclipboard.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xclock.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xcmsdb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xconsole.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xcutsel.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xditview.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xdm.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xdpyinfo.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xdriinfo.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xedit.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xev.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xeyes.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xfd.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xfindproxy.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xfontsel.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xfs.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xfsinfo.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xfwp.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xgamma.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xgc.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xhost.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xinit.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xinput.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xkbbell.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xkbcomp.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xkbevd.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xkbprint.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xkbvleds.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xkbwatch.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xkill.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xload.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xlogo.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xlsatoms.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xlsclients.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xlsfonts.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xmag.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xman.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xmessage.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xmh.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xmlwf.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R7/bin/xmodmap.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xmore.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xphelloworld.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R7/bin/xplsprinters.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R7/bin/xprehashprinterlist.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R7/bin/xprop.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xpsimplehelloworld.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R7/bin/xpxthelloworld.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R7/bin/xrandr.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xrdb.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xrefresh.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xset.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xsetmode.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xsetpointer.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xsetroot.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xsetwallpaper.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xsm.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xstdcmap.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xterm.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xtrapchar.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xtrapin.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xtrapinfo.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xtrapout.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xtrapproto.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xtrapreset.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xtrapstats.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xvidtune.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xvinfo.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xwd.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xwininfo.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/bin/xwud.debug -unknown- debug,xorg +./usr/libdata/debug/usr/X11R7/libexec/chooser.debug -unknown- debug,xorg +./usr/libdata/lint/llib-lFS.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lFS.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lGL.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lGLw.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lGLw.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lICE.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lICE.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lOSMesa.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lSM.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lSM.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lX11.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lX11.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXRes.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXRes.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXTrap.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXTrap.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXau.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXau.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXaw.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXaw7.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXaw8.ln -obsolete- obsolete +./usr/libdata/lint/llib-lXcomposite.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXcursor.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXcursor.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXdamage.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXdmcp.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXdmcp.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXevie.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXext.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXext.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXfixes.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXfont.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXfont.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXfontcache.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXfontcache.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXft.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXft.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXi.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXi.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXinerama.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXinerama.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXmu.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXmu.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXmuu.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXmuu.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXp.ln -obsolete- obsolete,xorg +./usr/libdata/lint/llib-lXp.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXpm.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXpm.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXprintAppUtil.ln -obsolete- obsolete +./usr/libdata/lint/llib-lXprintUtil.ln -obsolete- obsolete +./usr/libdata/lint/llib-lXrandr.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXrandr.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXrender.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXrender.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXres.ln comp-obsolete obsolete +./usr/libdata/lint/llib-lXss.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXss.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXt.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXt.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXtst.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXtst.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXv.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXv.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXvMC.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXvMC.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXvMCW.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXxf86dga.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXxf86dga.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXxf86misc.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXxf86misc.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lXxf86vm.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lXxf86vm.ln -unknown- lint,xorg +./usr/libdata/lint/llib-ldmx.ln -unknown- lint,x11 +./usr/libdata/lint/llib-ldps.ln -unknown- lint,x11 +./usr/libdata/lint/llib-ldpstk.ln -unknown- lint,x11 +./usr/libdata/lint/llib-ldrm.ln -unknown- lint,xorg +./usr/libdata/lint/llib-ldrm_radeon.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lfntstubs.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lfontconfig.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lfontconfig.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lfontenc.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lfontenc.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lfreetype.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lfreetype.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lglut.ln -unknown- lint,xorg +./usr/libdata/lint/llib-llbxutil.ln -obsolete- obsolete,xorg +./usr/libdata/lint/llib-llbxutil.ln -unknown- lint,x11 +./usr/libdata/lint/llib-llisp.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lmp.ln -unknown- lint,xorg +./usr/libdata/lint/llib-loldX.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lpciaccess.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lpsres.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lre.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-composite.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-damage.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-dpms.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-dri2.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-glx.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-randr.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-record.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-render.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-res.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-screensaver.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-shape.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-shm.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-sync.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-xevie.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-xf86dri.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-xfixes.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-xinerama.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-xtest.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-xv.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb-xvmc.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxcb.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxkbfile.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lxkbfile.ln -unknown- lint,xorg +./usr/libdata/lint/llib-lxkbui.ln -unknown- lint,x11 +./usr/libdata/lint/llib-lxkbui.ln -unknown- lint,xorg diff --git a/distrib/sets/lists/xcomp/shl.mi b/distrib/sets/lists/xcomp/shl.mi new file mode 100644 index 000000000..6d9ef4b1c --- /dev/null +++ b/distrib/sets/lists/xcomp/shl.mi @@ -0,0 +1,274 @@ +# $NetBSD: shl.mi,v 1.31 2012/02/29 20:07:55 tron Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./usr/X11R6/lib/libFS_pic.a -unknown- x11 +./usr/X11R6/lib/libGLU_pic.a -unknown- x11 +./usr/X11R6/lib/libGL_pic.a -unknown- x11 +./usr/X11R6/lib/libGLw_pic.a -unknown- x11 +./usr/X11R6/lib/libICE_pic.a -unknown- x11 +./usr/X11R6/lib/libOSMesa_pic.a -unknown- x11 +./usr/X11R6/lib/libSM_pic.a -unknown- x11 +./usr/X11R6/lib/libX11_pic.a -unknown- x11 +./usr/X11R6/lib/libXRes_pic.a -unknown- x11 +./usr/X11R6/lib/libXTrap_pic.a -unknown- x11 +./usr/X11R6/lib/libXau_pic.a -unknown- x11 +./usr/X11R6/lib/libXaw_pic.a -unknown- x11 +./usr/X11R6/lib/libXcursor_pic.a -unknown- x11 +./usr/X11R6/lib/libXdmcp_pic.a -unknown- x11 +./usr/X11R6/lib/libXext_pic.a -unknown- x11 +./usr/X11R6/lib/libXfont_pic.a -unknown- x11 +./usr/X11R6/lib/libXfontcache_pic.a -unknown- x11 +./usr/X11R6/lib/libXft_pic.a -unknown- x11 +./usr/X11R6/lib/libXi_pic.a -unknown- x11 +./usr/X11R6/lib/libXinerama_pic.a -unknown- x11 +./usr/X11R6/lib/libXmu_pic.a -unknown- x11 +./usr/X11R6/lib/libXmuu_pic.a -unknown- x11 +./usr/X11R6/lib/libXp_pic.a -unknown- x11 +./usr/X11R6/lib/libXpm_pic.a -unknown- x11 +./usr/X11R6/lib/libXrandr_pic.a -unknown- x11 +./usr/X11R6/lib/libXrender_pic.a -unknown- x11 +./usr/X11R6/lib/libXss_pic.a -unknown- x11 +./usr/X11R6/lib/libXt_pic.a -unknown- x11 +./usr/X11R6/lib/libXtst_pic.a -unknown- x11 +./usr/X11R6/lib/libXvMC_pic.a -unknown- x11 +./usr/X11R6/lib/libXv_pic.a -unknown- x11 +./usr/X11R6/lib/libXxf86dga_pic.a -unknown- x11 +./usr/X11R6/lib/libXxf86misc_pic.a -unknown- x11 +./usr/X11R6/lib/libXxf86vm_pic.a -unknown- x11 +./usr/X11R6/lib/libdmx_pic.a -unknown- x11 +./usr/X11R6/lib/libdps_pic.a -unknown- x11 +./usr/X11R6/lib/libdpstk_pic.a -unknown- x11 +./usr/X11R6/lib/libexpat_pic.a -obsolete- obsolete +./usr/X11R6/lib/libfontconfig_pic.a -unknown- x11 +./usr/X11R6/lib/libfontenc_pic.a -unknown- x11 +./usr/X11R6/lib/libfreetype_pic.a -unknown- x11 +./usr/X11R6/lib/liboldX_pic.a -unknown- x11 +./usr/X11R6/lib/libpsres_pic.a -unknown- x11 +./usr/X11R6/lib/libxkbfile_pic.a -unknown- x11 +./usr/X11R6/lib/libxkbui_pic.a -unknown- x11 +./usr/X11R7/lib/libFS_pic.a -unknown- xorg +./usr/X11R7/lib/libGLU_pic.a -unknown- xorg +./usr/X11R7/lib/libGL_pic.a -unknown- xorg +./usr/X11R7/lib/libGLw_pic.a -unknown- xorg +./usr/X11R7/lib/libICE_pic.a -unknown- xorg +./usr/X11R7/lib/libOSMesa_pic.a -unknown- xorg +./usr/X11R7/lib/libSM_pic.a -unknown- xorg +./usr/X11R7/lib/libX11_pic.a -unknown- xorg +./usr/X11R7/lib/libX11-xcb_pic.a -unknown- xorg +./usr/X11R7/lib/libXRes_pic.a -unknown- xorg +./usr/X11R7/lib/libXTrap_pic.a -unknown- xorg +./usr/X11R7/lib/libXau_pic.a -unknown- xorg +./usr/X11R7/lib/libXaw7_pic.a -unknown- xorg +./usr/X11R7/lib/libXaw8_pic.a -obsolete- obsolete +./usr/X11R7/lib/libXcomposite_pic.a -unknown- xorg +./usr/X11R7/lib/libXcursor_pic.a -unknown- xorg +./usr/X11R7/lib/libXdamage_pic.a -unknown- xorg +./usr/X11R7/lib/libXdmcp_pic.a -unknown- xorg +./usr/X11R7/lib/libXevie_pic.a -unknown- xorg +./usr/X11R7/lib/libXext_pic.a -unknown- xorg +./usr/X11R7/lib/libXfixes_pic.a -unknown- xorg +./usr/X11R7/lib/libXfont_pic.a -unknown- xorg +./usr/X11R7/lib/libXfontcache_pic.a -unknown- xorg +./usr/X11R7/lib/libXft_pic.a -unknown- xorg +./usr/X11R7/lib/libXi_pic.a -unknown- xorg +./usr/X11R7/lib/libXinerama_pic.a -unknown- xorg +./usr/X11R7/lib/libXmu_pic.a -unknown- xorg +./usr/X11R7/lib/libXmuu_pic.a -unknown- xorg +./usr/X11R7/lib/libXp_pic.a -obsolete- obsolete +./usr/X11R7/lib/libXpm_pic.a -unknown- xorg +./usr/X11R7/lib/libXprintAppUtil_pic.a -obsolete- obsolete +./usr/X11R7/lib/libXprintUtil_pic.a -obsolete- obsolete +./usr/X11R7/lib/libXrandr_pic.a -unknown- xorg +./usr/X11R7/lib/libXrender_pic.a -unknown- xorg +./usr/X11R7/lib/libXres_pic.a -obsolete- obsolete +./usr/X11R7/lib/libXss_pic.a -unknown- xorg +./usr/X11R7/lib/libXt_pic.a -unknown- xorg +./usr/X11R7/lib/libXtst_pic.a -unknown- xorg +./usr/X11R7/lib/libXvMC_pic.a -unknown- xorg +./usr/X11R7/lib/libXvMCW_pic.a -unknown- xorg +./usr/X11R7/lib/libXv_pic.a -unknown- xorg +./usr/X11R7/lib/libXxf86dga_pic.a -unknown- xorg +./usr/X11R7/lib/libXxf86misc_pic.a -unknown- xorg +./usr/X11R7/lib/libXxf86vm_pic.a -unknown- xorg +./usr/X11R7/lib/libdrm_pic.a -unknown- xorg +./usr/X11R7/lib/libdrm_radeon_pic.a -unknown- xorg +./usr/X11R7/lib/libexpat_pic.a -obsolete- obsolete +./usr/X11R7/lib/libfontconfig_pic.a -unknown- xorg +./usr/X11R7/lib/libfontenc_pic.a -unknown- xorg +./usr/X11R7/lib/libfreetype_pic.a -unknown- xorg +./usr/X11R7/lib/libglut_pic.a -unknown- xorg +./usr/X11R7/lib/liblbxutil_pic.a -obsolete- obsolete +./usr/X11R7/lib/liblisp_pic.a -unknown- xorg +./usr/X11R7/lib/libmp_pic.a -unknown- xorg +./usr/X11R7/lib/libpciaccess_pic.a -unknown- xorg +./usr/X11R7/lib/libpixman-1_pic.a -unknown- xorg +./usr/X11R7/lib/libre_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-atom_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-aux_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-composite_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-damage_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-dpms_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-dri2_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-event_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-glx_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-icccm_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-image_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-keysyms_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-property_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-randr_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-record_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-render-util_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-render_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-reply_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-res_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-screensaver_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-shape_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-shm_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-sync_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-xevie_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-xf86dri_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-xfixes_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-xinerama_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-xtest_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-xv_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb-xvmc_pic.a -unknown- xorg +./usr/X11R7/lib/libxcb_pic.a -unknown- xorg +./usr/X11R7/lib/libxkbfile_pic.a -unknown- xorg +./usr/X11R7/lib/libxkbui_pic.a -unknown- xorg +./usr/libdata/debug/usr/X11R6/lib/libFS.so.6.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libGL.so.1.2.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libGLU.so.1.3.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libGLw.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libICE.so.6.3.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libOSMesa.so.4.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libSM.so.6.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libX11.so.6.2.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXRes.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXTrap.so.6.4.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXau.so.6.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXaw.so.6.1.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXaw.so.7.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXcursor.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXdmcp.so.6.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXext.so.6.4.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXfont.so.1.5.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXfontcache.so.1.2.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXft.so.1.1.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXft.so.2.1.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXi.so.6.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXinerama.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXmu.so.6.2.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXmuu.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXp.so.6.2.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXpm.so.4.11.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXrandr.so.2.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXrender.so.1.2.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXss.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXt.so.6.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXtst.so.6.1.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXv.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXvMC.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXxf86dga.so.1.1.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXxf86misc.so.1.1.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libXxf86vm.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libdmx.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libdps.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libdpstk.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libexpat.so.4.0.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R6/lib/libfontconfig.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libfontenc.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libfreetype.so.9.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/liboldX.so.6.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libpsres.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libxkbfile.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R6/lib/libxkbui.so.1.0.debug -unknown- x11,debug +./usr/libdata/debug/usr/X11R7/lib/X11/locale/lib/common/libximcp.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/X11/locale/lib/common/libxlcDef.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/X11/locale/lib/common/libxlcUTF8Load.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/X11/locale/lib/common/libxlibi18n.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/X11/locale/lib/common/libxlocale.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/X11/locale/lib/common/libxomGeneric.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libFS.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libGL.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libGLU.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libGLw.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libICE.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libOSMesa.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libSM.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libX11.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libX11-xcb.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXRes.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXTrap.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXau.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXaw6.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXaw7.so.10.0.debug -unknown xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXcomposite.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXcursor.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXdamage.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXdmcp.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXevie.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXext.so.7.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXfixes.so.4.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXfont.so.3.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXfontcache.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXft.so.3.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXi.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXinerama.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXmu.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXmuu.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXpm.so.5.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXrandr.so.3.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXrender.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXss.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXt.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXtst.so.7.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXv.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXvMC.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXvMCW.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXxf86dga.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXxf86misc.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libXxf86vm.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libdrm.so.3.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libdrm_radeon.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libexpat.so.2.0.debug -obsolete- obsolete +./usr/libdata/debug/usr/X11R7/lib/libfontconfig.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libfontenc.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libfreetype.so.7.3.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libglut.so.4.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libpciaccess.so.0.2.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libpixman-1.so.2.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-atom.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-aux.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-composite.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-damage.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-dpms.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-dri2.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-event.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-glx.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-icccm.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-image.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-keysyms.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-property.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-randr.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-record.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-render-util.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-render.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-reply.so.1.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-res.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-screensaver.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-shape.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-shm.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-sync.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-xevie.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-xf86dri.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-xfixes.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-xinerama.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-xtest.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-xv.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb-xvmc.so.0.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxcb.so.1.1.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxkbfile.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/libxkbui.so.2.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libmesa_dri.so.0.debug -unknown- xorg,debug +./usr/libdata/debug/usr/X11R7/lib/modules/dri/libswrast_dri.so.0.debug -unknown- xorg,debug diff --git a/distrib/sets/lists/xetc/md.x68k b/distrib/sets/lists/xetc/md.x68k new file mode 100644 index 000000000..ae0d107ba --- /dev/null +++ b/distrib/sets/lists/xetc/md.x68k @@ -0,0 +1,2 @@ +# $NetBSD: md.x68k,v 1.3 2008/09/02 02:24:12 lukem Exp $ +./etc/X11/X68kConfig -unknown- x11 diff --git a/distrib/sets/lists/xetc/mi b/distrib/sets/lists/xetc/mi new file mode 100644 index 000000000..c7dd2fa53 --- /dev/null +++ b/distrib/sets/lists/xetc/mi @@ -0,0 +1,110 @@ +# $NetBSD: mi,v 1.18 2011/02/18 00:42:20 jmcneill Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/X11/fs/config -unknown- x11 +./etc/X11/fs/config -unknown- xorg +./etc/X11/lbxproxy/AtomControl -unknown- x11 +./etc/X11/lbxproxy/AtomControl -obsolete- obsolete,xorg +./etc/X11/proxymngr/pmconfig -unknown- x11 +./etc/X11/proxymngr/pmconfig -unknown- xorg +./etc/X11/rstart/commands/@List -unknown- x11 +./etc/X11/rstart/commands/ListContexts -unknown- x11 +./etc/X11/rstart/commands/ListGenericCommands -unknown- x11 +./etc/X11/rstart/commands/x -unknown- x11 +./etc/X11/rstart/commands/x11 -unknown- x11 +./etc/X11/rstart/commands/x11r6/@List -unknown- x11 +./etc/X11/rstart/commands/x11r6/LoadMonitor -unknown- x11 +./etc/X11/rstart/commands/x11r6/Terminal -unknown- x11 +./etc/X11/rstart/config -unknown- x11 +./etc/X11/rstart/contexts/@List -unknown- x11 +./etc/X11/rstart/contexts/default -unknown- x11 +./etc/X11/rstart/contexts/x -unknown- x11 +./etc/X11/rstart/contexts/x11 -unknown- x11 +./etc/X11/rstart/contexts/x11r6 -unknown- x11 +./etc/X11/twm/system.twmrc -unknown- x11 +./etc/X11/twm/system.twmrc -unknown- xorg +./etc/X11/xdm/GiveConsole -unknown- x11 +./etc/X11/xdm/GiveConsole -unknown- xorg +./etc/X11/xdm/TakeConsole -unknown- x11 +./etc/X11/xdm/TakeConsole -unknown- xorg +./etc/X11/xdm/Xaccess -unknown- x11 +./etc/X11/xdm/Xaccess -unknown- xorg +./etc/X11/xdm/Xresources -unknown- x11 +./etc/X11/xdm/Xresources -unknown- xorg +./etc/X11/xdm/Xreset -unknown- xorg +./etc/X11/xdm/Xservers -unknown- x11 +./etc/X11/xdm/Xservers -unknown- xorg +./etc/X11/xdm/Xservers.fs -unknown- x11 +./etc/X11/xdm/Xservers.fs -unknown- xorg +./etc/X11/xdm/Xservers.ws -unknown- x11 +./etc/X11/xdm/Xservers.ws -unknown- xorg +./etc/X11/xdm/Xsession -unknown- x11 +./etc/X11/xdm/Xsession -unknown- xorg +./etc/X11/xdm/Xsetup_0 -unknown- x11 +./etc/X11/xdm/Xsetup_0 -unknown- xorg +./etc/X11/xdm/Xstartup -unknown- xorg +./etc/X11/xdm/Xwilling -unknown- x11 +./etc/X11/xdm/Xwilling -unknown- xorg +./etc/X11/xdm/xdm-config -unknown- x11 +./etc/X11/xdm/xdm-config -unknown- xorg +./etc/X11/xdm/xorg-bw.xpm xetc-obsolete obsolete +./etc/X11/xdm/xorg.xpm xetc-obsolete obsolete +./etc/X11/xinit/xinitrc -unknown- x11 +./etc/X11/xinit/xinitrc -unknown- xorg +./etc/X11/xserver/SecurityPolicy -unknown- x11 +./etc/X11/xsm/system.xsm -unknown- x11 +./etc/X11/xsm/system.xsm -unknown- xorg +./etc/fonts/conf.avail/10-autohint.conf -unknown- xorg +./etc/fonts/conf.avail/10-no-sub-pixel.conf -unknown- xorg +./etc/fonts/conf.avail/10-sub-pixel-bgr.conf -unknown- xorg +./etc/fonts/conf.avail/10-sub-pixel-rgb.conf -unknown- xorg +./etc/fonts/conf.avail/10-sub-pixel-vbgr.conf -unknown- xorg +./etc/fonts/conf.avail/10-sub-pixel-vrgb.conf -unknown- xorg +./etc/fonts/conf.avail/10-unhinted.conf -unknown- xorg +./etc/fonts/conf.avail/20-fix-globaladvance.conf -unknown- xorg +./etc/fonts/conf.avail/20-unhint-small-vera.conf -unknown- xorg +./etc/fonts/conf.avail/25-unhint-nonlatin.conf -unknown- xorg +./etc/fonts/conf.avail/30-metric-aliases.conf -unknown- xorg +./etc/fonts/conf.avail/30-urw-aliases.conf -unknown- xorg +./etc/fonts/conf.avail/40-nonlatin.conf -unknown- xorg +./etc/fonts/conf.avail/45-latin.conf -unknown- xorg +./etc/fonts/conf.avail/49-sansserif.conf -unknown- xorg +./etc/fonts/conf.avail/50-user.conf -unknown- xorg +./etc/fonts/conf.avail/51-local.conf -unknown- xorg +./etc/fonts/conf.avail/60-latin.conf -unknown- xorg +./etc/fonts/conf.avail/65-fonts-persian.conf -unknown- xorg +./etc/fonts/conf.avail/65-khmer.conf -unknown- xorg +./etc/fonts/conf.avail/65-nonlatin.conf -unknown- xorg +./etc/fonts/conf.avail/69-unifont.conf -unknown- xorg +./etc/fonts/conf.avail/70-no-bitmaps.conf -unknown- xorg +./etc/fonts/conf.avail/70-yes-bitmaps.conf -unknown- xorg +./etc/fonts/conf.avail/80-delicious.conf -unknown- xorg +./etc/fonts/conf.avail/90-synthetic.conf -unknown- xorg +./etc/fonts/conf.d/20-fix-globaladvance.conf -unknown- xorg +./etc/fonts/conf.d/20-unhint-small-vera.conf -unknown- xorg +./etc/fonts/conf.d/30-metric-aliases.conf -unknown- xorg +./etc/fonts/conf.d/30-urw-aliases.conf -unknown- xorg +./etc/fonts/conf.d/40-nonlatin.conf -unknown- xorg +./etc/fonts/conf.d/45-latin.conf -unknown- xorg +./etc/fonts/conf.d/49-sansserif.conf -unknown- xorg +./etc/fonts/conf.d/50-user.conf -unknown- xorg +./etc/fonts/conf.d/51-local.conf -unknown- xorg +./etc/fonts/conf.d/60-latin.conf -unknown- xorg +./etc/fonts/conf.d/65-fonts-persian.conf -unknown- xorg +./etc/fonts/conf.d/65-nonlatin.conf -unknown- xorg +./etc/fonts/conf.d/69-unifont.conf -unknown- xorg +./etc/fonts/conf.d/80-delicious.conf -unknown- xorg +./etc/fonts/conf.d/90-synthetic.conf -unknown- xorg +./etc/fonts/fonts.conf -unknown- x11 +./etc/fonts/fonts.conf -unknown- xorg +./etc/fonts/fonts.dtd -unknown- x11 +./etc/fonts/fonts.dtd -unknown- xorg +./etc/mtree/set.xetc xetc-sys-root x11 +./etc/mtree/set.xetc xetc-sys-root xorg +./etc/rc.d/xdm etc-x11-rc x11 +./etc/rc.d/xdm etc-x11-rc xorg +./etc/rc.d/xfs etc-x11-rc x11 +./etc/rc.d/xfs etc-x11-rc xorg +./etc/rc.d/fccache etc-x11-rc x11 +./etc/rc.d/fccache etc-x11-rc xorg diff --git a/distrib/sets/lists/xfont/mi b/distrib/sets/lists/xfont/mi new file mode 100644 index 000000000..83b00ca66 --- /dev/null +++ b/distrib/sets/lists/xfont/mi @@ -0,0 +1,8829 @@ +# $NetBSD: mi,v 1.40 2012/08/20 15:38:59 tron Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.xfont xfont-sys-root x11 +./etc/mtree/set.xfont xfont-sys-root xorg +./usr/X11R6/lib/X11/fonts xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTBI__24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTB___24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTI___24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/UTRG__24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charBI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charBI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charBI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charBI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charBI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charBI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/charR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courBO24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courO24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/courR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/fonts.alias xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvBO24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvO24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/helvR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBIS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luBS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luIS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/luRS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubBI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lubR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutBS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/lutRS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenBI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/ncenR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/symb08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/symb10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/symb12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/symb14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/symb18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/symb24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/tech14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/techB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/term14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/termB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timBI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/100dpi/timR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTBI__24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTB___24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTI___24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/UTRG__24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charBI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charBI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charBI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charBI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charBI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charBI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/charR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courBO24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courO24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/courR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/fonts.alias xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvBO24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvO24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/helvR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBIS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luBS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luIS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/luRS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubBI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lubR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutBS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/lutRS24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenBI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/ncenR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/symb08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/symb10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/symb12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/symb14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/symb18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/symb24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/tech14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/techB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/term14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/termB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timB24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timBI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timI24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR08.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/75dpi/timR24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/CID xfont share,x11 +./usr/X11R6/lib/X11/fonts/CID/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/CID/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/CID/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/CID/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/font0419.spd xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/font0582.spd xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/font0583.spd xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/font0611.spd xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/font0648.spd xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/font0649.spd xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/font0709.spd xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/font0710.spd xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/Speedo/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/Vera.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraBI.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraBd.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraIt.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraMoBI.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraMoBd.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraMoIt.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraMono.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraSe.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/VeraSeBd.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luximb.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luximbi.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luximr.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luximri.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luxirb.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luxirbi.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luxirr.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luxirri.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luxisb.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luxisbi.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luxisr.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/TTF/luxisri.ttf xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/UTBI____.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/UTBI____.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/UTB_____.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/UTB_____.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/UTI_____.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/UTI_____.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/UTRG____.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/UTRG____.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0419bt_.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0419bt_.pfb xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0582bt_.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0582bt_.pfb xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0583bt_.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0583bt_.pfb xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0611bt_.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0611bt_.pfb xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0632bt_.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0632bt_.pfb xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0633bt_.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0633bt_.pfb xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0648bt_.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0648bt_.pfb xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0649bt_.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/c0649bt_.pfb xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/cour.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/cour.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/courb.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/courb.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/courbi.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/courbi.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/couri.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/couri.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/cursor.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l047013t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l047013t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l047016t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l047016t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l047033t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l047033t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l047036t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l047036t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l048013t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l048013t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l048016t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l048016t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l048033t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l048033t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l048036t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l048036t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l049013t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l049013t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l049016t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l049016t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l049033t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l049033t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l049036t.afm xfont share,x11 +./usr/X11R6/lib/X11/fonts/Type1/l049036t.pfa xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1c.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1cb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1cbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1co.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1h.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1hb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1hbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1ho.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1t.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1tb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1tbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox1to.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2c.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2cb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2cbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2co.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2h.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2hb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2hbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2ho.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2t.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2tb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2tbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox2to.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3c.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3cb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3cbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3co.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3h.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3hb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3hbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3ho.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3t.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3tb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3tbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox3to.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox4h.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox4hb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox4hbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox4ho.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox4t.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox4tb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox4tbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox4to.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox5h.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox5hb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox5hbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox5ho.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox5t.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox5tb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox5tbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox5to.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox6h.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox6hb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox6hbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox6ho.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox6t.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox6tb.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox6tbo.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/crox6to.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/fonts.alias xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi10x16b.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi10x20.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi12x24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi12x24b.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi5x8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi6x10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi6x13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi6x13b.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi6x9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi7x14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi7x14b.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi8x13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi8x16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi8x16b.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi9x15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi9x15b.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi9x18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koi9x18b.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/koinil2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/proof9x16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/screen8x16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/cyrillic/screen8x16b.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/adobe-dingbats.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/adobe-standard.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/adobe-symbol.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/ansi-1251.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/armscii-8.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/dec-special.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/ibm-cp437.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/ibm-cp850.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/ibm-cp852.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/ibm-cp866.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/iso8859-11.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/iso8859-13.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/iso8859-16.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/iso8859-6.16.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/iso8859-6.8x.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/big5.eten-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/big5hkscs-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/cns11643-1.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/gb18030.2000-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/gb18030.2000-1.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/gb2312.1980-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/gbk-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/jisx0201.1976-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/jisx0208.1983-0.enc.gz xfont-obsolete obsolete +./usr/X11R6/lib/X11/fonts/encodings/large/jisx0208.1990-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/jisx0212.1990-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/ksc5601.1987-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/ksc5601.1992-3.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/large/sun.unicode.india-0.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1250.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1251.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1252.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1253.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1254.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1255.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1256.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1257.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-cp1258.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/microsoft-win3.1.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/mulearabic-0.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/mulearabic-1.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/mulearabic-2.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/mulelao-1.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/sun_eu_greek.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/tcvn-0.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/tis620-2.enc xfont share,x11 +./usr/X11R6/lib/X11/fonts/encodings/viscii1.1-1.enc.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/local xfont share,x11 +./usr/X11R6/lib/X11/fonts/local/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/local/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/local/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/local/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/10x20.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/12x13ja.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/12x24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/12x24rk.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/18x18ja.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/18x18ko.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/4x6.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/5x8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13B.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x13O.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/6x9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13B.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x13O.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-JISX0201.1976-0.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/7x14B.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13B.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x13O.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/8x16rk.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x15B.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-11.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/9x18B.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/arabic24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB6x10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB6x12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB8x10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB8x12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB8x13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB8x14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB8x16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB8x8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clB9x15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clI6x12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clI8x8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR4x6.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR5x10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR5x6.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR5x8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-1.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-3.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-4.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-5.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-7.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-ISO8859-9.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12-KOI8-R.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x6.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR6x8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR7x10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR7x12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR7x14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR7x8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR8x10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR8x12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR8x13.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR8x14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR8x16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR8x8.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/clR9x15.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cu-alt12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cu-arabic12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cu-devnag12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cu-lig12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cu-pua12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cu12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cuarabic12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cudevnag12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/cursor.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/deccurs.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/decsess.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/encodings.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/fonts.alias xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/fonts.dir xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/fonts.scale xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/gb16fs.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/gb16st.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/gb24st.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/hanglg16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/hanglm16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/hanglm24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/jiskan16.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/jiskan24.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/k14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/micro.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/nil2.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/olcursor.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/olgl10.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/olgl12.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/olgl14.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/misc/olgl19.pcf.gz xfont share,x11 +./usr/X11R6/lib/X11/fonts/util xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/fonts.cache-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-1 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-10 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-11 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-13 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-14 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-15 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-16 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-2 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-3 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-4 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-5 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-6 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-7 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-8 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-ISO8859-9 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-JISX0201.1976-0 xfont share,x11 +./usr/X11R6/lib/X11/fonts/util/map-KOI8-R xfont share,x11 +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTBI__24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTB___24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTI___24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/UTRG__24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charBI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charBI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charBI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charBI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charBI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charBI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/charR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courBO24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courO24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/courR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/encodings.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/fonts.alias xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/fonts.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/fonts.scale xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvBO24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvO24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/helvR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBIS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luBS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luIS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/luRS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubBI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lubR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutBS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/lutRS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenBI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/ncenR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/symb08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/symb10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/symb12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/symb14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/symb18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/symb24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/tech14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/techB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/term14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/termB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timBI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/100dpi/timR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTBI__24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTB___24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTI___24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/UTRG__24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charBI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charBI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charBI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charBI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charBI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charBI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/charR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courBO24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courO24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/courR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/encodings.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/fonts.alias xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/fonts.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/fonts.scale xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvBO24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvO24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/helvR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBIS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luBS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luIS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/luRS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubBI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lubR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutBS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS19.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/lutRS24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenBI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/ncenR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/symb08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/symb10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/symb12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/symb14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/symb18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/symb24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/tech14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/techB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/term14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/termB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timB24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timBI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timI24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR08.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR10.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR12.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR14.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR18.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/75dpi/timR24.bdf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/Vera.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraBI.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraBd.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraIt.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraMoBI.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraMoBd.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraMoIt.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraMono.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraSe.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/VeraSeBd.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/encodings.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/fonts.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/fonts.scale xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luximb.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luximbi.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luximr.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luximri.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luxirb.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luxirbi.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luxirr.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luxirri.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luxisb.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luxisbi.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luxisr.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/TTF/luxisri.ttf xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/UTBI____.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/UTBI____.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/UTB_____.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/UTB_____.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/UTI_____.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/UTI_____.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/UTRG____.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/UTRG____.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0419bt_.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0419bt_.pfb xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0582bt_.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0582bt_.pfb xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0583bt_.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0583bt_.pfb xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0611bt_.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0611bt_.pfb xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0632bt_.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0632bt_.pfb xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0633bt_.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0633bt_.pfb xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0648bt_.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0648bt_.pfb xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0649bt_.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/c0649bt_.pfb xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/cour.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/cour.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/courb.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/courb.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/courbi.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/courbi.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/couri.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/couri.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/encodings.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/fonts.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/fonts.scale xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l047013t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l047013t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l047016t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l047016t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l047033t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l047033t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l047036t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l047036t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l048013t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l048013t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l048016t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l048016t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l048033t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l048033t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l048036t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l048036t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l049013t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l049013t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l049016t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l049016t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l049033t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l049033t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l049036t.afm xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/Type1/l049036t.pfa xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/cyrillic/fonts.alias xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/adobe-dingbats.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/adobe-standard.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/adobe-symbol.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/armscii-8.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/ascii-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/dec-special.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/encodings.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/ibm-cp437.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/ibm-cp850.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/ibm-cp852.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/ibm-cp866.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/iso8859-11.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/iso8859-13.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/iso8859-16.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/iso8859-6.16.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/iso8859-6.8x.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/big5.eten-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/big5hkscs-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/cns11643-1.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/cns11643-2.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/cns11643-3.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/encodings.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/gb18030-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/gb18030.2000-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/gb18030.2000-1.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/gb2312.1980-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/gbk-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/jisx0201.1976-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/jisx0208.1990-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/jisx0212.1990-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/ksc5601.1987-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/ksc5601.1992-3.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/large/sun.unicode.india-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1250.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1251.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1252.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1253.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1254.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1255.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1256.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1257.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-cp1258.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/microsoft-win3.1.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/mulearabic-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/mulearabic-1.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/mulearabic-2.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/mulelao-1.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/suneu-greek.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/tcvn-0.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/tis620-2.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/encodings/viscii1.1-1.enc.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/10x20.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/12x13ja.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/12x24.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/12x24rk.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/18x18ja.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/18x18ko.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/4x6.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/5x8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13B-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/6x13B.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-8.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/6x13O-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x13O-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/6x13O.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/6x9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13B-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/7x13B.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-8.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/7x13O-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x13O-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/7x13O.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-JISX0201.1976-0.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/7x14B-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/7x14B.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13B-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/8x13B.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-8.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/8x13O-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x13O-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/8x13O.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/8x16rk.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x15B-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/9x15B.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-11.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18-KOI8-R.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-1.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-10.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-11.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-13.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-15.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-3.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-4.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-5.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-7.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-8.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-ISO8859-9.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/9x18B-KOI8-R.pcf.gz xfont-obsolete obsolete +./usr/X11R7/lib/X11/fonts/misc/9x18B.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cu-alt12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cu-arabic12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cu-devnag12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cu-lig12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cu-pua12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cu12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cuarabic12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cudevnag12.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/cursor.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/deccurs.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/decsess.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/encodings.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/fonts.alias xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/fonts.dir xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/fonts.scale xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/gb16fs.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/gb16st.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/gb24st.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/hanglg16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/hanglm16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/hanglm24.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/jiskan16.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/jiskan24.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/k14.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/misc/nil2.pcf.gz xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-1 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-10 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-11 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-13 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-14 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-15 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-16 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-2 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-3 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-4 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-5 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-6 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-7 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-8 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-ISO8859-9 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-JISX0201.1976-0 xfont share,xorg,x11fonts +./usr/X11R7/lib/X11/fonts/util/map-KOI8-R xfont share,xorg,x11fonts diff --git a/distrib/sets/lists/xserver/ad.arm b/distrib/sets/lists/xserver/ad.arm new file mode 100644 index 000000000..e4627f799 --- /dev/null +++ b/distrib/sets/lists/xserver/ad.arm @@ -0,0 +1 @@ +# $NetBSD: ad.arm,v 1.6 2009/02/09 16:28:53 abs Exp $ diff --git a/distrib/sets/lists/xserver/ad.mipseb b/distrib/sets/lists/xserver/ad.mipseb new file mode 100644 index 000000000..53807105a --- /dev/null +++ b/distrib/sets/lists/xserver/ad.mipseb @@ -0,0 +1 @@ +# $NetBSD: ad.mipseb,v 1.6 2009/02/09 16:28:54 abs Exp $ diff --git a/distrib/sets/lists/xserver/ad.mipsel b/distrib/sets/lists/xserver/ad.mipsel new file mode 100644 index 000000000..c3c6744ec --- /dev/null +++ b/distrib/sets/lists/xserver/ad.mipsel @@ -0,0 +1 @@ +# $NetBSD: ad.mipsel,v 1.6 2009/02/09 16:28:54 abs Exp $ diff --git a/distrib/sets/lists/xserver/ad.powerpc b/distrib/sets/lists/xserver/ad.powerpc new file mode 100644 index 000000000..700217e63 --- /dev/null +++ b/distrib/sets/lists/xserver/ad.powerpc @@ -0,0 +1 @@ +# $NetBSD: ad.powerpc,v 1.6 2009/02/09 16:28:54 abs Exp $ diff --git a/distrib/sets/lists/xserver/ad.x86_64 b/distrib/sets/lists/xserver/ad.x86_64 new file mode 100644 index 000000000..ce95dfb79 --- /dev/null +++ b/distrib/sets/lists/xserver/ad.x86_64 @@ -0,0 +1,15 @@ +# $NetBSD: ad.x86_64,v 1.6 2009/06/12 01:55:59 mrg Exp $ +./usr/X11R6/bin/inb -unknown- x11 +./usr/X11R6/bin/inl -unknown- x11 +./usr/X11R6/bin/inw -unknown- x11 +./usr/X11R6/bin/ioport -unknown- x11 +./usr/X11R6/bin/outb -unknown- x11 +./usr/X11R6/bin/outl -unknown- x11 +./usr/X11R6/bin/outw -unknown- x11 +./usr/X11R7/bin/inb -unknown- obsolete +./usr/X11R7/bin/inl -unknown- obsolete +./usr/X11R7/bin/inw -unknown- obsolete +./usr/X11R7/bin/ioport -unknown- obsolete +./usr/X11R7/bin/outb -unknown- obsolete +./usr/X11R7/bin/outl -unknown- obsolete +./usr/X11R7/bin/outw -unknown- obsolete diff --git a/distrib/sets/lists/xserver/md.acorn32 b/distrib/sets/lists/xserver/md.acorn32 new file mode 100644 index 000000000..7e9e7f265 --- /dev/null +++ b/distrib/sets/lists/xserver/md.acorn32 @@ -0,0 +1,3 @@ +# $NetBSD: md.acorn32,v 1.7 2008/09/02 02:17:48 lukem Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xarm32VIDC -unknown- x11 diff --git a/distrib/sets/lists/xserver/md.alpha b/distrib/sets/lists/xserver/md.alpha new file mode 100644 index 000000000..2f4d9a978 --- /dev/null +++ b/distrib/sets/lists/xserver/md.alpha @@ -0,0 +1,391 @@ +# $NetBSD: md.alpha,v 1.32 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XalphaNetBSD -unknown- x11 +./usr/X11R6/bin/XdecNetBSD -unknown- x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/pcitweak -unknown- obsolete +./usr/X11R7/bin/scanpci -unknown- obsolete +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/mach64_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/s3v_dri.so -unknown- obsolete +./usr/X11R7/lib/modules/dri/s3v_dri.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/dri/savage_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/savage_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/sis_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/sis_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/trident_dri.so -unknown- obsolete +./usr/X11R7/lib/modules/dri/trident_dri.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/apm_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/apm_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ark_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ark_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ast_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ast_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/i128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/i128_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/i740_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/i740_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/imstt_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/imstt_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeonhd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeonhd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/savage_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/savage_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sis_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sis_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/trident_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/trident_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tseng_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tseng_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vga_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/vga_drv.so.4 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libint10_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/pcitweak.0 -unknown- obsolete +./usr/X11R7/man/cat1/scanpci.0 -unknown- obsolete +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat3/XF86VM.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeDeleteModeLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetAllModeLines.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetDotClocks.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetGamma.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetGammaRamp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetGammaRampSize.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetModeLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetMonitor.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetPermissions.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeGetViewPort.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeLockModeSwitch.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeModModeLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeQueryExtension.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeQueryVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSetClientVersion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSetGamma.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSetGammaRamp.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSetViewPort.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSwitchMode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeSwitchToMode.0 -unknown- .cat,xorg +./usr/X11R7/man/cat3/XF86VidModeValidateModeLine.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/apm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ati.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/chips.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cirrus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/glint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/i128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/i740.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/imstt.0 -unknown- obsolete +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/nv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/r128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeon.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeonhd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3virge.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/savage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/siliconmotion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/sis.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tdfx.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/trident.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tseng.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vga.0 -unknown- obsolete +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/pcitweak.html -unknown- obsolete +./usr/X11R7/man/html1/scanpci.html -unknown- obsolete +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html3/XF86VM.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeDeleteModeLine.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetAllModeLines.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetDotClocks.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetGamma.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetGammaRamp.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetGammaRampSize.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetModeLine.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetMonitor.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetPermissions.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeGetViewPort.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeLockModeSwitch.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeModModeLine.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeQueryExtension.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeQueryVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSetClientVersion.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSetGamma.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSetGammaRamp.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSetViewPort.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSwitchMode.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeSwitchToMode.html -unknown- html,xorg +./usr/X11R7/man/html3/XF86VidModeValidateModeLine.html -unknown- html,xorg +./usr/X11R7/man/html4/apm.html -unknown- html,xorg +./usr/X11R7/man/html4/ati.html -unknown- html,xorg +./usr/X11R7/man/html4/chips.html -unknown- html,xorg +./usr/X11R7/man/html4/cirrus.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/glint.html -unknown- html,xorg +./usr/X11R7/man/html4/i128.html -unknown- html,xorg +./usr/X11R7/man/html4/i740.html -unknown- html,xorg +./usr/X11R7/man/html4/imstt.html -unknown- obsolete +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/nv.html -unknown- html,xorg +./usr/X11R7/man/html4/r128.html -unknown- html,xorg +./usr/X11R7/man/html4/radeon.html -unknown- html,xorg +./usr/X11R7/man/html4/radeonhd.html -unknown- html,xorg +./usr/X11R7/man/html4/s3.html -unknown- html,xorg +./usr/X11R7/man/html4/s3virge.html -unknown- html,xorg +./usr/X11R7/man/html4/savage.html -unknown- html,xorg +./usr/X11R7/man/html4/siliconmotion.html -unknown- html,xorg +./usr/X11R7/man/html4/sis.html -unknown- html,xorg +./usr/X11R7/man/html4/tdfx.html -unknown- html,xorg +./usr/X11R7/man/html4/trident.html -unknown- html,xorg +./usr/X11R7/man/html4/tseng.html -unknown- html,xorg +./usr/X11R7/man/html4/vga.html -unknown- obsolete +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/pcitweak.1 -unknown- obsolete +./usr/X11R7/man/man1/scanpci.1 -unknown- obsolete +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man3/XF86VM.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeDeleteModeLine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetAllModeLines.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetDotClocks.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetGamma.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetGammaRamp.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetGammaRampSize.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetModeLine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetMonitor.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetPermissions.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeGetViewPort.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeLockModeSwitch.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeModModeLine.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeQueryExtension.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeQueryVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSetClientVersion.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSetGamma.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSetGammaRamp.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSetViewPort.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSwitchMode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeSwitchToMode.3 -unknown- .man,xorg +./usr/X11R7/man/man3/XF86VidModeValidateModeLine.3 -unknown- .man,xorg +./usr/X11R7/man/man4/apm.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ati.4 -unknown- .man,xorg +./usr/X11R7/man/man4/chips.4 -unknown- .man,xorg +./usr/X11R7/man/man4/cirrus.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/glint.4 -unknown- .man,xorg +./usr/X11R7/man/man4/i128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/i740.4 -unknown- .man,xorg +./usr/X11R7/man/man4/imstt.4 -unknown- obsolete +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/nv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/r128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeon.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeonhd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3virge.4 -unknown- .man,xorg +./usr/X11R7/man/man4/savage.4 -unknown- .man,xorg +./usr/X11R7/man/man4/siliconmotion.4 -unknown- .man,xorg +./usr/X11R7/man/man4/sis.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tdfx.4 -unknown- .man,xorg +./usr/X11R7/man/man4/trident.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tseng.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vga.4 -unknown- obsolete +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.amd64 b/distrib/sets/lists/xserver/md.amd64 new file mode 100644 index 000000000..7554685c6 --- /dev/null +++ b/distrib/sets/lists/xserver/md.amd64 @@ -0,0 +1,754 @@ +# $NetBSD: md.amd64,v 1.65 2012/07/24 17:40:05 njoly Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DGA -obsolete- obsolete +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/ServersOnly -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Status -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/codeconv/libARABIC.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.a -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/apm_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/ark_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/ati_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/atimisc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/chips_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_alpine.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_laguna.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cyrix_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/dummy_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/fbdev_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/glint_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/i128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/imstt_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/mga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/nsc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/nv_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/r128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/radeon_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/rendition_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/riva128.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3virge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/savage_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/siliconmotion_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sis_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tdfx_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/trident_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tseng_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vesa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/wsfb.o -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/v10002d.uc -unknown- x11 +./usr/X11R6/lib/modules/v20002d.uc -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/apm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/ati.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/chips.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/cirrus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/cyrix.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdev.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/glint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/i128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/imstt.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/nsc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/nv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/r128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/radeon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/rendition.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/s3virge.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/savage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/siliconmotion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sis.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tdfx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/trident.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tseng.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vesa.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/apm.html -unknown- html,x11 +./usr/X11R6/man/html4/ati.html -unknown- html,x11 +./usr/X11R6/man/html4/chips.html -unknown- html,x11 +./usr/X11R6/man/html4/cirrus.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/cyrix.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdev.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/glint.html -unknown- html,x11 +./usr/X11R6/man/html4/i128.html -unknown- html,x11 +./usr/X11R6/man/html4/imstt.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/mga.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/nsc.html -unknown- html,x11 +./usr/X11R6/man/html4/nv.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/r128.html -unknown- html,x11 +./usr/X11R6/man/html4/radeon.html -unknown- html,x11 +./usr/X11R6/man/html4/rendition.html -unknown- html,x11 +./usr/X11R6/man/html4/s3virge.html -unknown- html,x11 +./usr/X11R6/man/html4/savage.html -unknown- html,x11 +./usr/X11R6/man/html4/siliconmotion.html -unknown- html,x11 +./usr/X11R6/man/html4/sis.html -unknown- html,x11 +./usr/X11R6/man/html4/tdfx.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/trident.html -unknown- html,x11 +./usr/X11R6/man/html4/tseng.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/vesa.html -unknown- html,x11 +./usr/X11R6/man/html4/vga.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/apm.4 -unknown- .man,x11 +./usr/X11R6/man/man4/ati.4 -unknown- .man,x11 +./usr/X11R6/man/man4/chips.4 -unknown- .man,x11 +./usr/X11R6/man/man4/cirrus.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/cyrix.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdev.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/glint.4 -unknown- .man,x11 +./usr/X11R6/man/man4/i128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/imstt.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/nsc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/nv.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/r128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/radeon.4 -unknown- .man,x11 +./usr/X11R6/man/man4/rendition.4 -unknown- .man,x11 +./usr/X11R6/man/man4/s3virge.4 -unknown- .man,x11 +./usr/X11R6/man/man4/savage.4 -unknown- .man,x11 +./usr/X11R6/man/man4/siliconmotion.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sis.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tdfx.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/trident.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tseng.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vesa.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/pcitweak -unknown- obsolete +./usr/X11R7/bin/scanpci -unknown- obsolete +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/i810_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/i810_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/i915_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/i915_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/i965_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/i965_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/s3v_dri.so -unknown- obsolete +./usr/X11R7/lib/modules/dri/s3v_dri.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/dri/savage_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/savage_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/sis_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/sis_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/trident_dri.so -unknown- obsolete +./usr/X11R7/lib/modules/dri/trident_dri.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/dri/unichrome_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/unichrome_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/apm_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/apm_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ark_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ark_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ast_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ast_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ch7017_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ch7017_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ch7xxx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ch7xxx_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine_drv.so -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_alpine_drv.so.1 -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna_drv.so -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_laguna_drv.so.1 -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cyrix_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/cyrix_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/glint_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/i128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/i128_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/i740_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/i740_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/imstt_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/imstt_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/intel_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/intel_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ivch_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ivch_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/neomagic_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/neomagic_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/nsc_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/nsc_drv.so.2 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/nv_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/openchrome_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/openchrome_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeonhd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeonhd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/savage_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/savage_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sil164_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sil164_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sis_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sis_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tfp410_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tfp410_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/trident_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/trident_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tseng_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tseng_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vesa_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vesa_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vga_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/vga_drv.so.4 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/via_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/via_drv.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/vmmouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmmouse_drv.so.12 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmware_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmware_drv.so.11 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmwlegacy_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmwlegacy_drv.so.11 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/xgi_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/xgi_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.so -unknown- xorg +./usr/X11R7/lib/modules/libint10.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libint10_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/libint10_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- xorg,debuglib +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/pcitweak.0 -unknown- obsolete +./usr/X11R7/man/cat1/scanpci.0 -unknown- obsolete +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/apm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ati.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/chips.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cirrus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cyrix.0 -unknown- obsolete +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/glint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/i128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/i740.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/imstt.0 -unknown- obsolete +./usr/X11R7/man/cat4/intel.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/neomagic.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/nsc.0 -unknown- obsolete +./usr/X11R7/man/cat4/nv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/openchrome.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/r128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeon.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeonhd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3virge.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/savage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/siliconmotion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/sis.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tdfx.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/trident.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tseng.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vesa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vga.0 -unknown- obsolete +./usr/X11R7/man/cat4/via.0 -unknown- obsolete +./usr/X11R7/man/cat4/vmmouse.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vmware.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/xgi.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/pcitweak.html -unknown- obsolete +./usr/X11R7/man/html1/scanpci.html -unknown- obsolete +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/apm.html -unknown- html,xorg +./usr/X11R7/man/html4/ati.html -unknown- html,xorg +./usr/X11R7/man/html4/chips.html -unknown- html,xorg +./usr/X11R7/man/html4/cirrus.html -unknown- html,xorg +./usr/X11R7/man/html4/cyrix.html -unknown- obsolete +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/glint.html -unknown- html,xorg +./usr/X11R7/man/html4/i128.html -unknown- html,xorg +./usr/X11R7/man/html4/i740.html -unknown- html,xorg +./usr/X11R7/man/html4/imstt.html -unknown- obsolete +./usr/X11R7/man/html4/intel.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/neomagic.html -unknown- html,xorg +./usr/X11R7/man/html4/nsc.html -unknown- obsolete +./usr/X11R7/man/html4/nv.html -unknown- html,xorg +./usr/X11R7/man/html4/openchrome.html -unknown- html,xorg +./usr/X11R7/man/html4/r128.html -unknown- html,xorg +./usr/X11R7/man/html4/radeon.html -unknown- html,xorg +./usr/X11R7/man/html4/radeonhd.html -unknown- html,xorg +./usr/X11R7/man/html4/s3.html -unknown- html,xorg +./usr/X11R7/man/html4/s3virge.html -unknown- html,xorg +./usr/X11R7/man/html4/savage.html -unknown- html,xorg +./usr/X11R7/man/html4/siliconmotion.html -unknown- html,xorg +./usr/X11R7/man/html4/sis.html -unknown- html,xorg +./usr/X11R7/man/html4/tdfx.html -unknown- html,xorg +./usr/X11R7/man/html4/trident.html -unknown- html,xorg +./usr/X11R7/man/html4/tseng.html -unknown- html,xorg +./usr/X11R7/man/html4/vesa.html -unknown- html,xorg +./usr/X11R7/man/html4/vga.html -unknown- obsolete +./usr/X11R7/man/html4/via.html -unknown- obsolete +./usr/X11R7/man/html4/vmmouse.html -unknown- html,xorg +./usr/X11R7/man/html4/vmware.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html4/xgi.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/pcitweak.1 -unknown- obsolete +./usr/X11R7/man/man1/scanpci.1 -unknown- obsolete +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/apm.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ati.4 -unknown- .man,xorg +./usr/X11R7/man/man4/chips.4 -unknown- .man,xorg +./usr/X11R7/man/man4/cirrus.4 -unknown- .man,xorg +./usr/X11R7/man/man4/cyrix.4 -unknown- obsolete +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/glint.4 -unknown- .man,xorg +./usr/X11R7/man/man4/i128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/i740.4 -unknown- .man,xorg +./usr/X11R7/man/man4/imstt.4 -unknown- obsolete +./usr/X11R7/man/man4/intel.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/neomagic.4 -unknown- .man,xorg +./usr/X11R7/man/man4/nsc.4 -unknown- obsolete +./usr/X11R7/man/man4/nv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/openchrome.4 -unknown- .man,xorg +./usr/X11R7/man/man4/r128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeon.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeonhd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3virge.4 -unknown- .man,xorg +./usr/X11R7/man/man4/savage.4 -unknown- .man,xorg +./usr/X11R7/man/man4/siliconmotion.4 -unknown- .man,xorg +./usr/X11R7/man/man4/sis.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tdfx.4 -unknown- .man,xorg +./usr/X11R7/man/man4/trident.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tseng.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vesa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vga.4 -unknown- obsolete +./usr/X11R7/man/man4/via.4 -unknown- obsolete +./usr/X11R7/man/man4/vmmouse.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vmware.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man4/xgi.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.amiga b/distrib/sets/lists/xserver/md.amiga new file mode 100644 index 000000000..ba6c6ab91 --- /dev/null +++ b/distrib/sets/lists/xserver/md.amiga @@ -0,0 +1,10 @@ +# $NetBSD: md.amiga,v 1.21 2009/02/09 16:28:54 abs Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xamiga -unknown- x11 +./usr/X11R6/lib/modules/libafb.a -obsolete- obsolete +./usr/X11R6/man/cat1/Xamiga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/Xamiga24.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xamiga.html -unknown- html,x11 +./usr/X11R6/man/html1/Xamiga24.html -unknown- html,x11 +./usr/X11R6/man/man1/Xamiga.1 -unknown- .man,x11 +./usr/X11R6/man/man1/Xamiga24.1 -unknown- .man,x11 diff --git a/distrib/sets/lists/xserver/md.bebox b/distrib/sets/lists/xserver/md.bebox new file mode 100644 index 000000000..e7f69968d --- /dev/null +++ b/distrib/sets/lists/xserver/md.bebox @@ -0,0 +1,148 @@ +# $NetBSD: md.bebox,v 1.5 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vga_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/vga_drv.so.4 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.so -unknown- xorg +./usr/X11R7/lib/modules/libint10.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libint10_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libint10_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cirrus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3virge.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vga.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/cirrus.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/s3.html -unknown- html,xorg +./usr/X11R7/man/html4/s3virge.html -unknown- html,xorg +./usr/X11R7/man/html4/vga.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/cirrus.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3virge.4 -unknown- html,xorg +./usr/X11R7/man/man4/vga.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.cats b/distrib/sets/lists/xserver/md.cats new file mode 100644 index 000000000..f7ccfe402 --- /dev/null +++ b/distrib/sets/lists/xserver/md.cats @@ -0,0 +1,678 @@ +# $NetBSD: md.cats,v 1.42 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/codeconv/libARABIC.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.a -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/apm_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/ark_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/ati_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/atimisc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/chips_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_alpine.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_laguna.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cyrix_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/dummy_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/fbdev_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/glint_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/i128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/imstt_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/mga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/nsc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/nv_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/r128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/radeon_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/rendition_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/riva128.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3virge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/savage_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/siliconmotion_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sis_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tdfx_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/trident_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tseng_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vesa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/wsfb.o -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/v10002d.uc -unknown- x11 +./usr/X11R6/lib/modules/v20002d.uc -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/apm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/ati.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/chips.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/cirrus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/cyrix.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdev.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/glint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/i128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/imstt.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/nsc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/nv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/r128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/radeon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/rendition.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/s3virge.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/savage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/siliconmotion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sis.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tdfx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/trident.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tseng.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vesa.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/apm.html -unknown- html,x11 +./usr/X11R6/man/html4/ati.html -unknown- html,x11 +./usr/X11R6/man/html4/chips.html -unknown- html,x11 +./usr/X11R6/man/html4/cirrus.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/cyrix.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdev.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/glint.html -unknown- html,x11 +./usr/X11R6/man/html4/i128.html -unknown- html,x11 +./usr/X11R6/man/html4/imstt.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/mga.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/nsc.html -unknown- html,x11 +./usr/X11R6/man/html4/nv.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/r128.html -unknown- html,x11 +./usr/X11R6/man/html4/radeon.html -unknown- html,x11 +./usr/X11R6/man/html4/rendition.html -unknown- html,x11 +./usr/X11R6/man/html4/s3virge.html -unknown- html,x11 +./usr/X11R6/man/html4/savage.html -unknown- html,x11 +./usr/X11R6/man/html4/siliconmotion.html -unknown- html,x11 +./usr/X11R6/man/html4/sis.html -unknown- html,x11 +./usr/X11R6/man/html4/tdfx.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/trident.html -unknown- html,x11 +./usr/X11R6/man/html4/tseng.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/vesa.html -unknown- html,x11 +./usr/X11R6/man/html4/vga.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/apm.4 -unknown- .man,x11 +./usr/X11R6/man/man4/ati.4 -unknown- .man,x11 +./usr/X11R6/man/man4/chips.4 -unknown- .man,x11 +./usr/X11R6/man/man4/cirrus.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/cyrix.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdev.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/glint.4 -unknown- .man,x11 +./usr/X11R6/man/man4/i128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/imstt.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/nsc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/nv.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/r128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/radeon.4 -unknown- .man,x11 +./usr/X11R6/man/man4/rendition.4 -unknown- .man,x11 +./usr/X11R6/man/man4/s3virge.4 -unknown- .man,x11 +./usr/X11R6/man/man4/savage.4 -unknown- .man,x11 +./usr/X11R6/man/man4/siliconmotion.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sis.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tdfx.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/trident.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tseng.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vesa.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/pcitweak -unknown- obsolete +./usr/X11R7/bin/scanpci -unknown- obsolete +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/apm_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/apm_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ark_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ark_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ast_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ast_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine_drv.so -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_alpine_drv.so.1 -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna_drv.so -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_laguna_drv.so.1 -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cyrix_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/cyrix_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/glint_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/i128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/i128_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/i740_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/i740_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/imstt_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/imstt_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/neomagic_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/neomagic_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/nsc_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/nsc_drv.so.2 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/nv_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeonhd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeonhd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/savage_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/savage_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/trident_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/trident_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tseng_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tseng_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vesa_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vesa_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vga_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/vga_drv.so.4 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/via_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/via_drv.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libint10_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/pcitweak.0 -unknown- obsolete +./usr/X11R7/man/cat1/scanpci.0 -unknown- obsolete +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/apm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ati.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/chips.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cirrus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cyrix.0 -unknown- obsolete +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/glint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/i128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/i740.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/imstt.0 -unknown- obsolete +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/neomagic.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/nsc.0 -unknown- obsolete +./usr/X11R7/man/cat4/nv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeon.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeonhd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3virge.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/savage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/siliconmotion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tdfx.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/trident.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tseng.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vesa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vga.0 -unknown- obsolete +./usr/X11R7/man/cat4/via.0 -unknown- obsolete +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/pcitweak.html -unknown- obsolete +./usr/X11R7/man/html1/scanpci.html -unknown- obsolete +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/apm.html -unknown- html,xorg +./usr/X11R7/man/html4/ati.html -unknown- html,xorg +./usr/X11R7/man/html4/chips.html -unknown- html,xorg +./usr/X11R7/man/html4/cirrus.html -unknown- html,xorg +./usr/X11R7/man/html4/cyrix.html -unknown- obsolete +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/glint.html -unknown- html,xorg +./usr/X11R7/man/html4/i128.html -unknown- html,xorg +./usr/X11R7/man/html4/i740.html -unknown- html,xorg +./usr/X11R7/man/html4/imstt.html -unknown- obsolete +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/neomagic.html -unknown- html,xorg +./usr/X11R7/man/html4/nsc.html -unknown- obsolete +./usr/X11R7/man/html4/nv.html -unknown- html,xorg +./usr/X11R7/man/html4/radeon.html -unknown- html,xorg +./usr/X11R7/man/html4/radeonhd.html -unknown- html,xorg +./usr/X11R7/man/html4/s3.html -unknown- html,xorg +./usr/X11R7/man/html4/s3virge.html -unknown- html,xorg +./usr/X11R7/man/html4/savage.html -unknown- html,xorg +./usr/X11R7/man/html4/siliconmotion.html -unknown- html,xorg +./usr/X11R7/man/html4/tdfx.html -unknown- html,xorg +./usr/X11R7/man/html4/trident.html -unknown- html,xorg +./usr/X11R7/man/html4/tseng.html -unknown- html,xorg +./usr/X11R7/man/html4/vesa.html -unknown- html,xorg +./usr/X11R7/man/html4/vga.html -unknown- obsolete +./usr/X11R7/man/html4/via.html -unknown- obsolete +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/pcitweak.1 -unknown- obsolete +./usr/X11R7/man/man1/scanpci.1 -unknown- obsolete +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/apm.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ati.4 -unknown- .man,xorg +./usr/X11R7/man/man4/chips.4 -unknown- .man,xorg +./usr/X11R7/man/man4/cirrus.4 -unknown- .man,xorg +./usr/X11R7/man/man4/cyrix.4 -unknown- obsolete +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/glint.4 -unknown- .man,xorg +./usr/X11R7/man/man4/i128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/i740.4 -unknown- .man,xorg +./usr/X11R7/man/man4/imstt.4 -unknown- obsolete +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/neomagic.4 -unknown- .man,xorg +./usr/X11R7/man/man4/nsc.4 -unknown- obsolete +./usr/X11R7/man/man4/nv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeon.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeonhd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3virge.4 -unknown- .man,xorg +./usr/X11R7/man/man4/savage.4 -unknown- .man,xorg +./usr/X11R7/man/man4/siliconmotion.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tdfx.4 -unknown- .man,xorg +./usr/X11R7/man/man4/trident.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tseng.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vesa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vga.4 -unknown- obsolete +./usr/X11R7/man/man4/via.4 -unknown- obsolete +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.dreamcast b/distrib/sets/lists/xserver/md.dreamcast new file mode 100644 index 000000000..93f05f061 --- /dev/null +++ b/distrib/sets/lists/xserver/md.dreamcast @@ -0,0 +1,124 @@ +# $NetBSD: md.dreamcast,v 1.14 2011/08/03 01:43:26 mrg Exp $ +./etc/X11/xorg.conf.jpkbd -unknown- xorg +./etc/X11/xorg.conf.uskbd -unknown- xorg +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xdreamcast -unknown- x11 +./usr/X11R6/man/cat1/Xdreamcast.0 -unknown- x11,.cat +./usr/X11R6/man/html1/Xdreamcast.html -unknown- x11,html +./usr/X11R6/man/man1/Xdreamcast.1 -unknown- x11,.man +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.evbarm b/distrib/sets/lists/xserver/md.evbarm new file mode 100644 index 000000000..66c26684b --- /dev/null +++ b/distrib/sets/lists/xserver/md.evbarm @@ -0,0 +1,124 @@ +# $NetBSD: md.evbarm,v 1.2 2012/09/16 20:23:20 nonaka Exp $ +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.evbmips b/distrib/sets/lists/xserver/md.evbmips new file mode 100644 index 000000000..9ee5072c9 --- /dev/null +++ b/distrib/sets/lists/xserver/md.evbmips @@ -0,0 +1,124 @@ +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sis_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sis_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/xorg/protocol.txt -unknown- xorg +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/siliconmotion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/sis.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/siliconmotion.html -unknown- html,xorg +./usr/X11R7/man/html4/sis.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/siliconmotion.4 -unknown- .man,xorg +./usr/X11R7/man/man4/sis.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.ews4800mips b/distrib/sets/lists/xserver/md.ews4800mips new file mode 100644 index 000000000..8f94d157f --- /dev/null +++ b/distrib/sets/lists/xserver/md.ews4800mips @@ -0,0 +1,121 @@ +# $NetBSD: md.ews4800mips,v 1.9 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xews4800mips -unknown- x11 +./usr/X11R6/man/cat1/Xews4800mips.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xews4800mips.html -unknown- html,x11 +./usr/X11R6/man/man1/Xews4800mips.1 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.hp300 b/distrib/sets/lists/xserver/md.hp300 new file mode 100644 index 000000000..f1910ed62 --- /dev/null +++ b/distrib/sets/lists/xserver/md.hp300 @@ -0,0 +1,115 @@ +# $NetBSD: md.hp300,v 1.11 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.hpcarm b/distrib/sets/lists/xserver/md.hpcarm new file mode 100644 index 000000000..884b640c3 --- /dev/null +++ b/distrib/sets/lists/xserver/md.hpcarm @@ -0,0 +1,132 @@ +# $NetBSD: md.hpcarm,v 1.13 2011/08/03 01:43:26 mrg Exp $ +./etc/X11/xorg.conf.640x240-jp -unknown xorg +./etc/X11/xorg.conf.640x240-us -unknown xorg +./etc/X11/xorg.conf.640x480-jp -unknown xorg +./etc/X11/xorg.conf.640x480-us -unknown xorg +./etc/X11/xorg.conf.800x600-jp -unknown xorg +./etc/X11/xorg.conf.800x600-us -unknown xorg +./etc/X11/xorg.conf.ws003sh -unknown xorg +./etc/X11/xorg.conf.ws007sh -unknown xorg +./etc/X11/xorg.conf.ws011sh -unknown xorg +./etc/X11/xorg.conf.ws020sh -unknown xorg +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xhpc -unknown- x11 +./usr/X11R6/man/cat1/Xhpc.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xhpc.html -unknown- html,x11 +./usr/X11R6/man/man1/Xhpc.1 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.hpcmips b/distrib/sets/lists/xserver/md.hpcmips new file mode 100644 index 000000000..89f43a649 --- /dev/null +++ b/distrib/sets/lists/xserver/md.hpcmips @@ -0,0 +1,128 @@ +# $NetBSD: md.hpcmips,v 1.19 2011/08/03 01:43:26 mrg Exp $ +./etc/X11/xorg.conf.640x240-jp -unknown xorg +./etc/X11/xorg.conf.640x240-us -unknown xorg +./etc/X11/xorg.conf.640x480-jp -unknown xorg +./etc/X11/xorg.conf.640x480-us -unknown xorg +./etc/X11/xorg.conf.800x600-jp -unknown xorg +./etc/X11/xorg.conf.800x600-us -unknown xorg +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xhpc -unknown- x11 +./usr/X11R6/man/cat1/Xhpc.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xhpc.html -unknown- html,x11 +./usr/X11R6/man/man1/Xhpc.1 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.hpcsh b/distrib/sets/lists/xserver/md.hpcsh new file mode 100644 index 000000000..0e9ce4a85 --- /dev/null +++ b/distrib/sets/lists/xserver/md.hpcsh @@ -0,0 +1,128 @@ +# $NetBSD: md.hpcsh,v 1.12 2011/08/03 01:43:26 mrg Exp $ +./etc/X11/xorg.conf.640x240-jp -unknown xorg +./etc/X11/xorg.conf.640x240-us -unknown xorg +./etc/X11/xorg.conf.640x480-jp -unknown xorg +./etc/X11/xorg.conf.640x480-us -unknown xorg +./etc/X11/xorg.conf.800x600-jp -unknown xorg +./etc/X11/xorg.conf.800x600-us -unknown xorg +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xhpc -unknown- x11 +./usr/X11R6/man/cat1/Xhpc.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xhpc.html -unknown- html,x11 +./usr/X11R6/man/man1/Xhpc.1 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.i386 b/distrib/sets/lists/xserver/md.i386 new file mode 100644 index 000000000..f91300792 --- /dev/null +++ b/distrib/sets/lists/xserver/md.i386 @@ -0,0 +1,846 @@ +# $NetBSD: md.i386,v 1.84 2012/07/24 17:40:06 njoly Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/inb -unknown- x11 +./usr/X11R6/bin/inl -unknown- x11 +./usr/X11R6/bin/inw -unknown- x11 +./usr/X11R6/bin/ioport -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/outb -unknown- x11 +./usr/X11R6/bin/outl -unknown- x11 +./usr/X11R6/bin/outw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DGA -obsolete- obsolete +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/ServersOnly -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Status -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/codeconv/libARABIC.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.a -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/apm_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/ark_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/ati_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/atimisc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/chips_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_alpine.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cirrus_laguna.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/cyrix_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/dummy_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/fbdev_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/glint_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/i128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/i740_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/i810_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/imstt_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/mga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/neomagic_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/nsc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/nv_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/r128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/radeon_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/rendition_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/riva128.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3virge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/savage_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/siliconmotion_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sis_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tdfx_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/trident_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tseng_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vesa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/via_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vmware_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vmwlegacy_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/wsfb.o -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libafb.a -unknown- x11 +./usr/X11R6/lib/modules/libafb_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libddc_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libfb_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/libint10_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/librac_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp_g.a -unknown- debuglib,x11 +./usr/X11R6/lib/modules/v10002d.uc -unknown- x11 +./usr/X11R6/lib/modules/v20002d.uc -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/apm.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/ati.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/chips.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/cirrus.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/cyrix.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdev.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/glint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/i128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/i740.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/i810.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/imstt.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/neomagic.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/nsc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/nv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/r128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/radeon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/rendition.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/s3virge.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/savage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/siliconmotion.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sis.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tdfx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/trident.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tseng.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vesa.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/via.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vmware.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/apm.html -unknown- html,x11 +./usr/X11R6/man/html4/ati.html -unknown- html,x11 +./usr/X11R6/man/html4/chips.html -unknown- html,x11 +./usr/X11R6/man/html4/cirrus.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/cyrix.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdev.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/glint.html -unknown- html,x11 +./usr/X11R6/man/html4/i128.html -unknown- html,x11 +./usr/X11R6/man/html4/i740.html -unknown- html,x11 +./usr/X11R6/man/html4/i810.html -unknown- html,x11 +./usr/X11R6/man/html4/imstt.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/mga.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/neomagic.html -unknown- html,x11 +./usr/X11R6/man/html4/nsc.html -unknown- html,x11 +./usr/X11R6/man/html4/nv.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/r128.html -unknown- html,x11 +./usr/X11R6/man/html4/radeon.html -unknown- html,x11 +./usr/X11R6/man/html4/rendition.html -unknown- html,x11 +./usr/X11R6/man/html4/s3virge.html -unknown- html,x11 +./usr/X11R6/man/html4/savage.html -unknown- html,x11 +./usr/X11R6/man/html4/siliconmotion.html -unknown- html,x11 +./usr/X11R6/man/html4/sis.html -unknown- html,x11 +./usr/X11R6/man/html4/tdfx.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/trident.html -unknown- html,x11 +./usr/X11R6/man/html4/tseng.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/vesa.html -unknown- html,x11 +./usr/X11R6/man/html4/vga.html -unknown- html,x11 +./usr/X11R6/man/html4/via.html -unknown- html,x11 +./usr/X11R6/man/html4/vmware.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/apm.4 -unknown- .man,x11 +./usr/X11R6/man/man4/ati.4 -unknown- .man,x11 +./usr/X11R6/man/man4/chips.4 -unknown- .man,x11 +./usr/X11R6/man/man4/cirrus.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/cyrix.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdev.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/glint.4 -unknown- .man,x11 +./usr/X11R6/man/man4/i128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/i740.4 -unknown- .man,x11 +./usr/X11R6/man/man4/i810.4 -unknown- .man,x11 +./usr/X11R6/man/man4/imstt.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/neomagic.4 -unknown- .man,x11 +./usr/X11R6/man/man4/nsc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/nv.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/r128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/radeon.4 -unknown- .man,x11 +./usr/X11R6/man/man4/rendition.4 -unknown- .man,x11 +./usr/X11R6/man/man4/s3virge.4 -unknown- .man,x11 +./usr/X11R6/man/man4/savage.4 -unknown- .man,x11 +./usr/X11R6/man/man4/siliconmotion.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sis.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tdfx.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/trident.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tseng.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vesa.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/via.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vmware.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/inb -unknown- obsolete +./usr/X11R7/bin/inl -unknown- obsolete +./usr/X11R7/bin/inw -unknown- obsolete +./usr/X11R7/bin/ioport -unknown- obsolete +./usr/X11R7/bin/outb -unknown- obsolete +./usr/X11R7/bin/outl -unknown- obsolete +./usr/X11R7/bin/outw -unknown- obsolete +./usr/X11R7/bin/pcitweak -unknown- obsolete +./usr/X11R7/bin/scanpci -unknown- obsolete +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/i810_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/i810_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/i915_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/i915_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/i965_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/i965_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/s3v_dri.so -unknown- obsolete +./usr/X11R7/lib/modules/dri/s3v_dri.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/dri/savage_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/savage_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/sis_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/sis_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/trident_dri.so -unknown- obsolete +./usr/X11R7/lib/modules/dri/trident_dri.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/dri/unichrome_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/unichrome_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/apm_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/apm_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ark_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ark_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ast_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ast_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ch7017_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ch7017_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ch7xxx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ch7xxx_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine_drv.so -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_alpine_drv.so.1 -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_laguna_drv.so -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cirrus_laguna_drv.so.1 -obsolete- obsolete +./usr/X11R7/lib/modules/drivers/cyrix_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/cyrix_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/elographics_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/elographics_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/geode_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/geode_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/i128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/i128_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/i740_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/i740_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/imstt_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/imstt_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/intel_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/intel_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ivch_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ivch_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/neomagic_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/neomagic_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/nsc_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/nsc_drv.so.2 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/nv_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/openchrome_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/openchrome_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeonhd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeonhd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3virge_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/savage_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/savage_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sil164_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sil164_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/siliconmotion_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sis_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sis_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tfp410_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tfp410_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/trident_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/trident_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tseng_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tseng_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vesa_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vesa_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vga_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/vga_drv.so.4 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/via_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/via_drv.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/vmmouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmmouse_drv.so.12 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmware_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmware_drv.so.11 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmwlegacy_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/vmwlegacy_drv.so.11 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/xgi_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/xgi_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.so -unknown- xorg +./usr/X11R7/lib/modules/libint10.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libint10_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libint10_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/pcitweak.0 -unknown- obsolete +./usr/X11R7/man/cat1/scanpci.0 -unknown- obsolete +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/apm.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ati.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/chips.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cirrus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cyrix.0 -unknown- obsolete +./usr/X11R7/man/cat4/elographics.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/glint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/i128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/i740.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/imstt.0 -unknown- obsolete +./usr/X11R7/man/cat4/intel.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/neomagic.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/nsc.0 -unknown- obsolete +./usr/X11R7/man/cat4/nv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/openchrome.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/r128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeon.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeonhd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3virge.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/savage.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/siliconmotion.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/sis.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tdfx.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/trident.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tseng.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vesa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vga.0 -unknown- obsolete +./usr/X11R7/man/cat4/via.0 -unknown- obsolete +./usr/X11R7/man/cat4/vmmouse.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vmware.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/xgi.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/pcitweak.html -unknown- obsolete +./usr/X11R7/man/html1/scanpci.html -unknown- obsolete +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/apm.html -unknown- html,xorg +./usr/X11R7/man/html4/ati.html -unknown- html,xorg +./usr/X11R7/man/html4/chips.html -unknown- html,xorg +./usr/X11R7/man/html4/cirrus.html -unknown- html,xorg +./usr/X11R7/man/html4/cyrix.html -unknown- obsolete +./usr/X11R7/man/html4/elographics.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/glint.html -unknown- html,xorg +./usr/X11R7/man/html4/i128.html -unknown- html,xorg +./usr/X11R7/man/html4/i740.html -unknown- html,xorg +./usr/X11R7/man/html4/imstt.html -unknown- obsolete +./usr/X11R7/man/html4/intel.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/neomagic.html -unknown- html,xorg +./usr/X11R7/man/html4/nsc.html -unknown- obsolete +./usr/X11R7/man/html4/nv.html -unknown- html,xorg +./usr/X11R7/man/html4/openchrome.html -unknown- html,xorg +./usr/X11R7/man/html4/r128.html -unknown- html,xorg +./usr/X11R7/man/html4/radeon.html -unknown- html,xorg +./usr/X11R7/man/html4/radeonhd.html -unknown- html,xorg +./usr/X11R7/man/html4/s3.html -unknown- html,xorg +./usr/X11R7/man/html4/s3virge.html -unknown- html,xorg +./usr/X11R7/man/html4/savage.html -unknown- html,xorg +./usr/X11R7/man/html4/siliconmotion.html -unknown- html,xorg +./usr/X11R7/man/html4/sis.html -unknown- html,xorg +./usr/X11R7/man/html4/tdfx.html -unknown- html,xorg +./usr/X11R7/man/html4/trident.html -unknown- html,xorg +./usr/X11R7/man/html4/tseng.html -unknown- html,xorg +./usr/X11R7/man/html4/vesa.html -unknown- html,xorg +./usr/X11R7/man/html4/vga.html -unknown- obsolete +./usr/X11R7/man/html4/via.html -unknown- obsolete +./usr/X11R7/man/html4/vmmouse.html -unknown- html,xorg +./usr/X11R7/man/html4/vmware.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html4/xgi.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/pcitweak.1 -unknown- obsolete +./usr/X11R7/man/man1/scanpci.1 -unknown- obsolete +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/apm.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ati.4 -unknown- .man,xorg +./usr/X11R7/man/man4/chips.4 -unknown- .man,xorg +./usr/X11R7/man/man4/cirrus.4 -unknown- .man,xorg +./usr/X11R7/man/man4/cyrix.4 -unknown- obsolete +./usr/X11R7/man/man4/elographics.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/glint.4 -unknown- .man,xorg +./usr/X11R7/man/man4/i128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/i740.4 -unknown- .man,xorg +./usr/X11R7/man/man4/imstt.4 -unknown- obsolete +./usr/X11R7/man/man4/intel.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/neomagic.4 -unknown- .man,xorg +./usr/X11R7/man/man4/nsc.4 -unknown- obsolete +./usr/X11R7/man/man4/nv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/openchrome.4 -unknown- .man,xorg +./usr/X11R7/man/man4/r128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeon.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeonhd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3virge.4 -unknown- .man,xorg +./usr/X11R7/man/man4/savage.4 -unknown- .man,xorg +./usr/X11R7/man/man4/siliconmotion.4 -unknown- .man,xorg +./usr/X11R7/man/man4/sis.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tdfx.4 -unknown- .man,xorg +./usr/X11R7/man/man4/trident.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tseng.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vesa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vga.4 -unknown- obsolete +./usr/X11R7/man/man4/via.4 -unknown- obsolete +./usr/X11R7/man/man4/vmmouse.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vmware.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man4/xgi.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.luna68k b/distrib/sets/lists/xserver/md.luna68k new file mode 100644 index 000000000..44b3e9f5b --- /dev/null +++ b/distrib/sets/lists/xserver/md.luna68k @@ -0,0 +1,115 @@ +# $NetBSD: md.luna68k,v 1.8 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.mac68k b/distrib/sets/lists/xserver/md.mac68k new file mode 100644 index 000000000..a7cfc1a44 --- /dev/null +++ b/distrib/sets/lists/xserver/md.mac68k @@ -0,0 +1,6 @@ +# $NetBSD: md.mac68k,v 1.14 2009/02/09 16:28:54 abs Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xmac68k -unknown- x11 +./usr/X11R6/man/cat1/Xmac68k.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xmac68k.html -unknown- html,x11 +./usr/X11R6/man/man1/Xmac68k.1 -unknown- .man,x11 diff --git a/distrib/sets/lists/xserver/md.macppc b/distrib/sets/lists/xserver/md.macppc new file mode 100644 index 000000000..46b945a94 --- /dev/null +++ b/distrib/sets/lists/xserver/md.macppc @@ -0,0 +1,562 @@ +# $NetBSD: md.macppc,v 1.61 2012/10/13 21:21:52 jmmv Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/Xmacppc -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DGA -obsolete- obsolete +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/ServersOnly -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Status -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/codeconv/libARABIC.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.a -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/ati_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/atimisc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/chips_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/fbdev_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/glint_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/imstt_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/mga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/nv_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/r128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/radeon_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/riva128.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3virge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/savage_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sis_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tdfx_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/trident_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/wsfb.o -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/ati.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/chips.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdev.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/glint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/imstt.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/nv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/r128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/radeon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/s3virge.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/savage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sis.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tdfx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/trident.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/ati.html -unknown- html,x11 +./usr/X11R6/man/html4/chips.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdev.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/glint.html -unknown- html,x11 +./usr/X11R6/man/html4/imstt.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/mga.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/nv.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/r128.html -unknown- html,x11 +./usr/X11R6/man/html4/radeon.html -unknown- html,x11 +./usr/X11R6/man/html4/s3virge.html -unknown- html,x11 +./usr/X11R6/man/html4/savage.html -unknown- html,x11 +./usr/X11R6/man/html4/sis.html -unknown- html,x11 +./usr/X11R6/man/html4/tdfx.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/trident.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/vga.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/ati.4 -unknown- .man,x11 +./usr/X11R6/man/man4/chips.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdev.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/glint.4 -unknown- .man,x11 +./usr/X11R6/man/man4/imstt.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/nv.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/r128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/radeon.4 -unknown- .man,x11 +./usr/X11R6/man/man4/s3virge.4 -unknown- .man,x11 +./usr/X11R6/man/man4/savage.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sis.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tdfx.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/trident.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/pcitweak -unknown- obsolete +./usr/X11R7/bin/scanpci -unknown- obsolete +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/mach64_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/imstt_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/imstt_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.so -unknown- xorg +./usr/X11R7/lib/modules/libint10.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libint10_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libint10_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/pcitweak.0 -unknown- obsolete +./usr/X11R7/man/cat1/scanpci.0 -unknown- obsolete +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/ati.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/chips.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/imstt.0 -unknown- obsolete +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/nv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/r128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeon.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tdfx.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/pcitweak.html -unknown- obsolete +./usr/X11R7/man/html1/scanpci.html -unknown- obsolete +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/ati.html -unknown- html,xorg +./usr/X11R7/man/html4/chips.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/imstt.html -unknown- obsolete +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/nv.html -unknown- html,xorg +./usr/X11R7/man/html4/r128.html -unknown- html,xorg +./usr/X11R7/man/html4/radeon.html -unknown- html,xorg +./usr/X11R7/man/html4/tdfx.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/pcitweak.1 -unknown- obsolete +./usr/X11R7/man/man1/scanpci.1 -unknown- obsolete +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/ati.4 -unknown- .man,xorg +./usr/X11R7/man/man4/chips.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/imstt.4 -unknown- obsolete +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/nv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/r128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeon.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tdfx.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.netwinder b/distrib/sets/lists/xserver/md.netwinder new file mode 100644 index 000000000..868a3b7c1 --- /dev/null +++ b/distrib/sets/lists/xserver/md.netwinder @@ -0,0 +1,452 @@ +# $NetBSD: md.netwinder,v 1.27 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DGA -obsolete- obsolete +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/ServersOnly -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Status -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/codeconv/libARABIC.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.a -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/dummy_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/fbdev_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vesa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/wsfb.o -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdev.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vesa.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdev.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/vesa.html -unknown- html,x11 +./usr/X11R6/man/html4/vga.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdev.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vesa.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/pcitweak -unknown- obsolete +./usr/X11R7/bin/scanpci -unknown- obsolete +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libint10_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/pcitweak.0 -unknown- obsolete +./usr/X11R7/man/cat1/scanpci.0 -unknown- obsolete +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/pcitweak.html -unknown- obsolete +./usr/X11R7/man/html1/scanpci.html -unknown- obsolete +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/pcitweak.1 -unknown- obsolete +./usr/X11R7/man/man1/scanpci.1 -unknown- obsolete +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.newsmips b/distrib/sets/lists/xserver/md.newsmips new file mode 100644 index 000000000..1bdba6c3d --- /dev/null +++ b/distrib/sets/lists/xserver/md.newsmips @@ -0,0 +1,122 @@ +# $NetBSD: md.newsmips,v 1.8 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xnewsmips -unknown- x11 +./usr/X11R6/man/cat1/Xnewsmips.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xnewsmips.html -unknown- html,x11 +./usr/X11R6/man/man1/Xnewsmips.1 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.ofppc b/distrib/sets/lists/xserver/md.ofppc new file mode 100644 index 000000000..364e534c7 --- /dev/null +++ b/distrib/sets/lists/xserver/md.ofppc @@ -0,0 +1,483 @@ +# $NetBSD: md.ofppc,v 1.14 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DGA -obsolete- obsolete +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/ServersOnly -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Status -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/codeconv/libARABIC.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.a -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/ati_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/atimisc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/chips_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/fbdev_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/glint_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/imstt_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/mga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/nv_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/r128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/radeon_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/riva128.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/s3virge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/savage_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sis_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/tdfx_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/trident_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vga_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/wsfb.o -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/ati.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/chips.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdev.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/glint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/imstt.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/nv.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/r128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/radeon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/s3virge.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/savage.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sis.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tdfx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/trident.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vga.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/ati.html -unknown- html,x11 +./usr/X11R6/man/html4/chips.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdev.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/html4/glint.html -unknown- html,x11 +./usr/X11R6/man/html4/imstt.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/mga.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/nv.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/r128.html -unknown- html,x11 +./usr/X11R6/man/html4/radeon.html -unknown- html,x11 +./usr/X11R6/man/html4/s3virge.html -unknown- html,x11 +./usr/X11R6/man/html4/savage.html -unknown- html,x11 +./usr/X11R6/man/html4/sis.html -unknown- html,x11 +./usr/X11R6/man/html4/tdfx.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/trident.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/vga.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/ati.4 -unknown- .man,x11 +./usr/X11R6/man/man4/chips.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdev.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/X11R6/man/man4/glint.4 -unknown- .man,x11 +./usr/X11R6/man/man4/imstt.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/nv.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/r128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/radeon.4 -unknown- .man,x11 +./usr/X11R6/man/man4/s3virge.4 -unknown- .man,x11 +./usr/X11R6/man/man4/savage.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sis.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tdfx.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/trident.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vga.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/mach64_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/tdfx_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/nv_drv.so.2 -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/tdfx_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.so -unknown- xorg +./usr/X11R7/lib/modules/libint10.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libint10_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libint10_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ati.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/chips.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/nv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/r128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeon.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/tdfx.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/ati.html -unknown- html,xorg +./usr/X11R7/man/html4/chips.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/nv.html -unknown- html,xorg +./usr/X11R7/man/html4/r128.html -unknown- html,xorg +./usr/X11R7/man/html4/radeon.html -unknown- html,xorg +./usr/X11R7/man/html4/tdfx.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/ati.4 -unknown- .man,xorg +./usr/X11R7/man/man4/chips.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/nv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/r128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeon.4 -unknown- .man,xorg +./usr/X11R7/man/man4/tdfx.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.pmax b/distrib/sets/lists/xserver/md.pmax new file mode 100644 index 000000000..6dbc7e9d3 --- /dev/null +++ b/distrib/sets/lists/xserver/md.pmax @@ -0,0 +1,3 @@ +# $NetBSD: md.pmax,v 1.11 2008/09/02 02:17:48 lukem Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XdecNetBSD -unknown- x11 diff --git a/distrib/sets/lists/xserver/md.prep b/distrib/sets/lists/xserver/md.prep new file mode 100644 index 000000000..0d3f223f4 --- /dev/null +++ b/distrib/sets/lists/xserver/md.prep @@ -0,0 +1,143 @@ +# $NetBSD: md.prep,v 1.9 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_alpine.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/cirrus_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/s3_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/vga_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/vga_drv.so.4 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.so -unknown- xorg +./usr/X11R7/lib/modules/libint10.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libint10_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libint10_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/cirrus.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/s3.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/vga.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/cirrus.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/s3.html -unknown- html,xorg +./usr/X11R7/man/html4/vga.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/cirrus.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/s3.4 -unknown- .man,xorg +./usr/X11R7/man/man4/vga.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.sgimips b/distrib/sets/lists/xserver/md.sgimips new file mode 100644 index 000000000..6a86ca9db --- /dev/null +++ b/distrib/sets/lists/xserver/md.sgimips @@ -0,0 +1,597 @@ +# $NetBSD: md.sgimips,v 1.42 2011/08/03 01:43:26 mrg Exp $ x11 +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/Xprt -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.indy -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DGA -obsolete- obsolete +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/ServersOnly -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Status -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/codeconv/libARABIC.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARABIC.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARABIC.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARABIC_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.so -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.so.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.so.0.0 -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII_pic.a -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/libnewport_drv.so -unknown- x11 +./usr/X11R6/lib/modules/drivers/libnewport_drv.so.0 -unknown- x11 +./usr/X11R6/lib/modules/drivers/libnewport_drv.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/drivers/libnewport_drv_pic.a -unknown- x11 +./usr/X11R6/lib/modules/drivers/libwsfb_drv.so -unknown- x11 +./usr/X11R6/lib/modules/drivers/libwsfb_drv.so.0 -unknown- x11 +./usr/X11R6/lib/modules/drivers/libwsfb_drv.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/drivers/libwsfb_drv_pic.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.so -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.so.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore_pic.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.so -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.so.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe_pic.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.so -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.so.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod_pic.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.so -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.so.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx_pic.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.so -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.so.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord_pic.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.so -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.so.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap_pic.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.so -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.so.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap_pic.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.so -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.so.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype_pic.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.so -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.so.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo_pic.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.so -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.so.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1_pic.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.so -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.so.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt_pic.a -unknown- x11 +./usr/X11R6/lib/modules/input/libkbd_drv.so -unknown- x11 +./usr/X11R6/lib/modules/input/libkbd_drv.so.0 -unknown- x11 +./usr/X11R6/lib/modules/input/libkbd_drv.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/input/libkbd_drv_pic.a -unknown- x11 +./usr/X11R6/lib/modules/input/libmouse_drv.so -unknown- x11 +./usr/X11R6/lib/modules/input/libmouse_drv.so.0 -unknown- x11 +./usr/X11R6/lib/modules/input/libmouse_drv.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/input/libmouse_drv_pic.a -unknown- x11 +./usr/X11R6/lib/modules/input/libvoid_drv.so -unknown- x11 +./usr/X11R6/lib/modules/input/libvoid_drv.so.0 -unknown- x11 +./usr/X11R6/lib/modules/input/libvoid_drv.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/input/libvoid_drv_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb.so -unknown- x11 +./usr/X11R6/lib/modules/libcfb.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libcfb.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.so -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libcfb16_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.so -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libcfb24_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.so -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libcfb32_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.so -unknown- x11 +./usr/X11R6/lib/modules/libddc.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libddc.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libddc_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.so -unknown- x11 +./usr/X11R6/lib/modules/libfb.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libfb.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libfb_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.so -unknown- x11 +./usr/X11R6/lib/modules/libi2c.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libi2c.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libi2c_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.so -unknown- x11 +./usr/X11R6/lib/modules/libint10.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libint10.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libint10_pic.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.so -unknown- x11 +./usr/X11R6/lib/modules/liblayer.so.0 -unknown- x11 +./usr/X11R6/lib/modules/liblayer.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/liblayer_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.so -unknown- x11 +./usr/X11R6/lib/modules/libmfb.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libmfb.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libmfb_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.so -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libpcidata_pic.a -unknown- x11 +./usr/X11R6/lib/modules/librac.so -unknown- x11 +./usr/X11R6/lib/modules/librac.so.0 -unknown- x11 +./usr/X11R6/lib/modules/librac.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/librac_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.so -unknown- x11 +./usr/X11R6/lib/modules/libramdac.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libramdac.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libramdac_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.so -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libscanpci_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.so -unknown- x11 +./usr/X11R6/lib/modules/libshadow.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libshadow.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libshadow_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.so -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.so -unknown- x11 +./usr/X11R6/lib/modules/libvbe.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libvbe.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libvbe_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.so -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libvgahw_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.so -unknown- x11 +./usr/X11R6/lib/modules/libxaa.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libxaa.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libxaa_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.so -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.so -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.so -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.so -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp_pic.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.so -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.so.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.so.0.0 -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp_pic.a -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/newport.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/newport.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/newport.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/crime_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/crime_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/newport_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/newport_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libint10_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/crime.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/newport.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/crime.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/newport.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/crime.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/newport.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.shark b/distrib/sets/lists/xserver/md.shark new file mode 100644 index 000000000..cfdeb0042 --- /dev/null +++ b/distrib/sets/lists/xserver/md.shark @@ -0,0 +1,446 @@ +# $NetBSD: md.shark,v 1.39 2011/10/08 18:00:40 christos Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DGA -obsolete- obsolete +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/ServersOnly -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Status -obsolete- obsolete +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/codeconv/libARABIC.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libARMSCII8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libBIG5HKSCS.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libDOSENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGB2312.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGBK.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libGEORGIAN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_1.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_10.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_11.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_14.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_15.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_2.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_3.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_4.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_5.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_6.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_7.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libISO8859_9.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0201.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0208.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libJISX0212.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKOI8.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSC5601.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libKSCJOHAB.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libMULEENCODING.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libTCVN.a -obsolete- obsolete +./usr/X11R6/lib/modules/codeconv/libVISCII.a -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/chips_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/wsfb.o -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/chips.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/chips.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/chips.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/chips_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/chips_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/igs_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/igs_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libint10.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so -unknown- obsolete +./usr/X11R7/lib/modules/libint10.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libint10_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libint10_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/chips.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/igs.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/chips.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/igs.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/chips.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/igs.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.sparc b/distrib/sets/lists/xserver/md.sparc new file mode 100644 index 000000000..2e45cc19d --- /dev/null +++ b/distrib/sets/lists/xserver/md.sparc @@ -0,0 +1,546 @@ +# $NetBSD: md.sparc,v 1.51 2011/08/03 01:43:26 mrg Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/Xsun -unknown- x11 +./usr/X11R6/bin/Xsun24 -unknown- x11 +./usr/X11R6/bin/XsunMono -unknown- x11 +./usr/X11R6/bin/constype -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/drivers/ag10e_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/ati_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/atimisc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/pnozz_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/r128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/radeon_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sunbw2_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/suncg14_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/suncg3_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/suncg6_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sunffb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sunleo_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/suntcx_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32wid.a -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/Xsun.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/Xsun24.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/XsunMono.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/constype.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/ag10e.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/ati.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/pnozz.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/r128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/radeon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sunbw2.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/suncg14.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/suncg3.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/suncg6.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sunffb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sunleo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/suntcx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/Xsun.html -unknown- html,x11 +./usr/X11R6/man/html1/Xsun24.html -unknown- html,x11 +./usr/X11R6/man/html1/XsunMono.html -unknown- html,x11 +./usr/X11R6/man/html1/constype.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/ag10e.html -unknown- html,x11 +./usr/X11R6/man/html4/ati.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/pnozz.html -unknown- html,x11 +./usr/X11R6/man/html4/r128.html -unknown- html,x11 +./usr/X11R6/man/html4/radeon.html -unknown- html,x11 +./usr/X11R6/man/html4/sunbw2.html -unknown- html,x11 +./usr/X11R6/man/html4/suncg14.html -unknown- html,x11 +./usr/X11R6/man/html4/suncg3.html -unknown- html,x11 +./usr/X11R6/man/html4/suncg6.html -unknown- html,x11 +./usr/X11R6/man/html4/sunffb.html -unknown- html,x11 +./usr/X11R6/man/html4/sunleo.html -unknown- html,x11 +./usr/X11R6/man/html4/suntcx.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/Xsun.1 -unknown- .man,x11 +./usr/X11R6/man/man1/Xsun24.1 -unknown- .man,x11 +./usr/X11R6/man/man1/XsunMono.1 -unknown- .man,x11 +./usr/X11R6/man/man1/constype.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/ag10e.4 -unknown- .man,x11 +./usr/X11R6/man/man4/ati.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/pnozz.4 -unknown- .man,x11 +./usr/X11R6/man/man4/r128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/radeon.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sunbw2.4 -unknown- .man,x11 +./usr/X11R6/man/man4/suncg14.4 -unknown- .man,x11 +./usr/X11R6/man/man4/suncg3.4 -unknown- .man,x11 +./usr/X11R6/man/man4/suncg6.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sunffb.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sunleo.4 -unknown- .man,x11 +./usr/X11R6/man/man4/suntcx.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/pcitweak -unknown- obsolete +./usr/X11R7/bin/scanpci -unknown- obsolete +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/mach64_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ag10e_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ag10e_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/pnozz_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/pnozz_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/suncg14_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/suncg14_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/suncg6_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/suncg6_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sunffb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sunffb_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sunleo_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sunleo_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/suntcx_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/suntcx_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/pcitweak.0 -unknown- obsolete +./usr/X11R7/man/cat1/scanpci.0 -unknown- obsolete +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/ag10e.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ati.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/glint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/pnozz.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/r128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeon.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/suncg14.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/suncg6.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/sunffb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/sunleo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/suntcx.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/pcitweak.html -unknown- obsolete +./usr/X11R7/man/html1/scanpci.html -unknown- obsolete +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/ag10e.html -unknown- html,xorg +./usr/X11R7/man/html4/ati.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/glint.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/pnozz.html -unknown- html,xorg +./usr/X11R7/man/html4/r128.html -unknown- html,xorg +./usr/X11R7/man/html4/radeon.html -unknown- html,xorg +./usr/X11R7/man/html4/suncg14.html -unknown- html,xorg +./usr/X11R7/man/html4/suncg6.html -unknown- html,xorg +./usr/X11R7/man/html4/sunffb.html -unknown- html,xorg +./usr/X11R7/man/html4/sunleo.html -unknown- html,xorg +./usr/X11R7/man/html4/suntcx.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/pcitweak.1 -unknown- obsolete +./usr/X11R7/man/man1/scanpci.1 -unknown- obsolete +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/ag10e.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ati.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/glint.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/pnozz.4 -unknown- .man,xorg +./usr/X11R7/man/man4/r128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeon.4 -unknown- .man,xorg +./usr/X11R7/man/man4/suncg14.4 -unknown- .man,xorg +./usr/X11R7/man/man4/suncg6.4 -unknown- .man,xorg +./usr/X11R7/man/man4/sunffb.4 -unknown- .man,xorg +./usr/X11R7/man/man4/sunleo.4 -unknown- .man,xorg +./usr/X11R7/man/man4/suntcx.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.sparc64 b/distrib/sets/lists/xserver/md.sparc64 new file mode 100644 index 000000000..239647911 --- /dev/null +++ b/distrib/sets/lists/xserver/md.sparc64 @@ -0,0 +1,532 @@ +# $NetBSD: md.sparc64,v 1.49 2011/08/03 01:19:47 mrg Exp $ x11 +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/XFree86 -unknown- x11 +./usr/X11R6/bin/Xsun -unknown- x11 +./usr/X11R6/bin/Xsun24 -unknown- x11 +./usr/X11R6/bin/XsunMono -unknown- x11 +./usr/X11R6/bin/constype -unknown- x11 +./usr/X11R6/bin/gtf -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/bin/mmapr -unknown- x11 +./usr/X11R6/bin/mmapw -unknown- x11 +./usr/X11R6/bin/pcitweak -unknown- x11 +./usr/X11R6/bin/scanpci -unknown- x11 +./usr/X11R6/bin/xf86cfg -unknown- x11 +./usr/X11R6/bin/xf86config -unknown- x11 +./usr/X11R6/include/X11/bitmaps/card.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/down.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/keyboard.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/left.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/monitor.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/mouse.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/narrower.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/right.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/shorter.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/taller.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/up.xbm -unknown- x11 +./usr/X11R6/include/X11/bitmaps/wider.xbm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/card.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/computer.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/keyboard.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/monitor.xpm -unknown- x11 +./usr/X11R6/include/X11/pixmaps/mouse.xpm -unknown- x11 +./usr/X11R6/include/xf86Optrec.h -unknown- x11 +./usr/X11R6/include/xf86Parser.h -unknown- x11 +./usr/X11R6/lib/X11/Cards -unknown- x11 +./usr/X11R6/lib/X11/Options -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.98 -unknown- x11 +./usr/X11R6/lib/X11/XF86Config.eg -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/XF86Cfg -unknown- x11 +./usr/X11R6/lib/X11/doc/BUILD -unknown- x11 +./usr/X11R6/lib/X11/doc/BugReport -unknown- x11 +./usr/X11R6/lib/X11/doc/DESIGN -unknown- x11 +./usr/X11R6/lib/X11/doc/Install -unknown- x11 +./usr/X11R6/lib/X11/doc/LICENSE -unknown- x11 +./usr/X11R6/lib/X11/doc/README -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DECtga -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRI -unknown- x11 +./usr/X11R6/lib/X11/doc/README.DRIcomp -unknown- x11 +./usr/X11R6/lib/X11/doc/README.I128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.SiS -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Config -unknown- x11 +./usr/X11R6/lib/X11/doc/README.XKB-Enhancing -unknown- x11 +./usr/X11R6/lib/X11/doc/README.apm -unknown- x11 +./usr/X11R6/lib/X11/doc/README.ati -unknown- x11 +./usr/X11R6/lib/X11/doc/README.chips -unknown- x11 +./usr/X11R6/lib/X11/doc/README.cyrix -unknown- x11 +./usr/X11R6/lib/X11/doc/README.dps -unknown- x11 +./usr/X11R6/lib/X11/doc/README.fonts -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i740 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.i810 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.mouse -unknown- x11 +./usr/X11R6/lib/X11/doc/README.newport -unknown- x11 +./usr/X11R6/lib/X11/doc/README.r128 -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rapidaccess -unknown- x11 +./usr/X11R6/lib/X11/doc/README.rendition -unknown- x11 +./usr/X11R6/lib/X11/doc/README.s3virge -unknown- x11 +./usr/X11R6/lib/X11/doc/RELNOTES -unknown- x11 +./usr/X11R6/lib/X11/doc/Versions -unknown- x11 +./usr/X11R6/lib/X11/doc/VideoBoard98 -unknown- x11 +./usr/X11R6/lib/X11/etc/xmodmap.std -unknown- x11 +./usr/X11R6/lib/libxf86config.a -unknown- x11 +./usr/X11R6/lib/modules/drivers/ati_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/atimisc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/glint_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/r128_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/radeon_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sunbw2_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/suncg14_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/suncg3_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/suncg6_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sunffb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/sunleo_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/suntcx_drv.o -unknown- x11 +./usr/X11R6/lib/modules/drivers/vga_drv.o -obsolete- obsolete +./usr/X11R6/lib/modules/drivers/wsfb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/extensions/libGLcore.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libdbe.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libextmod.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libglx.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/librecord.a -unknown- x11 +./usr/X11R6/lib/modules/extensions/libxtrap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libbitmap.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libfreetype.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libspeedo.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libtype1.a -unknown- x11 +./usr/X11R6/lib/modules/fonts/libxtt.a -unknown- x11 +./usr/X11R6/lib/modules/input/acecad_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/calcomp_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/citron_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/digitaledge_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dmc_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/dynapro_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/elographics_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/fpit_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/hyperpen_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/js_x_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/kbd_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/magellan_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/microtouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mouse_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/mutouch_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/palmax_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/penmount_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/spaceorb_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/summa_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/tek4957_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/usbtablet_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/void_drv.o -unknown- x11 +./usr/X11R6/lib/modules/input/wacom_drv.o -unknown- x11 +./usr/X11R6/lib/modules/libcfb.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb16.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb24.a -unknown- x11 +./usr/X11R6/lib/modules/libcfb32.a -unknown- x11 +./usr/X11R6/lib/modules/libddc.a -unknown- x11 +./usr/X11R6/lib/modules/libfb.a -unknown- x11 +./usr/X11R6/lib/modules/libi2c.a -unknown- x11 +./usr/X11R6/lib/modules/libint10.a -unknown- x11 +./usr/X11R6/lib/modules/liblayer.a -unknown- x11 +./usr/X11R6/lib/modules/libmfb.a -unknown- x11 +./usr/X11R6/lib/modules/libpcidata.a -unknown- x11 +./usr/X11R6/lib/modules/librac.a -unknown- x11 +./usr/X11R6/lib/modules/libramdac.a -unknown- x11 +./usr/X11R6/lib/modules/libscanpci.a -unknown- x11 +./usr/X11R6/lib/modules/libshadow.a -unknown- x11 +./usr/X11R6/lib/modules/libshadowfb.a -unknown- x11 +./usr/X11R6/lib/modules/libvbe.a -unknown- x11 +./usr/X11R6/lib/modules/libvgahw.a -unknown- x11 +./usr/X11R6/lib/modules/libxaa.a -unknown- x11 +./usr/X11R6/lib/modules/libxf1bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf24_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf4bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_16bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32bpp.a -unknown- x11 +./usr/X11R6/lib/modules/libxf8_32wid.a -unknown- x11 +./usr/X11R6/man/cat1/XFree86.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/Xsun.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/Xsun24.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/XsunMono.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/constype.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/gtf.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/pcitweak.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/scanpci.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86cfg.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xf86config.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/acecad.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/ati.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/citron.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dmc.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/dynapro.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/elographics.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fbdevhw.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/fpit.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/glint.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/js_x.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/kbd.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/keyboard.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/microtouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mouse.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/mutouch.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/palmax.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/penmount.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/r128.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/radeon.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sunbw2.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/suncg14.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/suncg3.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/suncg6.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sunffb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/sunleo.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/suntcx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/tek4957.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/usbtablet.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/vga.0 -obsolete- obsolete +./usr/X11R6/man/cat4/void.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wacom.0 -unknown- .cat,x11 +./usr/X11R6/man/cat4/wsfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat5/XF86Config.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/XFree86.html -unknown- html,x11 +./usr/X11R6/man/html1/Xsun.html -unknown- html,x11 +./usr/X11R6/man/html1/Xsun24.html -unknown- html,x11 +./usr/X11R6/man/html1/XsunMono.html -unknown- html,x11 +./usr/X11R6/man/html1/constype.html -unknown- html,x11 +./usr/X11R6/man/html1/gtf.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/html1/pcitweak.html -unknown- html,x11 +./usr/X11R6/man/html1/scanpci.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86cfg.html -unknown- html,x11 +./usr/X11R6/man/html1/xf86config.html -unknown- html,x11 +./usr/X11R6/man/html4/acecad.html -unknown- html,x11 +./usr/X11R6/man/html4/ati.html -unknown- html,x11 +./usr/X11R6/man/html4/citron.html -unknown- html,x11 +./usr/X11R6/man/html4/dmc.html -unknown- html,x11 +./usr/X11R6/man/html4/dynapro.html -unknown- html,x11 +./usr/X11R6/man/html4/elographics.html -unknown- html,x11 +./usr/X11R6/man/html4/fbdevhw.html -unknown- html,x11 +./usr/X11R6/man/html4/fpit.html -unknown- html,x11 +./usr/X11R6/man/html4/glint.html -unknown- html,x11 +./usr/X11R6/man/html4/js_x.html -unknown- html,x11 +./usr/X11R6/man/html4/kbd.html -unknown- html,x11 +./usr/X11R6/man/html4/keyboard.html -unknown- html,x11 +./usr/X11R6/man/html4/microtouch.html -unknown- html,x11 +./usr/X11R6/man/html4/mouse.html -unknown- html,x11 +./usr/X11R6/man/html4/mutouch.html -unknown- html,x11 +./usr/X11R6/man/html4/palmax.html -unknown- html,x11 +./usr/X11R6/man/html4/penmount.html -unknown- html,x11 +./usr/X11R6/man/html4/r128.html -unknown- html,x11 +./usr/X11R6/man/html4/radeon.html -unknown- html,x11 +./usr/X11R6/man/html4/sunbw2.html -unknown- html,x11 +./usr/X11R6/man/html4/suncg14.html -unknown- html,x11 +./usr/X11R6/man/html4/suncg3.html -unknown- html,x11 +./usr/X11R6/man/html4/suncg6.html -unknown- html,x11 +./usr/X11R6/man/html4/sunffb.html -unknown- html,x11 +./usr/X11R6/man/html4/sunleo.html -unknown- html,x11 +./usr/X11R6/man/html4/suntcx.html -unknown- html,x11 +./usr/X11R6/man/html4/tek4957.html -unknown- html,x11 +./usr/X11R6/man/html4/usbtablet.html -unknown- html,x11 +./usr/X11R6/man/html4/void.html -unknown- html,x11 +./usr/X11R6/man/html4/wacom.html -unknown- html,x11 +./usr/X11R6/man/html4/wsfb.html -unknown- html,x11 +./usr/X11R6/man/html5/XF86Config.html -unknown- html,x11 +./usr/X11R6/man/man1/XFree86.1 -unknown- .man,x11 +./usr/X11R6/man/man1/Xsun.1 -unknown- .man,x11 +./usr/X11R6/man/man1/Xsun24.1 -unknown- .man,x11 +./usr/X11R6/man/man1/XsunMono.1 -unknown- .man,x11 +./usr/X11R6/man/man1/constype.1 -unknown- .man,x11 +./usr/X11R6/man/man1/gtf.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 +./usr/X11R6/man/man1/pcitweak.1 -unknown- .man,x11 +./usr/X11R6/man/man1/scanpci.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86cfg.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xf86config.1 -unknown- .man,x11 +./usr/X11R6/man/man4/acecad.4 -unknown- .man,x11 +./usr/X11R6/man/man4/ati.4 -unknown- .man,x11 +./usr/X11R6/man/man4/citron.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dmc.4 -unknown- .man,x11 +./usr/X11R6/man/man4/dynapro.4 -unknown- .man,x11 +./usr/X11R6/man/man4/elographics.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fbdevhw.4 -unknown- .man,x11 +./usr/X11R6/man/man4/fpit.4 -unknown- .man,x11 +./usr/X11R6/man/man4/glint.4 -unknown- .man,x11 +./usr/X11R6/man/man4/js_x.4 -unknown- .man,x11 +./usr/X11R6/man/man4/kbd.4 -unknown- .man,x11 +./usr/X11R6/man/man4/keyboard.4 -unknown- .man,x11 +./usr/X11R6/man/man4/microtouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mouse.4 -unknown- .man,x11 +./usr/X11R6/man/man4/mutouch.4 -unknown- .man,x11 +./usr/X11R6/man/man4/palmax.4 -unknown- .man,x11 +./usr/X11R6/man/man4/penmount.4 -unknown- .man,x11 +./usr/X11R6/man/man4/r128.4 -unknown- .man,x11 +./usr/X11R6/man/man4/radeon.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sunbw2.4 -unknown- .man,x11 +./usr/X11R6/man/man4/suncg14.4 -unknown- .man,x11 +./usr/X11R6/man/man4/suncg3.4 -unknown- .man,x11 +./usr/X11R6/man/man4/suncg6.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sunffb.4 -unknown- .man,x11 +./usr/X11R6/man/man4/sunleo.4 -unknown- .man,x11 +./usr/X11R6/man/man4/suntcx.4 -unknown- .man,x11 +./usr/X11R6/man/man4/tek4957.4 -unknown- .man,x11 +./usr/X11R6/man/man4/usbtablet.4 -unknown- .man,x11 +./usr/X11R6/man/man4/vga.4 -obsolete- obsolete +./usr/X11R6/man/man4/void.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wacom.4 -unknown- .man,x11 +./usr/X11R6/man/man4/wsfb.4 -unknown- .man,x11 +./usr/X11R6/man/man5/XF86Config.5 -unknown- .man,x11 +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/bin/pcitweak -unknown- obsolete +./usr/X11R7/bin/scanpci -unknown- obsolete +./usr/X11R7/bin/xorgconfig -unknown- obsolete +./usr/X11R7/lib/X11/Cards -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.fonts -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/dri/mach64_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mach64_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mga_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r128_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r200_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r300_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/r600_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/radeon_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ag10e_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ag10e_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ati_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/glint_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mach64_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mga_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/r128_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/radeon_drv.so.6 -unknown- xorg +./usr/X11R7/lib/modules/drivers/suncg6_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/suncg6_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sunffb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sunffb_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/sunleo_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/sunleo_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libGLcore.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libGLcore_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb32_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libcfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libmfb.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libmfb_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libxtrap.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_g.a -unknown- obsolete +./usr/X11R7/lib/modules/extensions/libxtrap_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libfreetype_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_g.a -unknown- obsolete +./usr/X11R7/lib/modules/fonts/libtype1_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libpcidata.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libpcidata_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libscanpci_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf1bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf1bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf4bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_32bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/pcitweak.0 -unknown- obsolete +./usr/X11R7/man/cat1/scanpci.0 -unknown- obsolete +./usr/X11R7/man/cat1/xorgconfig.0 -unknown- obsolete +./usr/X11R7/man/cat4/ag10e.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ati.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/glint.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mga.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/r128.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/radeon.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/suncg6.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/sunffb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/sunleo.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html1/pcitweak.html -unknown- obsolete +./usr/X11R7/man/html1/scanpci.html -unknown- obsolete +./usr/X11R7/man/html1/xorgconfig.html -unknown- obsolete +./usr/X11R7/man/html4/ag10e.html -unknown- html,xorg +./usr/X11R7/man/html4/ati.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/glint.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mga.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/r128.html -unknown- html,xorg +./usr/X11R7/man/html4/radeon.html -unknown- html,xorg +./usr/X11R7/man/html4/suncg6.html -unknown- html,xorg +./usr/X11R7/man/html4/sunffb.html -unknown- html,xorg +./usr/X11R7/man/html4/sunleo.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man1/pcitweak.1 -unknown- obsolete +./usr/X11R7/man/man1/scanpci.1 -unknown- obsolete +./usr/X11R7/man/man1/xorgconfig.1 -unknown- obsolete +./usr/X11R7/man/man4/ag10e.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ati.4 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/glint.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mga.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/r128.4 -unknown- .man,xorg +./usr/X11R7/man/man4/radeon.4 -unknown- .man,xorg +./usr/X11R7/man/man4/suncg6.4 -unknown- .man,xorg +./usr/X11R7/man/man4/sunffb.4 -unknown- .man,xorg +./usr/X11R7/man/man4/sunleo.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.sun3 b/distrib/sets/lists/xserver/md.sun3 new file mode 100644 index 000000000..ab5802c8f --- /dev/null +++ b/distrib/sets/lists/xserver/md.sun3 @@ -0,0 +1,18 @@ +# $NetBSD: md.sun3,v 1.14 2009/02/09 16:28:54 abs Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/Xsun -unknown- x11 +./usr/X11R6/bin/XsunMono -unknown- x11 +./usr/X11R6/bin/constype -unknown- x11 +./usr/X11R6/bin/kbd_mode -unknown- x11 +./usr/X11R6/man/cat1/Xsun.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/XsunMono.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/constype.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/kbd_mode.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xsun.html -unknown- html,x11 +./usr/X11R6/man/html1/XsunMono.html -unknown- html,x11 +./usr/X11R6/man/html1/constype.html -unknown- html,x11 +./usr/X11R6/man/html1/kbd_mode.html -unknown- html,x11 +./usr/X11R6/man/man1/Xsun.1 -unknown- .man,x11 +./usr/X11R6/man/man1/XsunMono.1 -unknown- .man,x11 +./usr/X11R6/man/man1/constype.1 -unknown- .man,x11 +./usr/X11R6/man/man1/kbd_mode.1 -unknown- .man,x11 diff --git a/distrib/sets/lists/xserver/md.vax b/distrib/sets/lists/xserver/md.vax new file mode 100644 index 000000000..063645223 --- /dev/null +++ b/distrib/sets/lists/xserver/md.vax @@ -0,0 +1,110 @@ +# $NetBSD: md.vax,v 1.8 2012/05/14 08:42:04 abs Exp $ +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/md.x68k b/distrib/sets/lists/xserver/md.x68k new file mode 100644 index 000000000..9078185b2 --- /dev/null +++ b/distrib/sets/lists/xserver/md.x68k @@ -0,0 +1,6 @@ +# $NetBSD: md.x68k,v 1.17 2009/02/09 16:28:54 abs Exp $ +./usr/X11R6/bin/X -unknown- x11 +./usr/X11R6/bin/X68k -unknown- x11 +./usr/X11R6/man/cat1/X68k.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/X68k.html -unknown- html,x11 +./usr/X11R6/man/man1/X68k.1 -unknown- .man,x11 diff --git a/distrib/sets/lists/xserver/md.zaurus b/distrib/sets/lists/xserver/md.zaurus new file mode 100644 index 000000000..c3294feff --- /dev/null +++ b/distrib/sets/lists/xserver/md.zaurus @@ -0,0 +1,125 @@ +# $NetBSD: md.zaurus,v 1.9 2012/02/10 11:25:42 tsutsui Exp $ +./etc/X11/xorg.conf.sample -unknown- obsolete +./etc/X11/xorg.conf.C3x00 -unknown- xorg +./etc/X11/xorg.conf.C7x0 -unknown- xorg +./usr/X11R7/bin/X -unknown- xorg +./usr/X11R7/bin/Xorg -unknown- xorg +./usr/X11R7/bin/cvt -unknown- xorg +./usr/X11R7/bin/gtf -unknown- xorg +./usr/X11R7/lib/X11/doc/README.DRI -unknown- obsolete +./usr/X11R7/lib/X11/doc/README.modes -unknown- xorg +./usr/X11R7/lib/X11/doc/README.rapidaccess -unknown- obsolete +./usr/X11R7/lib/modules/drivers/kbd_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/kbd_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/mouse_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/void_drv.so -unknown- obsolete +./usr/X11R7/lib/modules/drivers/void_drv.so.1 -unknown- obsolete +./usr/X11R7/lib/modules/drivers/ws_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/ws_drv.so.1 -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so -unknown- xorg +./usr/X11R7/lib/modules/drivers/wsfb_drv.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libdri2_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libdri2_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libextmod_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libextmod_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libglx_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/librecord_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/librecord_pic.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.a -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow.so.0 -unknown- xorg +./usr/X11R7/lib/modules/extensions/libshadow_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/extensions/libshadow_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.a -unknown- xorg +./usr/X11R7/lib/modules/libexa.so -unknown- xorg +./usr/X11R7/lib/modules/libexa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libexa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.a -unknown- xorg +./usr/X11R7/lib/modules/libfb.so -unknown- xorg +./usr/X11R7/lib/modules/libfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.a -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so -unknown- xorg +./usr/X11R7/lib/modules/libi2c.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libi2c_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libi2c_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.a -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libshadowfb_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libshadowfb_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.a -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so -unknown- xorg +./usr/X11R7/lib/modules/libvbe.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvbe_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvbe_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.a -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so -unknown- xorg +./usr/X11R7/lib/modules/libvgahw.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libvgahw_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libvgahw_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.a -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so -unknown- xorg +./usr/X11R7/lib/modules/libxaa.so.0 -unknown- xorg +./usr/X11R7/lib/modules/libxaa_g.a -unknown- debuglib,xorg +./usr/X11R7/lib/modules/libxaa_pic.a -unknown- xorg +./usr/X11R7/lib/modules/libxf8_16bpp.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp.so.0 -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_g.a -unknown- obsolete +./usr/X11R7/lib/modules/libxf8_16bpp_pic.a -unknown- obsolete +./usr/X11R7/man/cat1/Xorg.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/cvt.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/gtf.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/exa.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/kbd.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/mousedrv.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/void.0 -unknown- obsolete +./usr/X11R7/man/cat4/ws.0 -unknown- .cat,xorg +./usr/X11R7/man/cat4/wsfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/xorg.conf.0 -unknown- .cat,xorg +./usr/X11R7/man/html1/Xorg.html -unknown- html,xorg +./usr/X11R7/man/html1/cvt.html -unknown- html,xorg +./usr/X11R7/man/html1/gtf.html -unknown- html,xorg +./usr/X11R7/man/html4/exa.html -unknown- html,xorg +./usr/X11R7/man/html4/kbd.html -unknown- html,xorg +./usr/X11R7/man/html4/mousedrv.html -unknown- html,xorg +./usr/X11R7/man/html4/void.html -unknown- obsolete +./usr/X11R7/man/html4/ws.html -unknown- html,xorg +./usr/X11R7/man/html4/wsfb.html -unknown- html,xorg +./usr/X11R7/man/html5/xorg.conf.html -unknown- html,xorg +./usr/X11R7/man/man1/Xorg.1 -unknown- .man,xorg +./usr/X11R7/man/man1/cvt.1 -unknown- .man,xorg +./usr/X11R7/man/man1/gtf.1 -unknown- .man,xorg +./usr/X11R7/man/man4/exa.4 -unknown- .man,xorg +./usr/X11R7/man/man4/kbd.4 -unknown- .man,xorg +./usr/X11R7/man/man4/mousedrv.4 -unknown- .man,xorg +./usr/X11R7/man/man4/void.4 -unknown- obsolete +./usr/X11R7/man/man4/ws.4 -unknown- .man,xorg +./usr/X11R7/man/man4/wsfb.4 -unknown- .man,xorg +./usr/X11R7/man/man5/xorg.conf.5 -unknown- .man,xorg +./usr/X11R7/share/aclocal/xorg-server.m4 -unknown- xorg diff --git a/distrib/sets/lists/xserver/mi b/distrib/sets/lists/xserver/mi new file mode 100644 index 000000000..f9f73256d --- /dev/null +++ b/distrib/sets/lists/xserver/mi @@ -0,0 +1,75 @@ +# $NetBSD: mi,v 1.32 2011/03/09 18:55:56 mrg Exp $ +# +# Note: don't delete entries from here - mark them as "obsolete" instead. +# +./etc/mtree/set.xserver xserver-sys-root x11 +./etc/mtree/set.xserver xserver-sys-root xorg +./usr/X11R6/bin/Xdmx -unknown- x11 +./usr/X11R6/bin/Xnest -unknown- x11 +./usr/X11R6/bin/Xprt -unknown- x11 +./usr/X11R6/bin/Xvfb -unknown- x11 +./usr/X11R6/bin/dmx -unknown- x11 +./usr/X11R6/bin/dmxaddinput -unknown- x11 +./usr/X11R6/bin/dmxaddscreen -unknown- x11 +./usr/X11R6/bin/dmxreconfig -unknown- x11 +./usr/X11R6/bin/dmxresize -unknown- x11 +./usr/X11R6/bin/dmxrminput -unknown- x11 +./usr/X11R6/bin/dmxrmscreen -unknown- x11 +./usr/X11R6/bin/dmxtodmx -unknown- x11 +./usr/X11R6/bin/dmxwininfo -unknown- x11 +./usr/X11R6/bin/evi -unknown- x11 +./usr/X11R6/bin/res -unknown- x11 +./usr/X11R6/bin/vdltodmx -unknown- x11 +./usr/X11R6/bin/xbell -unknown- x11 +./usr/X11R6/bin/xdmx -obsolete- obsolete +./usr/X11R6/bin/xdmxconfig -unknown- x11 +./usr/X11R6/bin/xinput -unknown- x11 +./usr/X11R6/bin/xled -unknown- x11 +./usr/X11R6/bin/xtest -unknown- x11 +./usr/X11R6/bin/xvidtune -unknown- x11 +./usr/X11R6/lib/X11/app-defaults/Xvidtune -unknown- x11 +./usr/X11R6/man/cat1/Xdmx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/Xnest.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/Xserver.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/Xvfb.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/dmxtodmx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/vdltodmx.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xdmxconfig.0 -unknown- .cat,x11 +./usr/X11R6/man/cat1/xvidtune.0 -unknown- .cat,x11 +./usr/X11R6/man/html1/Xdmx.html -unknown- html,x11 +./usr/X11R6/man/html1/Xnest.html -unknown- html,x11 +./usr/X11R6/man/html1/Xserver.html -unknown- html,x11 +./usr/X11R6/man/html1/Xvfb.html -unknown- html,x11 +./usr/X11R6/man/html1/dmxtodmx.html -unknown- html,x11 +./usr/X11R6/man/html1/vdltodmx.html -unknown- html,x11 +./usr/X11R6/man/html1/xdmxconfig.html -unknown- html,x11 +./usr/X11R6/man/html1/xvidtune.html -unknown- html,x11 +./usr/X11R6/man/man1/Xdmx.1 -unknown- .man,x11 +./usr/X11R6/man/man1/Xnest.1 -unknown- .man,x11 +./usr/X11R6/man/man1/Xserver.1 -unknown- .man,x11 +./usr/X11R6/man/man1/Xvfb.1 -unknown- .man,x11 +./usr/X11R6/man/man1/dmxtodmx.1 -unknown- .man,x11 +./usr/X11R6/man/man1/vdltodmx.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xdmxconfig.1 -unknown- .man,x11 +./usr/X11R6/man/man1/xvidtune.1 -unknown- .man,x11 +./usr/X11R7/bin/Xnest -unknown- xorg +./usr/X11R7/bin/Xvfb -unknown- xorg +./usr/X11R7/lib/modules/dri/mesa_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/mesa_dri.so.0 -unknown- xorg +./usr/X11R7/lib/modules/dri/swrast_dri.so -unknown- xorg +./usr/X11R7/lib/modules/dri/swrast_dri.so.0 -unknown- xorg +./usr/X11R7/man/cat1/Xmark.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/Xnest.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/Xserver.0 -unknown- .cat,xorg +./usr/X11R7/man/cat1/Xvfb.0 -unknown- .cat,xorg +./usr/X11R7/man/cat5/SecurityPolicy.0 -unknown- obsolete +./usr/X11R7/man/html1/Xmark.html -unknown- html,xorg +./usr/X11R7/man/html1/Xnest.html -unknown- html,xorg +./usr/X11R7/man/html1/Xserver.html -unknown- html,xorg +./usr/X11R7/man/html1/Xvfb.html -unknown- html,xorg +./usr/X11R7/man/html5/SecurityPolicy.html -unknown- obsolete +./usr/X11R7/man/man1/Xmark.1 -unknown- .man,xorg +./usr/X11R7/man/man1/Xnest.1 -unknown- .man,xorg +./usr/X11R7/man/man1/Xserver.1 -unknown- .man,xorg +./usr/X11R7/man/man1/Xvfb.1 -unknown- .man,xorg +./usr/X11R7/man/man5/SecurityPolicy.5 -unknown- obsolete diff --git a/distrib/sets/makeflist b/distrib/sets/makeflist new file mode 100755 index 000000000..691f90ddf --- /dev/null +++ b/distrib/sets/makeflist @@ -0,0 +1,87 @@ +#!/bin/sh +# +# $NetBSD: makeflist,v 1.76 2009/12/05 15:56:25 cegger Exp $ +# +# Print out the files in some or all lists. +# Usage: makeflist [-bxlo] [-a arch] [-m machine] [-s setsdir] [setname ...] +# + +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" +lists= + +usage() +{ + cat 1>&2 <&2 < "${file}" +done diff --git a/distrib/sets/makeplist b/distrib/sets/makeplist new file mode 100755 index 000000000..169cbbc8e --- /dev/null +++ b/distrib/sets/makeplist @@ -0,0 +1,140 @@ +#!/bin/sh +# +# Print out the files in some or all lists. +# Usage: makeplist [options] setname pkgname +# options: +# -a arch set arch (e.g, m68k, mips, powerpc) +# -m machine set machine (e.g, amiga, i386, macppc) +# -s setsdir directory to find sets +# -p prefix prefix for package creation +# -I realprefix prefix for eventual installation +# setname pkgname set and package to build plist for +# + +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" +prefix=/ +realprefix=/ +got_realprefix=false + +usage() { + cat 1>&2 < "${filename}" + +SELECTDIRS="-prune -type d" +SELECTNONDIRS="! -type d -print -o ( -type d -prune )" + +# +# XXX: The "lists" do not differentiate between directories and files. +# But we need to differentiate between them, so we do so by checking +# what's actually present in the file system. Files or directories that +# are listed in the "lists" but that do not exist in the file system end +# up not appearing in our output, and this subverts a large part of the +# purpose of the "lists". +# +# XXX: Given that we have to figure out what is or is not a directory +# without assistance from the "lists", it would be much more efficient +# to consult the metalog instead of the file system. +# + +( +cd "${prefix}" + +# +# Match the directories. Use find(1) to avoid repeat calls to +# 'test -d'. +# +# This is a little clever. I cannot use 'xargs find', because +# find wants for the option arguments to follow the path arguments. +# So I use 'xargs echo ${SELECTDIRS}' to make a maximum-length proto-command +# line. I use 'read' to peel the options off the front of the +# command-line, and 'find ${args} ${SELECTDIRS}' to put them at the end. +# +xargs echo ${SELECTDIRS} < "${filename}" | \ +while read ignore ignore ignore args; do + [ -z "${args}" ] && break + ${FIND} ${args} ${SELECTDIRS} +done | ${AWK} '{ print "@dirrm " $1; }' > "${dfilename}" + +# +# Match the non-directories. Use find(1) to avoid repeat calls to +# 'test ! -d'. See 'Match the directories' for an explanation of the +# cleverness. +# +xargs echo ${SELECTNONDIRS} < "${filename}" | \ +while read ignore ignore ignore ignore ignore ignore ignore ignore ignore \ + ignore args; do + [ -z "${args}" ] && break + ${FIND} ${args} ${SELECTNONDIRS} +done > "${ffilename}" + +) + +echo "@cwd ${realprefix}" +if [ -s "${ffilename}" ]; then + cat "${ffilename}" +fi +if [ -s "${dfilename}" ]; then + ${SORT} -r "${dfilename}" +fi + +rm -f "${filename}" "${ffilename}" "${dfilename}" + +exit 0 diff --git a/distrib/sets/makesrctars b/distrib/sets/makesrctars new file mode 100755 index 000000000..bacbe2af1 --- /dev/null +++ b/distrib/sets/makesrctars @@ -0,0 +1,156 @@ +#! /bin/sh +# +# $NetBSD: makesrctars,v 1.38 2009/11/30 16:13:23 uebayasi Exp $ +# +# makesrctars srcdir setdir +# Create source tarballs in setdir from the source under srcdir. +# + +prog="${0##*/}" +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +# set defaults +xsrcdir= +quiet=false + +GZIP=-9n +export GZIP + +usage() +{ + cat 1>&2 <&2 "${prog}: ${setdir} is not a directory" + exit 1 +fi + +makeset() +{( + set="${1}.tgz" + shift + dir="$1" + shift + intmp="/tmp/in$$" + msg "Creating ${set}" + if [ "${dir}" != "." ]; then + cd "${dir}" + srcprefix="${srcprefix}/${dir}" + fi + # Gets rid of any obj dirs and things below it + echo "obj" > "${intmp}" + egrep="$*" + if [ "${egrep}" = "" ]; then + egrep='.' + fi + set -f + ${MTREE} -c -X "${intmp}" | ${MTREE} -CS -k type | \ + ${EGREP} -v 'type=link' | ${EGREP} ${egrep} | \ + ${SED} -e 's:type=file:& mode=0664:' \ + -e 's:type=dir:& mode=0775:' \ + -e 's:$: uname=root gname=wsrc:' \ + -e '/\/move-if-change /s:\(mode\)=[0-9]*:\1=0775:' \ + -e '/^\.\/build.sh /s:\(mode\)=[0-9]*:\1=0775:' | \ + ${PAX} -M -N "${PASSWD}" -w -d -s'|^\.|'"${srcprefix}"'|' | \ + ${GZIP_CMD} > "${setdir}/${set}" + rm -f "${intmp}" +)} + + +# create (base)src sets +# + +if ! cd "${srcdir}"; then + echo >&2 "${prog}: can't chdir to ${srcdir}" + exit 1 +fi + +srcprefix=usr/src +export setdir MTREE PAX CKSUM GZIP PASSWD srcprefix + +makeset src . -v '^\.\/gnu|^\.\/share|^\.\/sys|^\.\/usr\.bin\/config|^\.\/common' + +makeset gnusrc gnu + +makeset syssrc . -e '^\..type=dir|^\.\/sys|^\.\/usr\.bin.type=dir|^\.\/usr\.bin\/config|^\.\/common' + +makeset sharesrc share + + +# create xsrc sets +# +if [ -n "${xsrcdir}" ]; then + if ! cd "${xsrcdir}"; then + echo >&2 "${prog}: can't chdir to ${xsrcdir}" + exit 1 + fi + srcprefix=usr/xsrc + makeset xsrc . +fi + + +# create extsrc sets +# +if [ -n "${extsrcsrcdir}" ]; then + if ! cd "${extsrcsrcdir}"; then + echo >&2 "${prog}: can't chdir to ${extsrcsrcdir}" + exit 1 + fi + srcprefix=usr/extsrc + makeset extsrc . +fi + + +msg "Creating checksum files" +(cd "${setdir}" + ${CKSUM} -a md5 *.tgz > MD5 + ${CKSUM} -a sha512 *.tgz > SHA512 +) +exit 0 diff --git a/distrib/sets/makesums b/distrib/sets/makesums new file mode 100755 index 000000000..b41537b71 --- /dev/null +++ b/distrib/sets/makesums @@ -0,0 +1,79 @@ +#!/bin/sh +# +# $NetBSD: makesums,v 1.16 2009/09/19 07:09:54 snj Exp $ +# +# Make checksum files for files in ``tardir''. Usage: +# makesums [-a] [-t tardir] [setname [...]] +# +# If -t is omitted, RELEASEDIR must be set and not empty. +# The ``setname'' arguments comprise a list of files to checksum, +# and may be omitted (in which case ``*.tgz'' is used). +# If -A is given, then the checksum are appended to possibly existing files. +# NOTE: Don't use this when running parallel jobs +# If -a is given, then the list of sets is ignored, and ``*'' is used. +# +# After shell glob expansion, the list of sets is filtered to remove known +# output file names (of the form *SUM, SHA512 and MD5), non-existent files, and +# subdirectories. If this filtering leaves no files, then no output files are +# produced. Otherwise the resulting list of files are checksummed and two +# output files (MD5 and SHA512) are produced. +# + +prog="${0##*/}" +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +# set defaults +targetdir="${RELEASEDIR}" +dash_all=no +append=\> + +usage() +{ + cat 1>&2 <\> + ;; + a) + dash_all=yes + ;; + t) + targetdir="${OPTARG}" + ;; + *) + usage + ;; + esac +done +shift $((${OPTIND} - 1)) + +if [ -z "${targetdir}" ]; then + echo >&2 "${prog}: \${RELEASEDIR} must be set or provided with -t" + exit 1 +fi + +cd "${targetdir}" +pat="$*" +if [ "${dash_all}" = yes ]; then + pat='*' +elif [ -z "${pat}" ]; then + pat='*.tgz' +fi +lists="$(${FIND} ${pat} -prune \( -type f -o -type l \) \ + \! -name '*SUM' \! -name MD5 \! -name SHA512 2>/dev/null)" +if [ -n "${lists}" ]; then + eval ${CKSUM} -a md5 ${lists} ${append} MD5 + eval ${CKSUM} -a sha512 ${lists} ${append} SHA512 +fi diff --git a/distrib/sets/maketars b/distrib/sets/maketars new file mode 100644 index 000000000..d91c6acf0 --- /dev/null +++ b/distrib/sets/maketars @@ -0,0 +1,230 @@ +#!/bin/sh +# +# $NetBSD: maketars,v 1.74 2010/08/15 07:27:33 mrg Exp $ +# +# Make release tar files for some or all lists. Usage: +# maketars [-b] [-x] [-i installdir] [-a arch] [-m machine] [-s setsdir] +# [-M metalog] [-N etcdir] [-d destdir] [-t tardir] [setname ...] +# +# The default sets are "base comp etc games man misc tests text" +# The X sets are "xbase xcomp xetc xfont xserver" +# The extsrc sets are "extbase extcomp extetc" +# +# If '-i installdir' is given, copy the given sets to installdir +# (using pax -rw ...) instead of creating tar files. +# In this case, remove "etc", "xetc", and "extetc" from the list of default sets. +# + +prog="${0##*/}" +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +# set defaults +lists= +tars="${RELEASEDIR}" +dest="${DESTDIR}" +metalog= +installdir= +etcdir= +setfilesonly=false +quiet=false + +usage() +{ + cat 1>&2 <&2 "${prog}: \${RELEASEDIR} must be set, or -i must be used" + exit 1 +fi + +if [ -z "${dest}" ]; then + echo >&2 "${prog}: \${DESTDIR} must be set" + exit 1 +fi +: ${etcdir:="${dest}/etc"} + +SDIR="$(${MKTEMP} -d "/tmp/${prog}.XXXXXX")" +TMPFILES= + +setlistdir="${dest}/etc/mtree" + +cleanup() +{ + es=$? + /bin/rm -rf "${SDIR}" ${TMPFILES} + trap - 0 + exit ${es} +} +trap cleanup 0 2 3 13 # EXIT INT QUIT PIPE + +# +# build the setfiles +# + +for setname in ${lists}; do + ${HOST_SH} "${setsdir}/makeflist" -a "${MACHINE_ARCH}" -m "${MACHINE}" \ + -s "${setsdir}" "${setname}" > "${SDIR}/flist.${setname}" \ + || exit 1 + if [ ! -s "${SDIR}/flist.${setname}" ]; then + echo >&2 "makeflist output is empty for ${setname}" + exit 1 + fi + if [ -n "${metalog}" ]; then + ${setfilesonly} && msg "Creating ${setlistdir}/set.${setname}" + ${AWK} -f "${rundir}/getdirs.awk" "${SDIR}/flist.${setname}" \ + > "${SDIR}/flist.${setname}.full" \ + || exit 1 + ( + echo "/set uname=root gname=operator" + ${AWK} -f "${rundir}/join.awk" \ + "${SDIR}/flist.${setname}.full" "${metalog}" + echo "./etc/mtree/set.${setname} type=file mode=0444" + ) | ${MTREE} -CS -k all -R time -N "${etcdir}" \ + > "${setlistdir}/set.${setname}" \ + || exit 1 + # We deliberately do not add set.${setname} to ${metalog}, + # because we depend on it as an input. + elif ! cmp -s "${SDIR}/flist.${setname}" \ + "${setlistdir}/set.${setname}" >/dev/null 2>&1; then + rm -f "${setlistdir}/set.${setname}" + cp "${SDIR}/flist.${setname}" "${setlistdir}/set.${setname}" \ + || exit 1 + fi +done +if ${setfilesonly}; then # exit after creating the set lists + exit 0 +fi + +# +# now build the tarfiles +# + +GZIP=-9n # for pax -z +export GZIP +es=0 +for setname in ${lists:-${nlists}}; do + out="${setname}.tgz" + if [ -n "${installdir}" ]; then + msg "Copying set ${setname}" + ( cd "${dest}"; \ + ${PAX} -O -rwpe -d -N"${etcdir}" ${metalog:+-M} \ + "${installdir}" < "${setlistdir}/set.${setname}" ) + else + if [ -n "${metalog}" -a "${tars}/${out}" -nt "${metalog}" ] + then + msg "${out} is up to date" + continue + fi + msg "Creating ${out}" + rm -f "${tars}/${out}" + TMPFILES="${TMPFILES} ${tars}/${out}.tmp" + ( cd "${dest}"; \ + ${PAX} -O -w -d -z -N"${etcdir}" ${metalog:+-M} \ + --use-compress-program ${COMPRESS_PROGRAM} \ + < "${setlistdir}/set.${setname}" ) \ + > "${tars}/${out}.tmp" && + mv "${tars}/${out}.tmp" "${tars}/${out}" + fi + es=$((${es} + $?)) +done +if [ ${es} -gt 255 ]; then + es=255 +fi +exit ${es} diff --git a/distrib/sets/metalog.subr b/distrib/sets/metalog.subr new file mode 100644 index 000000000..525b24062 --- /dev/null +++ b/distrib/sets/metalog.subr @@ -0,0 +1,88 @@ +# $NetBSD: metalog.subr,v 1.2 2011/02/17 08:41:35 uebayasi Exp $ + +# +# xrcs add +# xrcs update +# xrcs remove +# +# RCS wrapper for non-interactive scripts. +# Excerpted from /etc/security. +# + +xrcs_descr= +xrcs_msg= +xrcs_cur= +xrcs_new= + +xrcs_latest() +{ + rcslog -rlatest ${xrcs_cur} | \ + sed -n '/^revision/ { s/^revision //; p; }' +} + +xrcs_retag() +{ + previous=$( xrcs_latest 2>/dev/null ) + if [ -n "$previous" ]; then + rcs -q -Nprevious: ${xrcs_cur} + fi +} + +xrcs_unlock() +{ + rcs -q -u -U -M ${xrcs_cur} +} + +xrcs_ci() +{ + xrcs_retag + ci -q -f -u -t-"$xrcs_descr" -m"$xrcs_msg" -Nlatest ${xrcs_cur} + rcs -q -kb -U ${xrcs_cur} +} + +xrcs_co() +{ + co -q -f -u ${xrcs_cur} +} + +xrcs_init() +{ + if [ -f ${xrcs_cur},v ]; then + xrcs_unlock + fi + + if [ -f ${xrcs_cur} ]; then + if [ ! -f ${xrcs_cur},v ]; then + xrcs_ci + xrcs_co + fi + fi +} + +xrcs_add() +{ + xrcs_init + cp -p $1 ${xrcs_cur} + xrcs_ci + xrcs_co +} + +xrcs_update() +{ + xrcs_init + xrcs_ci + xrcs_co +} + +xrcs_remove() +{ + xrcs_init + cp /dev/null ${xrcs_cur} + xrcs_ci + rm ${xrcs_cur} +} + +xrcs() +{ + eval xrcs_$1 +} diff --git a/distrib/sets/minix-sys.plist b/distrib/sets/minix-sys.plist new file mode 100644 index 000000000..27ff045c3 --- /dev/null +++ b/distrib/sets/minix-sys.plist @@ -0,0 +1,4304 @@ +@cwd /home/sambuc/obj_minix_merging/destdir.i386 +bin/[ +bin/cat +bin/cd +bin/chmod +bin/clone +bin/command +bin/cp +bin/cpdir +bin/cpio +bin/date +bin/dev2name +bin/echo +bin/ed +bin/expr +bin/false +bin/getopts +bin/getty +bin/halt +bin/intr +bin/ln +bin/loadkeys +bin/ls +bin/mkdir +bin/mount +bin/mv +bin/netconf +bin/pax +bin/printconfig +bin/printroot +bin/pwd +bin/read +bin/readclock +bin/reboot +bin/rm +bin/rmdir +bin/sed +bin/service +bin/setup +bin/sh +bin/shutdown +bin/sync +bin/sysenv +bin/test +bin/true +bin/umask +bin/umount +bin/updateboot +bin/update_bootcfg +bin/wait +etc/boot.cfg.default +etc/defaults/minix.rc.conf +etc/defaults/rc.conf +etc/group +etc/hostname.file +etc/inet.conf +etc/make.conf +etc/man.conf +etc/motd +etc/mtab +etc/mtree/special +etc/profile +etc/protocols +etc/rc +etc/rc.cd +etc/rc.conf +etc/rc.daemons.dist +etc/rc.subr +etc/resolv.conf +etc/rs.inet +etc/rs.single +etc/services +etc/shells +etc/syslog.conf +etc/system.conf +etc/system.conf.d/atl2 +etc/system.conf.d/dec21140A +etc/system.conf.d/e1000 +etc/system.conf.d/fxp +etc/system.conf.d/ipc +etc/system.conf.d/lance +etc/system.conf.d/rtl8139 +etc/system.conf.d/rtl8169 +etc/termcap +etc/utmp +libexec/ld-elf.so.1 +root/.ashrc +root/.exrc +root/.profile +sbin/ahci +sbin/at_wini +sbin/devman +sbin/ext2 +sbin/floppy +sbin/fsck +sbin/fsck.ext2 +sbin/fsck_ext2fs +sbin/fsck.mfs +sbin/hgfs +sbin/is +sbin/isofs +sbin/mfs +sbin/mkfs.ext2 +sbin/mkfs.mfs +sbin/mknod +sbin/newfs_ext2 +sbin/newfs_ext2fs +sbin/procfs +sbin/readclock.drv +sbin/vbfs +usr/ast/.ashrc +usr/ast/.exrc +usr/ast/.profile +usr/bin/acknm +usr/bin/acksize +usr/bin/add_route +usr/bin/apropos +usr/bin/arch +usr/bin/arp +usr/bin/at +usr/bin/atnormalize +usr/bin/autopart +usr/bin/awk +usr/bin/backup +usr/bin/badblocks +usr/bin/banner +usr/bin/basename +usr/bin/bsdtar +usr/bin/bsfilt +usr/bin/btrace +usr/bin/bunzip2 +usr/bin/bzcat +usr/bin/bzip2 +usr/bin/bzip2recover +usr/bin/cal +usr/bin/cawf +usr/bin/cdprobe +usr/bin/checkhier +usr/bin/chfn +usr/bin/chgrp +usr/bin/chmod +usr/bin/chown +usr/bin/chpass +usr/bin/chsh +usr/bin/ci +usr/bin/cksum +usr/bin/cleantmp +usr/bin/clear +usr/bin/clr +usr/bin/cmp +usr/bin/co +usr/bin/colcrt +usr/bin/comm +usr/bin/compress +usr/bin/cprofalyze +usr/bin/crc +usr/bin/cron +usr/bin/crontab +usr/bin/ctags +usr/bin/cut +usr/bin/datasizes +usr/bin/dd +usr/bin/decomp16 +usr/bin/del_route +usr/bin/DESCRIBE +usr/bin/devmand +usr/bin/devsize +usr/bin/df +usr/bin/dhcpd +usr/bin/dhrystone +usr/bin/diff +usr/bin/dirname +usr/bin/diskctl +usr/bin/dosdir +usr/bin/dosread +usr/bin/doswrite +usr/bin/du +usr/bin/dumpcore +usr/bin/egrep +usr/bin/eject +usr/bin/elvis +usr/bin/elvprsv +usr/bin/elvrec +usr/bin/env +usr/bin/expand +usr/bin/factor +usr/bin/fbdctl +usr/bin/fdisk +usr/bin/fetch +usr/bin/fgrep +usr/bin/file +usr/bin/find +usr/bin/finger +usr/bin/fix +usr/bin/flex +usr/bin/flex++ +usr/bin/fmt +usr/bin/fold +usr/bin/format +usr/bin/fortune +usr/bin/fstat +usr/bin/ftp +usr/bin/gcore +usr/bin/gcov-pull +usr/bin/genassym +usr/bin/grep +usr/bin/groups +usr/bin/gunzip +usr/bin/gzcat +usr/bin/gzexe +usr/bin/gzip +usr/bin/halt +usr/bin/head +usr/bin/hexdump +usr/bin/host +usr/bin/hostaddr +usr/bin/id +usr/bin/ifconfig +usr/bin/ifdef +usr/bin/indent +usr/bin/in.fingerd +usr/bin/in.rshd +usr/bin/install +usr/bin/in.telnetd +usr/bin/ipcrm +usr/bin/ipcs +usr/bin/irdpd +usr/bin/isodir +usr/bin/isoinfo +usr/bin/isoread +usr/bin/join +usr/bin/kill +usr/bin/last +usr/bin/ldd +usr/bin/less +usr/bin/lessecho +usr/bin/lesskey +usr/bin/lex +usr/bin/loadfont +usr/bin/loadramdisk +usr/bin/logger +usr/bin/login +usr/bin/look +usr/bin/lp +usr/bin/lpd +usr/bin/lspci +usr/bin/lstat +usr/bin/m4 +usr/bin/mail +usr/bin/make +usr/bin/MAKEDEV +usr/bin/man +usr/bin/mandoc +usr/bin/mesg +usr/bin/mined +usr/bin/ministat +usr/bin/mkdep +usr/bin/mkdir +usr/bin/mkfifo +usr/bin/mkproto +usr/bin/mktemp +usr/bin/more +usr/bin/mt +usr/bin/newgrp +usr/bin/nice +usr/bin/nohup +usr/bin/nonamed +usr/bin/nroff +usr/bin/od +usr/bin/page +usr/bin/part +usr/bin/partition +usr/bin/passwd +usr/bin/paste +usr/bin/patch +usr/bin/pax +usr/bin/ping +usr/bin/pkgin_cd +usr/bin/playwave +usr/bin/postinstall +usr/bin/poweroff +usr/bin/pr +usr/bin/prep +usr/bin/printenv +usr/bin/printf +usr/bin/profile +usr/bin/progressbar +usr/bin/pr_routes +usr/bin/ps +usr/bin/ramdisk +usr/bin/rarpd +usr/bin/rawspeed +usr/bin/rcp +usr/bin/rdate +usr/bin/readall +usr/bin/readlink +usr/bin/reboot +usr/bin/recwave +usr/bin/ref +usr/bin/remsync +usr/bin/repartition +usr/bin/restore +usr/bin/rev +usr/bin/rget +usr/bin/rlogin +usr/bin/rotate +usr/bin/rput +usr/bin/rsh +usr/bin/rz +usr/bin/screendump +usr/bin/sed +usr/bin/seq +usr/bin/shar +usr/bin/shutdown +usr/bin/sleep +usr/bin/slip +usr/bin/sort +usr/bin/spell +usr/bin/split +usr/bin/sprofalyze +usr/bin/sprofdiff +usr/bin/srccrc +usr/bin/stat +usr/bin/stty +usr/bin/su +usr/bin/sum +usr/bin/svclog +usr/bin/svrctl +usr/bin/swifi +usr/bin/synctree +usr/bin/syslogd +usr/bin/sz +usr/bin/tail +usr/bin/tar +usr/bin/tcpd +usr/bin/tcpdp +usr/bin/tcpstat +usr/bin/tee +usr/bin/term +usr/bin/termcap +usr/bin/tget +usr/bin/tic +usr/bin/time +usr/bin/top +usr/bin/touch +usr/bin/tr +usr/bin/truncate +usr/bin/tsort +usr/bin/ttn +usr/bin/tty +usr/bin/udpstat +usr/bin/uname +usr/bin/uncompress +usr/bin/unexpand +usr/bin/uniq +usr/bin/unstack +usr/bin/update +usr/bin/uptime +usr/bin/uud +usr/bin/uudecode +usr/bin/uue +usr/bin/uuencode +usr/bin/version +usr/bin/vol +usr/bin/wc +usr/bin/whereis +usr/bin/which +usr/bin/who +usr/bin/whoami +usr/bin/worldstone +usr/bin/write +usr/bin/writeisofs +usr/bin/xargs +usr/bin/yacc +usr/bin/yes +usr/bin/zcat +usr/bin/zcmp +usr/bin/zdiff +usr/bin/zdump +usr/bin/zegrep +usr/bin/zfgrep +usr/bin/zforce +usr/bin/zgrep +usr/bin/zmore +usr/bin/znew +usr/include/aio.h +usr/include/a.out.h +usr/include/archive_entry.h +usr/include/archive.h +usr/include/ar.h +usr/include/arpa/ftp.h +usr/include/arpa/inet.h +usr/include/arpa/nameser_compat.h +usr/include/arpa/nameser.h +usr/include/arpa/telnet.h +usr/include/arpa/tftp.h +usr/include/assert.h +usr/include/atomic.h +usr/include/bitstring.h +usr/include/bm.h +usr/include/bzlib.h +usr/include/cdbr.h +usr/include/cdbw.h +usr/include/compat/a.out.h +usr/include/complex.h +usr/include/configfile.h +usr/include/cpio.h +usr/include/ctype.h +usr/include/curses.h +usr/include/db.h +usr/include/ddekit/assert.h +usr/include/ddekit/attribs.h +usr/include/ddekit/condvar.h +usr/include/ddekit/ddekit.h +usr/include/ddekit/debug.h +usr/include/ddekit/initcall.h +usr/include/ddekit/inline.h +usr/include/ddekit/interrupt.h +usr/include/ddekit/lock.h +usr/include/ddekit/memory.h +usr/include/ddekit/minix/msg_queue.h +usr/include/ddekit/minix/pci.h +usr/include/ddekit/panic.h +usr/include/ddekit/pci.h +usr/include/ddekit/pgtab.h +usr/include/ddekit/printf.h +usr/include/ddekit/resources.h +usr/include/ddekit/semaphore.h +usr/include/ddekit/thread.h +usr/include/ddekit/timer.h +usr/include/ddekit/types.h +usr/include/ddekit/usb.h +usr/include/dirent.h +usr/include/disktab.h +usr/include/dlfcn.h +usr/include/elfdefinitions.h +usr/include/env.h +usr/include/err.h +usr/include/errno.h +usr/include/fcntl.h +usr/include/fenv.h +usr/include/fetch.h +usr/include/float.h +usr/include/fmtmsg.h +usr/include/fnmatch.h +usr/include/fstab.h +usr/include/fts.h +usr/include/ftw.h +usr/include/fuse.h +usr/include/fuse_opt.h +usr/include/gelf.h +usr/include/getopt.h +usr/include/g++/FlexLexer.h +usr/include/glob.h +usr/include/grp.h +usr/include/hesiod.h +usr/include/i386/ansi.h +usr/include/i386/archconst.h +usr/include/i386/archtypes.h +usr/include/i386/asm.h +usr/include/i386/bios.h +usr/include/i386/bswap.h +usr/include/i386/byte_swap.h +usr/include/i386/cdefs.h +usr/include/i386/cmos.h +usr/include/i386/compat_jmp_buf.h +usr/include/i386/cpu.h +usr/include/i386/disklabel.h +usr/include/i386/diskparm.h +usr/include/i386/elf.h +usr/include/i386/elf_machdep.h +usr/include/i386/endian.h +usr/include/i386/endian_machdep.h +usr/include/i386/fenv.h +usr/include/i386/float.h +usr/include/i386/fpu.h +usr/include/i386/ieeefp.h +usr/include/i386/ieee.h +usr/include/i386/int86.h +usr/include/i386/int_const.h +usr/include/i386/interrupt.h +usr/include/i386/int_fmtio.h +usr/include/i386/int_limits.h +usr/include/i386/int_mwgwtypes.h +usr/include/i386/int_types.h +usr/include/i386/ipcconst.h +usr/include/i386/limits.h +usr/include/i386/math.h +usr/include/i386/mcontext.h +usr/include/i386/memory.h +usr/include/i386/multiboot.h +usr/include/i386/mutex.h +usr/include/i386/npx.h +usr/include/i386/param.h +usr/include/i386/partition.h +usr/include/i386/pci_amd.h +usr/include/i386/pci.h +usr/include/i386/pci_intel.h +usr/include/i386/pci_sis.h +usr/include/i386/pci_via.h +usr/include/i386/ports.h +usr/include/i386/profile.h +usr/include/i386/setjmp.h +usr/include/i386/signal.h +usr/include/i386/stackframe.h +usr/include/i386/stdarg.h +usr/include/i386/types.h +usr/include/i386/vm.h +usr/include/i386/vmparam.h +usr/include/i386/wchar_limits.h +usr/include/iconv.h +usr/include/ieeefp.h +usr/include/ifaddrs.h +usr/include/inttypes.h +usr/include/iso646.h +usr/include/langinfo.h +usr/include/libelf.h +usr/include/libexec.h +usr/include/libgen.h +usr/include/lib.h +usr/include/libutil.h +usr/include/limits.h +usr/include/link_aout.h +usr/include/link_elf.h +usr/include/link.h +usr/include/locale.h +usr/include/login_cap.h +usr/include/lzma/base.h +usr/include/lzma/bcj.h +usr/include/lzma/block.h +usr/include/lzma/check.h +usr/include/lzma/container.h +usr/include/lzma/delta.h +usr/include/lzma/filter.h +usr/include/lzma.h +usr/include/lzma/hardware.h +usr/include/lzma/index.h +usr/include/lzma/index_hash.h +usr/include/lzma/lzma.h +usr/include/lzma/stream_flags.h +usr/include/lzma/version.h +usr/include/lzma/vli.h +usr/include/machine +usr/include/magic.h +usr/include/malloc.h +usr/include/math.h +usr/include/md2.h +usr/include/md4.h +usr/include/md5.h +usr/include/memory.h +usr/include/minix/acpi.h +usr/include/minix/audio_fw.h +usr/include/minix/bdev.h +usr/include/minix/bitmap.h +usr/include/minix/blockdriver.h +usr/include/minix/blockdriver_mt.h +usr/include/minix/btrace.h +usr/include/minix/callnr.h +usr/include/minix/chardriver.h +usr/include/minix/com.h +usr/include/minix/compiler.h +usr/include/minix/config.h +usr/include/minix/const.h +usr/include/minix/cpufeature.h +usr/include/minix/crtso.h +usr/include/minix/debug.h +usr/include/minix/devio.h +usr/include/minix/devman.h +usr/include/minix/dirent.h +usr/include/minix/dmap.h +usr/include/minix/driver.h +usr/include/minix/drivers.h +usr/include/minix/drvlib.h +usr/include/minix/ds.h +usr/include/minix/endpoint.h +usr/include/minix/fslib.h +usr/include/minix/gcov.h +usr/include/minix/hash.h +usr/include/minix/hgfs.h +usr/include/minix/input.h +usr/include/minix/ioctl.h +usr/include/minix/ipcconst.h +usr/include/minix/ipc.h +usr/include/minix/keymap.h +usr/include/minix/libminixfs.h +usr/include/minix/limits.h +usr/include/minix/minlib.h +usr/include/minix/mount.h +usr/include/minix/mthread.h +usr/include/minix/netdriver.h +usr/include/minix/netsock.h +usr/include/minix/optset.h +usr/include/minix/param.h +usr/include/minix/partition.h +usr/include/minix/paths.h +usr/include/minix/portio.h +usr/include/minix/priv.h +usr/include/minix/procfs.h +usr/include/minix/profile.h +usr/include/minix/queryparam.h +usr/include/minix/rs.h +usr/include/minix/safecopies.h +usr/include/minix/sched.h +usr/include/minix/sef.h +usr/include/minix/sffs.h +usr/include/minix/sound.h +usr/include/minix/spin.h +usr/include/minix/sys_config.h +usr/include/minix/sysinfo.h +usr/include/minix/syslib.h +usr/include/minix/sysutil.h +usr/include/minix/termios.h +usr/include/minix/timers.h +usr/include/minix/tty.h +usr/include/minix/type.h +usr/include/minix/types.h +usr/include/minix/u64.h +usr/include/minix/usb_ch9.h +usr/include/minix/usb.h +usr/include/minix/vassert.h +usr/include/minix/vboxfs.h +usr/include/minix/vbox.h +usr/include/minix/vboxif.h +usr/include/minix/vboxtype.h +usr/include/minix/vfsif.h +usr/include/minix/vm.h +usr/include/minix/vtreefs.h +usr/include/mntopts.h +usr/include/monetary.h +usr/include/mpool.h +usr/include/mqueue.h +usr/include/ndbm.h +usr/include/netconfig.h +usr/include/netdb.h +usr/include/net/ethertypes.h +usr/include/net/gen/arp_io.h +usr/include/net/gen/dhcp.h +usr/include/net/gen/ether.h +usr/include/net/gen/eth_hdr.h +usr/include/net/gen/eth_io.h +usr/include/net/gen/icmp.h +usr/include/net/gen/icmp_hdr.h +usr/include/net/gen/if_ether.h +usr/include/net/gen/inet.h +usr/include/net/gen/in.h +usr/include/net/gen/ip_hdr.h +usr/include/net/gen/ip_io.h +usr/include/net/gen/nameser.h +usr/include/net/gen/netdb.h +usr/include/net/gen/oneCsum.h +usr/include/net/gen/psip_hdr.h +usr/include/net/gen/psip_io.h +usr/include/net/gen/resolv.h +usr/include/net/gen/rip.h +usr/include/net/gen/route.h +usr/include/net/gen/socket.h +usr/include/net/gen/tcp.h +usr/include/net/gen/tcp_hdr.h +usr/include/net/gen/tcp_io.h +usr/include/net/gen/udp.h +usr/include/net/gen/udp_hdr.h +usr/include/net/gen/udp_io.h +usr/include/net/gen/udp_io_hdr.h +usr/include/net/gen/vjhc.h +usr/include/netgroup.h +usr/include/net/hton.h +usr/include/net/if_ether.h +usr/include/net/if.h +usr/include/netinet6/in6.h +usr/include/netinet/in.h +usr/include/netinet/tcp.h +usr/include/net/netlib.h +usr/include/nlist.h +usr/include/nl_types.h +usr/include/nsswitch.h +usr/include/paths.h +usr/include/poll.h +usr/include/prop/plistref.h +usr/include/prop/prop_array.h +usr/include/prop/prop_bool.h +usr/include/prop/prop_data.h +usr/include/prop/prop_dictionary.h +usr/include/prop/prop_ingest.h +usr/include/prop/proplib.h +usr/include/prop/prop_number.h +usr/include/prop/prop_object.h +usr/include/prop/prop_string.h +usr/include/protocols/dumprestore.h +usr/include/protocols/routed.h +usr/include/protocols/rwhod.h +usr/include/protocols/talkd.h +usr/include/protocols/timed.h +usr/include/puffs.h +usr/include/puffs_msgif.h +usr/include/pwd.h +usr/include/randomid.h +usr/include/ranlib.h +usr/include/re_comp.h +usr/include/regex.h +usr/include/regexp.h +usr/include/resolv.h +usr/include/res_update.h +usr/include/rmd160.h +usr/include/rmt.h +usr/include/rpcsvc/ypclnt.h +usr/include/rpcsvc/yp_prot.h +usr/include/sched.h +usr/include/search.h +usr/include/semaphore.h +usr/include/setjmp.h +usr/include/sgtty.h +usr/include/sha1.h +usr/include/sha2.h +usr/include/signal.h +usr/include/ssp/ssp.h +usr/include/ssp/stdio.h +usr/include/ssp/string.h +usr/include/ssp/strings.h +usr/include/ssp/unistd.h +usr/include/stab.h +usr/include/stdarg.h +usr/include/stdbool.h +usr/include/stddef.h +usr/include/stdint.h +usr/include/stdio.h +usr/include/stdlib.h +usr/include/string.h +usr/include/stringlist.h +usr/include/strings.h +usr/include/struct.h +usr/include/sys/ansi.h +usr/include/sys/asynchio.h +usr/include/sys/atomic.h +usr/include/sys/bitops.h +usr/include/sys/bootblock.h +usr/include/sys/bswap.h +usr/include/sys/cdefs_aout.h +usr/include/sys/cdefs_elf.h +usr/include/sys/cdefs.h +usr/include/sys/ctype_bits.h +usr/include/sys/ctype_inline.h +usr/include/sys/dirent.h +usr/include/sys/disk.h +usr/include/sys/disklabel_gpt.h +usr/include/sys/disklabel.h +usr/include/sys/dkbad.h +usr/include/sys/dkio.h +usr/include/sys/elf64.h +usr/include/sys/elf_common.h +usr/include/sys/elf_core.h +usr/include/sys/elf_generic.h +usr/include/sys/endian.h +usr/include/sys/errno.h +usr/include/sys/exec_elf.h +usr/include/sys/exec.h +usr/include/sysexits.h +usr/include/sys/extattr.h +usr/include/sys/fcntl.h +usr/include/sys/fd_set.h +usr/include/sys/featuretest.h +usr/include/sys/file.h +usr/include/sys/float_ieee754.h +usr/include/sys/gcq.h +usr/include/sys/gmon.h +usr/include/sys/hash.h +usr/include/sys/ieee754.h +usr/include/sys/inttypes.h +usr/include/sys/ioc_block.h +usr/include/sys/ioccom.h +usr/include/sys/ioc_disk.h +usr/include/sys/ioc_fbd.h +usr/include/sys/ioc_file.h +usr/include/sys/ioc_memory.h +usr/include/sys/ioc_net.h +usr/include/sys/ioc_sound.h +usr/include/sys/ioc_tape.h +usr/include/sys/ioctl.h +usr/include/sys/ioc_tty.h +usr/include/sys/iostat.h +usr/include/sys/ipc.h +usr/include/sys/jmp_buf.h +usr/include/sys/kbdio.h +usr/include/sys/localedef.h +usr/include/sys/lock.h +usr/include/syslog.h +usr/include/sys/md4.h +usr/include/sys/md5.h +usr/include/sys/mman.h +usr/include/sys/mount.h +usr/include/sys/mtio.h +usr/include/sys/mutex.h +usr/include/sys/null.h +usr/include/sys/param.h +usr/include/sys/poll.h +usr/include/sys/procfs.h +usr/include/sys/ptrace.h +usr/include/sys/ptree.h +usr/include/sys/queue.h +usr/include/sys/ras.h +usr/include/sys/rbtree.h +usr/include/sys/reboot.h +usr/include/sys/resource.h +usr/include/sys/rmd160.h +usr/include/sys/select.h +usr/include/sys/sem.h +usr/include/sys/sha1.h +usr/include/sys/sha2.h +usr/include/sys/shm.h +usr/include/sys/siginfo.h +usr/include/sys/signal.h +usr/include/sys/sigtypes.h +usr/include/sys/socket.h +usr/include/sys/statfs.h +usr/include/sys/stat.h +usr/include/sys/statvfs.h +usr/include/sys/stdint.h +usr/include/sys/svrctl.h +usr/include/sys/sysctl.h +usr/include/sys/syslimits.h +usr/include/sys/syslog.h +usr/include/sys/termios.h +usr/include/sys/time.h +usr/include/sys/times.h +usr/include/sys/tree.h +usr/include/sys/ttycom.h +usr/include/sys/ttydefaults.h +usr/include/sys/types.h +usr/include/sys/ucontext.h +usr/include/sys/ucred.h +usr/include/sys/uio.h +usr/include/sys/un.h +usr/include/sys/unistd.h +usr/include/sys/utsname.h +usr/include/sys/uuid.h +usr/include/sys/video.h +usr/include/sys/vm.h +usr/include/sys/wait.h +usr/include/tar.h +usr/include/termcap.h +usr/include/term.h +usr/include/termios.h +usr/include/time.h +usr/include/timers.h +usr/include/tools.h +usr/include/ttyent.h +usr/include/tzfile.h +usr/include/ucontext.h +usr/include/ucontextoffsets.h +usr/include/ufs/ext2fs/ext2fs_dinode.h +usr/include/ufs/ext2fs/ext2fs_dir.h +usr/include/ufs/ext2fs/ext2fs_extern.h +usr/include/ufs/ext2fs/ext2fs.h +usr/include/ufs/ffs/ffs_extern.h +usr/include/ufs/ffs/fs.h +usr/include/ufs/lfs/lfs_extern.h +usr/include/ufs/lfs/lfs.h +usr/include/ufs/mfs/mfs_extern.h +usr/include/ufs/mfs/mfsnode.h +usr/include/ufs/ufs/dinode.h +usr/include/ufs/ufs/dir.h +usr/include/ufs/ufs/extattr.h +usr/include/ufs/ufs/inode.h +usr/include/ufs/ufs/quota1.h +usr/include/ufs/ufs/quota2.h +usr/include/ufs/ufs/quota.h +usr/include/ufs/ufs/ufs_bswap.h +usr/include/ufs/ufs/ufs_extern.h +usr/include/ufs/ufs/ufsmount.h +usr/include/ufs/ufs/ufs_wapbl.h +usr/include/ulimit.h +usr/include/unctrl.h +usr/include/unistd.h +usr/include/util.h +usr/include/utime.h +usr/include/utmp.h +usr/include/utmpx.h +usr/include/uuid.h +usr/include/varargs.h +usr/include/vis.h +usr/include/wchar.h +usr/include/wctype.h +usr/include/wordexp.h +usr/include/x86/float.h +usr/include/x86/ieeefp.h +usr/include/x86/ieee.h +usr/include/x86/math.h +usr/include/x86/mutex.h +usr/include/zconf.h +usr/include/zlib.h +usr/lib/cawf/common +usr/lib/cawf/device.cf +usr/lib/cawf/dumb.dev +usr/lib/cawf/man.mac +usr/lib/cawf/me.mac +usr/lib/cawf/mnx.mac +usr/lib/cawf/ms.mac +usr/lib/compat_minix.pc +usr/lib/cpp +usr/lib/crt0.o +usr/lib/crt1.o +usr/lib/crtbegin.o +usr/lib/crtbeginS.o +usr/lib/crtbeginT.o +usr/lib/crtend.o +usr/lib/crtendS.o +usr/lib/crti.o +usr/lib/crtn.o +usr/libexec/ld.elf_so +usr/libexec/makewhatis +usr/lib/fortune.dat +usr/lib/gcrt0.o +usr/lib/keymaps/abnt2.map +usr/lib/keymaps/dvorak.map +usr/lib/keymaps/french.map +usr/lib/keymaps/german.map +usr/lib/keymaps/italian.map +usr/lib/keymaps/japanese.map +usr/lib/keymaps/latin-america.map +usr/lib/keymaps/olivetti.map +usr/lib/keymaps/polish.map +usr/lib/keymaps/portuguese.map +usr/lib/keymaps/russian-cp1251.map +usr/lib/keymaps/russian-cp866.map +usr/lib/keymaps/russian.map +usr/lib/keymaps/scandinavian.map +usr/lib/keymaps/spanish.map +usr/lib/keymaps/uk.map +usr/lib/keymaps/ukraine-koi8-u.map +usr/lib/keymaps/us-std-esc.map +usr/lib/keymaps/us-std.map +usr/lib/keymaps/us-swap.map +usr/lib/libarchive.a +usr/lib/libarchive_pic.a +usr/lib/libarchive.so +usr/lib/libarchive.so.0 +usr/lib/libarchive.so.0.0 +usr/lib/libasyn.a +usr/lib/libasyn_pic.a +usr/lib/libaudiodriver.a +usr/lib/libaudiodriver_pic.a +usr/lib/libbdev.a +usr/lib/libbdev_pic.a +usr/lib/libblockdriver.a +usr/lib/libblockdriver_pic.a +usr/lib/libbz2.a +usr/lib/libbz2_pic.a +usr/lib/libbz2.so +usr/lib/libbz2.so.0 +usr/lib/libbz2.so.0.0 +usr/lib/libc.a +usr/lib/libchardriver.a +usr/lib/libchardriver_pic.a +usr/lib/libcompat_minix.a +usr/lib/libcompat_minix_pic.a +usr/lib/libcompat_minix.so +usr/lib/libcompat_minix.so.0 +usr/lib/libcompat_minix.so.0.0 +usr/lib/libc.pc +usr/lib/libc_pic.a +usr/lib/libcrypt.a +usr/lib/libcrypt_pic.a +usr/lib/libcrypt.so +usr/lib/libcrypt.so.0 +usr/lib/libcrypt.so.0.0 +usr/lib/libc.so +usr/lib/libc.so.0 +usr/lib/libc.so.0.0 +usr/lib/libcurses.a +usr/lib/libcurses_pic.a +usr/lib/libcurses.so +usr/lib/libcurses.so.0 +usr/lib/libcurses.so.0.0 +usr/lib/libddekit.a +usr/lib/libddekit_pic.a +usr/lib/libddekit_usb_client.a +usr/lib/libddekit_usb_client_pic.a +usr/lib/libddekit_usb_server.a +usr/lib/libddekit_usb_server_pic.a +usr/lib/libdevman.a +usr/lib/libdevman_pic.a +usr/lib/libedit.a +usr/lib/libedit_pic.a +usr/lib/libelf.a +usr/lib/libelf_pic.a +usr/lib/libelf.so +usr/lib/libelf.so.0 +usr/lib/libexec.a +usr/lib/libexec_pic.a +usr/lib/libfetch.a +usr/lib/libfl.a +usr/lib/libgcc.a +usr/lib/libhgfs.a +usr/lib/libhgfs_pic.a +usr/lib/libl.a +usr/lib/liblzma.a +usr/lib/liblzma_pic.a +usr/lib/liblzma.so +usr/lib/liblzma.so.0 +usr/lib/liblzma.so.0.0 +usr/lib/libm387.a +usr/lib/libm387_pic.a +usr/lib/libm387.so +usr/lib/libm387.so.0 +usr/lib/libm387.so.0.0 +usr/lib/libm.a +usr/lib/libmagic.a +usr/lib/libmagic_pic.a +usr/lib/libmagic.so +usr/lib/libmagic.so.0 +usr/lib/libmagic.so.0.0 +usr/lib/libminc.a +usr/lib/libminc_pic.a +usr/lib/libminixfs.a +usr/lib/libminixfs_pic.a +usr/lib/libminlib.a +usr/lib/libminlib_pic.a +usr/lib/libminlib.so +usr/lib/libminlib.so.0 +usr/lib/libminlib.so.0.0 +usr/lib/libm_pic.a +usr/lib/libm.so +usr/lib/libm.so.0 +usr/lib/libm.so.0.0 +usr/lib/libmthread.a +usr/lib/libmthread_pic.a +usr/lib/libnetdriver.a +usr/lib/libnetdriver_pic.a +usr/lib/libnetsock.a +usr/lib/libnetsock_pic.a +usr/lib/libprop.a +usr/lib/libprop_pic.a +usr/lib/libprop.so +usr/lib/libprop.so.0 +usr/lib/libprop.so.0.0 +usr/lib/libpuffs.a +usr/lib/libpuffs_pic.a +usr/lib/libpuffs.so +usr/lib/libpuffs.so.0 +usr/lib/libpuffs.so.0.0 +usr/lib/librefuse.a +usr/lib/librefuse_pic.a +usr/lib/librefuse.so +usr/lib/librefuse.so.0 +usr/lib/librefuse.so.0.0 +usr/lib/libsffs.a +usr/lib/libsffs_pic.a +usr/lib/libsys.a +usr/lib/libsys_pic.a +usr/lib/libsys.so +usr/lib/libsys.so.0 +usr/lib/libsys.so.0.0 +usr/lib/libtermcap.a +usr/lib/libtermcap_pic.a +usr/lib/libtermcap.so +usr/lib/libtermcap.so.0 +usr/lib/libtermcap.so.0.6 +usr/lib/libterminfo.a +usr/lib/libterminfo_pic.a +usr/lib/libterminfo.so +usr/lib/libterminfo.so.0 +usr/lib/libterminfo.so.0.0 +usr/lib/libtermlib.a +usr/lib/libtermlib_pic.a +usr/lib/libtermlib.so +usr/lib/libtermlib.so.0 +usr/lib/libtermlib.so.0.6 +usr/lib/libtimers.a +usr/lib/libtimers_pic.a +usr/lib/libusb.a +usr/lib/libusb_pic.a +usr/lib/libutil.a +usr/lib/libutil_pic.a +usr/lib/libutil.so +usr/lib/libutil.so.0 +usr/lib/libutil.so.0.0 +usr/lib/libvassert.a +usr/lib/libvboxfs.a +usr/lib/libvboxfs_pic.a +usr/lib/libvtreefs.a +usr/lib/libvtreefs_pic.a +usr/lib/libz.a +usr/lib/libz_pic.a +usr/lib/libz.so +usr/lib/libz.so.0 +usr/lib/libz.so.0.0 +usr/lib/minlib.pc +usr/lib/pwdauth +usr/man/man1/..1 +usr/man/man1/[.1 +usr/man/man1/acksize.1 +usr/man/man1/apropos.1 +usr/man/man1/ash.1 +usr/man/man1/at.1 +usr/man/man1/awk.1 +usr/man/man1/banner.1 +usr/man/man1/basename.1 +usr/man/man1/break.1 +usr/man/man1/bsdtar.1 +usr/man/man1/bsfilt.1 +usr/man/man1/bunzip2.1 +usr/man/man1/bzcat.1 +usr/man/man1/bzip2.1 +usr/man/man1/bzip2recover.1 +usr/man/man1/cal.1 +usr/man/man1/case.1 +usr/man/man1/cat.1 +usr/man/man1/cawf.1 +usr/man/man1/cd.1 +usr/man/man1/chfn.1 +usr/man/man1/chgrp.1 +usr/man/man1/chmod.1 +usr/man/man1/chpass.1 +usr/man/man1/chsh.1 +usr/man/man1/ci.1 +usr/man/man1/cksum.1 +usr/man/man1/clear.1 +usr/man/man1/cmp.1 +usr/man/man1/co.1 +usr/man/man1/comm.1 +usr/man/man1/command.1 +usr/man/man1/compress.1 +usr/man/man1/continue.1 +usr/man/man1/cp.1 +usr/man/man1/cpdir.1 +usr/man/man1/cpio.1 +usr/man/man1/crc.1 +usr/man/man1/crontab.1 +usr/man/man1/ctags.1 +usr/man/man1/cut.1 +usr/man/man1/date.1 +usr/man/man1/dd.1 +usr/man/man1/dev2name.1 +usr/man/man1/df.1 +usr/man/man1/dhrystone.1 +usr/man/man1/diff.1 +usr/man/man1/dosdir.1 +usr/man/man1/dosread.1 +usr/man/man1/doswrite.1 +usr/man/man1/du.1 +usr/man/man1/dumpcore.1 +usr/man/man1/echo.1 +usr/man/man1/ed.1 +usr/man/man1/egrep.1 +usr/man/man1/eject.1 +usr/man/man1/elvis.1 +usr/man/man1/elvrec.1 +usr/man/man1/env.1 +usr/man/man1/eval.1 +usr/man/man1/ex.1 +usr/man/man1/exec.1 +usr/man/man1/exit.1 +usr/man/man1/expand.1 +usr/man/man1/export.1 +usr/man/man1/expr.1 +usr/man/man1/factor.1 +usr/man/man1/fetch.1 +usr/man/man1/fgrep.1 +usr/man/man1/file.1 +usr/man/man1/find.1 +usr/man/man1/finger.1 +usr/man/man1/flex.1 +usr/man/man1/flexdoc.1 +usr/man/man1/fmt.1 +usr/man/man1/fold.1 +usr/man/man1/for.1 +usr/man/man1/format.1 +usr/man/man1/fortune.1 +usr/man/man1/fsck.mfs.1 +usr/man/man1/ftp.1 +usr/man/man1/genassym.1 +usr/man/man1/getopts.1 +usr/man/man1/grep.1 +usr/man/man1/groups.1 +usr/man/man1/gunzip.1 +usr/man/man1/gzcat.1 +usr/man/man1/gzexe.1 +usr/man/man1/gzip.1 +usr/man/man1/hash.1 +usr/man/man1/head.1 +usr/man/man1/hexdump.1 +usr/man/man1/host.1 +usr/man/man1/hostaddr.1 +usr/man/man1/id.1 +usr/man/man1/if.1 +usr/man/man1/ifdef.1 +usr/man/man1/indent.1 +usr/man/man1/install.1 +usr/man/man1/isodir.1 +usr/man/man1/isoinfo.1 +usr/man/man1/isoread.1 +usr/man/man1/jobs.1 +usr/man/man1/join.1 +usr/man/man1/kill.1 +usr/man/man1/last.1 +usr/man/man1/ldd.1 +usr/man/man1/ld.elf_so.1 +usr/man/man1/less.1 +usr/man/man1/lesskey.1 +usr/man/man1/lex.1 +usr/man/man1/linkfarm.1 +usr/man/man1/ln.1 +usr/man/man1/loadfont.1 +usr/man/man1/loadkeys.1 +usr/man/man1/local.1 +usr/man/man1/logger.1 +usr/man/man1/login.1 +usr/man/man1/look.1 +usr/man/man1/lp.1 +usr/man/man1/ls.1 +usr/man/man1/lspci.1 +usr/man/man1/m4.1 +usr/man/man1/mail.1 +usr/man/man1/make.1 +usr/man/man1/man.1 +usr/man/man1/mandoc.1 +usr/man/man1/mesg.1 +usr/man/man1/ministat.1 +usr/man/man1/mixer.1 +usr/man/man1/mkdep.1 +usr/man/man1/mkdir.1 +usr/man/man1/mkfifo.1 +usr/man/man1/mkfs.1 +usr/man/man1/mkproto.1 +usr/man/man1/mktemp.1 +usr/man/man1/more.1 +usr/man/man1/mount.1 +usr/man/man1/mt.1 +usr/man/man1/mv.1 +usr/man/man1/newgrp.1 +usr/man/man1/nice.1 +usr/man/man1/nm.1 +usr/man/man1/nohup.1 +usr/man/man1/od.1 +usr/man/man1/page.1 +usr/man/man1/passwd.1 +usr/man/man1/paste.1 +usr/man/man1/patch.1 +usr/man/man1/pax.1 +usr/man/man1/ping.1 +usr/man/man1/pkg_view.1 +usr/man/man1/playwave.1 +usr/man/man1/pr.1 +usr/man/man1/prep.1 +usr/man/man1/printf.1 +usr/man/man1/profile.1 +usr/man/man1/ps.1 +usr/man/man1/pwd.1 +usr/man/man1/rcp.1 +usr/man/man1/read.1 +usr/man/man1/readall.1 +usr/man/man1/readlink.1 +usr/man/man1/readonly.1 +usr/man/man1/recwave.1 +usr/man/man1/ref.1 +usr/man/man1/remsync.1 +usr/man/man1/return.1 +usr/man/man1/rget.1 +usr/man/man1/rlogin.1 +usr/man/man1/rm.1 +usr/man/man1/rmdir.1 +usr/man/man1/rsh.1 +usr/man/man1/rz.1 +usr/man/man1/sed.1 +usr/man/man1/seq.1 +usr/man/man1/set.1 +usr/man/man1/setvar.1 +usr/man/man1/sh.1 +usr/man/man1/shar.1 +usr/man/man1/shift.1 +usr/man/man1/sleep.1 +usr/man/man1/sort.1 +usr/man/man1/spell.1 +usr/man/man1/split.1 +usr/man/man1/stat.1 +usr/man/man1/stty.1 +usr/man/man1/su.1 +usr/man/man1/sum.1 +usr/man/man1/svc.1 +usr/man/man1/svrctl.1 +usr/man/man1/synctree.1 +usr/man/man1/sysenv.1 +usr/man/man1/sz.1 +usr/man/man1/tail.1 +usr/man/man1/tar.1 +usr/man/man1/tee.1 +usr/man/man1/telnet.1 +usr/man/man1/template.1 +usr/man/man1/term.1 +usr/man/man1/termcap.1 +usr/man/man1/test.1 +usr/man/man1/tget.1 +usr/man/man1/tic.1 +usr/man/man1/time.1 +usr/man/man1/touch.1 +usr/man/man1/tr.1 +usr/man/man1/trap.1 +usr/man/man1/true.1 +usr/man/man1/truncate.1 +usr/man/man1/tsort.1 +usr/man/man1/tty.1 +usr/man/man1/umask.1 +usr/man/man1/umount.1 +usr/man/man1/uname.1 +usr/man/man1/uncompress.1 +usr/man/man1/unexpand.1 +usr/man/man1/uniq.1 +usr/man/man1/unset.1 +usr/man/man1/uud.1 +usr/man/man1/uue.1 +usr/man/man1/vol.1 +usr/man/man1/wait.1 +usr/man/man1/wc.1 +usr/man/man1/whereis.1 +usr/man/man1/which.1 +usr/man/man1/who.1 +usr/man/man1/whoami.1 +usr/man/man1/worldstone.1 +usr/man/man1/write.1 +usr/man/man1/xargs.1 +usr/man/man1x/awk.1x +usr/man/man1x/elvis.1x +usr/man/man1x/kermit.1x +usr/man/man1x/macros.1x +usr/man/man1x/mined.1x +usr/man/man1/yacc.1 +usr/man/man1/yap.1 +usr/man/man1/yes.1 +usr/man/man1/zcat.1 +usr/man/man1/zcmp.1 +usr/man/man1/zdiff.1 +usr/man/man1/zegrep.1 +usr/man/man1/zfgrep.1 +usr/man/man1/zforce.1 +usr/man/man1/zgrep.1 +usr/man/man1/zmore.1 +usr/man/man1/znew.1 +usr/man/man2/accept.2 +usr/man/man2/access.2 +usr/man/man2/alarm.2 +usr/man/man2/bind.2 +usr/man/man2/brk.2 +usr/man/man2/chdir.2 +usr/man/man2/chmod.2 +usr/man/man2/chown.2 +usr/man/man2/chroot.2 +usr/man/man2/close.2 +usr/man/man2/connect.2 +usr/man/man2/creat.2 +usr/man/man2/dup.2 +usr/man/man2/execve.2 +usr/man/man2/exit.2 +usr/man/man2/fcntl.2 +usr/man/man2/FD_CLR.2 +usr/man/man2/FD_ISSET.2 +usr/man/man2/FD_SET.2 +usr/man/man2/fork.2 +usr/man/man2/fstatvfs.2 +usr/man/man2/getgid.2 +usr/man/man2/getitimer.2 +usr/man/man2/getnucred.2 +usr/man/man2/getpeereid.2 +usr/man/man2/getpeername.2 +usr/man/man2/getpid.2 +usr/man/man2/getpriority.2 +usr/man/man2/getsockname.2 +usr/man/man2/getsockopt.2 +usr/man/man2/gettimeofday.2 +usr/man/man2/getuid.2 +usr/man/man2/intro.2 +usr/man/man2/ioctl.2 +usr/man/man2/kill.2 +usr/man/man2/link.2 +usr/man/man2/listen.2 +usr/man/man2/lseek.2 +usr/man/man2/mkdir.2 +usr/man/man2/mknod.2 +usr/man/man2/mount.2 +usr/man/man2/open.2 +usr/man/man2/pause.2 +usr/man/man2/pipe.2 +usr/man/man2/ptrace.2 +usr/man/man2/read.2 +usr/man/man2/readlink.2 +usr/man/man2/reboot.2 +usr/man/man2/recv.2 +usr/man/man2/recvfrom.2 +usr/man/man2/recvmsg.2 +usr/man/man2/rename.2 +usr/man/man2/rmdir.2 +usr/man/man2/select.2 +usr/man/man2/send.2 +usr/man/man2/sendmsg.2 +usr/man/man2/sendto.2 +usr/man/man2/seteuid.2 +usr/man/man2/setgid.2 +usr/man/man2/setsid.2 +usr/man/man2/setsockopt.2 +usr/man/man2/setuid.2 +usr/man/man2/shutdown.2 +usr/man/man2/sigaction.2 +usr/man/man2/sigpending.2 +usr/man/man2/sigprocmask.2 +usr/man/man2/sigsuspend.2 +usr/man/man2/socket.2 +usr/man/man2/socketpair.2 +usr/man/man2/statvfs.2 +usr/man/man2/svrctl.2 +usr/man/man2/symlink.2 +usr/man/man2/sync.2 +usr/man/man2/time.2 +usr/man/man2/times.2 +usr/man/man2/truncate.2 +usr/man/man2/umask.2 +usr/man/man2/uname.2 +usr/man/man2/unlink.2 +usr/man/man2/utime.2 +usr/man/man2/wait.2 +usr/man/man2/write.2 +usr/man/man3/a64l.3 +usr/man/man3/abort.3 +usr/man/man3/abs.3 +usr/man/man3/acos.3 +usr/man/man3/acosf.3 +usr/man/man3/acosh.3 +usr/man/man3/acoshf.3 +usr/man/man3/addch.3 +usr/man/man3/addchnstr.3 +usr/man/man3/addchstr.3 +usr/man/man3/addnstr.3 +usr/man/man3/addr.3 +usr/man/man3/addstr.3 +usr/man/man3/alarm.3 +usr/man/man3/alloca.3 +usr/man/man3/allocaddrinfo.3 +usr/man/man3/alphasort.3 +usr/man/man3/arc4random.3 +usr/man/man3/archive.3 +usr/man/man3/archive_clear_error.3 +usr/man/man3/archive_compression.3 +usr/man/man3/archive_compression_name.3 +usr/man/man3/archive_copy_error.3 +usr/man/man3/archive_entry.3 +usr/man/man3/archive_entry_acl_add_entry.3 +usr/man/man3/archive_entry_acl_add_entry_w.3 +usr/man/man3/archive_entry_acl_clear.3 +usr/man/man3/archive_entry_acl_count.3 +usr/man/man3/archive_entry_acl_next.3 +usr/man/man3/archive_entry_acl_next_w.3 +usr/man/man3/archive_entry_acl_reset.3 +usr/man/man3/archive_entry_acl_text_w.3 +usr/man/man3/archive_entry_atime.3 +usr/man/man3/archive_entry_atime_nsec.3 +usr/man/man3/archive_entry_clear.3 +usr/man/man3/archive_entry_clone.3 +usr/man/man3/archive_entry_copy_fflags_text.3 +usr/man/man3/archive_entry_copy_fflags_text_w.3 +usr/man/man3/archive_entry_copy_gname.3 +usr/man/man3/archive_entry_copy_gname_w.3 +usr/man/man3/archive_entry_copy_hardlink.3 +usr/man/man3/archive_entry_copy_hardlink_w.3 +usr/man/man3/archive_entry_copy_link.3 +usr/man/man3/archive_entry_copy_link_w.3 +usr/man/man3/archive_entry_copy_pathname_w.3 +usr/man/man3/archive_entry_copy_sourcepath.3 +usr/man/man3/archive_entry_copy_stat.3 +usr/man/man3/archive_entry_copy_symlink.3 +usr/man/man3/archive_entry_copy_symlink_w.3 +usr/man/man3/archive_entry_copy_uname.3 +usr/man/man3/archive_entry_copy_uname_w.3 +usr/man/man3/archive_entry_dev.3 +usr/man/man3/archive_entry_devmajor.3 +usr/man/man3/archive_entry_devminor.3 +usr/man/man3/archive_entry_fflags.3 +usr/man/man3/archive_entry_fflags_text.3 +usr/man/man3/archive_entry_filetype.3 +usr/man/man3/archive_entry_free.3 +usr/man/man3/archive_entry_gid.3 +usr/man/man3/archive_entry_gname.3 +usr/man/man3/archive_entry_hardlink.3 +usr/man/man3/archive_entry_ino.3 +usr/man/man3/archive_entry_mode.3 +usr/man/man3/archive_entry_mtime.3 +usr/man/man3/archive_entry_mtime_nsec.3 +usr/man/man3/archive_entry_new.3 +usr/man/man3/archive_entry_nlink.3 +usr/man/man3/archive_entry_pathname.3 +usr/man/man3/archive_entry_pathname_w.3 +usr/man/man3/archive_entry_rdev.3 +usr/man/man3/archive_entry_rdevmajor.3 +usr/man/man3/archive_entry_rdevminor.3 +usr/man/man3/archive_entry_set_atime.3 +usr/man/man3/archive_entry_set_ctime.3 +usr/man/man3/archive_entry_set_dev.3 +usr/man/man3/archive_entry_set_devmajor.3 +usr/man/man3/archive_entry_set_devminor.3 +usr/man/man3/archive_entry_set_fflags.3 +usr/man/man3/archive_entry_set_filetype.3 +usr/man/man3/archive_entry_set_gid.3 +usr/man/man3/archive_entry_set_gname.3 +usr/man/man3/archive_entry_set_hardlink.3 +usr/man/man3/archive_entry_set_link.3 +usr/man/man3/archive_entry_set_mode.3 +usr/man/man3/archive_entry_set_mtime.3 +usr/man/man3/archive_entry_set_pathname.3 +usr/man/man3/archive_entry_set_rdevmajor.3 +usr/man/man3/archive_entry_set_rdevminor.3 +usr/man/man3/archive_entry_set_size.3 +usr/man/man3/archive_entry_set_symlink.3 +usr/man/man3/archive_entry_set_uid.3 +usr/man/man3/archive_entry_set_uname.3 +usr/man/man3/archive_entry_size.3 +usr/man/man3/archive_entry_sourcepath.3 +usr/man/man3/archive_entry_stat.3 +usr/man/man3/archive_entry_symlink.3 +usr/man/man3/archive_entry_uid.3 +usr/man/man3/archive_entry_uname.3 +usr/man/man3/archive_errno.3 +usr/man/man3/archive_error_string.3 +usr/man/man3/archive_file_count.3 +usr/man/man3/archive_format.3 +usr/man/man3/archive_format_name.3 +usr/man/man3/archive_read.3 +usr/man/man3/archive_read_close.3 +usr/man/man3/archive_read_data.3 +usr/man/man3/archive_read_data_block.3 +usr/man/man3/archive_read_data_into_buffer.3 +usr/man/man3/archive_read_data_into_fd.3 +usr/man/man3/archive_read_data_skip.3 +usr/man/man3/archive_read_disk.3 +usr/man/man3/archive_read_disk_gname.3 +usr/man/man3/archive_read_disk_new.3 +usr/man/man3/archive_read_disk_set_entry_from_file.3 +usr/man/man3/archive_read_disk_set_gname_lookup.3 +usr/man/man3/archive_read_disk_set_standard_lookup.3 +usr/man/man3/archive_read_disk_set_symlink_hybrid.3 +usr/man/man3/archive_read_disk_set_symlink_logical.3 +usr/man/man3/archive_read_disk_set_symlink_physical.3 +usr/man/man3/archive_read_disk_set_uname_lookup.3 +usr/man/man3/archive_read_disk_uname.3 +usr/man/man3/archive_read_extract2.3 +usr/man/man3/archive_read_extract.3 +usr/man/man3/archive_read_extract_set_progress_callback.3 +usr/man/man3/archive_read_finish.3 +usr/man/man3/archive_read_new.3 +usr/man/man3/archive_read_next_header2.3 +usr/man/man3/archive_read_next_header.3 +usr/man/man3/archive_read_open2.3 +usr/man/man3/archive_read_open.3 +usr/man/man3/archive_read_open_fd.3 +usr/man/man3/archive_read_open_filename.3 +usr/man/man3/archive_read_open_memory.3 +usr/man/man3/archive_read_set_filter_options.3 +usr/man/man3/archive_read_set_format_options.3 +usr/man/man3/archive_read_set_options.3 +usr/man/man3/archive_read_support_compression_all.3 +usr/man/man3/archive_read_support_compression_bzip2.3 +usr/man/man3/archive_read_support_compression_compress.3 +usr/man/man3/archive_read_support_compression_gzip.3 +usr/man/man3/archive_read_support_compression_lzma.3 +usr/man/man3/archive_read_support_compression_none.3 +usr/man/man3/archive_read_support_compression_program.3 +usr/man/man3/archive_read_support_compression_program_signature.3 +usr/man/man3/archive_read_support_compression_xz.3 +usr/man/man3/archive_read_support_format_all.3 +usr/man/man3/archive_read_support_format_ar.3 +usr/man/man3/archive_read_support_format_cpio.3 +usr/man/man3/archive_read_support_format_empty.3 +usr/man/man3/archive_read_support_format_iso9660.3 +usr/man/man3/archive_read_support_format_mtree.3 +usr/man/man3/archive_read_support_format_raw.3 +usr/man/man3/archive_read_support_format_tar.3 +usr/man/man3/archive_read_support_format_zip.3 +usr/man/man3/archive_set_error.3 +usr/man/man3/archive_util.3 +usr/man/man3/archive_write.3 +usr/man/man3/archive_write_close.3 +usr/man/man3/archive_write_data.3 +usr/man/man3/archive_write_disk.3 +usr/man/man3/archive_write_disk_new.3 +usr/man/man3/archive_write_disk_set_group_lookup.3 +usr/man/man3/archive_write_disk_set_options.3 +usr/man/man3/archive_write_disk_set_skip_file.3 +usr/man/man3/archive_write_disk_set_standard_lookup.3 +usr/man/man3/archive_write_disk_set_user_lookup.3 +usr/man/man3/archive_write_finish.3 +usr/man/man3/archive_write_finish_entry.3 +usr/man/man3/archive_write_get_bytes_per_block.3 +usr/man/man3/archive_write_header.3 +usr/man/man3/archive_write_new.3 +usr/man/man3/archive_write_open.3 +usr/man/man3/archive_write_open_fd.3 +usr/man/man3/archive_write_open_FILE.3 +usr/man/man3/archive_write_open_filename.3 +usr/man/man3/archive_write_open_memory.3 +usr/man/man3/archive_write_options.3 +usr/man/man3/archive_write_set_bytes_in_last_block.3 +usr/man/man3/archive_write_set_bytes_per_block.3 +usr/man/man3/archive_write_set_callbacks.3 +usr/man/man3/archive_write_set_compression_bzip2.3 +usr/man/man3/archive_write_set_compression_compress.3 +usr/man/man3/archive_write_set_compression_gzip.3 +usr/man/man3/archive_write_set_compression_none.3 +usr/man/man3/archive_write_set_compression_program.3 +usr/man/man3/archive_write_set_compressor_options.3 +usr/man/man3/archive_write_set_format_cpio.3 +usr/man/man3/archive_write_set_format_pax.3 +usr/man/man3/archive_write_set_format_pax_restricted.3 +usr/man/man3/archive_write_set_format_shar.3 +usr/man/man3/archive_write_set_format_shar_binary.3 +usr/man/man3/archive_write_set_format_ustar.3 +usr/man/man3/asctime.3 +usr/man/man3/asctime_r.3 +usr/man/man3/asin.3 +usr/man/man3/asinf.3 +usr/man/man3/asinh.3 +usr/man/man3/asinhf.3 +usr/man/man3/asprintf.3 +usr/man/man3/assume_default_colors.3 +usr/man/man3/atan2.3 +usr/man/man3/atan2f.3 +usr/man/man3/atan.3 +usr/man/man3/atanf.3 +usr/man/man3/atanh.3 +usr/man/man3/atanhf.3 +usr/man/man3/atexit.3 +usr/man/man3/atof.3 +usr/man/man3/atoi.3 +usr/man/man3/atol.3 +usr/man/man3/atoll.3 +usr/man/man3/atomic_add.3 +usr/man/man3/atomic_add_32.3 +usr/man/man3/atomic_add_32_nv.3 +usr/man/man3/atomic_add_64.3 +usr/man/man3/atomic_add_64_nv.3 +usr/man/man3/atomic_add_int.3 +usr/man/man3/atomic_add_int_nv.3 +usr/man/man3/atomic_add_long.3 +usr/man/man3/atomic_add_long_nv.3 +usr/man/man3/atomic_add_ptr.3 +usr/man/man3/atomic_add_ptr_nv.3 +usr/man/man3/atomic_and.3 +usr/man/man3/atomic_and_32.3 +usr/man/man3/atomic_and_32_nv.3 +usr/man/man3/atomic_and_64.3 +usr/man/man3/atomic_and_64_nv.3 +usr/man/man3/atomic_and_uint.3 +usr/man/man3/atomic_and_uint_nv.3 +usr/man/man3/atomic_and_ulong.3 +usr/man/man3/atomic_and_ulong_nv.3 +usr/man/man3/atomic_cas.3 +usr/man/man3/atomic_cas_32.3 +usr/man/man3/atomic_cas_32_ni.3 +usr/man/man3/atomic_cas_64.3 +usr/man/man3/atomic_cas_64_ni.3 +usr/man/man3/atomic_cas_ptr.3 +usr/man/man3/atomic_cas_ptr_ni.3 +usr/man/man3/atomic_cas_uint.3 +usr/man/man3/atomic_cas_uint_ni.3 +usr/man/man3/atomic_cas_ulong.3 +usr/man/man3/atomic_cas_ulong_ni.3 +usr/man/man3/atomic_dec.3 +usr/man/man3/atomic_dec_32.3 +usr/man/man3/atomic_dec_32_nv.3 +usr/man/man3/atomic_dec_64.3 +usr/man/man3/atomic_dec_64_nv.3 +usr/man/man3/atomic_dec_ptr.3 +usr/man/man3/atomic_dec_ptr_nv.3 +usr/man/man3/atomic_dec_uint.3 +usr/man/man3/atomic_dec_uint_nv.3 +usr/man/man3/atomic_dec_ulong.3 +usr/man/man3/atomic_dec_ulong_nv.3 +usr/man/man3/atomic_inc.3 +usr/man/man3/atomic_inc_32.3 +usr/man/man3/atomic_inc_32_nv.3 +usr/man/man3/atomic_inc_64.3 +usr/man/man3/atomic_inc_64_nv.3 +usr/man/man3/atomic_inc_ptr.3 +usr/man/man3/atomic_inc_ptr_nv.3 +usr/man/man3/atomic_inc_uint.3 +usr/man/man3/atomic_inc_uint_nv.3 +usr/man/man3/atomic_inc_ulong.3 +usr/man/man3/atomic_inc_ulong_nv.3 +usr/man/man3/atomic_ops.3 +usr/man/man3/atomic_or.3 +usr/man/man3/atomic_or_32.3 +usr/man/man3/atomic_or_32_nv.3 +usr/man/man3/atomic_or_64.3 +usr/man/man3/atomic_or_64_nv.3 +usr/man/man3/atomic_or_uint.3 +usr/man/man3/atomic_or_uint_nv.3 +usr/man/man3/atomic_or_ulong.3 +usr/man/man3/atomic_or_ulong_nv.3 +usr/man/man3/atomic_swap.3 +usr/man/man3/atomic_swap_32.3 +usr/man/man3/atomic_swap_64.3 +usr/man/man3/atomic_swap_ptr.3 +usr/man/man3/atomic_swap_uint.3 +usr/man/man3/atomic_swap_ulong.3 +usr/man/man3/attr_get.3 +usr/man/man3/attr_off.3 +usr/man/man3/attroff.3 +usr/man/man3/attr_on.3 +usr/man/man3/attron.3 +usr/man/man3/attr_set.3 +usr/man/man3/attrset.3 +usr/man/man3/basename.3 +usr/man/man3/bcmp.3 +usr/man/man3/bcopy.3 +usr/man/man3/beep.3 +usr/man/man3/bkgd.3 +usr/man/man3/bkgdset.3 +usr/man/man3/bm.3 +usr/man/man3/bm_comp.3 +usr/man/man3/bm_exec.3 +usr/man/man3/bm_free.3 +usr/man/man3/border.3 +usr/man/man3/box.3 +usr/man/man3/bsearch.3 +usr/man/man3/bstring.3 +usr/man/man3/bswap16.3 +usr/man/man3/bswap.3 +usr/man/man3/bswap32.3 +usr/man/man3/bswap64.3 +usr/man/man3/btowc.3 +usr/man/man3/btree.3 +usr/man/man3/__builtin_object_size.3 +usr/man/man3/byteorder.3 +usr/man/man3/bzero.3 +usr/man/man3/cabs.3 +usr/man/man3/cabsf.3 +usr/man/man3/cacos.3 +usr/man/man3/cacosf.3 +usr/man/man3/cacosh.3 +usr/man/man3/cacoshf.3 +usr/man/man3/calloc.3 +usr/man/man3/can_change_color.3 +usr/man/man3/carg.3 +usr/man/man3/cargf.3 +usr/man/man3/casin.3 +usr/man/man3/casinf.3 +usr/man/man3/casinh.3 +usr/man/man3/casinhf.3 +usr/man/man3/catan.3 +usr/man/man3/catanf.3 +usr/man/man3/catanh.3 +usr/man/man3/catanhf.3 +usr/man/man3/catclose.3 +usr/man/man3/catgets.3 +usr/man/man3/catopen.3 +usr/man/man3/cbreak.3 +usr/man/man3/cbrt.3 +usr/man/man3/cbrtf.3 +usr/man/man3/ccos.3 +usr/man/man3/ccosf.3 +usr/man/man3/ccosh.3 +usr/man/man3/ccoshf.3 +usr/man/man3/cdbr.3 +usr/man/man3/cdbr_close.3 +usr/man/man3/cdbr_entries.3 +usr/man/man3/cdbr_find.3 +usr/man/man3/cdbr_get.3 +usr/man/man3/cdbr_open.3 +usr/man/man3/cdbw.3 +usr/man/man3/cdbw_close.3 +usr/man/man3/cdbw_open.3 +usr/man/man3/cdbw_output.3 +usr/man/man3/cdbw_put.3 +usr/man/man3/cdbw_put_data.3 +usr/man/man3/cdbw_put_key.3 +usr/man/man3/ceil.3 +usr/man/man3/ceilf.3 +usr/man/man3/cexp.3 +usr/man/man3/cexpf.3 +usr/man/man3/cfgetispeed.3 +usr/man/man3/cfgetospeed.3 +usr/man/man3/cfmakeraw.3 +usr/man/man3/cfsetispeed.3 +usr/man/man3/cfsetospeed.3 +usr/man/man3/cfsetspeed.3 +usr/man/man3/cgetcap.3 +usr/man/man3/cgetclose.3 +usr/man/man3/cgetent.3 +usr/man/man3/cgetfirst.3 +usr/man/man3/cgetmatch.3 +usr/man/man3/cgetnext.3 +usr/man/man3/cgetnum.3 +usr/man/man3/cgetset.3 +usr/man/man3/cgetstr.3 +usr/man/man3/cgetustr.3 +usr/man/man3/chgat.3 +usr/man/man3/cimag.3 +usr/man/man3/cimagf.3 +usr/man/man3/cimagl.3 +usr/man/man3/clear.3 +usr/man/man3/clearerr.3 +usr/man/man3/clearok.3 +usr/man/man3/clock.3 +usr/man/man3/clog.3 +usr/man/man3/clogf.3 +usr/man/man3/closedir.3 +usr/man/man3/closefrom.3 +usr/man/man3/closelog.3 +usr/man/man3/closelog_r.3 +usr/man/man3/clrtobot.3 +usr/man/man3/clrtoeol.3 +usr/man/man3/color_content.3 +usr/man/man3/color_set.3 +usr/man/man3/confstr.3 +usr/man/man3/conj.3 +usr/man/man3/conjf.3 +usr/man/man3/copysign.3 +usr/man/man3/copysignf.3 +usr/man/man3/copysignl.3 +usr/man/man3/copywin.3 +usr/man/man3/cos.3 +usr/man/man3/cosf.3 +usr/man/man3/cosh.3 +usr/man/man3/coshf.3 +usr/man/man3/cpow.3 +usr/man/man3/cpowf.3 +usr/man/man3/cproj.3 +usr/man/man3/cpuset.3 +usr/man/man3/cpuset_clr.3 +usr/man/man3/cpuset_create.3 +usr/man/man3/cpuset_destroy.3 +usr/man/man3/cpuset_isset.3 +usr/man/man3/cpuset_set.3 +usr/man/man3/cpuset_size.3 +usr/man/man3/cpuset_zero.3 +usr/man/man3/creal.3 +usr/man/man3/crealf.3 +usr/man/man3/creall.3 +usr/man/man3/creat.3 +usr/man/man3/crypt.3 +usr/man/man3/csin.3 +usr/man/man3/csinf.3 +usr/man/man3/csinh.3 +usr/man/man3/csinhf.3 +usr/man/man3/csqrt.3 +usr/man/man3/csqrtf.3 +usr/man/man3/ctan.3 +usr/man/man3/ctanf.3 +usr/man/man3/ctanh.3 +usr/man/man3/ctanhf.3 +usr/man/man3/ctermid.3 +usr/man/man3/ctime.3 +usr/man/man3/ctime_r.3 +usr/man/man3/ctime_rz.3 +usr/man/man3/ctype.3 +usr/man/man3/curses.3 +usr/man/man3/curses_addch.3 +usr/man/man3/curses_addchstr.3 +usr/man/man3/curses_addstr.3 +usr/man/man3/curses_attributes.3 +usr/man/man3/curses_background.3 +usr/man/man3/curses_border.3 +usr/man/man3/curses_chgat.3 +usr/man/man3/curses_clear.3 +usr/man/man3/curses_color.3 +usr/man/man3/curses_cursor.3 +usr/man/man3/curses_default_colors.3 +usr/man/man3/curses_delch.3 +usr/man/man3/curses_deleteln.3 +usr/man/man3/curses_echochar.3 +usr/man/man3/curses_fileio.3 +usr/man/man3/curses_inch.3 +usr/man/man3/curses_input.3 +usr/man/man3/curses_insdelln.3 +usr/man/man3/curses_insertch.3 +usr/man/man3/curses_insertln.3 +usr/man/man3/curses_keyname.3 +usr/man/man3/curses_line.3 +usr/man/man3/curses_pad.3 +usr/man/man3/curses_print.3 +usr/man/man3/curses_refresh.3 +usr/man/man3/curses_scanw.3 +usr/man/man3/curses_screen.3 +usr/man/man3/curses_scroll.3 +usr/man/man3/curses_standout.3 +usr/man/man3/curses_termcap.3 +usr/man/man3/curses_touch.3 +usr/man/man3/curses_tty.3 +usr/man/man3/curses_underscore.3 +usr/man/man3/curses_window.3 +usr/man/man3/curs_set.3 +usr/man/man3/daemon.3 +usr/man/man3/daylight.3 +usr/man/man3/db.3 +usr/man/man3/dbm_clearerr.3 +usr/man/man3/dbm_close.3 +usr/man/man3/dbm_delete.3 +usr/man/man3/dbm_dirfno.3 +usr/man/man3/dbm_error.3 +usr/man/man3/dbm_fetch.3 +usr/man/man3/dbm_firstkey.3 +usr/man/man3/dbm_nextkey.3 +usr/man/man3/dbm_open.3 +usr/man/man3/dbm_store.3 +usr/man/man3/dbopen.3 +usr/man/man3/def_prog_mode.3 +usr/man/man3/def_shell_mode.3 +usr/man/man3/dehumanize_number.3 +usr/man/man3/delay_output.3 +usr/man/man3/delch.3 +usr/man/man3/del_curterm.3 +usr/man/man3/deleteln.3 +usr/man/man3/delscreen.3 +usr/man/man3/delwin.3 +usr/man/man3/derwin.3 +usr/man/man3/devname.3 +usr/man/man3/difftime.3 +usr/man/man3/directory.3 +usr/man/man3/dirfd.3 +usr/man/man3/dirname.3 +usr/man/man3/div.3 +usr/man/man3/dn_comp.3 +usr/man/man3/dn_expand.3 +usr/man/man3/doupdate.3 +usr/man/man3/dprintf.3 +usr/man/man3/drand48.3 +usr/man/man3/dupwin.3 +usr/man/man3/easprintf.3 +usr/man/man3/ecalloc.3 +usr/man/man3/echo.3 +usr/man/man3/echochar.3 +usr/man/man3/efopen.3 +usr/man/man3/efun.3 +usr/man/man3/elf.3 +usr/man/man3/elf32_checksum.3 +usr/man/man3/elf32_fsize.3 +usr/man/man3/elf32_getehdr.3 +usr/man/man3/elf32_getphdr.3 +usr/man/man3/elf32_getshdr.3 +usr/man/man3/elf32_newehdr.3 +usr/man/man3/elf32_newphdr.3 +usr/man/man3/elf32_xlatetof.3 +usr/man/man3/elf32_xlatetom.3 +usr/man/man3/elf64_checksum.3 +usr/man/man3/elf64_fsize.3 +usr/man/man3/elf64_getehdr.3 +usr/man/man3/elf64_getphdr.3 +usr/man/man3/elf64_getshdr.3 +usr/man/man3/elf64_newehdr.3 +usr/man/man3/elf64_newphdr.3 +usr/man/man3/elf64_xlatetof.3 +usr/man/man3/elf64_xlatetom.3 +usr/man/man3/elf_begin.3 +usr/man/man3/elf_cntl.3 +usr/man/man3/elf_end.3 +usr/man/man3/elf_errmsg.3 +usr/man/man3/elf_errno.3 +usr/man/man3/elf_fill.3 +usr/man/man3/elf_flagarhdr.3 +usr/man/man3/elf_flagdata.3 +usr/man/man3/elf_flagehdr.3 +usr/man/man3/elf_flagelf.3 +usr/man/man3/elf_flagphdr.3 +usr/man/man3/elf_flagscn.3 +usr/man/man3/elf_flagshdr.3 +usr/man/man3/elf_getarhdr.3 +usr/man/man3/elf_getarsym.3 +usr/man/man3/elf_getbase.3 +usr/man/man3/elf_getdata.3 +usr/man/man3/elf_getident.3 +usr/man/man3/elf_getphdrnum.3 +usr/man/man3/elf_getphnum.3 +usr/man/man3/elf_getscn.3 +usr/man/man3/elf_getshdrnum.3 +usr/man/man3/elf_getshdrstrndx.3 +usr/man/man3/elf_getshnum.3 +usr/man/man3/elf_getshstrndx.3 +usr/man/man3/elf_hash.3 +usr/man/man3/elf_kind.3 +usr/man/man3/elf_memory.3 +usr/man/man3/elf_ndxscn.3 +usr/man/man3/elf_newdata.3 +usr/man/man3/elf_newscn.3 +usr/man/man3/elf_next.3 +usr/man/man3/elf_nextscn.3 +usr/man/man3/elf_rand.3 +usr/man/man3/elf_rawdata.3 +usr/man/man3/elf_rawfile.3 +usr/man/man3/elf_setshstrndx.3 +usr/man/man3/elf_strptr.3 +usr/man/man3/elf_update.3 +usr/man/man3/elf_version.3 +usr/man/man3/emalloc.3 +usr/man/man3/encrypt.3 +usr/man/man3/endfsent.3 +usr/man/man3/endgrent.3 +usr/man/man3/endhostent.3 +usr/man/man3/endnetent.3 +usr/man/man3/endnetgrent.3 +usr/man/man3/endprotoent.3 +usr/man/man3/endpwent.3 +usr/man/man3/endservent.3 +usr/man/man3/endttyent.3 +usr/man/man3/endusershell.3 +usr/man/man3/endutxent.3 +usr/man/man3/endwin.3 +usr/man/man3/erand48.3 +usr/man/man3/erase.3 +usr/man/man3/erasechar.3 +usr/man/man3/erealloc.3 +usr/man/man3/erf.3 +usr/man/man3/erfc.3 +usr/man/man3/erfcf.3 +usr/man/man3/erff.3 +usr/man/man3/err.3 +usr/man/man3/errx.3 +usr/man/man3/esetfunc.3 +usr/man/man3/estrdup.3 +usr/man/man3/estrlcat.3 +usr/man/man3/estrlcpy.3 +usr/man/man3/estrndup.3 +usr/man/man3/ether_aton.3 +usr/man/man3/ether_hostton.3 +usr/man/man3/ether_line.3 +usr/man/man3/ether_ntoa.3 +usr/man/man3/ether_ntohost.3 +usr/man/man3/ethers.3 +usr/man/man3/evasprintf.3 +usr/man/man3/exec.3 +usr/man/man3/execl.3 +usr/man/man3/execle.3 +usr/man/man3/execlp.3 +usr/man/man3/exect.3 +usr/man/man3/execv.3 +usr/man/man3/execvp.3 +usr/man/man3/exit.3 +usr/man/man3/exp2.3 +usr/man/man3/exp2f.3 +usr/man/man3/exp.3 +usr/man/man3/expf.3 +usr/man/man3/expm1.3 +usr/man/man3/expm1f.3 +usr/man/man3/extattr.3 +usr/man/man3/extattr_namespace_to_string.3 +usr/man/man3/extattr_string_to_namespace.3 +usr/man/man3/fabs.3 +usr/man/man3/fabsf.3 +usr/man/man3/fclose.3 +usr/man/man3/fdim.3 +usr/man/man3/fdimf.3 +usr/man/man3/fdiml.3 +usr/man/man3/fdopen.3 +usr/man/man3/fdopendir.3 +usr/man/man3/feclearexcept.3 +usr/man/man3/fedisableexcept.3 +usr/man/man3/feenableexcept.3 +usr/man/man3/fegetenv.3 +usr/man/man3/fegetexcept.3 +usr/man/man3/fegetexceptflag.3 +usr/man/man3/fegetround.3 +usr/man/man3/feholdexcept.3 +usr/man/man3/fenv.3 +usr/man/man3/feof.3 +usr/man/man3/feraiseexcept.3 +usr/man/man3/ferror.3 +usr/man/man3/fesetenv.3 +usr/man/man3/fesetexceptflag.3 +usr/man/man3/fesetround.3 +usr/man/man3/fetestexcept.3 +usr/man/man3/feupdateenv.3 +usr/man/man3/fflush.3 +usr/man/man3/ffs.3 +usr/man/man3/fgetc.3 +usr/man/man3/fgetln.3 +usr/man/man3/fgetpos.3 +usr/man/man3/fgets.3 +usr/man/man3/fgetwc.3 +usr/man/man3/fgetwln.3 +usr/man/man3/fgetws.3 +usr/man/man3/fileno.3 +usr/man/man3/finite.3 +usr/man/man3/finitef.3 +usr/man/man3/flags_to_string.3 +usr/man/man3/flash.3 +usr/man/man3/flockfile.3 +usr/man/man3/floor.3 +usr/man/man3/floorf.3 +usr/man/man3/flushinp.3 +usr/man/man3/flushok.3 +usr/man/man3/fmax.3 +usr/man/man3/fmaxf.3 +usr/man/man3/fmaxl.3 +usr/man/man3/fmemopen.3 +usr/man/man3/fmin.3 +usr/man/man3/fminf.3 +usr/man/man3/fminl.3 +usr/man/man3/fmod.3 +usr/man/man3/fmodf.3 +usr/man/man3/fmtcheck.3 +usr/man/man3/fmtmsg.3 +usr/man/man3/fnmatch.3 +usr/man/man3/fopen.3 +usr/man/man3/forkpty.3 +usr/man/man3/fparseln.3 +usr/man/man3/fpclassify.3 +usr/man/man3/fpgetmask.3 +usr/man/man3/fpgetround.3 +usr/man/man3/fpgetsticky.3 +usr/man/man3/fp_nquery.3 +usr/man/man3/fp_resstat.3 +usr/man/man3/fprintf.3 +usr/man/man3/fpsetmask.3 +usr/man/man3/fpsetround.3 +usr/man/man3/fpsetsticky.3 +usr/man/man3/fpurge.3 +usr/man/man3/fputc.3 +usr/man/man3/fputs.3 +usr/man/man3/fputwc.3 +usr/man/man3/fputws.3 +usr/man/man3/fread.3 +usr/man/man3/free.3 +usr/man/man3/freeaddrinfo.3 +usr/man/man3/freeifaddrs.3 +usr/man/man3/freopen.3 +usr/man/man3/frexp.3 +usr/man/man3/fropen.3 +usr/man/man3/fscanf.3 +usr/man/man3/fseek.3 +usr/man/man3/fseeko.3 +usr/man/man3/fsetpos.3 +usr/man/man3/ftell.3 +usr/man/man3/ftello.3 +usr/man/man3/ftok.3 +usr/man/man3/ftrylockfile.3 +usr/man/man3/fts.3 +usr/man/man3/fts_children.3 +usr/man/man3/fts_close.3 +usr/man/man3/fts_open.3 +usr/man/man3/fts_read.3 +usr/man/man3/fts_set.3 +usr/man/man3/ftw.3 +usr/man/man3/fullname.3 +usr/man/man3/funlockfile.3 +usr/man/man3/funopen.3 +usr/man/man3/fwide.3 +usr/man/man3/fwopen.3 +usr/man/man3/fwprintf.3 +usr/man/man3/fwrite.3 +usr/man/man3/fwscanf.3 +usr/man/man3/gai_strerror.3 +usr/man/man3/gamma.3 +usr/man/man3/gammaf.3 +usr/man/man3/gammaf_r.3 +usr/man/man3/gamma_r.3 +usr/man/man3/gelf.3 +usr/man/man3/gelf_checksum.3 +usr/man/man3/gelf_fsize.3 +usr/man/man3/gelf_getcap.3 +usr/man/man3/gelf_getclass.3 +usr/man/man3/gelf_getdyn.3 +usr/man/man3/gelf_getehdr.3 +usr/man/man3/gelf_getmove.3 +usr/man/man3/gelf_getphdr.3 +usr/man/man3/gelf_getrel.3 +usr/man/man3/gelf_getrela.3 +usr/man/man3/gelf_getshdr.3 +usr/man/man3/gelf_getsym.3 +usr/man/man3/gelf_getsyminfo.3 +usr/man/man3/gelf_getsymshndx.3 +usr/man/man3/gelf_newehdr.3 +usr/man/man3/gelf_newphdr.3 +usr/man/man3/gelf_update_cap.3 +usr/man/man3/gelf_update_dyn.3 +usr/man/man3/gelf_update_ehdr.3 +usr/man/man3/gelf_update_move.3 +usr/man/man3/gelf_update_phdr.3 +usr/man/man3/gelf_update_rel.3 +usr/man/man3/gelf_update_rela.3 +usr/man/man3/gelf_update_shdr.3 +usr/man/man3/gelf_update_sym.3 +usr/man/man3/gelf_update_syminfo.3 +usr/man/man3/gelf_update_symshndx.3 +usr/man/man3/gelf_xlatetof.3 +usr/man/man3/gelf_xlatetom.3 +usr/man/man3/getaddrinfo.3 +usr/man/man3/getattrs.3 +usr/man/man3/getbegx.3 +usr/man/man3/getbegy.3 +usr/man/man3/getbkgd.3 +usr/man/man3/getbootfile.3 +usr/man/man3/getbsize.3 +usr/man/man3/getc.3 +usr/man/man3/getcap.3 +usr/man/man3/getch.3 +usr/man/man3/getchar.3 +usr/man/man3/getchar_unlocked.3 +usr/man/man3/getc_unlocked.3 +usr/man/man3/getcurx.3 +usr/man/man3/getcury.3 +usr/man/man3/getcwd.3 +usr/man/man3/getdate.3 +usr/man/man3/getdate_err.3 +usr/man/man3/getdelim.3 +usr/man/man3/getdevmajor.3 +usr/man/man3/getdiskbyname.3 +usr/man/man3/getdomainname.3 +usr/man/man3/getdtablesize.3 +usr/man/man3/getenv.3 +usr/man/man3/getenv_r.3 +usr/man/man3/getfsent.3 +usr/man/man3/getfsfile.3 +usr/man/man3/getfsspec.3 +usr/man/man3/getgrent.3 +usr/man/man3/getgrent_r.3 +usr/man/man3/getgrgid.3 +usr/man/man3/getgrgid_r.3 +usr/man/man3/getgrnam.3 +usr/man/man3/getgrnam_r.3 +usr/man/man3/getgrouplist.3 +usr/man/man3/getgroupmembership.3 +usr/man/man3/gethostbyaddr.3 +usr/man/man3/gethostbyname2.3 +usr/man/man3/gethostbyname.3 +usr/man/man3/gethostent.3 +usr/man/man3/gethostid.3 +usr/man/man3/gethostname.3 +usr/man/man3/getifaddrs.3 +usr/man/man3/getlastlogx.3 +usr/man/man3/getline.3 +usr/man/man3/getloadavg.3 +usr/man/man3/getmaxx.3 +usr/man/man3/getmaxy.3 +usr/man/man3/getmaxyx.3 +usr/man/man3/getmntinfo.3 +usr/man/man3/getmntopts.3 +usr/man/man3/getmode.3 +usr/man/man3/getnameinfo.3 +usr/man/man3/getnetbyaddr.3 +usr/man/man3/getnetbyname.3 +usr/man/man3/getnetent.3 +usr/man/man3/getnetgrent.3 +usr/man/man3/getnstr.3 +usr/man/man3/getopt.3 +usr/man/man3/getopt_long.3 +usr/man/man3/getpagesize.3 +usr/man/man3/getparx.3 +usr/man/man3/getpary.3 +usr/man/man3/getparyx.3 +usr/man/man3/getpass.3 +usr/man/man3/getpeereid.3 +usr/man/man3/getprogname.3 +usr/man/man3/getprotobyname.3 +usr/man/man3/getprotobynumber.3 +usr/man/man3/getprotoent.3 +usr/man/man3/getpwent.3 +usr/man/man3/getpwent_r.3 +usr/man/man3/getpwnam.3 +usr/man/man3/getpwnam_r.3 +usr/man/man3/getpwuid.3 +usr/man/man3/getpwuid_r.3 +usr/man/man3/gets.3 +usr/man/man3/getservbyname.3 +usr/man/man3/getservbyport.3 +usr/man/man3/getservent.3 +usr/man/man3/getstr.3 +usr/man/man3/getsubopt.3 +usr/man/man3/gettmode.3 +usr/man/man3/getttyent.3 +usr/man/man3/getttynam.3 +usr/man/man3/getusershell.3 +usr/man/man3/getutmp.3 +usr/man/man3/getutmpx.3 +usr/man/man3/getutxent.3 +usr/man/man3/getutxid.3 +usr/man/man3/getutxline.3 +usr/man/man3/getw.3 +usr/man/man3/getwc.3 +usr/man/man3/getwchar.3 +usr/man/man3/getwd.3 +usr/man/man3/getwin.3 +usr/man/man3/getyx.3 +usr/man/man3/gid_from_group.3 +usr/man/man3/glob.3 +usr/man/man3/globfree.3 +usr/man/man3/glob_pattern_p.3 +usr/man/man3/gmtime.3 +usr/man/man3/gmtime_r.3 +usr/man/man3/grantpt.3 +usr/man/man3/group_from_gid.3 +usr/man/man3/halfdelay.3 +usr/man/man3/has_colors.3 +usr/man/man3/hash.3 +usr/man/man3/has_ic.3 +usr/man/man3/has_il.3 +usr/man/man3/hcreate.3 +usr/man/man3/hdestroy.3 +usr/man/man3/heapsort.3 +usr/man/man3/herror.3 +usr/man/man3/hesiod.3 +usr/man/man3/hesiod_end.3 +usr/man/man3/hesiod_free_list.3 +usr/man/man3/hesiod_init.3 +usr/man/man3/hesiod_resolve.3 +usr/man/man3/hesiod_to_bind.3 +usr/man/man3/hline.3 +usr/man/man3/hostalias.3 +usr/man/man3/hsearch.3 +usr/man/man3/hstrerror.3 +usr/man/man3/htonl.3 +usr/man/man3/htons.3 +usr/man/man3/humanize_number.3 +usr/man/man3/hypot.3 +usr/man/man3/hypotf.3 +usr/man/man3/iconv.3 +usr/man/man3/iconv_close.3 +usr/man/man3/iconv_open.3 +usr/man/man3/idcok.3 +usr/man/man3/idlok.3 +usr/man/man3/ieee.3 +usr/man/man3/ieee_test.3 +usr/man/man3/if_freenameindex.3 +usr/man/man3/if_indextoname.3 +usr/man/man3/if_nameindex.3 +usr/man/man3/if_nametoindex.3 +usr/man/man3/ilogb.3 +usr/man/man3/ilogbf.3 +usr/man/man3/imaxabs.3 +usr/man/man3/imaxdiv.3 +usr/man/man3/inch.3 +usr/man/man3/inchnstr.3 +usr/man/man3/inchstr.3 +usr/man/man3/index.3 +usr/man/man3/inet.3 +usr/man/man3/inet6_opt_append.3 +usr/man/man3/inet6_opt_find.3 +usr/man/man3/inet6_opt_finish.3 +usr/man/man3/inet6_opt_get_val.3 +usr/man/man3/inet6_opt_init.3 +usr/man/man3/inet6_option_alloc.3 +usr/man/man3/inet6_option_append.3 +usr/man/man3/inet6_option_find.3 +usr/man/man3/inet6_option_init.3 +usr/man/man3/inet6_option_next.3 +usr/man/man3/inet6_option_space.3 +usr/man/man3/inet6_opt_next.3 +usr/man/man3/inet6_opt_set_val.3 +usr/man/man3/inet6_rth_add.3 +usr/man/man3/inet6_rthdr_add.3 +usr/man/man3/inet6_rthdr_getaddr.3 +usr/man/man3/inet6_rthdr_getflags.3 +usr/man/man3/inet6_rthdr_init.3 +usr/man/man3/inet6_rthdr_lasthop.3 +usr/man/man3/inet6_rthdr_reverse.3 +usr/man/man3/inet6_rthdr_segments.3 +usr/man/man3/inet6_rthdr_space.3 +usr/man/man3/inet6_rth_getaddr.3 +usr/man/man3/inet6_rth_init.3 +usr/man/man3/inet6_rth_reverse.3 +usr/man/man3/inet6_rth_segments.3 +usr/man/man3/inet6_rth_space.3 +usr/man/man3/inet_addr.3 +usr/man/man3/inet_aton.3 +usr/man/man3/inet_lnaof.3 +usr/man/man3/inet_makeaddr.3 +usr/man/man3/inet_net.3 +usr/man/man3/inet_net_ntop.3 +usr/man/man3/inet_netof.3 +usr/man/man3/inet_net_pton.3 +usr/man/man3/inet_network.3 +usr/man/man3/inet_ntoa.3 +usr/man/man3/inet_ntop.3 +usr/man/man3/inet_pton.3 +usr/man/man3/init_color.3 +usr/man/man3/initgroups.3 +usr/man/man3/init_pair.3 +usr/man/man3/initscr.3 +usr/man/man3/initstate.3 +usr/man/man3/innetgr.3 +usr/man/man3/innstr.3 +usr/man/man3/insch.3 +usr/man/man3/insdelln.3 +usr/man/man3/insertln.3 +usr/man/man3/insque.3 +usr/man/man3/instr.3 +usr/man/man3/intrflush.3 +usr/man/man3/iruserok.3 +usr/man/man3/iruserok_sa.3 +usr/man/man3/isalnum.3 +usr/man/man3/isalpha.3 +usr/man/man3/isascii.3 +usr/man/man3/isatty.3 +usr/man/man3/isblank.3 +usr/man/man3/iscntrl.3 +usr/man/man3/isdigit.3 +usr/man/man3/isendwin.3 +usr/man/man3/isfinite.3 +usr/man/man3/isgraph.3 +usr/man/man3/isgreater.3 +usr/man/man3/isinf.3 +usr/man/man3/isinff.3 +usr/man/man3/is_linetouched.3 +usr/man/man3/islower.3 +usr/man/man3/isnan.3 +usr/man/man3/isnanf.3 +usr/man/man3/isnormal.3 +usr/man/man3/iso_addr.3 +usr/man/man3/isprint.3 +usr/man/man3/ispunct.3 +usr/man/man3/isspace.3 +usr/man/man3/isupper.3 +usr/man/man3/iswalnum.3 +usr/man/man3/iswalpha.3 +usr/man/man3/iswblank.3 +usr/man/man3/iswcntrl.3 +usr/man/man3/iswctype.3 +usr/man/man3/iswdigit.3 +usr/man/man3/iswgraph.3 +usr/man/man3/is_wintouched.3 +usr/man/man3/iswlower.3 +usr/man/man3/iswprint.3 +usr/man/man3/iswpunct.3 +usr/man/man3/iswspace.3 +usr/man/man3/iswupper.3 +usr/man/man3/iswxdigit.3 +usr/man/man3/isxdigit.3 +usr/man/man3/j0.3 +usr/man/man3/j0f.3 +usr/man/man3/j1.3 +usr/man/man3/j1f.3 +usr/man/man3/jemalloc.3 +usr/man/man3/jn.3 +usr/man/man3/jnf.3 +usr/man/man3/jrand48.3 +usr/man/man3/keyname.3 +usr/man/man3/keypad.3 +usr/man/man3/killchar.3 +usr/man/man3/killpg.3 +usr/man/man3/l64a.3 +usr/man/man3/l64a_r.3 +usr/man/man3/labs.3 +usr/man/man3/lcong48.3 +usr/man/man3/ldexp.3 +usr/man/man3/ldiv.3 +usr/man/man3/leaveok.3 +usr/man/man3/lfind.3 +usr/man/man3/lgamma.3 +usr/man/man3/lgammaf.3 +usr/man/man3/lgammaf_r.3 +usr/man/man3/lgamma_r.3 +usr/man/man3/libarchive.3 +usr/man/man3/libarchive_internals.3 +usr/man/man3/libmagic.3 +usr/man/man3/link_addr.3 +usr/man/man3/linkaddr.3 +usr/man/man3/link_ntoa.3 +usr/man/man3/linkntoa.3 +usr/man/man3/llabs.3 +usr/man/man3/lldiv.3 +usr/man/man3/llrint.3 +usr/man/man3/llrintf.3 +usr/man/man3/localeconv.3 +usr/man/man3/localtime.3 +usr/man/man3/localtime_r.3 +usr/man/man3/localtime_rz.3 +usr/man/man3/lockf.3 +usr/man/man3/log10.3 +usr/man/man3/log10f.3 +usr/man/man3/log1p.3 +usr/man/man3/log1pf.3 +usr/man/man3/log2.3 +usr/man/man3/log2f.3 +usr/man/man3/log.3 +usr/man/man3/logb.3 +usr/man/man3/logbf.3 +usr/man/man3/logf.3 +usr/man/man3/login.3 +usr/man/man3/login_cap.3 +usr/man/man3/login_close.3 +usr/man/man3/login_getcapbool.3 +usr/man/man3/login_getcapnum.3 +usr/man/man3/login_getcapsize.3 +usr/man/man3/login_getcapstr.3 +usr/man/man3/login_getcaptime.3 +usr/man/man3/login_getclass.3 +usr/man/man3/login_tty.3 +usr/man/man3/loginx.3 +usr/man/man3/logout.3 +usr/man/man3/logoutx.3 +usr/man/man3/logwtmp.3 +usr/man/man3/logwtmpx.3 +usr/man/man3/_longjmp.3 +usr/man/man3/longjmp.3 +usr/man/man3/longjmperror.3 +usr/man/man3/longname.3 +usr/man/man3/lrand48.3 +usr/man/man3/lrint.3 +usr/man/man3/lrintf.3 +usr/man/man3/lsearch.3 +usr/man/man3/_lwp_makecontext.3 +usr/man/man3/magic_buffer.3 +usr/man/man3/magic_check.3 +usr/man/man3/magic_close.3 +usr/man/man3/magic_compile.3 +usr/man/man3/magic_error.3 +usr/man/man3/magic_file.3 +usr/man/man3/magic_load.3 +usr/man/man3/magic_open.3 +usr/man/man3/magic_setflags.3 +usr/man/man3/makecontext.3 +usr/man/man3/malloc.3 +usr/man/man3/man.3 +usr/man/man3/math.3 +usr/man/man3/mblen.3 +usr/man/man3/mbrlen.3 +usr/man/man3/mbrtowc.3 +usr/man/man3/mbsinit.3 +usr/man/man3/mbsrtowcs.3 +usr/man/man3/mbstowcs.3 +usr/man/man3/mbtowc.3 +usr/man/man3/md2.3 +usr/man/man3/MD2Data.3 +usr/man/man3/MD2End.3 +usr/man/man3/MD2File.3 +usr/man/man3/MD2FileChunk.3 +usr/man/man3/MD2Final.3 +usr/man/man3/MD2Init.3 +usr/man/man3/MD2Transform.3 +usr/man/man3/MD2Update.3 +usr/man/man3/mdoc.3 +usr/man/man3/membar_consumer.3 +usr/man/man3/membar_enter.3 +usr/man/man3/membar_exit.3 +usr/man/man3/membar_ops.3 +usr/man/man3/membar_producer.3 +usr/man/man3/membar_sync.3 +usr/man/man3/memccpy.3 +usr/man/man3/memchr.3 +usr/man/man3/memcmp.3 +usr/man/man3/memcpy.3 +usr/man/man3/memmem.3 +usr/man/man3/memmove.3 +usr/man/man3/memory.3 +usr/man/man3/memrchr.3 +usr/man/man3/memset.3 +usr/man/man3/mergesort.3 +usr/man/man3/meta.3 +usr/man/man3/mi_vector_hash.3 +usr/man/man3/mkdtemp.3 +usr/man/man3/mkstemp.3 +usr/man/man3/mktemp.3 +usr/man/man3/mktime.3 +usr/man/man3/mktime_z.3 +usr/man/man3/modf.3 +usr/man/man3/move.3 +usr/man/man3/mpool.3 +usr/man/man3/mpool_close.3 +usr/man/man3/mpool_filter.3 +usr/man/man3/mpool_get.3 +usr/man/man3/mpool_new.3 +usr/man/man3/mpool_open.3 +usr/man/man3/mpool_put.3 +usr/man/man3/mpool_sync.3 +usr/man/man3/mrand48.3 +usr/man/man3/mvaddch.3 +usr/man/man3/mvaddchnstr.3 +usr/man/man3/mvaddchstr.3 +usr/man/man3/mvaddnstr.3 +usr/man/man3/mvaddstr.3 +usr/man/man3/mvchgat.3 +usr/man/man3/mvcur.3 +usr/man/man3/mvderwin.3 +usr/man/man3/mvgetch.3 +usr/man/man3/mvgetnstr.3 +usr/man/man3/mvgetstr.3 +usr/man/man3/mvhline.3 +usr/man/man3/mvinchnstr.3 +usr/man/man3/mvinchstr.3 +usr/man/man3/mvinnstr.3 +usr/man/man3/mvinstr.3 +usr/man/man3/mvprintw.3 +usr/man/man3/mvvline.3 +usr/man/man3/mvwaddch.3 +usr/man/man3/mvwaddchnstr.3 +usr/man/man3/mvwaddchstr.3 +usr/man/man3/mvwaddnstr.3 +usr/man/man3/mvwaddstr.3 +usr/man/man3/mvwchgat.3 +usr/man/man3/mvwgetch.3 +usr/man/man3/mvwgetnstr.3 +usr/man/man3/mvwgetstr.3 +usr/man/man3/mvwhline.3 +usr/man/man3/mvwin.3 +usr/man/man3/mvwinchnstr.3 +usr/man/man3/mvwinchstr.3 +usr/man/man3/mvwinnstr.3 +usr/man/man3/mvwinstr.3 +usr/man/man3/mvwprintw.3 +usr/man/man3/mvwvline.3 +usr/man/man3/nan.3 +usr/man/man3/nanf.3 +usr/man/man3/nanl.3 +usr/man/man3/napms.3 +usr/man/man3/ndbm.3 +usr/man/man3/network.3 +usr/man/man3/newpad.3 +usr/man/man3/newterm.3 +usr/man/man3/newwin.3 +usr/man/man3/nextafter.3 +usr/man/man3/nextafterf.3 +usr/man/man3/nextafterl.3 +usr/man/man3/nexttoward.3 +usr/man/man3/nftw.3 +usr/man/man3/nice.3 +usr/man/man3/nl.3 +usr/man/man3/nlist.3 +usr/man/man3/nl_langinfo.3 +usr/man/man3/nocbreak.3 +usr/man/man3/nodelay.3 +usr/man/man3/noecho.3 +usr/man/man3/nonl.3 +usr/man/man3/noqiflush.3 +usr/man/man3/noraw.3 +usr/man/man3/notimeout.3 +usr/man/man3/nrand48.3 +usr/man/man3/nsdispatch.3 +usr/man/man3/ntoa.3 +usr/man/man3/ntohl.3 +usr/man/man3/ntohs.3 +usr/man/man3/offtime.3 +usr/man/man3/offtime_r.3 +usr/man/man3/opendir.3 +usr/man/man3/opendisk.3 +usr/man/man3/openlog.3 +usr/man/man3/openlog_r.3 +usr/man/man3/openpty.3 +usr/man/man3/orcmd.3 +usr/man/man3/orcmd_af.3 +usr/man/man3/overlay.3 +usr/man/man3/overwrite.3 +usr/man/man3/pair_content.3 +usr/man/man3/pause.3 +usr/man/man3/pclose.3 +usr/man/man3/pechochar.3 +usr/man/man3/perror.3 +usr/man/man3/pidfile.3 +usr/man/man3/pidlock.3 +usr/man/man3/pnoutrefresh.3 +usr/man/man3/popcount.3 +usr/man/man3/popcount32.3 +usr/man/man3/popcount64.3 +usr/man/man3/popcountl.3 +usr/man/man3/popcountll.3 +usr/man/man3/popen.3 +usr/man/man3/posix2time.3 +usr/man/man3/posix2time_z.3 +usr/man/man3/posix_memalign.3 +usr/man/man3/posix_openpt.3 +usr/man/man3/pow.3 +usr/man/man3/powf.3 +usr/man/man3/p_query.3 +usr/man/man3/prefresh.3 +usr/man/man3/printf.3 +usr/man/man3/printw.3 +usr/man/man3/prop_array.3 +usr/man/man3/prop_array_add.3 +usr/man/man3/prop_array_capacity.3 +usr/man/man3/prop_array_copy.3 +usr/man/man3/prop_array_copy_mutable.3 +usr/man/man3/prop_array_count.3 +usr/man/man3/prop_array_create.3 +usr/man/man3/prop_array_create_with_capacity.3 +usr/man/man3/prop_array_ensure_capacity.3 +usr/man/man3/prop_array_equals.3 +usr/man/man3/prop_array_externalize.3 +usr/man/man3/prop_array_externalize_to_file.3 +usr/man/man3/prop_array_externalize_to_pref.3 +usr/man/man3/prop_array_get.3 +usr/man/man3/prop_array_get_bool.3 +usr/man/man3/prop_array_get_cstring.3 +usr/man/man3/prop_array_get_cstring_nocopy.3 +usr/man/man3/prop_array_get_int16.3 +usr/man/man3/prop_array_get_int32.3 +usr/man/man3/prop_array_get_int64.3 +usr/man/man3/prop_array_get_int8.3 +usr/man/man3/prop_array_get_uint16.3 +usr/man/man3/prop_array_get_uint32.3 +usr/man/man3/prop_array_get_uint64.3 +usr/man/man3/prop_array_get_uint8.3 +usr/man/man3/prop_array_internalize.3 +usr/man/man3/prop_array_internalize_from_file.3 +usr/man/man3/prop_array_internalize_from_pref.3 +usr/man/man3/prop_array_iterator.3 +usr/man/man3/prop_array_make_immutable.3 +usr/man/man3/prop_array_mutable.3 +usr/man/man3/prop_array_recv_ioctl.3 +usr/man/man3/prop_array_recv_syscall.3 +usr/man/man3/prop_array_remove.3 +usr/man/man3/prop_array_send_ioctl.3 +usr/man/man3/prop_array_send_syscall.3 +usr/man/man3/prop_array_set.3 +usr/man/man3/prop_array_set_bool.3 +usr/man/man3/prop_array_set_cstring.3 +usr/man/man3/prop_array_set_cstring_nocopy.3 +usr/man/man3/prop_array_set_int16.3 +usr/man/man3/prop_array_set_int32.3 +usr/man/man3/prop_array_set_int64.3 +usr/man/man3/prop_array_set_int8.3 +usr/man/man3/prop_array_set_uint16.3 +usr/man/man3/prop_array_set_uint32.3 +usr/man/man3/prop_array_set_uint64.3 +usr/man/man3/prop_array_set_uint8.3 +usr/man/man3/prop_array_util.3 +usr/man/man3/prop_bool.3 +usr/man/man3/prop_bool_copy.3 +usr/man/man3/prop_bool_create.3 +usr/man/man3/prop_bool_true.3 +usr/man/man3/prop_data.3 +usr/man/man3/prop_data_copy.3 +usr/man/man3/prop_data_create_data.3 +usr/man/man3/prop_data_create_data_nocopy.3 +usr/man/man3/prop_data_data.3 +usr/man/man3/prop_data_data_nocopy.3 +usr/man/man3/prop_data_equals.3 +usr/man/man3/prop_data_equals_data.3 +usr/man/man3/prop_data_size.3 +usr/man/man3/prop_dictionary.3 +usr/man/man3/prop_dictionary_all_keys.3 +usr/man/man3/prop_dictionary_capacity.3 +usr/man/man3/prop_dictionary_copy.3 +usr/man/man3/prop_dictionary_copy_mutable.3 +usr/man/man3/prop_dictionary_count.3 +usr/man/man3/prop_dictionary_create.3 +usr/man/man3/prop_dictionary_create_with_capacity.3 +usr/man/man3/prop_dictionary_ensure_capacity.3 +usr/man/man3/prop_dictionary_equals.3 +usr/man/man3/prop_dictionary_externalize.3 +usr/man/man3/prop_dictionary_externalize_to_file.3 +usr/man/man3/prop_dictionary_externalize_to_pref.3 +usr/man/man3/prop_dictionary_get.3 +usr/man/man3/prop_dictionary_get_bool.3 +usr/man/man3/prop_dictionary_get_cstring.3 +usr/man/man3/prop_dictionary_get_cstring_nocopy.3 +usr/man/man3/prop_dictionary_get_int16.3 +usr/man/man3/prop_dictionary_get_int32.3 +usr/man/man3/prop_dictionary_get_int64.3 +usr/man/man3/prop_dictionary_get_int8.3 +usr/man/man3/prop_dictionary_get_keysym.3 +usr/man/man3/prop_dictionary_get_uint16.3 +usr/man/man3/prop_dictionary_get_uint32.3 +usr/man/man3/prop_dictionary_get_uint64.3 +usr/man/man3/prop_dictionary_get_uint8.3 +usr/man/man3/prop_dictionary_ingest.3 +usr/man/man3/prop_dictionary_internalize.3 +usr/man/man3/prop_dictionary_internalize_from_file.3 +usr/man/man3/prop_dictionary_internalize_from_pref.3 +usr/man/man3/prop_dictionary_iterator.3 +usr/man/man3/prop_dictionary_keysym_cstring_nocopy.3 +usr/man/man3/prop_dictionary_keysym_equals.3 +usr/man/man3/prop_dictionary_make_immutable.3 +usr/man/man3/prop_dictionary_mutable.3 +usr/man/man3/prop_dictionary_recv_ioctl.3 +usr/man/man3/prop_dictionary_recv_syscall.3 +usr/man/man3/prop_dictionary_remove.3 +usr/man/man3/prop_dictionary_remove_keysym.3 +usr/man/man3/prop_dictionary_send_ioctl.3 +usr/man/man3/prop_dictionary_sendrecv_ioctl.3 +usr/man/man3/prop_dictionary_send_syscall.3 +usr/man/man3/prop_dictionary_set.3 +usr/man/man3/prop_dictionary_set_bool.3 +usr/man/man3/prop_dictionary_set_cstring.3 +usr/man/man3/prop_dictionary_set_cstring_nocopy.3 +usr/man/man3/prop_dictionary_set_int16.3 +usr/man/man3/prop_dictionary_set_int32.3 +usr/man/man3/prop_dictionary_set_int64.3 +usr/man/man3/prop_dictionary_set_int8.3 +usr/man/man3/prop_dictionary_set_keysym.3 +usr/man/man3/prop_dictionary_set_uint16.3 +usr/man/man3/prop_dictionary_set_uint32.3 +usr/man/man3/prop_dictionary_set_uint64.3 +usr/man/man3/prop_dictionary_set_uint8.3 +usr/man/man3/prop_dictionary_util.3 +usr/man/man3/prop_ingest.3 +usr/man/man3/prop_ingest_context_alloc.3 +usr/man/man3/prop_ingest_context_error.3 +usr/man/man3/prop_ingest_context_free.3 +usr/man/man3/prop_ingest_context_key.3 +usr/man/man3/prop_ingest_context_private.3 +usr/man/man3/prop_ingest_context_type.3 +usr/man/man3/proplib.3 +usr/man/man3/prop_number.3 +usr/man/man3/prop_number_copy.3 +usr/man/man3/prop_number_create_integer.3 +usr/man/man3/prop_number_create_unsigned_integer.3 +usr/man/man3/prop_number_equals.3 +usr/man/man3/prop_number_equals_integer.3 +usr/man/man3/prop_number_equals_unsigned_integer.3 +usr/man/man3/prop_number_integer_value.3 +usr/man/man3/prop_number_size.3 +usr/man/man3/prop_number_unsigned.3 +usr/man/man3/prop_number_unsigned_integer_value.3 +usr/man/man3/prop_object.3 +usr/man/man3/prop_object_equals.3 +usr/man/man3/prop_object_iterator_next.3 +usr/man/man3/prop_object_iterator_release.3 +usr/man/man3/prop_object_iterator_reset.3 +usr/man/man3/prop_object_release.3 +usr/man/man3/prop_object_retain.3 +usr/man/man3/prop_object_type.3 +usr/man/man3/prop_send_ioctl.3 +usr/man/man3/prop_send_syscall.3 +usr/man/man3/prop_string.3 +usr/man/man3/prop_string_append.3 +usr/man/man3/prop_string_append_cstring.3 +usr/man/man3/prop_string_copy.3 +usr/man/man3/prop_string_copy_mutable.3 +usr/man/man3/prop_string_create.3 +usr/man/man3/prop_string_create_cstring.3 +usr/man/man3/prop_string_create_cstring_nocopy.3 +usr/man/man3/prop_string_cstring.3 +usr/man/man3/prop_string_cstring_nocopy.3 +usr/man/man3/prop_string_equals.3 +usr/man/man3/prop_string_equals_cstring.3 +usr/man/man3/prop_string_mutable.3 +usr/man/man3/prop_string_size.3 +usr/man/man3/psiginfo.3 +usr/man/man3/psignal.3 +usr/man/man3/pthread_atfork.3 +usr/man/man3/ptsname.3 +usr/man/man3/puffs.3 +usr/man/man3/puffs_cc.3 +usr/man/man3/puffs_cred.3 +usr/man/man3/puffs_node.3 +usr/man/man3/puffs_ops.3 +usr/man/man3/puffs_path.3 +usr/man/man3/putc.3 +usr/man/man3/putchar.3 +usr/man/man3/putchar_unlocked.3 +usr/man/man3/putc_unlocked.3 +usr/man/man3/putenv.3 +usr/man/man3/putp.3 +usr/man/man3/puts.3 +usr/man/man3/pututxline.3 +usr/man/man3/putw.3 +usr/man/man3/putwc.3 +usr/man/man3/putwchar.3 +usr/man/man3/putwin.3 +usr/man/man3/pw_abort.3 +usr/man/man3/pwcache.3 +usr/man/man3/pwcache_groupdb.3 +usr/man/man3/pwcache_userdb.3 +usr/man/man3/pw_copy.3 +usr/man/man3/pw_copyx.3 +usr/man/man3/pw_edit.3 +usr/man/man3/pw_error.3 +usr/man/man3/pw_getconf.3 +usr/man/man3/pw_getprefix.3 +usr/man/man3/pw_getpwconf.3 +usr/man/man3/pw_init.3 +usr/man/man3/pw_lock.3 +usr/man/man3/pw_mkdb.3 +usr/man/man3/pw_prompt.3 +usr/man/man3/pw_scan.3 +usr/man/man3/pw_setprefix.3 +usr/man/man3/qabs.3 +usr/man/man3/qdiv.3 +usr/man/man3/qiflush.3 +usr/man/man3/qsort.3 +usr/man/man3/radixsort.3 +usr/man/man3/raise.3 +usr/man/man3/raise_default_signal.3 +usr/man/man3/rand.3 +usr/man/man3/rand48.3 +usr/man/man3/random.3 +usr/man/man3/randomid.3 +usr/man/man3/randomid_delete.3 +usr/man/man3/randomid_new.3 +usr/man/man3/rand_r.3 +usr/man/man3/raw.3 +usr/man/man3/rcmd.3 +usr/man/man3/rcmd_af.3 +usr/man/man3/readdir.3 +usr/man/man3/readdir_r.3 +usr/man/man3/realloc.3 +usr/man/man3/realpath.3 +usr/man/man3/recno.3 +usr/man/man3/refresh.3 +usr/man/man3/refuse.3 +usr/man/man3/regcomp.3 +usr/man/man3/regerror.3 +usr/man/man3/regex.3 +usr/man/man3/regexec.3 +usr/man/man3/regfree.3 +usr/man/man3/remainder.3 +usr/man/man3/remainderf.3 +usr/man/man3/remove.3 +usr/man/man3/remque.3 +usr/man/man3/res_close.3 +usr/man/man3/reset_prog_mode.3 +usr/man/man3/reset_shell_mode.3 +usr/man/man3/resetty.3 +usr/man/man3/res_findzonecut.3 +usr/man/man3/res_getservers.3 +usr/man/man3/res_hostalias.3 +usr/man/man3/res_init.3 +usr/man/man3/res_isourserver.3 +usr/man/man3/resizeterm.3 +usr/man/man3/res_mkquery.3 +usr/man/man3/res_nclose.3 +usr/man/man3/res_ndestroy.3 +usr/man/man3/res_ninit.3 +usr/man/man3/res_nmkquery.3 +usr/man/man3/res_nmkupdate.3 +usr/man/man3/res_nquery.3 +usr/man/man3/res_nquerydomain.3 +usr/man/man3/res_nsearch.3 +usr/man/man3/res_nsend.3 +usr/man/man3/res_nsendsigned.3 +usr/man/man3/res_nupdate.3 +usr/man/man3/resolver.3 +usr/man/man3/res_ourserver_p.3 +usr/man/man3/res_pquery.3 +usr/man/man3/res_query.3 +usr/man/man3/res_querydomain.3 +usr/man/man3/res_search.3 +usr/man/man3/res_send.3 +usr/man/man3/res_setservers.3 +usr/man/man3/res_update.3 +usr/man/man3/rewind.3 +usr/man/man3/rewinddir.3 +usr/man/man3/rindex.3 +usr/man/man3/rint.3 +usr/man/man3/rintf.3 +usr/man/man3/rmd160.3 +usr/man/man3/RMD160Data.3 +usr/man/man3/RMD160End.3 +usr/man/man3/RMD160File.3 +usr/man/man3/RMD160Final.3 +usr/man/man3/RMD160Init.3 +usr/man/man3/RMD160Transform.3 +usr/man/man3/RMD160Update.3 +usr/man/man3/round.3 +usr/man/man3/roundf.3 +usr/man/man3/rresvport.3 +usr/man/man3/rresvport_af.3 +usr/man/man3/ruserok.3 +usr/man/man3/savetty.3 +usr/man/man3/scalb.3 +usr/man/man3/scalbf.3 +usr/man/man3/scalbn.3 +usr/man/man3/scalbnf.3 +usr/man/man3/scandir.3 +usr/man/man3/scanf.3 +usr/man/man3/scanw.3 +usr/man/man3/scrl.3 +usr/man/man3/scroll.3 +usr/man/man3/scrollok.3 +usr/man/man3/secure_path.3 +usr/man/man3/seed48.3 +usr/man/man3/seekdir.3 +usr/man/man3/setbuf.3 +usr/man/man3/setbuffer.3 +usr/man/man3/setclasscontext.3 +usr/man/man3/set_curterm.3 +usr/man/man3/setdisktab.3 +usr/man/man3/setdomainname.3 +usr/man/man3/setenv.3 +usr/man/man3/setfsent.3 +usr/man/man3/setgrent.3 +usr/man/man3/setgroupent.3 +usr/man/man3/sethostent.3 +usr/man/man3/sethostid.3 +usr/man/man3/sethostname.3 +usr/man/man3/_setjmp.3 +usr/man/man3/setjmp.3 +usr/man/man3/setkey.3 +usr/man/man3/setlinebuf.3 +usr/man/man3/setlocale.3 +usr/man/man3/setlogmask.3 +usr/man/man3/setlogmask_r.3 +usr/man/man3/setmode.3 +usr/man/man3/setnetent.3 +usr/man/man3/setnetgrent.3 +usr/man/man3/setpassent.3 +usr/man/man3/setproctitle.3 +usr/man/man3/setprogname.3 +usr/man/man3/setprotoent.3 +usr/man/man3/setpwent.3 +usr/man/man3/setrgid.3 +usr/man/man3/setruid.3 +usr/man/man3/setscrreg.3 +usr/man/man3/setservent.3 +usr/man/man3/setstate.3 +usr/man/man3/set_term.3 +usr/man/man3/setterm.3 +usr/man/man3/setttyent.3 +usr/man/man3/setttyentpath.3 +usr/man/man3/setupterm.3 +usr/man/man3/setusercontext.3 +usr/man/man3/setusershell.3 +usr/man/man3/setutxent.3 +usr/man/man3/setvbuf.3 +usr/man/man3/sha1.3 +usr/man/man3/SHA1Data.3 +usr/man/man3/SHA1End.3 +usr/man/man3/SHA1File.3 +usr/man/man3/SHA1FileChunk.3 +usr/man/man3/SHA1Final.3 +usr/man/man3/SHA1Init.3 +usr/man/man3/SHA1Transform.3 +usr/man/man3/SHA1Update.3 +usr/man/man3/SHA224_Data.3 +usr/man/man3/SHA224_End.3 +usr/man/man3/SHA224_File.3 +usr/man/man3/SHA224_FileChunk.3 +usr/man/man3/SHA224_Final.3 +usr/man/man3/SHA224_Init.3 +usr/man/man3/SHA224_Transform.3 +usr/man/man3/SHA224_Update.3 +usr/man/man3/sha2.3 +usr/man/man3/SHA256_Data.3 +usr/man/man3/SHA256_End.3 +usr/man/man3/SHA256_File.3 +usr/man/man3/SHA256_FileChunk.3 +usr/man/man3/SHA256_Final.3 +usr/man/man3/SHA256_Init.3 +usr/man/man3/SHA256_Transform.3 +usr/man/man3/SHA256_Update.3 +usr/man/man3/SHA384_Data.3 +usr/man/man3/SHA384_End.3 +usr/man/man3/SHA384_File.3 +usr/man/man3/SHA384_FileChunk.3 +usr/man/man3/SHA384_Final.3 +usr/man/man3/SHA384_Init.3 +usr/man/man3/SHA384_Transform.3 +usr/man/man3/SHA384_Update.3 +usr/man/man3/SHA512_Data.3 +usr/man/man3/SHA512_End.3 +usr/man/man3/SHA512_File.3 +usr/man/man3/SHA512_FileChunk.3 +usr/man/man3/SHA512_Final.3 +usr/man/man3/SHA512_Init.3 +usr/man/man3/SHA512_Transform.3 +usr/man/man3/SHA512_Update.3 +usr/man/man3/shquote.3 +usr/man/man3/shquotev.3 +usr/man/man3/sigaddset.3 +usr/man/man3/sigblock.3 +usr/man/man3/sigdelset.3 +usr/man/man3/sigemptyset.3 +usr/man/man3/sigfillset.3 +usr/man/man3/sighold.3 +usr/man/man3/sigignore.3 +usr/man/man3/siginterrupt.3 +usr/man/man3/sigismember.3 +usr/man/man3/siglongjmp.3 +usr/man/man3/signal.3 +usr/man/man3/signbit.3 +usr/man/man3/significand.3 +usr/man/man3/significandf.3 +usr/man/man3/sigpause.3 +usr/man/man3/sigrelse.3 +usr/man/man3/sigset.3 +usr/man/man3/sigsetjmp.3 +usr/man/man3/sigsetmask.3 +usr/man/man3/sigsetops.3 +usr/man/man3/sigvec.3 +usr/man/man3/sin.3 +usr/man/man3/sinh.3 +usr/man/man3/sinhf.3 +usr/man/man3/sl_add.3 +usr/man/man3/sleep.3 +usr/man/man3/sl_find.3 +usr/man/man3/sl_free.3 +usr/man/man3/sl_init.3 +usr/man/man3/snprintb.3 +usr/man/man3/snprintb_m.3 +usr/man/man3/snprintf.3 +usr/man/man3/sockatmark.3 +usr/man/man3/sprintf.3 +usr/man/man3/sqrt.3 +usr/man/man3/sqrtf.3 +usr/man/man3/sradixsort.3 +usr/man/man3/srand.3 +usr/man/man3/srand48.3 +usr/man/man3/srandom.3 +usr/man/man3/sscanf.3 +usr/man/man3/ssp.3 +usr/man/man3/standend.3 +usr/man/man3/standout.3 +usr/man/man3/start_color.3 +usr/man/man3/stat_flags.3 +usr/man/man3/stdio.3 +usr/man/man3/stpcpy.3 +usr/man/man3/stpncpy.3 +usr/man/man3/strcasecmp.3 +usr/man/man3/strcasestr.3 +usr/man/man3/strcat.3 +usr/man/man3/strchr.3 +usr/man/man3/strcmp.3 +usr/man/man3/strcoll.3 +usr/man/man3/strcpy.3 +usr/man/man3/strcspn.3 +usr/man/man3/strdup.3 +usr/man/man3/strerror.3 +usr/man/man3/strerror_r.3 +usr/man/man3/stresep.3 +usr/man/man3/strfmon.3 +usr/man/man3/strftime.3 +usr/man/man3/strftime_z.3 +usr/man/man3/string.3 +usr/man/man3/stringlist.3 +usr/man/man3/strings.3 +usr/man/man3/string_to_flags.3 +usr/man/man3/strlcat.3 +usr/man/man3/strlcpy.3 +usr/man/man3/strlen.3 +usr/man/man3/strmode.3 +usr/man/man3/strncasecmp.3 +usr/man/man3/strncat.3 +usr/man/man3/strncmp.3 +usr/man/man3/strncpy.3 +usr/man/man3/strndup.3 +usr/man/man3/strnlen.3 +usr/man/man3/strpbrk.3 +usr/man/man3/strptime.3 +usr/man/man3/strrchr.3 +usr/man/man3/strsep.3 +usr/man/man3/strsignal.3 +usr/man/man3/strspn.3 +usr/man/man3/strstr.3 +usr/man/man3/strsuftoll.3 +usr/man/man3/strsuftollx.3 +usr/man/man3/strsvis.3 +usr/man/man3/strsvisx.3 +usr/man/man3/strtod.3 +usr/man/man3/strtof.3 +usr/man/man3/strtoimax.3 +usr/man/man3/strtok.3 +usr/man/man3/strtok_r.3 +usr/man/man3/strtol.3 +usr/man/man3/strtold.3 +usr/man/man3/strtoll.3 +usr/man/man3/strtoq.3 +usr/man/man3/strtoul.3 +usr/man/man3/strtoull.3 +usr/man/man3/strtoumax.3 +usr/man/man3/strtouq.3 +usr/man/man3/strunvis.3 +usr/man/man3/strunvisx.3 +usr/man/man3/strvis.3 +usr/man/man3/strvisx.3 +usr/man/man3/strxfrm.3 +usr/man/man3/subpad.3 +usr/man/man3/subwin.3 +usr/man/man3/svis.3 +usr/man/man3/swab.3 +usr/man/man3/swapcontext.3 +usr/man/man3/swprintf.3 +usr/man/man3/swscanf.3 +usr/man/man3/sysconf.3 +usr/man/man3/sysctl.3 +usr/man/man3/sysctlbyname.3 +usr/man/man3/sysctlgetmibinfo.3 +usr/man/man3/sysctlnametomib.3 +usr/man/man3/sys_errlist.3 +usr/man/man3/syslog.3 +usr/man/man3/syslogp.3 +usr/man/man3/syslogp_r.3 +usr/man/man3/syslog_r.3 +usr/man/man3/sys_nerr.3 +usr/man/man3/sys_siglist.3 +usr/man/man3/sys_signame.3 +usr/man/man3/system.3 +usr/man/man3/tan.3 +usr/man/man3/tanf.3 +usr/man/man3/tanh.3 +usr/man/man3/tanhf.3 +usr/man/man3/tcdrain.3 +usr/man/man3/tcflow.3 +usr/man/man3/tcflush.3 +usr/man/man3/tcgetattr.3 +usr/man/man3/tcgetpgrp.3 +usr/man/man3/tcgetsid.3 +usr/man/man3/tcsendbreak.3 +usr/man/man3/tcsetattr.3 +usr/man/man3/tcsetpgrp.3 +usr/man/man3/tdelete.3 +usr/man/man3/telldir.3 +usr/man/man3/tempnam.3 +usr/man/man3/termcap.3 +usr/man/man3/terminfo.3 +usr/man/man3/tfind.3 +usr/man/man3/tgetent.3 +usr/man/man3/tgetflag.3 +usr/man/man3/tgetnum.3 +usr/man/man3/tgetstr.3 +usr/man/man3/tgoto.3 +usr/man/man3/ti_getflag.3 +usr/man/man3/tigetflag.3 +usr/man/man3/ti_getnum.3 +usr/man/man3/tigetnum.3 +usr/man/man3/ti_getstr.3 +usr/man/man3/tigetstr.3 +usr/man/man3/time2posix.3 +usr/man/man3/time2posix_z.3 +usr/man/man3/time.3 +usr/man/man3/timegm.3 +usr/man/man3/timelocal.3 +usr/man/man3/timeoff.3 +usr/man/man3/timeout.3 +usr/man/man3/times.3 +usr/man/man3/timezone.3 +usr/man/man3/ti_putp.3 +usr/man/man3/ti_puts.3 +usr/man/man3/ti_setupterm.3 +usr/man/man3/tmpfile.3 +usr/man/man3/tmpnam.3 +usr/man/man3/toascii.3 +usr/man/man3/tolower.3 +usr/man/man3/touchline.3 +usr/man/man3/touchoverlap.3 +usr/man/man3/touchwin.3 +usr/man/man3/toupper.3 +usr/man/man3/towctrans.3 +usr/man/man3/towlower.3 +usr/man/man3/towupper.3 +usr/man/man3/t_parm.3 +usr/man/man3/tparm.3 +usr/man/man3/tputs.3 +usr/man/man3/trunc.3 +usr/man/man3/truncf.3 +usr/man/man3/tsearch.3 +usr/man/man3/ttyaction.3 +usr/man/man3/ttylock.3 +usr/man/man3/ttyname.3 +usr/man/man3/ttyname_r.3 +usr/man/man3/ttyslot.3 +usr/man/man3/ttyunlock.3 +usr/man/man3/t_vparm.3 +usr/man/man3/twalk.3 +usr/man/man3/tzalloc.3 +usr/man/man3/tzfree.3 +usr/man/man3/tzgetname.3 +usr/man/man3/tzset.3 +usr/man/man3/tzsetwall.3 +usr/man/man3/ualarm.3 +usr/man/man3/uid_from_user.3 +usr/man/man3/ulimit.3 +usr/man/man3/uname.3 +usr/man/man3/unctrl.3 +usr/man/man3/underend.3 +usr/man/man3/underscore.3 +usr/man/man3/ungetc.3 +usr/man/man3/ungetch.3 +usr/man/man3/ungetwc.3 +usr/man/man3/unlockpt.3 +usr/man/man3/unsetenv.3 +usr/man/man3/untouchwin.3 +usr/man/man3/unvis.3 +usr/man/man3/updlastlogx.3 +usr/man/man3/updwtmpx.3 +usr/man/man3/use_default_colors.3 +usr/man/man3/user_from_uid.3 +usr/man/man3/usleep.3 +usr/man/man3/util.3 +usr/man/man3/utime.3 +usr/man/man3/utmpxname.3 +usr/man/man3/uuid.3 +usr/man/man3/uuid_compare.3 +usr/man/man3/uuid_create.3 +usr/man/man3/uuid_create_nil.3 +usr/man/man3/uuid_dec_be.3 +usr/man/man3/uuid_dec_le.3 +usr/man/man3/uuid_enc_be.3 +usr/man/man3/uuid_enc_le.3 +usr/man/man3/uuid_equal.3 +usr/man/man3/uuid_from_string.3 +usr/man/man3/uuid_hash.3 +usr/man/man3/uuid_is_nil.3 +usr/man/man3/uuid_to_string.3 +usr/man/man3/valloc.3 +usr/man/man3/vasprintf.3 +usr/man/man3/vdprintf.3 +usr/man/man3/verr.3 +usr/man/man3/verrx.3 +usr/man/man3/vfprintf.3 +usr/man/man3/vfscanf.3 +usr/man/man3/vfwprintf.3 +usr/man/man3/vfwscanf.3 +usr/man/man3/vis.3 +usr/man/man3/vline.3 +usr/man/man3/vprintf.3 +usr/man/man3/vscanf.3 +usr/man/man3/vsnprintf.3 +usr/man/man3/vsnprintf_ss.3 +usr/man/man3/vsprintf.3 +usr/man/man3/vsscanf.3 +usr/man/man3/vswprintf.3 +usr/man/man3/vswscanf.3 +usr/man/man3/vsyslog.3 +usr/man/man3/vsyslogp.3 +usr/man/man3/vsyslogp_r.3 +usr/man/man3/vsyslog_r.3 +usr/man/man3/vwarn.3 +usr/man/man3/vwarnx.3 +usr/man/man3/vwprintf.3 +usr/man/man3/vwscanf.3 +usr/man/man3/waddch.3 +usr/man/man3/waddchnstr.3 +usr/man/man3/waddchstr.3 +usr/man/man3/waddnstr.3 +usr/man/man3/waddstr.3 +usr/man/man3/warn.3 +usr/man/man3/warnx.3 +usr/man/man3/wattr_get.3 +usr/man/man3/wattr_off.3 +usr/man/man3/wattroff.3 +usr/man/man3/wattr_on.3 +usr/man/man3/wattron.3 +usr/man/man3/wattr_set.3 +usr/man/man3/wattrset.3 +usr/man/man3/wbkgd.3 +usr/man/man3/wbkgdset.3 +usr/man/man3/wborder.3 +usr/man/man3/wchgat.3 +usr/man/man3/wclear.3 +usr/man/man3/wclrtobot.3 +usr/man/man3/wclrtoeol.3 +usr/man/man3/wcolor_set.3 +usr/man/man3/wcrtomb.3 +usr/man/man3/wcscasecmp.3 +usr/man/man3/wcscat.3 +usr/man/man3/wcschr.3 +usr/man/man3/wcscmp.3 +usr/man/man3/wcscoll.3 +usr/man/man3/wcscpy.3 +usr/man/man3/wcscspn.3 +usr/man/man3/wcsdup.3 +usr/man/man3/wcsftime.3 +usr/man/man3/wcslcat.3 +usr/man/man3/wcslcpy.3 +usr/man/man3/wcslen.3 +usr/man/man3/wcsncasecmp.3 +usr/man/man3/wcsncat.3 +usr/man/man3/wcsncmp.3 +usr/man/man3/wcsncpy.3 +usr/man/man3/wcspbrk.3 +usr/man/man3/wcsrchr.3 +usr/man/man3/wcsrtombs.3 +usr/man/man3/wcsspn.3 +usr/man/man3/wcsstr.3 +usr/man/man3/wcstod.3 +usr/man/man3/wcstof.3 +usr/man/man3/wcstoimax.3 +usr/man/man3/wcstok.3 +usr/man/man3/wcstol.3 +usr/man/man3/wcstold.3 +usr/man/man3/wcstoll.3 +usr/man/man3/wcstombs.3 +usr/man/man3/wcstoul.3 +usr/man/man3/wcstoull.3 +usr/man/man3/wcstoumax.3 +usr/man/man3/wcswcs.3 +usr/man/man3/wcswidth.3 +usr/man/man3/wcsxfrm.3 +usr/man/man3/wctob.3 +usr/man/man3/wctomb.3 +usr/man/man3/wctrans.3 +usr/man/man3/wctype.3 +usr/man/man3/wcwidth.3 +usr/man/man3/wdelch.3 +usr/man/man3/wdeleteln.3 +usr/man/man3/wechochar.3 +usr/man/man3/werase.3 +usr/man/man3/wgetch.3 +usr/man/man3/wgetnstr.3 +usr/man/man3/wgetstr.3 +usr/man/man3/whline.3 +usr/man/man3/winch.3 +usr/man/man3/winchnstr.3 +usr/man/man3/winchstr.3 +usr/man/man3/winnstr.3 +usr/man/man3/winsch.3 +usr/man/man3/winsdelln.3 +usr/man/man3/winsertln.3 +usr/man/man3/winstr.3 +usr/man/man3/wmemchr.3 +usr/man/man3/wmemcmp.3 +usr/man/man3/wmemcpy.3 +usr/man/man3/wmemmove.3 +usr/man/man3/wmemset.3 +usr/man/man3/wmove.3 +usr/man/man3/wnoutrefresh.3 +usr/man/man3/wordexp.3 +usr/man/man3/wprintf.3 +usr/man/man3/wprintw.3 +usr/man/man3/wrefresh.3 +usr/man/man3/wresize.3 +usr/man/man3/wscanf.3 +usr/man/man3/wscanw.3 +usr/man/man3/wscrl.3 +usr/man/man3/wsetscrreg.3 +usr/man/man3/wstandend.3 +usr/man/man3/wstandout.3 +usr/man/man3/wtimeout.3 +usr/man/man3/wtouchln.3 +usr/man/man3/wunderend.3 +usr/man/man3/wunderscore.3 +usr/man/man3/wvline.3 +usr/man/man3/y0.3 +usr/man/man3/y0f.3 +usr/man/man3/y1.3 +usr/man/man3/y1f.3 +usr/man/man3/yn.3 +usr/man/man3/ynf.3 +usr/man/man4/aha1540.4 +usr/man/man4/at.4 +usr/man/man4/bios.4 +usr/man/man4/console.4 +usr/man/man4/controller.4 +usr/man/man4/dev.4 +usr/man/man4/disk.4 +usr/man/man4/dosfile.4 +usr/man/man4/esdi.4 +usr/man/man4/eth.4 +usr/man/man4/fd.4 +usr/man/man4/ip.4 +usr/man/man4/keyboard.4 +usr/man/man4/lp.4 +usr/man/man4/mtio.4 +usr/man/man4/ncr810.4 +usr/man/man4/psip.4 +usr/man/man4/tape.4 +usr/man/man4/tty.4 +usr/man/man4/udp.4 +usr/man/man4/uds.4 +usr/man/man5/boot.cfg.5 +usr/man/man5/cdb.5 +usr/man/man5/configfile.5 +usr/man/man5/cpio.5 +usr/man/man5/crontab.5 +usr/man/man5/dhcp.conf.5 +usr/man/man5/dir.5 +usr/man/man5/ethers.5 +usr/man/man5/fstab.5 +usr/man/man5/group.5 +usr/man/man5/hosts.5 +usr/man/man5/httpd.conf.5 +usr/man/man5/http_status.5 +usr/man/man5/keymap.5 +usr/man/man5/libarchive-formats.5 +usr/man/man5/magic.5 +usr/man/man5/man.conf.5 +usr/man/man5/mtree.5 +usr/man/man5/passwd.5 +usr/man/man5/pkg_install.conf.5 +usr/man/man5/pkg_summary.5 +usr/man/man5/resolv.conf.5 +usr/man/man5/resolver.5 +usr/man/man5/rhosts.5 +usr/man/man5/serv.access.5 +usr/man/man5/statvfs.5 +usr/man/man5/syslog.conf.5 +usr/man/man5/system.conf.5 +usr/man/man5/tar.5 +usr/man/man5/termcap.5 +usr/man/man5/terminfo.5 +usr/man/man5/ttytab.5 +usr/man/man5/TZ.5 +usr/man/man5/tzfile.5 +usr/man/man5/usermgmt.conf.5 +usr/man/man5/utmp.5 +usr/man/man5/whatis.5 +usr/man/man7/ascii.7 +usr/man/man7/environ.7 +usr/man/man7/hier.7 +usr/man/man7/man.7 +usr/man/man7/mandoc_char.7 +usr/man/man7/mandoc_man.7 +usr/man/man7/mandoc_mdoc.7 +usr/man/man7/mandoc_roff.7 +usr/man/man7/mandoc_tbl.7 +usr/man/man7/pkgsrc.7 +usr/man/man7/re_format.7 +usr/man/man8/add_route.8 +usr/man/man8/adduser.8 +usr/man/man8/backup.8 +usr/man/man8/badblocks.8 +usr/man/man8/boot.8 +usr/man/man8/btrace.8 +usr/man/man8/cdprobe.8 +usr/man/man8/checkhier.8 +usr/man/man8/chown.8 +usr/man/man8/chroot.8 +usr/man/man8/cleantmp.8 +usr/man/man8/config.8 +usr/man/man8/cron.8 +usr/man/man8/dhcpd.8 +usr/man/man8/diskctl.8 +usr/man/man8/elvprsv.8 +usr/man/man8/fbdctl.8 +usr/man/man8/fdisk.8 +usr/man/man8/fingerd.8 +usr/man/man8/fsck.8 +usr/man/man8/fsck_ext2fs.8 +usr/man/man8/getty.8 +usr/man/man8/group.8 +usr/man/man8/groupadd.8 +usr/man/man8/groupdel.8 +usr/man/man8/groupinfo.8 +usr/man/man8/groupmod.8 +usr/man/man8/halt.8 +usr/man/man8/hgfs.8 +usr/man/man8/httpd.8 +usr/man/man8/ifconfig.8 +usr/man/man8/inet.8 +usr/man/man8/in.httpd.8 +usr/man/man8/init.8 +usr/man/man8/installboot_nbsd.8 +usr/man/man8/intr.8 +usr/man/man8/irdpd.8 +usr/man/man8/loadramdisk.8 +usr/man/man8/MAKEDEV.8 +usr/man/man8/makewhatis.8 +usr/man/man8/mknod.8 +usr/man/man8/mtree.8 +usr/man/man8/netconf.8 +usr/man/man8/newfs_ext2fs.8 +usr/man/man8/newroot.8 +usr/man/man8/nonamed.8 +usr/man/man8/ossdevlinks.8 +usr/man/man8/part.8 +usr/man/man8/partition.8 +usr/man/man8/postinstall.8 +usr/man/man8/poweroff.8 +usr/man/man8/printroot.8 +usr/man/man8/pr_routes.8 +usr/man/man8/pwdauth.8 +usr/man/man8/pwd_mkdb.8 +usr/man/man8/rarpd.8 +usr/man/man8/rdate.8 +usr/man/man8/readclock.8 +usr/man/man8/reboot.8 +usr/man/man8/repartition.8 +usr/man/man8/rshd.8 +usr/man/man8/screendump.8 +usr/man/man8/serial-ip.8 +usr/man/man8/service.8 +usr/man/man8/setup.8 +usr/man/man8/shutdown.8 +usr/man/man8/slip.8 +usr/man/man8/srccrc.8 +usr/man/man8/sync.8 +usr/man/man8/syslogd.8 +usr/man/man8/tcpd.8 +usr/man/man8/unix.8 +usr/man/man8/update.8 +usr/man/man8/usage.8 +usr/man/man8/user.8 +usr/man/man8/useradd.8 +usr/man/man8/userdel.8 +usr/man/man8/userinfo.8 +usr/man/man8/usermod.8 +usr/man/man8/vbfs.8 +usr/man/man8/vipw.8 +usr/man/man8/zdump.8 +usr/man/man8/zic.8 +usr/man/man9/macros.9 +usr/man/man9/prop_array_copyin_ioctl.9 +usr/man/man9/prop_array_copyout_ioctl.9 +usr/man/man9/prop_copyin_ioctl.9 +usr/man/man9/prop_dictionary_copyin_ioctl.9 +usr/man/man9/prop_dictionary_copyout_ioctl.9 +usr/man/whatis.db +usr/mdec/boot_monitor +usr/mdec/bootxx_cd9660 +usr/mdec/bootxx_ext2fs +usr/mdec/bootxx_minixfs3 +usr/mdec/gptmbr.bin +usr/mdec/mbr +usr/mdec/mbr_bootsel +usr/mdec/mbr_com0 +usr/mdec/mbr_com0_9600 +usr/mdec/mbr_ext +usr/sbin/acpi +usr/sbin/amddev +usr/sbin/atl2 +usr/sbin/chroot +usr/sbin/dec21140A +usr/sbin/dp8390 +usr/sbin/dpeth +usr/sbin/ds +usr/sbin/e1000 +usr/sbin/es1370 +usr/sbin/es1371 +usr/sbin/fbd +usr/sbin/filter +usr/sbin/fxp +usr/sbin/group +usr/sbin/groupadd +usr/sbin/groupdel +usr/sbin/groupinfo +usr/sbin/groupmod +usr/sbin/hello +usr/sbin/inet +usr/sbin/init +usr/sbin/installboot_nbsd +usr/sbin/ipc +usr/sbin/kernel +usr/sbin/lance +usr/sbin/log +usr/sbin/mtree +usr/sbin/orinoco +usr/sbin/pci +usr/sbin/pfs +usr/sbin/pm +usr/sbin/postinstall +usr/sbin/printer +usr/sbin/pwd_mkdb +usr/sbin/random +usr/sbin/rs +usr/sbin/rtl8139 +usr/sbin/rtl8169 +usr/sbin/sb16 +usr/sbin/sched +usr/sbin/ti1225 +usr/sbin/tty +usr/sbin/user +usr/sbin/useradd +usr/sbin/userdel +usr/sbin/userinfo +usr/sbin/usermod +usr/sbin/vbox +usr/sbin/vfs +usr/sbin/vipw +usr/sbin/vm +usr/sbin/zic +usr/share/doc/html/bzip2/manual.html +usr/share/doc/psd/19.curses/appen.A +usr/share/doc/psd/19.curses/appen.B +usr/share/doc/psd/19.curses/appen.C +usr/share/doc/psd/19.curses/c_macros +usr/share/doc/psd/19.curses/doc.I +usr/share/doc/psd/19.curses/doc.II +usr/share/doc/psd/19.curses/doc.III +usr/share/doc/psd/19.curses/doc.IV +usr/share/doc/psd/19.curses/ex1.c +usr/share/doc/psd/19.curses/ex2.c +usr/share/doc/psd/19.curses/fns.doc +usr/share/doc/psd/19.curses/intro.0 +usr/share/doc/psd/19.curses/intro.1 +usr/share/doc/psd/19.curses/intro.2 +usr/share/doc/psd/19.curses/intro.3 +usr/share/doc/psd/19.curses/intro.4 +usr/share/doc/psd/19.curses/intro.5 +usr/share/doc/psd/19.curses/intro.6 +usr/share/doc/psd/19.curses/life.c +usr/share/doc/psd/19.curses/macros +usr/share/doc/psd/19.curses/Makefile +usr/share/doc/psd/19.curses/Master +usr/share/doc/psd/19.curses/twinkle1.c +usr/share/doc/psd/19.curses/twinkle2.c +usr/share/doc/psd/19.curses/win_st.c +usr/share/misc/acronyms +usr/share/misc/acronyms.comp +usr/share/misc/airport +usr/share/misc/ascii +usr/share/misc/birthtoken +usr/share/misc/bsd-family-tree +usr/share/misc/country +usr/share/misc/domains +usr/share/misc/eqnchar +usr/share/misc/flowers +usr/share/misc/indent.pro +usr/share/misc/inter.phone +usr/share/misc/language +usr/share/misc/magic.mgc +usr/share/misc/man.template +usr/share/misc/mdoc.template +usr/share/misc/na.phone +usr/share/misc/na.postal +usr/share/misc/NetBSD.el +usr/share/misc/operator +usr/share/misc/style +usr/share/misc/zipcodes +usr/share/mk/bsd.clang-analyze.mk +usr/share/mk/bsd.clean.mk +usr/share/mk/bsd.dep.mk +usr/share/mk/bsd.doc.mk +usr/share/mk/bsd.endian.mk +usr/share/mk/bsd.files.mk +usr/share/mk/bsd.gcc.mk +usr/share/mk/bsd.hostlib.mk +usr/share/mk/bsd.hostprog.mk +usr/share/mk/bsd.inc.mk +usr/share/mk/bsd.info.mk +usr/share/mk/bsd.init.mk +usr/share/mk/bsd.ioconf.mk +usr/share/mk/bsd.kernobj.mk +usr/share/mk/bsd.kinc.mk +usr/share/mk/bsd.klinks.mk +usr/share/mk/bsd.kmodule.mk +usr/share/mk/bsd.lib.mk +usr/share/mk/bsd.links.mk +usr/share/mk/bsd.lua.mk +usr/share/mk/bsd.man.mk +usr/share/mk/bsd.nls.mk +usr/share/mk/bsd.obj.mk +usr/share/mk/bsd.own.mk +usr/share/mk/bsd.prog.mk +usr/share/mk/bsd.README +usr/share/mk/bsd.rpc.mk +usr/share/mk/bsd.shlib.mk +usr/share/mk/bsd.subdir.mk +usr/share/mk/bsd.sys.mk +usr/share/mk/bsd.test.mk +usr/share/mk/bsd.x11.mk +usr/share/mk/minix.bootprog.mk +usr/share/mk/minix.gcc.mk +usr/share/mk/minix.gcov.mk +usr/share/mk/minix.service.mk +usr/share/mk/pkgsrchooks.mk +usr/share/mk/sys.mk +usr/share/terminfo/terminfo +usr/share/terminfo/terminfo.db +usr/share/zoneinfo/Africa/Abidjan +usr/share/zoneinfo/Africa/Accra +usr/share/zoneinfo/Africa/Addis_Ababa +usr/share/zoneinfo/Africa/Algiers +usr/share/zoneinfo/Africa/Asmara +usr/share/zoneinfo/Africa/Asmera +usr/share/zoneinfo/Africa/Bamako +usr/share/zoneinfo/Africa/Bangui +usr/share/zoneinfo/Africa/Banjul +usr/share/zoneinfo/Africa/Bissau +usr/share/zoneinfo/Africa/Blantyre +usr/share/zoneinfo/Africa/Brazzaville +usr/share/zoneinfo/Africa/Bujumbura +usr/share/zoneinfo/Africa/Cairo +usr/share/zoneinfo/Africa/Casablanca +usr/share/zoneinfo/Africa/Ceuta +usr/share/zoneinfo/Africa/Conakry +usr/share/zoneinfo/Africa/Dakar +usr/share/zoneinfo/Africa/Dar_es_Salaam +usr/share/zoneinfo/Africa/Djibouti +usr/share/zoneinfo/Africa/Douala +usr/share/zoneinfo/Africa/El_Aaiun +usr/share/zoneinfo/Africa/Freetown +usr/share/zoneinfo/Africa/Gaborone +usr/share/zoneinfo/Africa/Harare +usr/share/zoneinfo/Africa/Johannesburg +usr/share/zoneinfo/Africa/Juba +usr/share/zoneinfo/Africa/Kampala +usr/share/zoneinfo/Africa/Khartoum +usr/share/zoneinfo/Africa/Kigali +usr/share/zoneinfo/Africa/Kinshasa +usr/share/zoneinfo/Africa/Lagos +usr/share/zoneinfo/Africa/Libreville +usr/share/zoneinfo/Africa/Lome +usr/share/zoneinfo/Africa/Luanda +usr/share/zoneinfo/Africa/Lubumbashi +usr/share/zoneinfo/Africa/Lusaka +usr/share/zoneinfo/Africa/Malabo +usr/share/zoneinfo/Africa/Maputo +usr/share/zoneinfo/Africa/Maseru +usr/share/zoneinfo/Africa/Mbabane +usr/share/zoneinfo/Africa/Mogadishu +usr/share/zoneinfo/Africa/Monrovia +usr/share/zoneinfo/Africa/Nairobi +usr/share/zoneinfo/Africa/Ndjamena +usr/share/zoneinfo/Africa/Niamey +usr/share/zoneinfo/Africa/Nouakchott +usr/share/zoneinfo/Africa/Ouagadougou +usr/share/zoneinfo/Africa/Porto-Novo +usr/share/zoneinfo/Africa/Sao_Tome +usr/share/zoneinfo/Africa/Timbuktu +usr/share/zoneinfo/Africa/Tripoli +usr/share/zoneinfo/Africa/Tunis +usr/share/zoneinfo/Africa/Windhoek +usr/share/zoneinfo/America/Adak +usr/share/zoneinfo/America/Anchorage +usr/share/zoneinfo/America/Anguilla +usr/share/zoneinfo/America/Antigua +usr/share/zoneinfo/America/Araguaina +usr/share/zoneinfo/America/Argentina/Buenos_Aires +usr/share/zoneinfo/America/Argentina/Catamarca +usr/share/zoneinfo/America/Argentina/ComodRivadavia +usr/share/zoneinfo/America/Argentina/Cordoba +usr/share/zoneinfo/America/Argentina/Jujuy +usr/share/zoneinfo/America/Argentina/La_Rioja +usr/share/zoneinfo/America/Argentina/Mendoza +usr/share/zoneinfo/America/Argentina/Rio_Gallegos +usr/share/zoneinfo/America/Argentina/Salta +usr/share/zoneinfo/America/Argentina/San_Juan +usr/share/zoneinfo/America/Argentina/San_Luis +usr/share/zoneinfo/America/Argentina/Tucuman +usr/share/zoneinfo/America/Argentina/Ushuaia +usr/share/zoneinfo/America/Aruba +usr/share/zoneinfo/America/Asuncion +usr/share/zoneinfo/America/Atikokan +usr/share/zoneinfo/America/Atka +usr/share/zoneinfo/America/Bahia +usr/share/zoneinfo/America/Bahia_Banderas +usr/share/zoneinfo/America/Barbados +usr/share/zoneinfo/America/Belem +usr/share/zoneinfo/America/Belize +usr/share/zoneinfo/America/Blanc-Sablon +usr/share/zoneinfo/America/Boa_Vista +usr/share/zoneinfo/America/Bogota +usr/share/zoneinfo/America/Boise +usr/share/zoneinfo/America/Buenos_Aires +usr/share/zoneinfo/America/Cambridge_Bay +usr/share/zoneinfo/America/Campo_Grande +usr/share/zoneinfo/America/Cancun +usr/share/zoneinfo/America/Caracas +usr/share/zoneinfo/America/Catamarca +usr/share/zoneinfo/America/Cayenne +usr/share/zoneinfo/America/Cayman +usr/share/zoneinfo/America/Chicago +usr/share/zoneinfo/America/Chihuahua +usr/share/zoneinfo/America/Coral_Harbour +usr/share/zoneinfo/America/Cordoba +usr/share/zoneinfo/America/Costa_Rica +usr/share/zoneinfo/America/Cuiaba +usr/share/zoneinfo/America/Curacao +usr/share/zoneinfo/America/Danmarkshavn +usr/share/zoneinfo/America/Dawson +usr/share/zoneinfo/America/Dawson_Creek +usr/share/zoneinfo/America/Denver +usr/share/zoneinfo/America/Detroit +usr/share/zoneinfo/America/Dominica +usr/share/zoneinfo/America/Edmonton +usr/share/zoneinfo/America/Eirunepe +usr/share/zoneinfo/America/El_Salvador +usr/share/zoneinfo/America/Ensenada +usr/share/zoneinfo/America/Fortaleza +usr/share/zoneinfo/America/Fort_Wayne +usr/share/zoneinfo/America/Glace_Bay +usr/share/zoneinfo/America/Godthab +usr/share/zoneinfo/America/Goose_Bay +usr/share/zoneinfo/America/Grand_Turk +usr/share/zoneinfo/America/Grenada +usr/share/zoneinfo/America/Guadeloupe +usr/share/zoneinfo/America/Guatemala +usr/share/zoneinfo/America/Guayaquil +usr/share/zoneinfo/America/Guyana +usr/share/zoneinfo/America/Halifax +usr/share/zoneinfo/America/Havana +usr/share/zoneinfo/America/Hermosillo +usr/share/zoneinfo/America/Indiana/Indianapolis +usr/share/zoneinfo/America/Indiana/Knox +usr/share/zoneinfo/America/Indiana/Marengo +usr/share/zoneinfo/America/Indiana/Petersburg +usr/share/zoneinfo/America/Indianapolis +usr/share/zoneinfo/America/Indiana/Tell_City +usr/share/zoneinfo/America/Indiana/Vevay +usr/share/zoneinfo/America/Indiana/Vincennes +usr/share/zoneinfo/America/Indiana/Winamac +usr/share/zoneinfo/America/Inuvik +usr/share/zoneinfo/America/Iqaluit +usr/share/zoneinfo/America/Jamaica +usr/share/zoneinfo/America/Jujuy +usr/share/zoneinfo/America/Juneau +usr/share/zoneinfo/America/Kentucky/Louisville +usr/share/zoneinfo/America/Kentucky/Monticello +usr/share/zoneinfo/America/Knox_IN +usr/share/zoneinfo/America/Kralendijk +usr/share/zoneinfo/America/La_Paz +usr/share/zoneinfo/America/Lima +usr/share/zoneinfo/America/Los_Angeles +usr/share/zoneinfo/America/Louisville +usr/share/zoneinfo/America/Lower_Princes +usr/share/zoneinfo/America/Maceio +usr/share/zoneinfo/America/Managua +usr/share/zoneinfo/America/Manaus +usr/share/zoneinfo/America/Marigot +usr/share/zoneinfo/America/Martinique +usr/share/zoneinfo/America/Matamoros +usr/share/zoneinfo/America/Mazatlan +usr/share/zoneinfo/America/Mendoza +usr/share/zoneinfo/America/Menominee +usr/share/zoneinfo/America/Merida +usr/share/zoneinfo/America/Metlakatla +usr/share/zoneinfo/America/Mexico_City +usr/share/zoneinfo/America/Miquelon +usr/share/zoneinfo/America/Moncton +usr/share/zoneinfo/America/Monterrey +usr/share/zoneinfo/America/Montevideo +usr/share/zoneinfo/America/Montreal +usr/share/zoneinfo/America/Montserrat +usr/share/zoneinfo/America/Nassau +usr/share/zoneinfo/America/New_York +usr/share/zoneinfo/America/Nipigon +usr/share/zoneinfo/America/Nome +usr/share/zoneinfo/America/Noronha +usr/share/zoneinfo/America/North_Dakota/Beulah +usr/share/zoneinfo/America/North_Dakota/Center +usr/share/zoneinfo/America/North_Dakota/New_Salem +usr/share/zoneinfo/America/Ojinaga +usr/share/zoneinfo/America/Panama +usr/share/zoneinfo/America/Pangnirtung +usr/share/zoneinfo/America/Paramaribo +usr/share/zoneinfo/America/Phoenix +usr/share/zoneinfo/America/Port-au-Prince +usr/share/zoneinfo/America/Porto_Acre +usr/share/zoneinfo/America/Port_of_Spain +usr/share/zoneinfo/America/Porto_Velho +usr/share/zoneinfo/America/Puerto_Rico +usr/share/zoneinfo/America/Rainy_River +usr/share/zoneinfo/America/Rankin_Inlet +usr/share/zoneinfo/America/Recife +usr/share/zoneinfo/America/Regina +usr/share/zoneinfo/America/Resolute +usr/share/zoneinfo/America/Rio_Branco +usr/share/zoneinfo/America/Rosario +usr/share/zoneinfo/America/Santa_Isabel +usr/share/zoneinfo/America/Santarem +usr/share/zoneinfo/America/Santiago +usr/share/zoneinfo/America/Santo_Domingo +usr/share/zoneinfo/America/Sao_Paulo +usr/share/zoneinfo/America/Scoresbysund +usr/share/zoneinfo/America/Shiprock +usr/share/zoneinfo/America/Sitka +usr/share/zoneinfo/America/St_Barthelemy +usr/share/zoneinfo/America/St_Johns +usr/share/zoneinfo/America/St_Kitts +usr/share/zoneinfo/America/St_Lucia +usr/share/zoneinfo/America/St_Thomas +usr/share/zoneinfo/America/St_Vincent +usr/share/zoneinfo/America/Swift_Current +usr/share/zoneinfo/America/Tegucigalpa +usr/share/zoneinfo/America/Thule +usr/share/zoneinfo/America/Thunder_Bay +usr/share/zoneinfo/America/Tijuana +usr/share/zoneinfo/America/Toronto +usr/share/zoneinfo/America/Tortola +usr/share/zoneinfo/America/Vancouver +usr/share/zoneinfo/America/Virgin +usr/share/zoneinfo/America/Whitehorse +usr/share/zoneinfo/America/Winnipeg +usr/share/zoneinfo/America/Yakutat +usr/share/zoneinfo/America/Yellowknife +usr/share/zoneinfo/Antarctica/Casey +usr/share/zoneinfo/Antarctica/Davis +usr/share/zoneinfo/Antarctica/DumontDUrville +usr/share/zoneinfo/Antarctica/Macquarie +usr/share/zoneinfo/Antarctica/Mawson +usr/share/zoneinfo/Antarctica/McMurdo +usr/share/zoneinfo/Antarctica/Palmer +usr/share/zoneinfo/Antarctica/Rothera +usr/share/zoneinfo/Antarctica/South_Pole +usr/share/zoneinfo/Antarctica/Syowa +usr/share/zoneinfo/Antarctica/Vostok +usr/share/zoneinfo/Arctic/Longyearbyen +usr/share/zoneinfo/Asia/Aden +usr/share/zoneinfo/Asia/Almaty +usr/share/zoneinfo/Asia/Amman +usr/share/zoneinfo/Asia/Anadyr +usr/share/zoneinfo/Asia/Aqtau +usr/share/zoneinfo/Asia/Aqtobe +usr/share/zoneinfo/Asia/Ashgabat +usr/share/zoneinfo/Asia/Ashkhabad +usr/share/zoneinfo/Asia/Baghdad +usr/share/zoneinfo/Asia/Bahrain +usr/share/zoneinfo/Asia/Baku +usr/share/zoneinfo/Asia/Bangkok +usr/share/zoneinfo/Asia/Beirut +usr/share/zoneinfo/Asia/Bishkek +usr/share/zoneinfo/Asia/Brunei +usr/share/zoneinfo/Asia/Calcutta +usr/share/zoneinfo/Asia/Choibalsan +usr/share/zoneinfo/Asia/Chongqing +usr/share/zoneinfo/Asia/Chungking +usr/share/zoneinfo/Asia/Colombo +usr/share/zoneinfo/Asia/Dacca +usr/share/zoneinfo/Asia/Damascus +usr/share/zoneinfo/Asia/Dhaka +usr/share/zoneinfo/Asia/Dili +usr/share/zoneinfo/Asia/Dubai +usr/share/zoneinfo/Asia/Dushanbe +usr/share/zoneinfo/Asia/Gaza +usr/share/zoneinfo/Asia/Harbin +usr/share/zoneinfo/Asia/Hebron +usr/share/zoneinfo/Asia/Ho_Chi_Minh +usr/share/zoneinfo/Asia/Hong_Kong +usr/share/zoneinfo/Asia/Hovd +usr/share/zoneinfo/Asia/Irkutsk +usr/share/zoneinfo/Asia/Istanbul +usr/share/zoneinfo/Asia/Jakarta +usr/share/zoneinfo/Asia/Jayapura +usr/share/zoneinfo/Asia/Jerusalem +usr/share/zoneinfo/Asia/Kabul +usr/share/zoneinfo/Asia/Kamchatka +usr/share/zoneinfo/Asia/Karachi +usr/share/zoneinfo/Asia/Kashgar +usr/share/zoneinfo/Asia/Kathmandu +usr/share/zoneinfo/Asia/Katmandu +usr/share/zoneinfo/Asia/Kolkata +usr/share/zoneinfo/Asia/Krasnoyarsk +usr/share/zoneinfo/Asia/Kuala_Lumpur +usr/share/zoneinfo/Asia/Kuching +usr/share/zoneinfo/Asia/Kuwait +usr/share/zoneinfo/Asia/Macao +usr/share/zoneinfo/Asia/Macau +usr/share/zoneinfo/Asia/Magadan +usr/share/zoneinfo/Asia/Makassar +usr/share/zoneinfo/Asia/Manila +usr/share/zoneinfo/Asia/Muscat +usr/share/zoneinfo/Asia/Nicosia +usr/share/zoneinfo/Asia/Novokuznetsk +usr/share/zoneinfo/Asia/Novosibirsk +usr/share/zoneinfo/Asia/Omsk +usr/share/zoneinfo/Asia/Oral +usr/share/zoneinfo/Asia/Phnom_Penh +usr/share/zoneinfo/Asia/Pontianak +usr/share/zoneinfo/Asia/Pyongyang +usr/share/zoneinfo/Asia/Qatar +usr/share/zoneinfo/Asia/Qyzylorda +usr/share/zoneinfo/Asia/Rangoon +usr/share/zoneinfo/Asia/Riyadh +usr/share/zoneinfo/Asia/Riyadh87 +usr/share/zoneinfo/Asia/Riyadh88 +usr/share/zoneinfo/Asia/Riyadh89 +usr/share/zoneinfo/Asia/Saigon +usr/share/zoneinfo/Asia/Sakhalin +usr/share/zoneinfo/Asia/Samarkand +usr/share/zoneinfo/Asia/Seoul +usr/share/zoneinfo/Asia/Shanghai +usr/share/zoneinfo/Asia/Singapore +usr/share/zoneinfo/Asia/Taipei +usr/share/zoneinfo/Asia/Tashkent +usr/share/zoneinfo/Asia/Tbilisi +usr/share/zoneinfo/Asia/Tehran +usr/share/zoneinfo/Asia/Tel_Aviv +usr/share/zoneinfo/Asia/Thimbu +usr/share/zoneinfo/Asia/Thimphu +usr/share/zoneinfo/Asia/Tokyo +usr/share/zoneinfo/Asia/Ujung_Pandang +usr/share/zoneinfo/Asia/Ulaanbaatar +usr/share/zoneinfo/Asia/Ulan_Bator +usr/share/zoneinfo/Asia/Urumqi +usr/share/zoneinfo/Asia/Vientiane +usr/share/zoneinfo/Asia/Vladivostok +usr/share/zoneinfo/Asia/Yakutsk +usr/share/zoneinfo/Asia/Yekaterinburg +usr/share/zoneinfo/Asia/Yerevan +usr/share/zoneinfo/Atlantic/Azores +usr/share/zoneinfo/Atlantic/Bermuda +usr/share/zoneinfo/Atlantic/Canary +usr/share/zoneinfo/Atlantic/Cape_Verde +usr/share/zoneinfo/Atlantic/Faeroe +usr/share/zoneinfo/Atlantic/Faroe +usr/share/zoneinfo/Atlantic/Jan_Mayen +usr/share/zoneinfo/Atlantic/Madeira +usr/share/zoneinfo/Atlantic/Reykjavik +usr/share/zoneinfo/Atlantic/South_Georgia +usr/share/zoneinfo/Atlantic/Stanley +usr/share/zoneinfo/Atlantic/St_Helena +usr/share/zoneinfo/Australia/ACT +usr/share/zoneinfo/Australia/Adelaide +usr/share/zoneinfo/Australia/Brisbane +usr/share/zoneinfo/Australia/Broken_Hill +usr/share/zoneinfo/Australia/Canberra +usr/share/zoneinfo/Australia/Currie +usr/share/zoneinfo/Australia/Darwin +usr/share/zoneinfo/Australia/Eucla +usr/share/zoneinfo/Australia/Hobart +usr/share/zoneinfo/Australia/LHI +usr/share/zoneinfo/Australia/Lindeman +usr/share/zoneinfo/Australia/Lord_Howe +usr/share/zoneinfo/Australia/Melbourne +usr/share/zoneinfo/Australia/North +usr/share/zoneinfo/Australia/NSW +usr/share/zoneinfo/Australia/Perth +usr/share/zoneinfo/Australia/Queensland +usr/share/zoneinfo/Australia/South +usr/share/zoneinfo/Australia/Sydney +usr/share/zoneinfo/Australia/Tasmania +usr/share/zoneinfo/Australia/Victoria +usr/share/zoneinfo/Australia/West +usr/share/zoneinfo/Australia/Yancowinna +usr/share/zoneinfo/Brazil/Acre +usr/share/zoneinfo/Brazil/DeNoronha +usr/share/zoneinfo/Brazil/East +usr/share/zoneinfo/Brazil/West +usr/share/zoneinfo/Canada/Atlantic +usr/share/zoneinfo/Canada/Central +usr/share/zoneinfo/Canada/Eastern +usr/share/zoneinfo/Canada/East-Saskatchewan +usr/share/zoneinfo/Canada/Mountain +usr/share/zoneinfo/Canada/Newfoundland +usr/share/zoneinfo/Canada/Pacific +usr/share/zoneinfo/Canada/Saskatchewan +usr/share/zoneinfo/Canada/Yukon +usr/share/zoneinfo/CET +usr/share/zoneinfo/Chile/Continental +usr/share/zoneinfo/Chile/EasterIsland +usr/share/zoneinfo/CST6CDT +usr/share/zoneinfo/Cuba +usr/share/zoneinfo/EET +usr/share/zoneinfo/Egypt +usr/share/zoneinfo/Eire +usr/share/zoneinfo/EST +usr/share/zoneinfo/EST5EDT +usr/share/zoneinfo/Etc/GMT +usr/share/zoneinfo/Etc/GMT0 +usr/share/zoneinfo/Etc/GMT-0 +usr/share/zoneinfo/Etc/GMT+0 +usr/share/zoneinfo/Etc/GMT-1 +usr/share/zoneinfo/Etc/GMT+1 +usr/share/zoneinfo/Etc/GMT-10 +usr/share/zoneinfo/Etc/GMT+10 +usr/share/zoneinfo/Etc/GMT-11 +usr/share/zoneinfo/Etc/GMT+11 +usr/share/zoneinfo/Etc/GMT-12 +usr/share/zoneinfo/Etc/GMT+12 +usr/share/zoneinfo/Etc/GMT-13 +usr/share/zoneinfo/Etc/GMT-14 +usr/share/zoneinfo/Etc/GMT-2 +usr/share/zoneinfo/Etc/GMT+2 +usr/share/zoneinfo/Etc/GMT-3 +usr/share/zoneinfo/Etc/GMT+3 +usr/share/zoneinfo/Etc/GMT-4 +usr/share/zoneinfo/Etc/GMT+4 +usr/share/zoneinfo/Etc/GMT-5 +usr/share/zoneinfo/Etc/GMT+5 +usr/share/zoneinfo/Etc/GMT-6 +usr/share/zoneinfo/Etc/GMT+6 +usr/share/zoneinfo/Etc/GMT-7 +usr/share/zoneinfo/Etc/GMT+7 +usr/share/zoneinfo/Etc/GMT-8 +usr/share/zoneinfo/Etc/GMT+8 +usr/share/zoneinfo/Etc/GMT-9 +usr/share/zoneinfo/Etc/GMT+9 +usr/share/zoneinfo/Etc/Greenwich +usr/share/zoneinfo/Etc/UCT +usr/share/zoneinfo/Etc/Universal +usr/share/zoneinfo/Etc/UTC +usr/share/zoneinfo/Etc/Zulu +usr/share/zoneinfo/Europe/Amsterdam +usr/share/zoneinfo/Europe/Andorra +usr/share/zoneinfo/Europe/Athens +usr/share/zoneinfo/Europe/Belfast +usr/share/zoneinfo/Europe/Belgrade +usr/share/zoneinfo/Europe/Berlin +usr/share/zoneinfo/Europe/Bratislava +usr/share/zoneinfo/Europe/Brussels +usr/share/zoneinfo/Europe/Bucharest +usr/share/zoneinfo/Europe/Budapest +usr/share/zoneinfo/Europe/Chisinau +usr/share/zoneinfo/Europe/Copenhagen +usr/share/zoneinfo/Europe/Dublin +usr/share/zoneinfo/Europe/Gibraltar +usr/share/zoneinfo/Europe/Guernsey +usr/share/zoneinfo/Europe/Helsinki +usr/share/zoneinfo/Europe/Isle_of_Man +usr/share/zoneinfo/Europe/Istanbul +usr/share/zoneinfo/Europe/Jersey +usr/share/zoneinfo/Europe/Kaliningrad +usr/share/zoneinfo/Europe/Kiev +usr/share/zoneinfo/Europe/Lisbon +usr/share/zoneinfo/Europe/Ljubljana +usr/share/zoneinfo/Europe/London +usr/share/zoneinfo/Europe/Luxembourg +usr/share/zoneinfo/Europe/Madrid +usr/share/zoneinfo/Europe/Malta +usr/share/zoneinfo/Europe/Mariehamn +usr/share/zoneinfo/Europe/Minsk +usr/share/zoneinfo/Europe/Monaco +usr/share/zoneinfo/Europe/Moscow +usr/share/zoneinfo/Europe/Nicosia +usr/share/zoneinfo/Europe/Oslo +usr/share/zoneinfo/Europe/Paris +usr/share/zoneinfo/Europe/Podgorica +usr/share/zoneinfo/Europe/Prague +usr/share/zoneinfo/Europe/Riga +usr/share/zoneinfo/Europe/Rome +usr/share/zoneinfo/Europe/Samara +usr/share/zoneinfo/Europe/San_Marino +usr/share/zoneinfo/Europe/Sarajevo +usr/share/zoneinfo/Europe/Simferopol +usr/share/zoneinfo/Europe/Skopje +usr/share/zoneinfo/Europe/Sofia +usr/share/zoneinfo/Europe/Stockholm +usr/share/zoneinfo/Europe/Tallinn +usr/share/zoneinfo/Europe/Tirane +usr/share/zoneinfo/Europe/Tiraspol +usr/share/zoneinfo/Europe/Uzhgorod +usr/share/zoneinfo/Europe/Vaduz +usr/share/zoneinfo/Europe/Vatican +usr/share/zoneinfo/Europe/Vienna +usr/share/zoneinfo/Europe/Vilnius +usr/share/zoneinfo/Europe/Volgograd +usr/share/zoneinfo/Europe/Warsaw +usr/share/zoneinfo/Europe/Zagreb +usr/share/zoneinfo/Europe/Zaporozhye +usr/share/zoneinfo/Europe/Zurich +usr/share/zoneinfo/Factory +usr/share/zoneinfo/GB +usr/share/zoneinfo/GB-Eire +usr/share/zoneinfo/GMT +usr/share/zoneinfo/GMT0 +usr/share/zoneinfo/GMT-0 +usr/share/zoneinfo/GMT+0 +usr/share/zoneinfo/Greenwich +usr/share/zoneinfo/Hongkong +usr/share/zoneinfo/HST +usr/share/zoneinfo/Iceland +usr/share/zoneinfo/Indian/Antananarivo +usr/share/zoneinfo/Indian/Chagos +usr/share/zoneinfo/Indian/Christmas +usr/share/zoneinfo/Indian/Cocos +usr/share/zoneinfo/Indian/Comoro +usr/share/zoneinfo/Indian/Kerguelen +usr/share/zoneinfo/Indian/Mahe +usr/share/zoneinfo/Indian/Maldives +usr/share/zoneinfo/Indian/Mauritius +usr/share/zoneinfo/Indian/Mayotte +usr/share/zoneinfo/Indian/Reunion +usr/share/zoneinfo/Iran +usr/share/zoneinfo/Israel +usr/share/zoneinfo/Jamaica +usr/share/zoneinfo/Japan +usr/share/zoneinfo/Kwajalein +usr/share/zoneinfo/Libya +usr/share/zoneinfo/MET +usr/share/zoneinfo/Mexico/BajaNorte +usr/share/zoneinfo/Mexico/BajaSur +usr/share/zoneinfo/Mexico/General +usr/share/zoneinfo/Mideast/Riyadh87 +usr/share/zoneinfo/Mideast/Riyadh88 +usr/share/zoneinfo/Mideast/Riyadh89 +usr/share/zoneinfo/MST +usr/share/zoneinfo/MST7MDT +usr/share/zoneinfo/Navajo +usr/share/zoneinfo/NZ +usr/share/zoneinfo/NZ-CHAT +usr/share/zoneinfo/Pacific/Apia +usr/share/zoneinfo/Pacific/Auckland +usr/share/zoneinfo/Pacific/Chatham +usr/share/zoneinfo/Pacific/Chuuk +usr/share/zoneinfo/Pacific/Easter +usr/share/zoneinfo/Pacific/Efate +usr/share/zoneinfo/Pacific/Enderbury +usr/share/zoneinfo/Pacific/Fakaofo +usr/share/zoneinfo/Pacific/Fiji +usr/share/zoneinfo/Pacific/Funafuti +usr/share/zoneinfo/Pacific/Galapagos +usr/share/zoneinfo/Pacific/Gambier +usr/share/zoneinfo/Pacific/Guadalcanal +usr/share/zoneinfo/Pacific/Guam +usr/share/zoneinfo/Pacific/Honolulu +usr/share/zoneinfo/Pacific/Johnston +usr/share/zoneinfo/Pacific/Kiritimati +usr/share/zoneinfo/Pacific/Kosrae +usr/share/zoneinfo/Pacific/Kwajalein +usr/share/zoneinfo/Pacific/Majuro +usr/share/zoneinfo/Pacific/Marquesas +usr/share/zoneinfo/Pacific/Midway +usr/share/zoneinfo/Pacific/Nauru +usr/share/zoneinfo/Pacific/Niue +usr/share/zoneinfo/Pacific/Norfolk +usr/share/zoneinfo/Pacific/Noumea +usr/share/zoneinfo/Pacific/Pago_Pago +usr/share/zoneinfo/Pacific/Palau +usr/share/zoneinfo/Pacific/Pitcairn +usr/share/zoneinfo/Pacific/Pohnpei +usr/share/zoneinfo/Pacific/Ponape +usr/share/zoneinfo/Pacific/Port_Moresby +usr/share/zoneinfo/Pacific/Rarotonga +usr/share/zoneinfo/Pacific/Saipan +usr/share/zoneinfo/Pacific/Samoa +usr/share/zoneinfo/Pacific/Tahiti +usr/share/zoneinfo/Pacific/Tarawa +usr/share/zoneinfo/Pacific/Tongatapu +usr/share/zoneinfo/Pacific/Truk +usr/share/zoneinfo/Pacific/Wake +usr/share/zoneinfo/Pacific/Wallis +usr/share/zoneinfo/Pacific/Yap +usr/share/zoneinfo/Poland +usr/share/zoneinfo/Portugal +usr/share/zoneinfo/posixrules +usr/share/zoneinfo/PRC +usr/share/zoneinfo/PST8PDT +usr/share/zoneinfo/ROC +usr/share/zoneinfo/ROK +usr/share/zoneinfo/Singapore +usr/share/zoneinfo/Turkey +usr/share/zoneinfo/UCT +usr/share/zoneinfo/Universal +usr/share/zoneinfo/US/Alaska +usr/share/zoneinfo/US/Aleutian +usr/share/zoneinfo/US/Arizona +usr/share/zoneinfo/US/Central +usr/share/zoneinfo/US/Eastern +usr/share/zoneinfo/US/East-Indiana +usr/share/zoneinfo/US/Hawaii +usr/share/zoneinfo/US/Indiana-Starke +usr/share/zoneinfo/US/Michigan +usr/share/zoneinfo/US/Mountain +usr/share/zoneinfo/US/Pacific +usr/share/zoneinfo/US/Pacific-New +usr/share/zoneinfo/US/Samoa +usr/share/zoneinfo/UTC +usr/share/zoneinfo/WET +usr/share/zoneinfo/W-SU +usr/share/zoneinfo/Zulu +@dirrm usr/include/x86 +@dirrm usr/include/netinet6 +@dirrm usr/include/netinet diff --git a/distrib/sets/mkvars.mk b/distrib/sets/mkvars.mk new file mode 100644 index 000000000..8076bacf7 --- /dev/null +++ b/distrib/sets/mkvars.mk @@ -0,0 +1,70 @@ +# $NetBSD: mkvars.mk,v 1.6 2011/11/02 14:42:43 he Exp $ + +MKEXTRAVARS= \ + MACHINE \ + MACHINE_ARCH \ + MACHINE_CPU \ + HAVE_GCC \ + HAVE_GDB \ + HAS_SSP \ + OBJECT_FMT \ + TOOLCHAIN_MISSING \ + EXTSRCS \ + MKMANZ \ + MKBFD \ + MKCOMPAT \ + MKCOMPATMODULES \ + MKDYNAMICROOT \ + MKMANPAGES \ + MKXORG \ + X11FLAVOR \ + USE_INET6 \ + USE_KERBEROS \ + USE_LDAP \ + USE_YP \ + NETBSDSRCDIR \ + MAKEVERBOSE + +##### + +.include +.include + +.if (${MKMAN} == "no" || empty(MANINSTALL:Mmaninstall)) +MKMANPAGES=no +.else +MKMANPAGES=yes +.endif + +.if ${MKX11} != "no" +. if ${X11FLAVOUR} == "Xorg" +MKXORG:=yes +MKX11:=no +. else +MKXORG:=no +. endif +.endif + +##### + +mkvars: mkvarsyesno mkextravars mksolaris .PHONY + +mkvarsyesno: .PHONY +.for i in ${_MKVARS.yes} + @echo $i="${$i}" +.endfor +.for i in ${_MKVARS.no} + @echo $i="${$i}" +.endfor + +mkextravars: .PHONY +.for i in ${MKEXTRAVARS} + @echo $i="${$i}" +.endfor + +mksolaris: .PHONY +.if (${MKDTRACE} != "no" || ${MKZFS} != "no") + @echo MKSOLARIS="yes" +.else + @echo MKSOLARIS="no" +.endif diff --git a/distrib/sets/regpkg b/distrib/sets/regpkg new file mode 100755 index 000000000..941617bbb --- /dev/null +++ b/distrib/sets/regpkg @@ -0,0 +1,1072 @@ +#! /bin/sh +# +# $NetBSD: regpkg,v 1.19 2009/12/02 15:52:14 apb Exp $ +# +# Copyright (c) 2003,2009 The NetBSD Foundation, Inc. +# All rights reserved. +# +# This code is derived from software contributed to The NetBSD Foundation +# by Alistair Crooks (agc@NetBSD.org) +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS +# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + +# Usage: regpkg [options] set pkgname +# +# Registers a syspkg in the database directory, +# and optionally creates a binary package. +# +# Options: +# -q Quiet. +# -v Verbose. +# -f Force. +# -m Ignore errors from missing files. +# -u Update. +# -c Use cached information from ${BUILD_INFO_CACHE}. +# -d destdir Sets DESTDIR. +# -t binpkgdir Create a binary package (in *.tgz format) in the +# specified directory. Without this option, a binary +# package is not created. +# -M metalog Use the specified metalog file to override file +# or directory attributes when creating a binary package. +# -N etcdir Use the specified directory for passwd and group files. +# +# When -f is set: If the desired syspkg already exists, it is overwritten. +# When -u is set: If the desired syspkg already exists, it might be +# overwritten or left alone, depending on whether it's older +# or newer than the files that belong to the syspkg. +# When neither -u nor -f are set: It's an error for the desired syspkg +# to already exist. + +prog="${0##*/}" +toppid=$$ +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +bomb() +{ + #echo "${prog}: bomb: start, toppid=${toppid} \$\$=$$" + kill ${toppid} # in case we were invoked from a subshell + #echo "${prog}: bomb: killed ${toppid}" + exit 1 +} + +# A literal newline +nl=' +' +# A literal tab +tab=' ' + +# Prefixes for error messages, warnings, and important informational +# messages. +ERROR="${prog}: ERROR: " +WARNING="${prog}: WARNING: " +NOTE="${prog}: NOTE: " +ERRWARN="${ERROR}" # may be changed by "-f" (force) command line flag +ERRWARNNOTE="${ERROR}" # may be changed by "-u" (update) command line flag + +# +# All temporary files will go in ${SCRATCH}, which will be deleted on +# exit. +# +SCRATCH="$(${MKTEMP} -d "/var/tmp/${0##*/}.XXXXXX")" +if [ $? -ne 0 -o \! -d "${SCRATCH}" ]; then + echo >&2 "${prog}: Could not create scratch directory." + bomb +fi + +# +# cleanup() always deletes the SCRATCH directory, and might also +# delete other files or directories. +# +es=0 +cleanup_must_delete_binpkgfile=false +cleanup_must_delete_dbsubdir=false +cleanup() +{ + trap - 0 + #echo "${prog}: cleanup start" + if ${cleanup_must_delete_binpkgfile:-false} && [ -e "${binpkgfile}" ] + then + echo >&2 "${prog}: deleting partially-created ${binpkgfile}" + rm -f "${binpkgfile}" + fi + if ${cleanup_must_delete_dbsubdir:-false} \ + && [ -e "${SYSPKG_DB_SUBDIR}" ] + then + echo >&2 "${prog}: deleting partially-created ${SYSPKG_DB_SUBDIR}" + rm -rf "${SYSPKG_DB_SUBDIR}" + fi + rm -rf "${SCRATCH}" + #echo "${prog}: cleanup done, exit ${es}" + exit ${es} +} +trap 'es=128; cleanup' 1 2 3 13 15 # HUP INT QUIT PIPE TERM +trap 'es=$?; cleanup' 0 # EXIT + +# +# Parse command line args. +# +verbose=false +verbosity=0 +quiet=false +force=false +update=false +allowmissing=false +DESTDIR="${DESTDIR}" +binpkgdir="" +metalog="" +etcdir="" +SYSPKG_DB_TOPDIR="" +pkgset="" +pkg="" +parse_args() +{ + while [ $# -gt 2 ]; do + case "$1" in + -q) quiet=true; verbose=false ;; + -v) verbose=true; quiet=false + verbosity=$(( ${verbosity} + 1 )) + ;; + -f) force=true ;; + -u) update=true ;; + -m) allowmissing=true ;; + -c) # The -c option is ignored. The BUILD_INFO_CACHE + # environment variable is used instead. + ;; + -d) DESTDIR="$2"; shift ;; + -d*) DESTDIR="${1#-?}" ;; + -t) binpkgdir="$2"; shift ;; + -t*) binpkgdir="${1#-?}" ;; + -M) metalog="$2"; shift ;; + -M*) metalog="${1#-?}" ;; + -N) etcdir="$2"; shift ;; + -N*) etcdir="${1#-?}" ;; + *) break ;; + esac + shift + done + if ${force}; then + ERRWARN="${WARNING}" + else + ERRWARN="${ERROR}" + fi + if ${update}; then + ERRWARNNOTE="${NOTE}" + else + ERRWARNNOTE="${ERRWARN}" + fi + DESTDIR="${DESTDIR%/}" # delete trailing "/" if any + if [ \! -n "${etcdir}" ]; then + etcdir="${DESTDIR}/etc" + fi + if [ -n "${binpkgdir}" -a \! -d "${binpkgdir}" ]; then + echo >&2 "${ERROR}binary pkg directory ${binpkgdir} does not exist" + bomb + fi + # + # SYSPKG_DB_TOPDIR is the top level directory for registering + # syspkgs. It defaults to ${DESTDIR}/var/db/syspkg, but can be + # overridden by environment variables SYSPKG_DBDIR or PKG_DBDIR. + # + # Note that this corresponds to the default value of PKG_DBDIR + # set in .../distrib/syspkg/mk/bsd.syspkg.mk. + # + SYSPKG_DB_TOPDIR="${SYSPKG_DBDIR:-${PKG_DBDIR:-${DESTDIR}/var/db/syspkg}}" + + if [ $# -ne 2 ]; then + echo "Usage: regpkg [options] set pkgname" + bomb + fi + + pkgset="$1" + pkg="$2" +} + +# +# make_PLIST() creates a skeleton PLIST from the pkgset description. +# +# The result is stored in the file ${PLIST}. +# +PLIST="${SCRATCH}/PLIST" +make_PLIST() +{ + if ${verbose}; then + echo "Making PLIST for \"${pkg}\" package (part of ${pkgset} set)" + fi + prefix="${DESTDIR:-/}" + realprefix=/ + ${HOST_SH} "${rundir}/makeplist" -p "${prefix}" -I "${realprefix}" \ + "${pkgset}" "${pkg}" \ + >"${PLIST}" 2>"${SCRATCH}/makeplist-errors" + if ${EGREP} -v '^DEBUG:' "${SCRATCH}/makeplist-errors"; then + # "find" invoked from makeplist sometimes reports + # errors about missing files or directories, and + # makeplist ignores the errors. Catch them here. + echo >&2 "${ERROR}makeplist reported errors for ${pkg}:" + cat >&2 "${SCRATCH}/makeplist-errors" + echo >&2 "${ERROR}see above for errors from makeplist" + if ${allowmissing}; then + echo >&2 "${prog}: ${NOTE}: ignoring above errors, due to '-m' option." + else + ${force} || bomb + fi + fi +} + +# +# init_allfiles() converts the PLIST (which contains relative filenames) +# into a list of absolute filenames. Directories are excluded from the +# result. +# +# The result is stored in the variable ${allfiles}. +# +allfiles='' +init_allfiles() +{ + [ -f "${PLIST}" ] || make_PLIST + allfiles="$(${AWK} ' + BEGIN { destdir = "'"${DESTDIR%/}"'" } + /^@cwd/ { prefix = $2; next } + /^@dirrm/ { next } + { printf("%s%s%s\n", destdir, prefix, $0) }' "${PLIST}")" +} + +# +# init_newestfile() finds the newest file (most recent mtime). +# +# The result is stored in the variable ${newestfile}. +# +newestfile='' +init_newestfile() +{ + [ -s "${allfiles}" ] || init_allfiles + # We assume no shell special characters in ${allfiles}, + # and spaces only between file names, not inside file names. + # This should be safe, because it has no no user-specified parts. + newestfile="$(${LS} -1dt ${allfiles} | ${SED} '1q')" +} + +# +# Various ways of getting parts of the syspkg version number: +# +# get_osvers() - get the OS version number from osrelease.sh or $(uname -r), +# return it in ${osvers}, and set ${method}. +# get_tinyvers() - get the tiny version number from the "versions" file, +# and return it in ${tinyvers}. Does not set ${method}. +# get_newest_rcsid_date() - get the newest RCS date, +# and return it in ${newest}. Does not set ${method}. +# get_newest_mtime_date() - get the newest file modification date, +# and return it in ${newest}. Does not set ${method}. +# get_newest_date() - get date from rcsid or mtime, return it in ${newest}, +# and set ${method}. +# +get_osvers() +{ + if [ -f ../../sys/conf/osrelease.sh ]; then + osvers="$(${HOST_SH} ../../sys/conf/osrelease.sh)" + method=osreleases + else + osvers="$(${UNAME} -r)" + method=uname + fi + #echo "${osvers}" +} +get_tinyvers() +{ + tinyvers="$(${AWK} '$1 ~ '/"${pkg}"/' { print $2 }' \ + "${rundir}/versions")" + case "${tinyvers}" in + "") tinyvers=0 + ;; + esac + #echo "${tinyvers}" +} +get_newest_rcsid_date() +{ + [ -s "${allfiles}" ] || init_allfiles + + # Old RCS identifiers might have 2-digit years, so we match both + # YY/MM/DD and YYYY/MM/DD. We also try to deal with the Y10K + # problem by allowing >4 digit years. + newest=0 + case "${allfiles}" in + "") ;; + *) newest="$(${IDENT} ${allfiles} 2>/dev/null | ${AWK} ' + BEGIN { last = 0 } + $2 == "crt0.c,v" { next } + NF == 8 && \ + $4 ~ /^[0-9][0-9]\/[0-9][0-9]\/[0-9][0-9]$/ \ + { t = "19" $4; gsub("/", "", t); + if (t > last) last = t; } + NF == 8 && \ + $4 ~ /^[0-9][0-9][0-9][0-9][0-9]*\/[0-9][0-9]\/[0-9][0-9]$/ \ + { t = $4; gsub("/", "", t); + if (t > last) last = t; } + END { print last }')" + method=ident + ;; + esac + #echo "${newest}" +} +get_newest_mtime_date() +{ + [ -s "${newestfile}" ] || init_newestfile + + # We could simplify the awk program to take advantage of the + # fact thet it should have exactly one line of input. + newest="$(${ENV_CMD} TZ=UTC LOCALE=C ${LS} -lT "${newestfile}" \ + | ${AWK} ' + BEGIN { newest = 0 } + { + t = $9 ""; + if ($6 == "Jan") t = t "01"; + if ($6 == "Feb") t = t "02"; + if ($6 == "Mar") t = t "03"; + if ($6 == "Apr") t = t "04"; + if ($6 == "May") t = t "05"; + if ($6 == "Jun") t = t "06"; + if ($6 == "Jul") t = t "07"; + if ($6 == "Aug") t = t "08"; + if ($6 == "Sep") t = t "09"; + if ($6 == "Oct") t = t "10"; + if ($6 == "Nov") t = t "11"; + if ($6 == "Dec") t = t "12"; + if ($7 < 10) t = t "0"; + t = t $7; + #these next two lines add the 24h clock onto the date + #gsub(":", "", $8); + #t = sprintf("%s.%4.4s", t, $8); + if (t > newest) newest = t; + } + END { print newest }')" + #echo "${newest}" +} +get_newest_date() +{ + get_newest_rcsid_date + case "${newest}" in + ""|0) get_newest_mtime_date + method=ls + ;; + *) method=rcsid + ;; + esac + #echo "${newest}" +} + +# +# choose_version_number() chooses the syspkg version number, +# by concatenating several components (OS version, syspkg "tiny" +# version and date). We end up with something like +# osvers="3.99.15", tinyvers="0", newest="20060104", +# and t="3.99.15.0.20060104". +# +# The result is stored in the variables ${t} and ${method}. +# +method='' +t='' +choose_version_number() +{ + get_osvers; m1="${method}" + get_tinyvers # does not set ${method} + get_newest_date; m2="${method}" + t="${osvers}.${tinyvers}.${newest}" + method="${m1}.${m2}" + + # print version number that we're using + if ${verbose}; then + echo "${pkg} - ${t} version using ${method} method" + fi +} + +# +# init_db_opts() sets the dbfile, dbtype and db_opts variables, +# used for accessing the pkgdb.byfile.db database. +# +init_db_opts() +{ + dbfile="${SYSPKG_DB_TOPDIR}/pkgdb.byfile.db" + dbtype="btree" + db_opts='' + : ${TARGET_ENDIANNESS:="$(arch_to_endian "${MACHINE_ARCH}")"} + case "${TARGET_ENDIANNESS}" in + 4321) db_opts="${db_opts} -E B" # big-endian + ;; + 1234) db_opts="${db_opts} -E L" # little-endian + ;; + *) + echo >&2 "${WARNING}Unknown or unsupported target endianness" + echo >&2 "${NOTE}Using host endianness" + ;; + esac + if ${update} || ${force}; then + # overwriting an existing entry is not an error + db_opts="${db_opts} -R" + fi + if [ ${verbosity} -lt 2 ]; then + # don't print all the keys added to the database + db_opts="${db_opts} -q" + fi +} + +# +# print_dir_exec_lines outputs an "@exec install" line for each +# directory in ${PLIST} +# +print_dir_exec_lines() +{ + local dir uname gname mode + local dot_slash_dir + local no_dot_dir + local word line + ${AWK} '/^@dirrm/ { print $2 }' <"${PLIST}" | \ + ${SORT} | \ + while read dir; do + # Sanitise the name. ${dir} could be an absolute or + # relative name, with or without a leading "./". + # ${dot_slash_dir} always has a leading "./" (except when + # it's exactly equal to "."). ${no_dot_dir} never has a + # leading "." or "/" (except when it's exactly equal to + # "."). + case "${dir}" in + .|./|/) dot_slash_dir=. ;; + ./*) dot_slash_dir="${dir}" ;; + /*) dot_slash_dir=".${dir}" ;; + *) dot_slash_dir="./${dir}" ;; + esac + no_dot_dir="${dot_slash_dir#./}" + # Get the directory's owner, group, and mode + # from the live file system, or let it be overridden + # by the metalog. + eval "$(${STAT} -f 'uname=%Su gname=%Sg mode=%#OLp' \ + "${DESTDIR}/${dot_slash_dir}")" + if [ -n "${metalog}" ]; then + line="$(echo "${dot_slash_dir}" | \ + ${AWK} -f "${rundir}/join.awk" \ + /dev/stdin "${metalog}")" + for word in ${line}; do + case "${word}" in + uname=*|gname=*|mode=*) eval "${word}" ;; + esac + done + fi + # XXX: Work around yet another pkg_add bug: @cwd lines + # do not actually cause the working directory to change, + # so file names in @exec lines need to be qualified by + # %D, which (in our case, since we know there's an + # "@cwd /" line) will be the dir name passed to + # "pkg_add -p PREFIX". + case "${no_dot_dir}" in + .) d="%D" ;; + *) d="%D/${no_dot_dir}" ;; + esac + cat <=${osvers}". For + # example, etc-sys-etc-1.6ZI.0.20040206 might depend on + # base-sys-root>=1.6ZI. + # + # Failing that, depend on any version "-[0-9]*". + # + # XXX: We could extend the format of the "deps" file to carry + # this sort of information, so we wouldn't have to guess. + # + case "${t}" in + ${osvers}.*) depversion=">=${osvers}" ;; + *) depversion="-[0-9]*" ;; + esac + + # + # Add the dependencies. + # + # We always add a "@pkgdep" line for each prerequisite package. + # + # If the prerequisite pkg is already registered (as it should be + # if our caller is doing things in the right order), then we put + # its exact version number in a "@blddep" line. + # + ${AWK} '$1 ~ '/"${pkg}"/' { print $2 }' "${rundir}/deps" | ${SORT} | \ + while read depname; do + # ${pkgdepglob} is a shell glob pattern that should match + # any version of a pkg. ${pkgdep} uses the special syntax + # for pkg dependencies, and is not usable as a shell + # glob pattern. + pkgdepglob="${depname}-[0-9]*" + pkgdep="${depname}${depversion}" + echo "@pkgdep ${pkgdep}" + blddep="$(cd "${SYSPKG_DB_TOPDIR}" && echo ${pkgdepglob} \ + || bomb)" + case "${blddep}" in + *\*) # pkgdepglob did not match anything + echo >&2 "${WARNING}${pkg} depends on '${pkgdep}' but there is no matching syspkg in ${SYSPKG_DB_TOPDIR}" + ;; + *\ *) # pkgdepglob matched more than once. + echo >&2 "${ERRWARN}${pkg} depends on '${pkgdep}' but there are multiple matching syspkgs in ${SYSPKG_DB_TOPDIR}" + ${force} || bomb + # If ${force} is set, then assume that the last + # match is the most recent. + # XXX: This might be wrong, because of + # differences between lexical sorting and + # numeric sorting. + lastmatch="${blddep##* }" + echo "@blddep ${lastmatch}" + ;; + *) # exactly one match. + # XXX: We ignore the possibility that the + # version we found via ${pkgdepglob} might not + # satisfy ${pkgdep}. We could conceivably use + # "pkg_admin pmatch" to check, but that's not a + # host tool so we can't assume that it will be + # available. + echo "@blddep ${blddep}" + ;; + esac + done >>"${PLIST}" + + # create the comment (should be one line) + comment="$(${AWK} '$1 ~ '/"${pkg}"/' \ + { print substr($0, length($1) + 2) }' \ + "${rundir}/comments")" + case "${comment}" in + "") echo >&2 "${WARNING}no comment for \"${pkg}\" (using placeholder)" + comment="System package for ${pkg}" + ;; + *"${nl}"*) + echo >&2 "${ERRWARN}multi-line comment for \"${pkg}\"" + ${force} || bomb + ;; + esac + echo "${comment}" > "${SYSPKG_DB_SUBDIR}/+COMMENT" + + # create the description (could be multiple lines) + descr="$(${AWK} '$1 ~ '/"${pkg}"/' { + print substr($0, length($1) + 2) }' \ + "${rundir}/descrs")" + case "${descr}" in + "") echo >&2 "${WARNING}no description for \"${pkg}\" (re-using comment)" 2>&1 + descr="${comment}" + ;; + esac + echo "${descr}" > "${SYSPKG_DB_SUBDIR}/+DESC" + ${PRINTF} "\nHomepage:\nhttp://www.NetBSD.org/\n" >> "${SYSPKG_DB_SUBDIR}/+DESC" + + # create the build information + if [ x"${BUILD_INFO_CACHE}" = x ]; then + { + # These variables describe the build + # environment, not the target. + echo "OPSYS=$(${UNAME} -s)" + echo "OS_VERSION=$(${UNAME} -r)" + ${MAKE} -B -f- all < +all: + @echo OBJECT_FMT=${OBJECT_FMT} + @echo MACHINE_ARCH=${MACHINE_ARCH} + @echo MACHINE_GNU_ARCH=${MACHINE_GNU_ARCH} +EOF + } > "${SYSPKG_DB_SUBDIR}/+BUILD_INFO" + else + cp "${BUILD_INFO_CACHE}" "${SYSPKG_DB_SUBDIR}/+BUILD_INFO" + fi + + # test for attributes + args="" + attrs="$(${AWK} '$1 ~ '/"${pkg}"/' { \ + print substr($0, length($1) + 2) }' \ + "${rundir}/attrs")" + for a in "${attrs}"; do + case "${attrs}" in + "") ;; + preserve) + echo "${pkg}-${t}" >"${SYSPKG_DB_SUBDIR}/+PRESERVE" + args="${args} -n ${SYSPKG_DB_SUBDIR}/+PRESERVE" + ;; + esac + done + + # + # Create ${SYSPKGSIR}/+CONTENTS from ${PLIST}, by adding an + # "@name" line and a lot of "@comment MD5:" lines. + # + { + rcsid='$NetBSD: regpkg,v 1.19 2009/12/02 15:52:14 apb Exp $' + utcdate="$(${ENV_CMD} TZ=UTC LOCALE=C \ + ${DATE} '+%Y-%m-%d %H:%M')" + user="${USER:-root}" + host="$(${HOSTNAME_CMD})" + echo "@name ${pkg}-${t}" + echo "@comment Packaged at ${utcdate} UTC by ${user}@${host}" + echo "@comment Packaged using ${prog} ${rcsid}" + # XXX: "option extract-in-place" might help to get + # pkg_add to create directories. + # XXX: no, it doesn't work. Yet another pkg_add bug. + ## echo "@option extract-in-place" + # Move the @pkgdep and @blddep lines up, so that + # they are easy to see when people do "less + # ${DESTDIR}/var/db/syspkg/*/+CONTENTS". + ${EGREP} '^(@pkgdep|@blddep)' "${PLIST}" || true + # Now do the remainder of the file. + while read line; do + case "${line}" in + @pkgdep*|@blddep*) + # already handled by grep above + ;; + @cwd*) + # There should be exactly one @cwd line. + # Just after it, add an "@exec mkdir" + # line for every directory. This is to + # work around a pkg-add bug (see + # ) + echo "${line}" + print_dir_exec_lines + ;; + @*) + # just pass through all other @foo lines + echo "${line}" + ;; + *) + # This should be a file name. Pass it + # through, and append "@comment MD5:". + # XXX why not SHA256 ? + echo "${line}" + file="${DESTDIR}${line}" + if [ -f "${file}" -a -r "${file}" ]; + then + md5sum="$(${CKSUM} -n -m "${file}" \ + | ${AWK} '{print $1}' + )" + echo "@comment MD5:${md5sum}" + fi + ;; + esac + done <"${PLIST}" + } >"${SYSPKG_DB_SUBDIR}/+CONTENTS" + + # + # Update ${SYSPKG_DB_TOPDIR}/pkgdb.byfile.db. + # + { + init_db_opts # sets dbfile, dbtype, and db_opts + + # Transform ${PLIST} into a form to be used as keys in + # ${dbfile}. The results look like absolute paths, + # but they are really relative to ${DESTDIR}. + # + # "@dirrm ." -> "/" + # "@dirrm foo/bar" -> "/foo/bar" + # "@dirrm ./foo/bar" -> "/foo/bar" + # "foo/bar/baz" -> "/foo/bar/baz" + # "./foo/bar/baz" -> "/foo/bar/baz" + # + dblist="${SCRATCH}/dblist" + ${AWK} '/^@dirrm \.\// {gsub("^.", "", $2); print $2; next} + /^@dirrm \.$/ {print "/"; next} + /^@dirrm/ {print "/" $2; next} + /^@/ {next} + /^\.\// {gsub("^.", "", $0); print $0; next} + /./ {print "/" $0; next}' \ + <"${PLIST}" >"${dblist}" + # Add all the path names to the database. + ${AWK} '{print $1 "\t" "'"${pkg}-${t}"'"}' <"${dblist}" \ + | ${DB} -w ${db_opts} -F "${tab}" -f - "${dbtype}" "${dbfile}" + } + + if ${verbose}; then + echo "Registered ${pkg}-${t} in ${SYSPKG_DB_TOPDIR}" + elif ! ${quiet}; then + echo "Registered ${pkg}-${t}" + fi + + cleanup_must_delete_dbsubdir=false +} + +# +# create_syspkg_tgz() creates the *.tgz file for the package. +# +# The output file is ${binpkgdir}/${pkg}-${t}.tgz. +# +create_syspkg_tgz() +{ + # + # pkg_create does not understand metalog files, so we have to + # use pax directly. + # + # We create two specfiles: specfile_overhead describes the + # special files that are part of the package system's metadata + # (+CONTENTS, +COMMENT, +DESCR, and more); and specfile_payload + # describes the files and directories that we actually want as + # part of the package's payload. + # + # We then use the specfiles to create a compressed tarball that + # contains both the overhead files and the payload files. + # + # There's no trivial way to get a single pax run to do + # everything we want, so we run pax twice, with a different + # working directory and a different specfile each time. + # + # We could conceivably make clever use of pax's "-s" option to + # get what we want from a single pax run with a single (more + # complicated) specfile, but the extra trouble doesn't seem + # warranted. + # + cleanup_must_delete_binpkgfile=true + specfile_overhead="${SCRATCH}/spec_overhead" + specfile_payload="${SCRATCH}/spec_payload" + tarball_uncompressed="${SCRATCH}/tarball_uncompressed" + + # Create a specfile for all the overhead files (+CONTENTS and + # friends). + { + plusnames_first="${SCRATCH}/plusnames_first" + plusnames_rest="${SCRATCH}/plusnames_rest" + + # Ensure that the first few files are in the same order + # that "pkg_create" would have used, just in case anything + # depends on that. Other files in alphabetical order. + SHOULD_BE_FIRST="+CONTENTS +COMMENT +DESC" + ( + cd "${SYSPKG_DB_SUBDIR}" || bomb + for file in ${SHOULD_BE_FIRST}; do + [ -e "./${file}" ] && echo "${file}" + done >"${plusnames_first}" + ${LS} -1 | ${FGREP} -v -f "${plusnames_first}" \ + >"${plusnames_rest}" \ + || true + ) + + # Convert the file list to specfile format, and override the + # uid/gid/mode. + { + echo ". optional type=dir" + ${AWK} '{print "./" $0 " type=file uid=0 gid=0 mode=0444" + }' "${plusnames_first}" "${plusnames_rest}" + } >"${specfile_overhead}" + } + + # Create a specfile for the payload of the package. + { + spec1="${SCRATCH}/spec1" + spec2="${SCRATCH}/spec2" + + # Transform ${PLIST} into simple specfile format: + # + # "@dirrm ." -> ". type=dir" + # "@dirrm foo/bar" -> "./foo/bar type=dir" + # "@dirrm ./foo/bar" -> "./foo/bar type=dir" + # "foo/bar/baz" -> "./foo/bar/baz" + # "./foo/bar/baz" -> "./foo/bar/baz" + # + # Ignores @cwd lines. This should be safe, given how + # makeplist works. + ${AWK} '/^@dirrm \.\// {print $2 " type=dir"; next} + /^@dirrm \.$/ {print ". type=dir"; next} + /^@dirrm/ {print "./" $2 " type=dir"; next} + /^@/ {next} + /^\.\// {print $0; next} + /./ {print "./" $0; next}' \ + <"${PLIST}" >"${spec1}" + + # If metalog was specified, attributes from metalog override + # attributes in the file system. We also fake up an + # entry for the ./etc/mtree/set.${pkgset} file. + { + if [ -n "${metalog}" ]; then + ${AWK} -f "${rundir}/join.awk" \ + "${spec1}" "${metalog}" + ${AWK} -f "${rundir}/join.awk" \ + "${spec1}" /dev/stdin <"${spec2}" + + # + # If a file or directory to was mentioned explicitly + # in ${PLIST} but not mentioned in ${metalog}, then the + # file or directory will not be mentioned in ${spec2}. + # This is an error, and means that the metalog was + # not built correctly. + # + if [ -n "${metalog}" ]; then + names1="${SCRATCH}/names1" + names2="${SCRATCH}/names2" + ${AWK} '{print $1}' <"${spec1}" | ${SORT} >"${names1}" + ${AWK} '{print $1}' <"${spec2}" | ${SORT} >"${names2}" + if ${FGREP} -v -f "${names2}" "${spec1}" >/dev/null + then + cat >&2 <&2 + ${force} || bomb + fi + if ${FGREP} -v -f "${names1}" "${spec2}" >/dev/null + then + cat >&2 <&2 + bomb + fi + fi + + # Add lines (tagged "optional") for any implicit directories. + # + # For example, if we have a file ./foo/bar/baz, then we add + # "./foo/bar optional type=dir", "./foo optional type=dir", + # and ". optional type=dir", unless those directories were + # already mentioned explicitly. + # + ${AWK} -f "${rundir}/getdirs.awk" "${spec2}" \ + | ${SORT} -u >"${specfile_payload}" + } + + # Use two pax invocations followed by gzip to create + # the tgz file. + # + # Remove any leading "./" from path names, because that + # could confuse tools that work with binary packages. + ( + cd "${SYSPKG_DB_SUBDIR}" && \ + ${PAX} -O -w -d -N"${etcdir}" -M '-s,^\./,,' \ + -f "${tarball_uncompressed}" \ + <"${specfile_overhead}" \ + || bomb + ) + ( + cd "${DESTDIR:-/}" && \ + ${PAX} -O -w -d -N"${etcdir}" -M '-s,^\./,,' \ + -a -f "${tarball_uncompressed}" \ + <"${specfile_payload}" \ + || bomb + ) + ${GZIP_CMD} -9n <"${tarball_uncompressed}" >"${binpkgfile}" || bomb + + # (Extra space is to make message line up with "Registered" message.) + if ${verbose}; then + echo " Packaged ${binpkgfile}" + elif ! ${quiet}; then + echo " Packaged ${binpkgfile##*/}" + fi + + cleanup_must_delete_binpkgfile=false + +} + +# +# do_register_syspkg() registers the syspkg if appropriate. +# +# If SYSPKG_DB_SUBDIR already exists, that might be an error, depending +# on ${force} and ${update} flags. +# +do_register_syspkg() +{ + # Check that necessary variables are defined + [ -n "${SYSPKG_DB_TOPDIR}" ] || bomb + [ -n "${SYSPKG_DB_SUBDIR}" ] || bomb + + # Create SYSPKG_DB_TOPDIR if necessary + [ -d "${SYSPKG_DB_TOPDIR}" ] || mkdir -p "${SYSPKG_DB_TOPDIR}" || bomb + + # A function to delete db entries referring to any version of ${pkg} + delete_old_db_entries() + { + init_db_opts # sets dbfile, dbtype, and db_opts + dblist="${SCRATCH}/dblist" + ${DB} ${db_opts} -O "${tab}" "${dbtype}" "${dbfile}" \ + | ${AWK} -F "${tab}" '$2 ~ /^'"${pkg}"'-[0-9]/ { print $1 }' \ + >"${dblist}" + ${DB} -d ${db_opts} -f "${dblist}" "${dbtype}" "${dbfile}" + } + + # A function to delete any old version of ${pkg} + delete_old_pkg() + { + pattern="${pkg}-[0-9]*" + matches="$(cd "${SYSPKG_DB_TOPDIR}" && echo ${pattern} \ + || bomb)" + echo >&2 "${NOTE}deleting old pkg (${matches})" + cleanup_must_delete_dbsubdir=true + delete_old_db_entries + ( cd "${SYSPKG_DB_TOPDIR}" && rm -rf ${matches} ) + } + + # Check whether another version of ${pkg} is already registered. + pattern="${pkg}-[0-9]*" + matches="$(cd "${SYSPKG_DB_TOPDIR}" && echo ${pattern} || bomb)" + case "${matches}" in + *\*) ;; # wildcard did not match anything + "${pkg}-${t}") ;; # exact match + *) echo >&2 "${ERRWARNNOTE}another version of ${pkg} is already registered" + ${verbose} && echo >&2 " in ${SYSPKG_DB_TOPDIR}" + ${verbose} && echo >&2 " (while registering ${pkg}-${t})" + ${force} || ${update} || bomb + delete_old_pkg + ;; + esac + + # Check whether the desired version of ${pkg} is already registered, + # and create it if appropriate. + if [ -d "${SYSPKG_DB_SUBDIR}" ]; then + echo >&2 "${ERRWARNNOTE}${pkg}-${t} is already registered" + ${verbose} && echo >&2 " in ${SYSPKG_DB_TOPDIR}" + if ${force}; then + delete_old_pkg + register_syspkg + elif ${update}; then + # + # If all files in SYSPKG_DB_SUBDIR are newer + # than all files in the pkg, then do nothing. + # Else delete and re-register the pkg. + # + [ -n "${newestfile}" ] || init_newestfile + if [ -n "${newestfile}" ]; then + case "$(${FIND} "${SYSPKG_DB_SUBDIR}" -type f \ + ! -newer "${newestfile}" -print)" \ + in + "") ;; + *) + echo >&2 "${NOTE}some files are newer but pkg version is unchanged" + delete_old_pkg + register_syspkg + ;; + esac + + else + # No files in the pkg? (This could happen + # if a pkg contains only directories.) + # Do nothing (keep the already-registered pkg). + : + fi + else + bomb + fi + else + register_syspkg + fi +} + +# +# do_create_syspkg_tgz() creates the the binary pkg (*.tgz) if +# appropriate. +# +# If binpkgfile already exists, that might be an error, depending on +# ${force} and ${update} flags. +# +do_create_syspkg_tgz() +{ + [ -n "${binpkgfile}" ] || bomb + + delete_and_recreate() + { + echo >&2 "${ERRWARNNOTE}deleting and re-creating ${pkg}-${t}.tgz" + rm -f "${binpkgfile}" + create_syspkg_tgz + } + + # Check whether another version of ${pkg} already exists. + pattern="${pkg}-[0-9]*" + matches="$(cd "${binpkgdir}" && echo ${pattern} || bomb)" + case "${matches}" in + *\*) ;; # wildcard did not match anything + "${pkg}-${t}.tgz") ;; # exact match + *) echo >&2 "${ERRWARNNOTE}another version of ${pkg} binary pkg already exists" + ${verbose} && echo >&2 " in ${binpkgdir}" + ${verbose} && echo >&2 " (while creating ${pkg}-${t}.tgz)" + # If neither force nor update, this is a fatal error. + # If force but not update, then leave old .tgz in place. + # If update, then delete the old .tgz. + ${force} || ${update} || bomb + if ${update}; then + echo >&2 "${NOTE}deleting old binary pkg (${matches})" + ( cd "${binpkgdir}" && rm -f ${matches} || bomb ) + fi + ;; + esac + + # Check whether the desired version of ${pkg} already exists, + # and create it if appropriate. + if [ -e "${binpkgfile}" ]; then + echo >&2 "${ERRWARNNOTE}${pkg}-${t}.tgz already exists" + ${verbose} && echo >&2 " in ${binpkgdir}" + if ${force}; then + delete_and_recreate + elif ${update}; then + # + # If all files in SYSPKG_DB_SUBDIR are older + # than ${binpkgfile}, then do nothing. + # Else delete and re-create the tgz. + # + case "$(${FIND} "${SYSPKG_DB_SUBDIR}" -type f \ + -newer "${binpkgfile}" -print)" \ + in + "") ;; + *) delete_and_recreate ;; + esac + else + bomb + fi + else + create_syspkg_tgz + fi +} + +#################### +# begin main program + +parse_args ${1+"$@"} +make_PLIST +choose_version_number +SYSPKG_DB_SUBDIR="${SYSPKG_DB_TOPDIR}/${pkg}-${t}" +do_register_syspkg +if [ -n "${binpkgdir}" ]; then + binpkgfile="${binpkgdir}/${pkg}-${t}.tgz" + do_create_syspkg_tgz +fi + +exit 0 diff --git a/distrib/sets/regpkgset b/distrib/sets/regpkgset new file mode 100755 index 000000000..4e1f1c4e6 --- /dev/null +++ b/distrib/sets/regpkgset @@ -0,0 +1,195 @@ +#! /bin/sh +# +# $NetBSD: regpkgset,v 1.12 2009/12/01 15:49:21 apb Exp $ +# +# Copyright (c) 2003,2009 The NetBSD Foundation, Inc. +# All rights reserved. +# +# This code is derived from software contributed to The NetBSD Foundation +# by Alistair Crooks (agc@NetBSD.org) +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS +# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + +# Usage: regpkgset [options] set +# +# Options: +# -q Quiet. +# -v Verbose. +# -f Force. +# -m Ignore errors from missing files. +# -u Update. +# -c Cache some information in ${BUILD_INFO_CACHE}. +# -d destdir Sets DESTDIR. +# -t binpkgdir Create a binary package (in *.tgz format) in the +# specified directory. Without this option, a binary +# package is not created. +# -M metalog Use the specified metalog file to override file +# or directory attributes when creating a binary package. +# -N etcdir Use the specified directory for passwd and group files. + +prog="${0##*/}" +toppid=$$ +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +: ${TARGET_ENDIANNESS:="$(arch_to_endian "${MACHINE_ARCH}")"} +export TARGET_ENDIANNESS + +bomb() +{ + kill ${toppid} # in case we were invoked from a subshell + exit 1 +} + +# A literal newline +nl=' +' + +# +# cleanup() deletes temporary files. +# +es=0 +cleanup() +{ + trap - 0 + [ x"${BUILD_INFO_CACHE}" != x ] && rm -f "${BUILD_INFO_CACHE}" + exit ${es} +} +trap 'es=128; cleanup' 1 2 3 13 15 # HUP INT QUIT PIPE TERM +trap 'es=$?; cleanup' 0 # EXIT + +# +# Parse command line args. +# +verbose=false +quiet=false +force=false +allowmissing=false +update=false +cache=false +pkgdir="" +metalog="" +etcdir="" +all_options="" +while [ $# -gt 1 ]; do + # XXX: ${all_options} doesn't correctly handle args with + # embedded shell special characters. + case "$1" in + -q) quiet=true; verbose=false ;; + -v) verbose=true; quiet=false ;; + -f) force=true ;; + -m) allowmissing=true ;; + -u) update=true ;; + -c) cache=true ;; + -d) DESTDIR="$2"; all_options="${all_options} $1"; shift ;; + -d*) DESTDIR="${1#-?}" ;; + -t) pkgdir="$2"; all_options="${all_options} $1"; shift ;; + -t*) pkgdir="${1#-?}" ;; + -M) metalog="$2"; all_options="${all_options} $1"; shift ;; + -M*) metalog="${1#-?}" ;; + -N) etcdir="$2"; all_options="${all_options} $1"; shift ;; + -N*) etcdir="${1#-?}" ;; + -*) echo "Usage: regpkgset [options] set ..."; bomb ;; + *) break ;; + esac + all_options="${all_options} $1" + shift +done +export DESTDIR + +if [ $# -lt 1 ]; then + echo "Usage: regpkgset [options] set ..." + bomb +fi + +case "$1" in +all) list="${nlists}" ;; +*) list="$*" ;; +esac + +if ${cache}; then + BUILD_INFO_CACHE="$(${MKTEMP} "/var/tmp/${prog}-BUILD_INFO.XXXXXX")" + export BUILD_INFO_CACHE + { + # These variables describe the build + # environment, not the target. + echo "OPSYS=$(${UNAME} -s)" + echo "OS_VERSION=$(${UNAME} -r)" + ${MAKE} -B -f- all < +all: + @echo OBJECT_FMT=${OBJECT_FMT} + @echo MACHINE_ARCH=${MACHINE_ARCH} + @echo MACHINE_GNU_ARCH=${MACHINE_GNU_ARCH} +EOF + } > "${BUILD_INFO_CACHE}" +fi + +# +# For each pkgset mentioned in ${list}, get a list of all pkgs in the pkgset. +# +# Sort all the pkgs into dependency order (with prerequisite pkgs before +# pkgs that depend on them). +# +# Invoke ${rundir}/regpkg for each pkg, taking care to do it in dependency +# order. If there were any pkgs for which we failed to find dependency +# information, handle them at the end. +# +pkgs="$(for pkgset in ${list}; do + ${HOST_SH} "${rundir}/listpkgs" "${pkgset}" || bomb + done)" +tsort_input="$(${AWK} '{print $2 " " $1}' <"${rundir}/deps" || bomb)" +tsort_output="$(echo "${tsort_input}" | ${TSORT} || bomb)" +for pkg in ${tsort_output}; do + case "${nl}${pkgs}${nl}" in + *"${nl}${pkg}${nl}"*) + # We want this pkg. + pkgset="${pkg%%-*}" + ${verbose} && echo "${prog}: registering ${pkg}" + ${HOST_SH} "${rundir}/regpkg" ${all_options} \ + "${pkgset}" "${pkg}" || bomb + ;; + *) # pkg is mentioned in ${tsort_output} but not in ${pkgs}. + # We do not want this pkg. + ;; + esac +done +for pkg in ${pkgs}; do + case "${nl}${tsort_output}${nl}" in + *"${nl}${pkg}${nl}"*) + # pkg was in the tsort output, so it would have been + # handled above. + ;; + *) # This pkg was not in the tsort output. + # This is probably an error, but process the + # pkg anyway. + echo >&2 "${prog}: WARNING: ${pkg} is not mentioned in deps file" + pkgset="${pkg%%-*}" + ${verbose} && echo "${prog}: registering ${pkg}" + ${HOST_SH} "${rundir}/regpkg" ${all_options} \ + "${pkgset}" "${pkg}" || bomb + ;; + esac +done + +exit 0 diff --git a/distrib/sets/sets.subr b/distrib/sets/sets.subr new file mode 100644 index 000000000..901d4a89f --- /dev/null +++ b/distrib/sets/sets.subr @@ -0,0 +1,560 @@ +# $NetBSD: sets.subr,v 1.138 2012/08/08 14:08:01 christos Exp $ +# + +# +# The following variables contain defaults for sets.subr functions and callers: +# setsdir path to src/distrib/sets +# nlists list of base sets +# xlists list of x11 sets +# extlists list of extsrc sets +# obsolete controls if obsolete files are selected instead +# module if != "no", enable MODULE sets +# shlib shared library format (a.out, elf, or "") +# stlib static library format (a.out, elf) +# +# The following variables are exported to the environment: +# MACHINE +# MACHINE_ARCH +# MACHINE_CPU +# HAVE_BINUTILS +# HAVE_GCC +# HAVE_GDB +# HAS_SSP +# TOOLCHAIN_MISSING +# OBJECT_FMT +# as well as: +# + +# +# The following variables refer to tools that are used when building sets: +# +: ${AWK:=awk} +: ${CKSUM:=cksum} +: ${COMM:=comm} +: ${DATE:=date} +: ${DB:=db} +: ${EGREP:=egrep} +: ${ENV_CMD:=env} # ${ENV} is special to sh(1), ksh(1), etc. +: ${FGREP:=fgrep} +: ${FIND:=find} +: ${GREP:=grep} +: ${GZIP_CMD:=gzip} # ${GZIP} is special to gzip(1) +: ${HOSTNAME_CMD:=hostname} # ${HOSTNAME} is special to bash(1) +: ${HOST_SH:=sh} +: ${IDENT:=ident} +: ${JOIN:=join} +: ${LS:=ls} +: ${MAKE:=make} +: ${MKTEMP:=mktemp} +: ${MTREE:=mtree} +: ${PASTE:=paste} +: ${PAX:=pax} +: ${PRINTF:=printf} +: ${SED:=sed} +: ${SORT:=sort} +: ${STAT:=stat} +: ${TSORT:=tsort} +: ${UNAME:=uname} +: ${WC:=wc} +: ${XARGS:=xargs} + +# +# If printf is a shell builtin command, then we can +# implement cheaper versions of basename and dirname +# that do not involve any fork/exec overhead. +# If printf is not builtin, approximate it using echo, +# and hope there are no weird file names that cause +# some versions of echo to do the wrong thing. +# (Converting to this version of dirname speeded up the +# syspkgdeps script by an order of magnitude, from 68 +# seconds to 6.3 seconds on one particular host.) +# +# Note that naive approximations for dirname +# using ${foo%/*} do not do the right thing in cases +# where the result should be "/" or ".". +# +case "$(type printf)" in +*builtin*) + basename () + { + local bn + bn="${1##*/}" + bn="${bn%$2}" + printf "%s\n" "$bn" + } + dirname () + { + local dn + case "$1" in + ?*/*) dn="${1%/*}" ;; + /*) dn=/ ;; + *) dn=. ;; + esac + printf "%s\n" "$dn" + } + ;; +*) + basename () + { + local bn + bn="${1##*/}" + bn="${bn%$2}" + echo "$bn" + } + dirname () + { + local dn + case "$1" in + ?*/*) dn="${1%/*}" ;; + /*) dn=/ ;; + *) dn=. ;; + esac + echo "$dn" + } + ;; +esac + +##### + +oIFS=$IFS +IFS=" +" + +for x in $( ${MAKE} -B -f ${rundir}/mkvars.mk mkvars ); do + eval export $x +done + +IFS=$oIFS + +MKVARS="$( ${MAKE} -B -f ${rundir}/mkvars.mk mkvars | ${SED} -e 's,=.*,,' | ${XARGS} )" + +##### + +setsdir=${rundir} +obsolete=0 +if [ "${MKKMOD}" = "no" ]; then + module=no # MODULEs are off. + modset="" +else + module=yes + modset="modules" +fi +if [ "${MKATF}" = "no" ]; then + testset="" +else + testset="tests" +fi +# Determine lib type. Do this first so stlib also gets set. +if [ "${OBJECT_FMT}" = "ELF" ]; then + shlib=elf +else + shlib=aout +fi +stlib=$shlib +# Now check for MKPIC or specials and turn off shlib if need be. +if [ "${MKPIC}" = "no" ]; then + shlib=no +fi +# LSC for Minix +#nlists="base comp etc games man misc $modset $testset text" +nlists="minix" +xlists="xbase xcomp xetc xfont xserver" +extlists="extbase extcomp extetc" + +OSRELEASE=$(${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh -k) +MODULEDIR="stand/${MACHINE}/${OSRELEASE}/modules" +SUBST="s#@MODULEDIR@#${MODULEDIR}#g" +SUBST="${SUBST};s#@OSRELEASE@#${OSRELEASE}#g" +SUBST="${SUBST};s#@MACHINE@#${MACHINE}#g" + +# +# list_set_files setfile [...] +# +# Produce a packing list for setfile(s). +# In each file, a record consists of a path and a System Package name, +# separated by whitespace. E.g., +# +# # $NetBSD: sets.subr,v 1.138 2012/08/08 14:08:01 christos Exp $ +# . base-sys-root [keyword[,...]] +# ./altroot base-sys-root +# ./bin base-sys-root +# ./bin/[ base-util-root +# ./bin/cat base-util-root +# [...] +# +# A # in the first column marks a comment. +# +# If ${obsolete} != 0, only entries with an "obsolete" keyword will +# be printed. All other keywords must be present. +# +# The third field is an optional comma separated list of keywords to +# control if a record is printed; every keyword listed must be enabled +# for the record to be printed. The following keywords are available: +# dummy dummy entry (ignored) +# obsolete file is obsolete, and only printed if +# ${obsolete} != 0 +# +# atf ${MKATF} != no +# bfd obsolete, use binutils. +# binutils ${MKBINUTILS} != no +# bsdgrep ${MKBSDGREP} != no +# catpages ${MKCATPAGES} != no +# compat ${MKCOMPAT} != no +# crypto ${MKCRYPTO} != no +# crypto_rc5 ${MKCRYPTO_RC5} != no +# cvs ${MKCVS} != no +# debug ${MKDEBUG} != no +# debuglib ${MKDEBUGLIB} != no +# doc ${MKDOC} != no +# dtrace ${MKDTRACE} != no +# dynamicroot ${MKDYNAMICROOT} != no +# extsrc ${MKEXTSRC} != no +# gcc ${MKGCC} != no +# gcccmds ${MKGCCCMDS} != no +# gdb ${MKGDB} != no +# hesiod ${MKHESIOD} != no +# html ${MKHTML} != no +# inet6 ${MKINET6} != no +# info ${MKINFO} != no +# ipfilter ${MKIPFILTER} != no +# iscsi ${MKISCSI} != no +# kerberos ${MKKERBEROS} != no +# kmod ${MKKMOD} != no +# ldap ${MKLDAP} != no +# lint ${MKLINT} != no +# llvm ${MKLLVM} != no +# lvm ${MKLVM} != no +# makemandb ${MKMAKEMANDB} != no +# man ${MKMAN} != no +# manpages ${MKMANPAGES} != no +# manz ${MKMANZ} != no +# mdns ${MKMDNS} != no +# nls ${MKNLS} != no +# nvi ${MKNVI} != no +# pam ${MKPAM} != no +# pcc ${MKPCC} != no +# pf ${MKPF} != no +# pic ${MKPIC} != no +# postfix ${MKPOSTFIX} != no +# profile ${MKPROFILE} != no +# perfuse ${MKPERFUSE} != no +# rump ${MKRUMP} != no +# share ${MKSHARE} != no +# skey ${MKSKEY} != no +# solaris ${MKDTRACE} != no or ${MKZFS} != no +# ssp ${HAS_SSP} != no +# x11 ${MKX11} != no && ${X11FLAVOUR} != "Xorg" +# xorg ${MKX11} != no && ${X11FLAVOUR} == "Xorg" +# yp ${MKYP} != no +# zfs ${MKZFS} != no +# +# binutils= = value of ${HAVE_BINUTILS} +# gcc= = value of ${HAVE_GCC} +# gdb= = value of ${HAVE_GDB} +# +# use_inet6 ${USE_INET6} != no +# use_kerberos ${USE_KERBEROS} != no +# use_yp ${USE_YP} != no +# +# .cat if ${MKMANZ} != "no" && ${MKCATPAGES} != "no" +# automatically append ".gz" to the filename +# +# .man if ${MKMANZ} != "no" && ${MKMAN} != "no" +# automatically append ".gz" to the filename +# +list_set_files() +{ + if [ ${MAKEVERBOSE:-2} -lt 3 ]; then + verbose=false + else + verbose=true + fi + print_set_lists "$@" | \ + ${AWK} -v obsolete=${obsolete} ' + BEGIN { + if (obsolete) + wanted["obsolete"] = 1 + + split("'"${MKVARS}"'", needvars) + for (vi in needvars) { + nv = needvars[vi] + kw = tolower(nv) + sub(/^mk/, "", kw) + sub(/^has_/, "", kw) + if (ENVIRON[nv] != "no") + wanted[kw] = 1 + } + + if ("'"${TOOLCHAIN_MISSING}"'" != "yes") { + if ("binutils" in wanted) + wanted["binutils=" "'"${HAVE_BINUTILS}"'"] = 1 + if ("gcc" in wanted) + wanted["gcc=" "'"${HAVE_GCC}"'"] = 1 + if ("gdb" in wanted) + wanted["gdb=" "'"${HAVE_GDB}"'"] = 1 + } + if (("man" in wanted) && ("catpages" in wanted)) + wanted[".cat"] = 1 + if (("man" in wanted) && ("manpages" in wanted)) + wanted[".man"] = 1 + } + + /^#/ { + next; + } + + /^-/ { + notwanted[substr($1, 2)] = 1; + delete list [substr($1, 2)]; + next; + } + + + NF > 2 && $3 != "-" { + if (notwanted[$1] != "") + next; + split($3, keywords, ",") + show = 1 + haveobs = 0 + for (ki in keywords) { + kw = keywords[ki] + if (("manz" in wanted) && + (kw == ".cat" || kw == ".man")) + $1 = $1 ".gz" + if (substr(kw, 1, 1) == "!") { + kw = substr(kw, 2) + if (kw in wanted) + show = 0 + } else { + if (! (kw in wanted)) + show = 0 + } + if (kw == "obsolete") + haveobs = 1 + } + if (obsolete && ! haveobs) + next + if (show) + list[$1] = $0 + next + } + + { + if (notwanted[$1] != "") + next; + if (! obsolete) + list[$1] = $0 + } + + END { + for (i in list) { + print list[i] + } + }' + +} + +# +# list_set_lists setname +# +# Print to stdout a list of files, one filename per line, which +# concatenate to create the packing list for setname. E.g., +# +# .../lists/base/mi +# .../lists/base/rescue.mi +# .../lists/base/md.i386 +# [...] +# +# For a given setname $set, the following files may be selected from +# .../list/$set: +# mi +# mi.ext.* +# ad.${MACHINE_ARCH} +# (or) ad.${MACHINE_CPU} +# ad.${MACHINE_CPU}.shl +# md.${MACHINE}.${MACHINE_ARCH} +# (or) md.${MACHINE} +# stl.mi +# stl.${stlib} +# shl.mi +# shl.mi.ext.* +# shl.${shlib} +# shl.${shlib}.ext.* +# module.mi if ${module} != no +# module.${MACHINE} if ${module} != no +# module.ad.${MACHINE_ARCH} if ${module} != no +# (or) module.ad.${MACHINE_CPU} if ${module} != no +# rescue.shl +# rescue.${MACHINE} +# rescue.ad.${MACHINE_ARCH} +# (or) rescue.ad.${MACHINE_CPU} +# rescue.ad.${MACHINE_CPU}.shl +# +# Environment: +# shlib +# stlib +# +list_set_lists() +{ + setname=$1 + + list_set_lists_mi $setname + list_set_lists_ad $setname + list_set_lists_md $setname + list_set_lists_stl $setname + list_set_lists_shl $setname + list_set_lists_module $setname + list_set_lists_rescue $setname + return 0 +} + +list_set_lists_mi() +{ + setdir=$setsdir/lists/$1 + # always exist! + echo $setdir/mi +} + +list_set_lists_ad() +{ + setdir=$setsdir/lists/$1 + [ "${MACHINE}" != "${MACHINE_ARCH}" ] && \ + list_set_lists_common_ad $1 +} + +list_set_lists_md() +{ + setdir=$setsdir/lists/$1 + echo_if_exist $setdir/md.${MACHINE}.${MACHINE_ARCH} || \ + echo_if_exist $setdir/md.${MACHINE} +} + +list_set_lists_stl() +{ + setdir=$setsdir/lists/$1 + echo_if_exist $setdir/stl.mi + echo_if_exist $setdir/stl.${stlib} +} + +list_set_lists_shl() +{ + setdir=$setsdir/lists/$1 + [ "$shlib" != "no" ] || return + echo_if_exist $setdir/shl.mi + echo_if_exist $setdir/shl.${shlib} +} + +list_set_lists_module() +{ + setdir=$setsdir/lists/$1 + [ "$module" != "no" ] || return + echo_if_exist $setdir/module.mi + echo_if_exist $setdir/module.${MACHINE} + # XXX module never has .shl + [ "${MACHINE}" != "${MACHINE_ARCH}" ] && \ + list_set_lists_common_ad $1 module +} + +list_set_lists_rescue() +{ + setdir=$setsdir/lists/$1 + echo_if_exist $setdir/rescue.mi + echo_if_exist $setdir/rescue.${MACHINE} + [ "${MACHINE}" != "${MACHINE_ARCH}" ] && \ + list_set_lists_common_ad $1 rescue +} + +list_set_lists_common_ad() +{ + setdir=$setsdir/lists/$1; _prefix=$2 + + [ -n "$_prefix" ] && prefix="$_prefix". + + # Prefer a .ad.${MACHINE_ARCH} over a + # .ad.${MACHINE_CPU}, since the arch- + # specific one will be more specific than the + # cpu-specific one. + echo_if_exist $setdir/${prefix}ad.${MACHINE_ARCH} || \ + echo_if_exist $setdir/${prefix}ad.${MACHINE_CPU} + [ "$shlib" != "no" ] && \ + echo_if_exist $setdir/${prefix}ad.${MACHINE_CPU}.shl +} + +echo_if_exist() +{ + [ -f $1 ] && echo $1 + return $? +} + +echo_if_exist_foreach() +{ + local _list=$1; shift + for _suffix in $@; do + echo_if_exist ${_list}.${_suffix} + done +} + +print_set_lists() +{ + for setname; do + list=$(list_set_lists $setname) + for l in $list; do + echo $l + if $verbose; then + echo >&2 "DEBUG: list_set_files: $l" + fi + done + done | ${XARGS} ${SED} ${SUBST} +} + +# arch_to_cpu mach +# +# Print the ${MACHINE_CPU} for ${MACHINE_ARCH}=mach, +# as determined by . +# +arch_to_cpu() +{ + MACHINE_ARCH=${1} ${MAKE} -B -f- all < +all: + @echo \${MACHINE_CPU} +EOMAKE +} + +# arch_to_endian mach +# +# Print the ${TARGET_ENDIANNESS} for ${MACHINE_ARCH}=mach, +# as determined by . +# +arch_to_endian() +{ + MACHINE_ARCH=${1} ${MAKE} -B -f- all < +all: + @echo \${TARGET_ENDIANNESS} +EOMAKE +} + +##### + +# print_mkvars +print_mkvars() +{ + for v in $MKVARS; do + eval echo $v=\$$v + done +} + +# print_set_lists_{base,x,ext} +# list_set_lists_{base,x,ext} +# list_set_files_{base,x,ext} +for func in print_set_lists list_set_lists list_set_files; do + for x in base x ext; do + if [ $x = base ]; then + list=nlists + else + list=${x}lists + fi + eval ${func}_${x} \(\) \{ $func \$$list \; \} + done +done diff --git a/distrib/sets/syspkgdeps b/distrib/sets/syspkgdeps new file mode 100755 index 000000000..f8c4e9440 --- /dev/null +++ b/distrib/sets/syspkgdeps @@ -0,0 +1,139 @@ +#!/bin/sh +# +# syspkgdeps [-a arch] [-m machine] [-s setsdir] [-p prefix] sets +# +# Compute naive package dependencies based on file & directory +# nesting. E.g., if pkg P contains /foo/bar and Q contains /foo, +# then Q is considered a dependency of P. +# +# Each line of output contains two syspkg names, +# where the first syspkg depends on the second syspkg. +# + +#set -u + +prog="${0##*/}" +rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/" +. "${rundir}/sets.subr" + +# +# set defaults +# +prefix=/ + +usage() +{ + cat 1>&2 <&2 "${prog}: Could not create scratch directory." + exit 1 +fi + +PATH_MEMBERSHIP="${SCRATCH}/path-membership" +PATH_TO_PKGNAME="${SCRATCH}/pathpkg.db" +PARENT_PKGNAMES="${SCRATCH}/parent-pkgnames" +PARENT_PATHNAMES="${SCRATCH}/parent-pathnames" + +echo >&2 "${prog}: indexing packages by pathnames" + +list_set_files ${sets} | ${SED} 's/^\.\///' | \ +${ENV_CMD} PREFIX="${prefix}" ${AWK} '{ + if ($1 == ".") { + print ENVIRON["PREFIX"] " " $2; + } else { + print ENVIRON["PREFIX"] $1 " " $2; + } +}' | ${SORT} -k 1 -u > "${PATH_MEMBERSHIP}" + +${DB} -q -w -f - btree "${PATH_TO_PKGNAME}" < "${PATH_MEMBERSHIP}" + +if [ $? -ne 0 ]; then + echo >&2 "${prog}: error creating database, aborting" + exit 1 +fi + +echo >&2 "${prog}: computing parent pathnames" + +while read pathname pkgname; do + # print parent pathname. + # (This uses a cheap implementation of dirname from sets.subr.) + dirname "${pathname}" +done < "${PATH_MEMBERSHIP}" > "${PARENT_PATHNAMES}" + +echo >&2 "${prog}: selecting parent packages using parent pathnames" + +${DB} -q -f - btree "${PATH_TO_PKGNAME}" < "${PARENT_PATHNAMES}" | \ + ${PASTE} "${PATH_MEMBERSHIP}" - | \ + ${AWK} '{ if ($2 != $4) print $2 " " $4; }' | \ + ${SORT} -u > "${SCRATCH}/alldeps" + +if [ $? -ne 0 ]; then + echo >&2 "${prog}: error in parent-directory lookup, aborting" + exit 1 +fi + +echo >&2 "${prog}: checking for cyclic dependencies" + +tsort_errors="$(${TSORT} < "${SCRATCH}/alldeps" 2>&1 >/dev/null)" + +if [ -n "${tsort_errors}" ]; then + # Errors from tsort are usually to do with cyclic dependencies. + # The most likely underlying cause is that /foo and /foo/bar/baz + # are in syspkg A, but /foo/bar is in syspkg B. + echo >&2 "${tsort_errors}" # this is likely to be multiple lines + echo >&2 "${prog}: Above messages probably indicate an error in the lists" + exit 1 +fi + +echo >&2 "${prog}: removing redundant dependencies" + +${HOST_SH} "${rundir}/culldeps" < "${SCRATCH}/alldeps" + +if [ $? -ne 0 ]; then + echo >&2 "${prog}: error in culldeps, aborting" + exit 1 +fi diff --git a/distrib/sets/versions b/distrib/sets/versions new file mode 100644 index 000000000..79afc9349 --- /dev/null +++ b/distrib/sets/versions @@ -0,0 +1 @@ +base-fstab-examples 1 diff --git a/drivers/Makefile b/drivers/Makefile index 5f5b56d01..a87643ef3 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -6,7 +6,7 @@ .if ${MKIMAGEONLY} == "yes" # memory driver must be last for ramdisk image -SUBDIR= at_wini floppy log tty pci ramdisk memory +SUBDIR= at_wini floppy log tty pci ramdisk .WAIT memory .else @@ -14,7 +14,8 @@ SUBDIR= at_wini floppy log tty pci ramdisk memory SUBDIR+= ahci amddev atl2 at_wini audio dec21140A dp8390 dpeth \ e1000 fbd filter floppy fxp hello lance log mmc orinoco pci printer \ random readclock rtl8139 rtl8169 ti1225 tty vbox acpi \ - memory ramdisk + ramdisk .WAIT memory + .endif .include diff --git a/drivers/memory/Makefile b/drivers/memory/Makefile index fc5351769..8f3182f67 100644 --- a/drivers/memory/Makefile +++ b/drivers/memory/Makefile @@ -1,5 +1,7 @@ # Makefile for memory driver (MEMORY) +.include + PROG= memory SRCS= memory.c imgrd.mfs OBJS= ${SRCS:N*.h:R:S/$/.o/g} @@ -22,17 +24,15 @@ touch-genfiles: .SUFFIXES: .mfs .c .o -# 'elf32-${ARCH}-minix' below should really be ${MACHINE_GNU_PLATFORM} -# but bsd.own.mk has to be upgraded for that. .mfs.o: ${_MKTARGET_CREATE} - ${OBJCOPY} -Ibinary -B${MACHINE_ARCH} -Oelf32-${MACHINE_ARCH}-minix $< $@ + ${OBJCOPY} -Ibinary -B${MACHINE_ARCH} -O${MACHINE_GNU_PLATFORM} $< $@ -${RAMDISK_PATH}/image: .PHONY +../ramdisk/image: .PHONY ${MAKE} -C ${RAMDISK_PATH} image -imgrd.mfs: ${RAMDISK_PATH}/image - ln -fs ${RAMDISK_PATH}/image $@ +imgrd.mfs: ../ramdisk/image + ln -fs ../ramdisk/image $@ CLEANFILES+= imgrd.mfs .include diff --git a/drivers/ramdisk/Makefile b/drivers/ramdisk/Makefile index d5a4ee9f8..5c5da2957 100644 --- a/drivers/ramdisk/Makefile +++ b/drivers/ramdisk/Makefile @@ -2,6 +2,9 @@ .include +# Remove "drivers/ramdisk" component from path +PROGROOT:= ${.OBJDIR:S,drivers/ramdisk,,} + TOOL_PWD_MKDB?= ${NETBSDSRCDIR}/usr.sbin/pwd_mkdb/pwd_mkdb install: @@ -14,6 +17,7 @@ PROG_SERVERS=mfs procfs PROG_USRSBIN=pwd_mkdb PROGRAMS=$(PROG_DRIVERS) $(PROG_COMMANDS) $(PROG_SERVERS) $(PROG_USRSBIN) EXTRA=system.conf master.passwd rs.single +PROTO_FILES=proto.common.etc proto.common.dynamic proto.sh proto.dev .if ${MKSMALL} != "yes" PROG_DRIVERS+= ahci @@ -29,9 +33,10 @@ PROG_DRIVERS+= acpi CPPFLAGS+= -I${NETBSDSRCDIR}/servers CLEANFILES += $(PROGRAMS) $(SCRIPTS) $(EXTRA) image image.c t proto.gen -CLEANFILES += $(LIBRARIES) pwd.db spwd.db passwd +CLEANFILES += $(LIBRARIES) +CLEANFILES += ${.OBJDIR}/etc/* -image: proto.gen mtab rc $(EXTRA) pwd.db spwd.db passwd +image: proto.gen $(EXTRA) mtab rc pwd.db spwd.db passwd ${TOOL_MKFSMFS} image proto.gen || { rm -f image; false; } # if fsck.mfs -s image | grep -q CLEAN; \ # then : ; \ @@ -40,12 +45,22 @@ image: proto.gen mtab rc $(EXTRA) pwd.db spwd.db passwd # rm -f image; false; \ # fi +# LSC ramdisk rc file != /etc/rc +# mtab not empty!, force execution of the rule to ensure installation +# Conditionnally execute the command if the target file already exists +# I have to place .PHONY for the target to work as expected, but I cannot +# execute the command during an in-tree build (= make xxx) +.for file in rc mtab ${PROTO} ${PROTO_FILES} +$(file): ${.CURDIR}/$(file) .PHONY + [ -e $@ ] || ${INSTALL} $> $@ +.endfor + .for driver in $(PROG_DRIVERS) -$(driver): ../$(driver)/$(driver) +$(driver): ${PROGROOT}/drivers/$(driver)/$(driver) ${INSTALL} $> $@ -../$(driver)/$(driver): - $(MAKE) -C ../$(driver) $(driver) +${PROGROOT}/drivers/$(driver)/$(driver): + $(MAKE) -C ${NETBSDSRCDIR}/drivers/$(driver) $(driver) .endfor .for cmd in $(PROG_COMMANDS) @@ -54,42 +69,45 @@ dir.$(cmd)=ash .else dir.$(cmd)=$(cmd) .endif -$(cmd): ../../commands/$(dir.$(cmd))/$(cmd) +$(cmd): ${PROGROOT}/commands/$(dir.$(cmd))/$(cmd) ${INSTALL} $> $@ -../../commands/$(dir.$(cmd))/$(cmd): - $(MAKE) -C ../../commands/$(dir.$(cmd)) $(cmd) +${PROGROOT}/commands/$(dir.$(cmd))/$(cmd): + $(MAKE) -C ${NETBSDSRCDIR}/commands/$(dir.$(cmd)) $(cmd) .endfor .for etc in $(EXTRA) -$(etc): ../../etc/$(etc) +$(etc): ${NETBSDSRCDIR}/etc/$(etc) ${INSTALL} $> $@ .endfor .for cmd in $(PROG_USRSBIN) -$(cmd): ../../usr.sbin/$(cmd)/$(cmd) +$(cmd): ${PROGROOT}/usr.sbin/$(cmd)/$(cmd) ${INSTALL} $> $@ -../../usr.sbin/$(cmd)/$(cmd): - $(MAKE) -C ../../usr.sbin/$(cmd) $(cmd) +${PROGROOT}/usr.sbin/$(cmd)/$(cmd): + $(MAKE) -C ${NETBSDSRCDIR}/usr.sbin/$(cmd) $(cmd) .endfor .for server in $(PROG_SERVERS) -$(server): ../../servers/$(server)/$(server) +$(server): ${PROGROOT}/servers/$(server)/$(server) ${INSTALL} $> $@ -../../servers/$(server)/$(server): - $(MAKE) -C ../../servers/$(server) $(server) +${PROGROOT}/servers/$(server)/$(server): + $(MAKE) -C ${NETBSDSRCDIR}/servers/$(server) $(server) .endfor -pwd.db spwd.db passwd: ../../etc/master.passwd ../../usr.sbin/pwd_mkdb/pwd_mkdb - rm -f ../../etc/master.passwd.orig ../../etc/passwd.orig - rm -f ../../etc/pwd.db.tmp ../../etc/spwd.db.tmp - ${TOOL_PWD_MKDB} -V 0 -p -d ../../ ../../etc/master.passwd - ${INSTALL} ../../etc/$@ $@ +etc/master.passwd: ${NETBSDSRCDIR}/etc/master.passwd + rm -rf ${.OBJDIR}/etc/ + mkdir -p ${.OBJDIR}/etc + ${INSTALL} $> $@ + ${TOOL_PWD_MKDB} -V 0 -p -d . etc/master.passwd -proto.gen: $(PROGRAMS) proto.sh ${PROTO} proto.common.etc proto.common.dynamic proto.sh +pwd.db spwd.db passwd: etc/master.passwd + ${INSTALL} etc/${.TARGET} ${.TARGET} + +proto.gen: ${PROTO} ${PROTO_FILES} ${PROGRAMS} strip $(PROGRAMS) - sh -e proto.sh ${PROTO} >proto.gen + sh -e proto.sh ${PROTO} >${.OBJDIR}/${.TARGET} .include diff --git a/drivers/ramdisk/rc b/drivers/ramdisk/rc old mode 100644 new mode 100755 diff --git a/drivers/tty/keymaps/Makefile.inc b/drivers/tty/keymaps/Makefile.inc index d4cdbdefc..38a20e4a2 100644 --- a/drivers/tty/keymaps/Makefile.inc +++ b/drivers/tty/keymaps/Makefile.inc @@ -4,9 +4,9 @@ FILESDIR= /usr/lib/keymaps .src.map: ${_MKTARGET_CREATE} - $(HOST_CC) $(LDFLAGS) -DKEYSRC=\"$<\" -o $<_genmap ${.CURDIR}/genmap.c - ./$<_genmap > $@ - @rm -f $<_genmap + $(HOST_CC) $(HOST_LDFLAGS) -DKEYSRC=\"$<\" -o ${.OBJDIR}/${.TARGET}_genmap ${.CURDIR}/genmap.c + ${.OBJDIR}/${.TARGET}_genmap > ${.OBJDIR}/${.TARGET} + @rm -f ${.OBJDIR}/${.TARGET}_genmap realall: ${FILES} diff --git a/etc/Makefile b/etc/Makefile index 9a0d633db..434eb3ad3 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,79 +1,738 @@ +# $NetBSD: Makefile,v 1.398 2012/08/17 16:59:26 riz Exp $ +# from: @(#)Makefile 8.7 (Berkeley) 5/25/95 + +# Environment variables without default values: +# DESTDIR must be set before anything in this file will work. +# RELEASEDIR is where the tarred up stuff for a snapshot or +# release will be placed. +# +# Environment variables with default values: +# LOCALTIME will set the default local time for the system you +# build; it determines what /etc/localtime is symlink'd to. +# KERNSRCDIR points to kernel source; it is set by default to ../sys, +# but can be overridden. +# KERNOBJDIR is the kernel build directory, it defaults to +# ${KERNSRCDIR}/arch/${MACHINE}/compile, but can be overridden. +# KERNCONFDIR is where the configuration files for kernels are found; +# default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden. +# MKCRYPTO; if not `no', install crypto-related configuration +# MKPOSTFIX; if not `no', install postfix configuration +# MKUNPRIVED; if not `no', allow non-root installs. +# MKUPDATE; if not `no', don't do a 'make clean' before kernel compile +# +# Targets: +# distribution: makes a full NetBSD distribution in DESTDIR. If +# INSTALL_DONE is set, it will not do a `make install.' +# if DISTRIBUTION_DONE is set, it will not do anything. +# distrib-dirs: creates an empty NetBSD directory tree in DESTDIR. +# Called by distribution. +# snapshot: calls distribution, above, and then tars up the files +# into a release(7) format in RELEASEDIR/${RELEASEMACHINEDIR}. +# Any port-dependent stuff for this target is found in +# etc.${MACHINE}/Makefile.inc. +# release: a synonym for `snapshot' +# + +# For MK* vars .include -ETC=${DESTDIR}/etc/ -USR=${DESTDIR}/usr/ -USRETC=${DESTDIR}/usr/etc/ -DEFAULTS=${ETC}/defaults +.include # for HOST_SH, TOOL_AWK, ... +.include # For KERNSRCDIR, KERNOBJDIR, ... +.include # For TARGET_ENDIANNESS + +.MAKEOVERRIDES+= USETOOLS + +TZDIR= /usr/share/zoneinfo +LOCALTIME?= UTC +CKSUM?= ${TOOL_CKSUM} +MAKESUMS= MAKE=${MAKE:Q} CKSUM=${CKSUM:Q} ${HOST_SH} ${NETBSDSRCDIR}/distrib/sets/makesums +DISTRIBVER!= ${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh + +# Flags for creating ISO CDROM image +# mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrtools +# Note: At least mkisofs 2.0 should be used. # -# FILES1 are installed in /etc *before* the tree hierarchy is created -# and can therefore not rely on /etc/groups and /etc/passwd being -# present. - -FILES1=group hostname.file inet.conf motd.install mtab profile \ - protocols rc services termcap utmp rc.cd \ - syslog.conf rc.daemons.dist \ - rs.inet rs.single make.conf system.conf ttys resolv.conf rc.conf \ - rc.subr man.conf shells boot.cfg.default \ - devmand/scripts/block devmand/scripts/singlechar +.if !defined(MKISOFS) +MKISOFS!= (which mkisofs || echo true) +.endif +DISTRIBREV!= ${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh -s +# ISO 9660 volume ID. Note that this can only contain [A-Z0-9_]. +ISO_VOLID!= echo NETBSD_${DISTRIBREV} | tr a-z A-Z +MKISOFS_FLAGS+= -J -l -hide-joliet-trans-tbl -r -T \ + -V ${ISO_VOLID} \ + -publisher "The NetBSD Project" \ + -m "${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/cdrom" +.if ${MKISOFS_FLAGS:N-v} +MKISOFS_FLAGS+= -quiet +.endif + +# MD Makefile.inc may append MD targets to BIN[123]. Make sure all +# are empty, to preserve the old semantics of setting them below with "+=". # -# PWFILES are installed in /etc with the 600 permission +BIN1= +BIN2= +BIN3= + +# Directories to build in ${RELEASEDIR}/${RELEASEMACHINEDIR}. +# MD Makefile.inc files can add to this. +# NOTE: Parent directories must be listed before subdirectories. # -PWFILES=master.passwd +INSTALLATION_DIRS= binary binary/sets binary/kernel installation +.if exists(etc.${RELEASEMACHINE}/Makefile.inc) +.include "etc.${RELEASEMACHINE}/Makefile.inc" +.endif + +# -rw-r--r-- +BINOWN= root +BINGRP= operator +UTMPGRP= utmp +.if defined(__MINIX) +BIN1+= \ + boot.cfg.default \ + group hostname.file inet.conf \ + make.conf man.conf \ + motd mtab \ + profile protocols \ + resolv.conf \ + rc rc.conf rc.cd rc.subr \ + rc.daemons.dist rs.inet rs.single \ + services shells syslog.conf \ + system.conf \ + termcap utmp +.else +BIN1+= bootptab changelist csh.cshrc csh.login \ + csh.logout daily daily.conf dm.conf envsys.conf floppytab ftpchroot \ + ftpusers gettytab gpio.conf group hosts hosts.lpd inetd.conf \ + locate.conf login.conf mailer.conf man.conf monthly monthly.conf \ + mrouted.conf named.conf netconfig networks newsyslog.conf \ + nsswitch.conf ntp.conf passwd.conf phones printcap profile protocols \ + rbootd.conf rc rc.conf rc.local rc.subr rc.shutdown remote rpc \ + security security.conf services shells shrc sysctl.conf syslog.conf \ + weekly weekly.conf wscons.conf + +# Use machine-specific disktab if it exists, or the MI one otherwise +.if exists(etc.${MACHINE}/disktab) +BIN1+= etc.${MACHINE}/disktab +.else +BIN1+= disktab +.endif + +.if exists(etc.${MACHINE}/ld.so.conf) +BIN1+= etc.${MACHINE}/ld.so.conf +.endif + +.if exists(etc.${MACHINE}/ttyaction) +BIN1+= etc.${MACHINE}/ttyaction +.endif + +# -rw-rw-r-- +.if !empty(DISTRIBVER:M*.99.*) +BIN2+= motd.current +FILESNAME_motd.current= motd +.elif !empty(DISTRIBVER:M*BETA*) +BIN2+= motd.beta +FILESNAME_motd.beta= motd +.elif !empty(DISTRIBVER:M*RC*) +BIN2+= motd.rc +FILESNAME_motd.rc= motd +.elif !empty(DISTRIBVER:M*STABLE*) +BIN2+= motd.stable +FILESNAME_motd.stable= motd +.else +BIN2+= motd +.endif + +# -rw------- +BIN3+= hosts.equiv +.endif # defined(__MINIX) + +SYSPKG= etc +ETC_PKG=-T etc_pkg +BASE_PKG=-T base_pkg +ETC_INSTALL_FILE=cd ${.CURDIR} && ${INSTALL_FILE} ${ETC_PKG} +ETC_INSTALL_OBJ_FILE=cd ${.OBJDIR} && ${INSTALL_FILE} ${ETC_PKG} + +.if ${TARGET_ENDIANNESS} == "1234" +PWD_MKDB_ENDIAN= -L +.elif ${TARGET_ENDIANNESS} == "4321" +PWD_MKDB_ENDIAN= -B +.else +PWD_MKDB_ENDIAN= +.endif + + +# distribution -- +# Build a distribution # -# FILES3 are installed in /usr/etc 755 -# -FILES3=daily dhcptags.conf rc -DEFAULTFILES=rc.conf minix.rc.conf -USRFILES=Makefile +distribution: .PHONY .MAKE check_DESTDIR distrib-dirs +.if !defined(DISTRIBUTION_DONE) +.if !defined(INSTALL_DONE) + ${MAKEDIRTARGET} ${NETBSDSRCDIR} include _DISTRIB= + ${MAKEDIRTARGET} ${NETBSDSRCDIR} install _DISTRIB= +.endif # !INSTALL_DONE + ${MAKEDIRTARGET} . install-etc-files +. if ${MKX11} != "no" +. if ${X11FLAVOUR} == "Xorg" + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/mit/xorg distribution +. else + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/x11 distribution +. endif +. endif +. if ${MKEXTSRC} != "no" + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/extsrc distribution +. endif + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib/sets makesetfiles +.endif # !DISTRIBUTION_DONE -TOOL_PWD_MKDB?= pwd_mkdb -clean:: - -install: installpw # installpw needed to bootstrap pw db - @echo "Installing /etc, /usr/etc and /usr/lib.." - ${INSTALL_DIR} $(ETC) - ${INSTALL_DIR} $(ETC)/devmand/scripts - @echo "Making hierarchy.." - sh mtree.sh mtree/minix.tree ${TOOL_AWK} ${TOOL_STAT} ${MKUNPRIVED} ${DESTDIR}; # DESTDIR must be last; special case! - @for f in $(FILES1); do if [ -f $(ETC)/$$f ]; then :; else cp $$f $(ETC)/$$f; chmod 755 $(ETC)/$$f; fi; done - @for f in $(USRFILES); do cp usr/$$f $(USR)/$$f; chmod 644 $(USR)/$$f; done - @for f in $(FILES3); do if [ -f $(USRETC)/$$f ]; then :; else cp usr/$$f $(USRETC); chmod 755 $(USRETC)/$$f; fi; done - for f in $(DEFAULTFILES); do cp defaults/$$f $(DEFAULTS)/; chmod 644 $(DEFAULTS)/$$f; done - @echo "Making devices.." - if [ ${MKUNPRIVED} != yes ] ;then \ +CLEANFILES+= MAKEDEV +.if !defined(__MINIX) +MAKEDEV: ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl \ + ${.CURDIR}/etc.${MACHINE}/MAKEDEV.conf + ${_MKTARGET_CREATE} + MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \ + NETBSDSRCDIR=${NETBSDSRCDIR:Q} \ + ${TOOL_AWK} -f ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl \ + > ${.TARGET} +.else +MAKEDEV: + if [ ${MKUNPRIVED} != "yes" ]; then \ cd ${DESTDIR}/dev && sh ${NETBSDSRCDIR}/commands/MAKEDEV/MAKEDEV.sh null ;\ cd ${DESTDIR}/dev && sh ${NETBSDSRCDIR}/commands/MAKEDEV/MAKEDEV.sh std 2>/dev/null ;\ fi - ${INSTALL_FILE} -o root -g operator -m 755 crontab ${DESTDIR}/usr/lib - @echo "Making user homedirs.." - for u in ${DESTDIR}/usr/ast ${DESTDIR}/root; do ${INSTALL_DIR} $$u; cp ast/.[aepv]* $$u ; done - @echo "Installing fonts.." - ${INSTALL_FILE} -m 644 -o root -g operator fonts/*.fnt ${DESTDIR}/usr/lib/fonts/ +.endif # !defined(__MINIX) -installforce:: $(ETC)/rc $(ETC)/rs.inet $(ETC)/rs.single $(ETC)/system.conf $(USRETC)/rc $(USR)/Makefile installpw +RELEASEVARS= BSDOBJDIR BSDSRCDIR BUILDID \ + DESTDIR EXTERNAL_TOOLCHAIN HAVE_GCC HAVE_GDB \ + INSTALLWORLDDIR \ + KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \ + MACHINE MACHINE_ARCH MAKE MAKECONF MAKEFLAGS \ + MAKEOBJDIR MAKEOBJDIRPREFIX MAKEVERBOSE \ + MKBFD MKBINUTILS MKCATPAGES \ + MKCRYPTO MKCRYPTO_RC5 MKCVS \ + MKDEBUG MKDEBUGLIB MKDOC MKDTRACE MKDYNAMICROOT \ + MKGCC MKGCCCMDS MKGDB \ + MKHESIOD MKHTML MKIEEEFP MKINET6 MKINFO MKIPFILTER \ + MKKERBEROS MKLDAP MKLINKLIB MKLINT \ + MKMAN MKMANZ MKMDNS MKNLS MKNPF MKOBJ MKOBJDIRS \ + MKPAM MKPF MKPIC MKPICINSTALL MKPICLIB MKPOSTFIX MKPROFILE \ + MKSHARE MKSKEY MKSOFTFLOAT MKSTATICLIB \ + MKUNPRIVED MKUPDATE MKX11 MKYP \ + NBUILDJOBS NETBSDSRCDIR \ + NOCLEANDIR NODISTRIBDIRS NOINCLUDES \ + OBJMACHINE \ + RELEASEDIR RELEASEMACHINEDIR TOOLCHAIN_MISSING TOOLDIR \ + USE_HESIOD USE_INET6 USE_JEMALLOC USE_KERBEROS USE_LDAP \ + USE_PAM USE_SKEY USE_YP \ + USETOOLS USR_OBJMACHINE \ + X11SRCDIR X11FLAVOUR -installpw:: - if [ ! -d $(ETC) ]; then ${INSTALL_DIR} $(ETC); chmod 755 $(ETC); fi - @for f in $(PWFILES); do if [ -f $(ETC)/$$f ]; then :; else cp $$f $(ETC)/$$f; chmod 600 $(ETC)/$$f; fi; done - touch ${ETC}/pwd.db; touch ${ETC}/spwd.db; ${TOOL_PWD_MKDB} -d ${ETC}/.. -p -V 0 ${ETC}/master.passwd +params: .PHONY +.for var in ${RELEASEVARS} +.if defined(${var}) + @printf "%20s = '%-s'\n" ${var} ${${var}:Q} +.else + @printf "%20s = (undefined)\n" ${var} +.endif +.endfor -$(ETC)/rc: rc .PHONY - ${INSTALL_FILE} -m 755 -o root -g operator $> $@ +CLEANFILES+= etc-release +etc-release: .EXEC .MAKE + ${_MKTARGET_CREATE} + @( echo "NetBSD ${DISTRIBVER}/${MACHINE}"; \ + echo ; \ + cat ${NETBSDSRCDIR}/sys/conf/copyright; \ + echo ; \ + echo "Build settings:"; \ + printf "%20s %s\n" "Build date" "$$(date -u)"; \ + printf "%20s %s\n" "Built by" "$${USER-root}@$$(hostname)"; \ + echo ; \ + (cd ${.CURDIR}; ${MAKE} ${MFLAGS} -j1 params); \ + ) >${.OBJDIR}/${.TARGET} -$(ETC)/rs.inet: rs.inet .PHONY - ${INSTALL_FILE} -m 755 -o root -g operator $> $@ +install-etc-release: .PHONY etc-release + ${_MKMSG_INSTALL} etc/release + ${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 444 \ + etc-release ${DESTDIR}/etc/release -$(ETC)/rs.single: rs.single .PHONY - ${INSTALL_FILE} -m 755 -o root -g operator $> $@ -$(ETC)/system.conf: system.conf .PHONY - ${INSTALL_FILE} -m 644 -o root -g operator $> $@ +FILESDIR= /etc +CONFIGFILES= +CONFIGSYMLINKS= -$(USRETC)/rc: usr/rc .PHONY - ${INSTALL_FILE} -m 755 -o root -g operator $> $@ +.for file in ${BIN1} +CONFIGFILES+= ${file} +FILESMODE_${file:T}= 644 +.endfor -$(USR)/Makefile: usr/Makefile .PHONY - ${INSTALL_FILE} -m 644 -o root -g operator $> $@ +.for file in ${BIN2} +CONFIGFILES+= ${file} +FILESMODE_${file:T}= 664 +.endfor + +.for file in ${BIN3} +CONFIGFILES+= ${file} +FILESMODE_${file:T}= 600 +.endfor + +.if (${MKPOSTFIX} != "no") +CONFIGFILES+= aliases +FILESDIR_aliases= /etc/mail +FILESMODE_aliases= 644 +.endif + +.if !defined(__MINIX) +CONFIGFILES+= MAKEDEV.local +FILESDIR_MAKEDEV.local= /dev +FILESMODE_MAKEDEV.local=${BINMODE} + +CONFIGFILES+= crontab +FILESDIR_crontab= /var/cron/tabs +FILESNAME_crontab= root +FILESMODE_crontab= 600 + +CONFIGFILES+= minfree +FILESDIR_minfree= /var/crash +FILESMODE_minfree= 600 + +CONFIGSYMLINKS+= ${TZDIR}/${LOCALTIME} /etc/localtime \ + /usr/sbin/rmt /etc/rmt +.else +CONFIGSYMLINKS+= /usr/log /var/log \ + /usr/tmp /var/tmp \ + /usr/pkg/bin/clang /usr/bin/cc \ + /usr/pkg/bin/strip /usr/bin/strip \ + /dev/kbdaux /dev/mouse + +.endif # !defined(__MINIX) + + +# install-etc-files -- +# Install etc (config) files; not performed by "make build" +# +# LSC Minix administrator group is operator, not wheel +install-etc-files: .PHONY .MAKE check_DESTDIR MAKEDEV + ${_MKMSG_INSTALL} ${DESTDIR}/etc/master.passwd + ${ETC_INSTALL_FILE} -o root -g operator -m 600 \ + master.passwd ${DESTDIR}/etc + ${TOOL_PWD_MKDB} -p ${PWD_MKDB_ENDIAN} -d ${DESTDIR}/ \ + ${DESTDIR}/etc/master.passwd +.if ${MKUNPRIVED} != "no" + ( \ + for metaent in passwd pwd.db spwd.db; do \ + echo "./etc/$${metaent} type=file mode=0644 uname=root gname=operator tags=etc_pkg"; \ + done; \ + ) | ${METALOG.add} +.endif # MKUNPRIVED != no + ${_MKMSG_INSTALL} ${DESTDIR}/etc/ttys +.if !defined(__MINIX) + ${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${.CURDIR}/etc.${MACHINE}/ttys ${DESTDIR}/etc +.else + ${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${.CURDIR}/ttys ${DESTDIR}/etc +.endif # !defined(__MINIX) +.if exists(etc.${MACHINE}/boot.cfg) + ${_MKMSG_INSTALL} ${DESTDIR}/boot.cfg + ${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${.CURDIR}/etc.${MACHINE}/boot.cfg ${DESTDIR}/ +.endif +.if !defined(__MINIX) + ${_MKMSG_INSTALL} ${DESTDIR}/dev/MAKEDEV + ${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \ + MAKEDEV ${DESTDIR}/dev +.for owner group mode file in \ + ${BINOWN} operator 664 /etc/dumpdates \ + ${BINOWN} operator 600 /etc/skeykeys \ + root wheel 600 /var/at/at.deny \ + root wheel 644 /var/db/locate.database \ + ${BINOWN} ${BINGRP} 600 /var/log/authlog \ + root wheel 600 /var/log/cron \ + ${BINOWN} ${UTMPGRP} 664 /var/log/lastlog \ + ${BINOWN} ${UTMPGRP} 664 /var/log/lastlogx \ + ${BINOWN} ${BINGRP} 640 /var/log/lpd-errs \ + ${BINOWN} ${BINGRP} 600 /var/log/maillog \ + ${BINOWN} ${BINGRP} 644 /var/log/messages \ + ${BINOWN} ${BINGRP} 600 /var/log/secure \ + ${BINOWN} ${UTMPGRP} 664 /var/log/wtmp \ + ${BINOWN} ${UTMPGRP} 664 /var/log/wtmpx \ + ${BINOWN} ${BINGRP} 600 /var/log/xferlog \ + daemon staff 664 /var/msgs/bounds \ + ${BINOWN} ${UTMPGRP} 664 /var/run/utmp \ + ${BINOWN} ${UTMPGRP} 664 /var/run/utmpx \ + games games 664 /var/games/atc_score \ + games games 664 /var/games/battlestar.log \ + games games 664 /var/games/cfscores \ + games games 664 /var/games/criblog \ + games games 660 /var/games/hackdir/perm \ + games games 660 /var/games/hackdir/record \ + games games 664 /var/games/larn/llog12.0 \ + games games 664 /var/games/larn/lscore12.0 \ + games games 664 /var/games/larn/playerids \ + games games 664 /var/games/robots_roll \ + games games 664 /var/games/rogue.scores \ + games games 664 /var/games/saillog \ + games games 664 /var/games/snakerawscores \ + games games 664 /var/games/snake.log \ + games games 664 /var/games/tetris.scores + ${_MKMSG_INSTALL} ${DESTDIR}${file} + if [ ! -e ${DESTDIR}${file} -o -s ${DESTDIR}${file} ]; then \ + ${ETC_INSTALL_FILE} -o ${owner} -g ${group} -m ${mode} \ + /dev/null ${DESTDIR}${file}; \ + else true; fi +.endfor +.for subdir in . defaults bluetooth iscsi mtree namedb pam.d powerd rc.d root skel ssh + ${MAKEDIRTARGET} ${subdir} configinstall +.endfor + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/dhcpcd/sbin/dhcpcd configinstall + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.bin/mail configinstall +.if (${MKPF} != "no") + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.sbin/pf configinstall +.endif +.if (${MKCRYPTO} != "no") + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/crypto/external/bsd/openssh/bin configinstall +.endif +.if (${MKPOSTFIX} != "no") + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/ibm-public/postfix configinstall +.endif +.if (${MKATF} != "no") + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/atf/etc/atf configinstall +.endif +.else # LSC Minix Specific +.for owner group mode sdir tdir file in \ + ${BINOWN} ${BINGRP} ${BINMODE} ${NETBSDSRCDIR}/etc/usr/ ${DESTDIR}/usr/etc/ daily \ + ${BINOWN} ${BINGRP} ${BINMODE} ${NETBSDSRCDIR}/etc/usr/ ${DESTDIR}/usr/etc/ dhcptags.conf \ + ${BINOWN} ${BINGRP} ${BINMODE} ${NETBSDSRCDIR}/etc/usr/ ${DESTDIR}/usr/etc/ rc \ + ${BINOWN} ${BINGRP} ${BINMODE} ${NETBSDSRCDIR}/etc/ ${DESTDIR}/usr/lib/ crontab \ + ${BINOWN} ${BINGRP} ${NONBINMODE} ${NETBSDSRCDIR}/etc/usr/ ${DESTDIR}/usr/ Makefile \ + ${BINOWN} ${BINGRP} ${BINMODE} ${NETBSDSRCDIR}/etc/devmand/scripts/ ${DESTDIR}/etc/devmand/scripts/ block \ + ${BINOWN} ${BINGRP} ${BINMODE} ${NETBSDSRCDIR}/etc/devmand/scripts/ ${DESTDIR}/etc/devmand/scripts/ singlechar + ${_MKMSG_INSTALL} ${DESTDIR}${_dir}${file} + if [ ! -e ${tdir} ]; then \ + mkdir -p ${tdir}; \ + fi; \ + if [ ! -e ${tdir}${file} -o -s ${tdir}${file} ]; then \ + ${ETC_INSTALL_FILE} -o ${owner} -g ${group} -m ${mode} \ + ${sdir}${file} ${tdir}${file}; \ + else true; fi +.endfor +.for subdir in . defaults mtree + ${MAKEDIRTARGET} ${subdir} configinstall +.endfor + ${_MKMSG_INSTALL} ${DESTDIR}/usr/ast and ${DESTDIR}/root + for u in ${DESTDIR}/usr/ast ${DESTDIR}/root; do ${INSTALL_DIR} $$u; cp ${NETBSDSRCDIR}/etc/ast/.[aepv]* $$u; done + ${_MKMSG_INSTALL} ${DESTDIR}/usr/lib/fonts + ${INSTALL_DIR} ${DESTDIR}/usr/lib/fonts + ${INSTALL_FILE} -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} ${NETBSDSRCDIR}/etc/fonts/*.fnt ${DESTDIR}/usr/lib/fonts/ +.endif # LSC Minix Specific + + +# install-obsolete-lists -- +# Install var/db/obsolete set lists; this is performed by "make build" +# +OBSOLETE.dir= ${.OBJDIR}/obsolete.dir +.if !defined(__MINIX) +OBSOLETE.files= base comp etc games man misc text +.endif # defined(__MINIX) +.if ${MKKMOD} != "no" +OBSOLETE.files+= modules +.endif +.if ${MKATF} != "no" +OBSOLETE.files+= tests +.endif +.if ${MKX11} != "no" +OBSOLETE.files+= xbase xcomp xetc xfont xserver +.endif + +# XXX make "makeobsolete" set wise; then generate files respectively +install-obsolete-lists: .PHONY .MAKE + mkdir -p ${OBSOLETE.dir} +.if ${MKX11} != "no" + (cd ${NETBSDSRCDIR}/distrib/sets && \ + AWK=${TOOL_AWK:Q} MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -b -t ${OBSOLETE.dir}) +.else + (cd ${NETBSDSRCDIR}/distrib/sets && \ + AWK=${TOOL_AWK:Q} MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -t ${OBSOLETE.dir}) +.endif +.for file in ${OBSOLETE.files} + ${_MKMSG_INSTALL} ${DESTDIR}/var/db/obsolete/${file} + if [ ! -e ${DESTDIR}/var/db/obsolete/${file} ] || \ + ! cmp -s ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete/${file}; then \ + ${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \ + ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete; \ + else true; fi +.endfor + + +# distrib-dirs -- +# Populate $DESTDIR with directories needed by NetBSD +# +distrib-dirs: .PHONY check_DESTDIR + cd ${NETBSDSRCDIR}/etc/mtree && ${MAKE} distrib-dirs + + +# release, snapshot -- +# Build a full distribution including kernels & install media. +# +release snapshot: .PHONY .MAKE check_DESTDIR check_RELEASEDIR snap_md_post + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib/sets sets + ${MAKESUMS} -A -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets \ + ${KERNEL_SETS:@.SETS.@kern-${.SETS.}.tgz@} + ${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel '*.gz' + + +# iso-image -- +# Standalone target to create a CDROM image after the release +# was composed. Should be run after "make release" in src and xsrc. +# The do-iso-image is to be called from etc.$MACHINE/Makefile.inc +# +# Note: At least mkisofs 2.0 should be used. +# +CDROM_NAME_ADD?= +CDROM_IMAGE?=${RELEASEDIR}/iso/NetBSD-${DISTRIBVER}-${MACHINE}.iso +CDROM.dir= ${.OBJDIR}/cdrom.dir +CDROM.pathlist= ${.OBJDIR}/cdrom.pathlist + +iso-image: + +.if ${MKISOFS} != true +do-iso-image: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-post + ${MAKESUMS} -t ${RELEASEDIR}/iso/ '*.iso' + @echo "iso-image created as: ${CDROM_IMAGE}" +.else +do-iso-image: + @echo iso-image: mkisofs not found +.endif + +iso-image-setup: .PHONY check_RELEASEDIR + rm -f ${CDROM.pathlist} +.for extra in README SOURCE_DATE source +.if exists(${RELEASEDIR}/${extra}) + echo "${extra}=${RELEASEDIR}/${extra}" >> ${CDROM.pathlist} +.endif +.endfor + echo "${MACHINE}/=${RELEASEDIR}/${RELEASEMACHINEDIR}/" >> ${CDROM.pathlist} + mkdir -p ${CDROM.dir} + mkdir -p ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/cdrom + +# iso-image-mi -- +# Create the image after the MD operations have completed. +# +iso-image-mi: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-pre + @if ! ${MKISOFS} --version; then \ + echo "install pkgsrc/sysutils/cdrtools and run 'make iso-image'." ; \ + false; \ + fi + ${MKISOFS} ${MKISOFS_FLAGS} -graft-points -path-list ${CDROM.pathlist} \ + -o ${CDROM_IMAGE} ${CDROM.dir} + +# iso-image-md-pre -- +# Setup ${CDROM.dir} to produce a bootable CD image. +# Overridden by etc.$MACHINE/Makefile.inc +# +iso-image-md-pre: .PHONY check_DESTDIR check_RELEASEDIR iso-image-setup +# (empty -- look in the machine-dependent Makefile.inc) + +# iso-image-md-post -- +# Fixup the CD-image to be bootable. +# Overridden by etc.$MACHINE/Makefile.inc +# +iso-image-md-post: .PHONY check_DESTDIR check_RELEASEDIR iso-image-mi +# (empty -- look in the machine-dependent Makefile.inc) + + +# live-image -- +# Standalone target to create live images after the release was composed. +# Should be run after "make release" in src and xsrc. +# LIVEIMG_RELEASEDIR specifies where to install live images and +# it can be set in MD etc.${MACHINE}/Makefile.inc. +# +LIVEIMG_RELEASEDIR?= ${RELEASEDIR}/images + +live-image: .PHONY check_DESTDIR check_RELEASEDIR + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib live_image \ + LIVEIMG_RELEASEDIR=${LIVEIMG_RELEASEDIR} + ${MAKESUMS} -t ${LIVEIMG_RELEASEDIR} '*.img.gz' + +# install-image -- +# Standalone target to create installation images +# after the release was composed. +# Should be run after "make release" in src and xsrc. +# INSTIMG_RELEASEDIR specifies where to install live images and +# it can be set in MD etc.${MACHINE}/Makefile.inc. +# +INSTIMG_RELEASEDIR?= ${RELEASEDIR}/images + +install-image: .PHONY check_DESTDIR check_RELEASEDIR + ${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib install_image \ + INSTIMG_RELEASEDIR=${INSTIMG_RELEASEDIR} + ${MAKESUMS} -t ${INSTIMG_RELEASEDIR} '*.img.gz' + +# snap_pre -- +# Create ${RELEASEDIR} and necessary subdirectories. +# +snap_pre: .PHONY check_DESTDIR check_RELEASEDIR distribution + ${INSTALL} -d -m 755 ${RELEASEDIR} +.if ${MKUPDATE} == "no" +# Could be a mount point, ignore the errors + -/bin/rm -rf ${RELEASEDIR}/${RELEASEMACHINEDIR} +.endif + ${INSTALL} -d -m 755 ${RELEASEDIR}/${RELEASEMACHINEDIR} +.for dir in ${INSTALLATION_DIRS} + ${INSTALL} -d -m 755 ${RELEASEDIR}/${RELEASEMACHINEDIR}/${dir} +.endfor + +# snap_post -- +# Build the install media and notes from distrib +# +snap_post: .PHONY .MAKE build_kernelsets build_releasekernels +.if ${MKUPDATE} == "no" + cd ${NETBSDSRCDIR}/distrib && ${MAKE} cleandir +.endif + cd ${NETBSDSRCDIR}/distrib && ${MAKE} depend && ${MAKE} && \ + ${MAKE} release + +# build kernels -- +# This target builds the kernels specified by each port. +# A port may specify the following kernels: +# +# KERNEL_SETS The list of kernels that will be +# packaged into sets, named +# kern-${kernel}.tgz. These kernels +# are also placed in the binary/kernel +# area of the release package as +# netbsd-${kernel}.gz. +# +# EXTRA_KERNELS Additional kernels to place in the +# binary/kernel area of the release +# package as netbsd-${kernel}.gz, but +# which are not placed into sets. This +# allows a port to provide e.g. a netbootable +# installation kernel containing a ramdisk. +# +# BUILD_KERNELS Additional kernels to build which are +# not placed into sets nor into the +# binary/kernel area of the release +# package. These are typically kernels +# that are built for inclusion only in +# installation disk/CD-ROM/tape images. +# +# A port may also specify KERNEL_SUFFIXES, which is an optional list +# of filename suffixes for kernels to include in the kernel sets and +# in the binary/kernel area of the release package (e.g. "netbsd" vs. +# "netbsd.ecoff" and "netbsd.srec"). It is not an error if kernels +# with these suffixes do not exist in the kernel build directory. +# +# +# A list of all the kernels to build, which can be overridden from +# external sources (such as make(1)'s environment or command line) +# +ALL_KERNELS?= ${KERNEL_SETS} ${EXTRA_KERNELS} ${BUILD_KERNELS} + +GETKERNELAWK= ${TOOL_AWK} '/^config/ {print $$2; found=1} \ + END{ if (found == 0) print "netbsd"; }' + +build_kernels: .PHONY +# Configure & compile kernels listed in ${ALL_KERNELS} +# +# The 'sync' is so that all writes during the build are pushed back +# to the disk. Not having it causes problems on some host systems +# (e.g. Linux) when building on NFS. +# +.if !defined(KERNELS_DONE) # { +.for configfile in ${ALL_KERNELS} # { +build_kernels: kern-${configfile} +kern-${configfile}: .PHONY .MAKE + cd ${KERNCONFDIR} && ${TOOL_CONFIG} -s ${KERNSRCDIR} \ + -b ${KERNOBJDIR}/${configfile:C/.*\///} ${configfile} +.if ${MKUPDATE} == "no" + cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} distclean +.endif + cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} depend && ${MAKE} + sync +.endfor # ALL_KERNELS # } +.endif # KERNELS_DONE # } + +build_kernelsets: .PHONY +# Create kernel sets from ${KERNEL_SETS} into +# ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets +# +.for configfile in ${KERNEL_SETS} # { +build_kernelsets: kernset-${configfile} +kernset-${configfile}: .PHONY build_kernels snap_pre + @ kernlist=$$(${GETKERNELAWK} ${KERNCONFDIR}/${configfile}); \ + kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \ + kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \ + kern_tgz=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets/kern-${configfile}.tgz; \ + pax_cmd="COMPRESS_PROGRAM=${TOOL_GZIP:Q} GZIP=-9 ${TOOL_PAX} -O -zw -M -N ${NETBSDSRCDIR}/etc -f $${kern_tgz}"; \ + cd $${kerndir} && { \ + kernels=; newest=; \ + for kernel in $${kernlist}; do \ + for s in "" $${kernsuffixes}; do \ + ks="$${kernel}$${s}"; \ + [ -f $${ks} ] || continue; \ + kernels="$${kernels} $${ks}"; \ + [ -z "$${newest}" -o $${ks} -nt "$${newest}" ] && \ + newest=$${ks}; \ + done; \ + done; \ + [ $${kern_tgz} -nt "$${newest}" ] || { \ + echo "echo $${kernels} | $${pax_cmd}"; \ + ( echo "/set uname=${BINOWN} gname=${BINGRP}"; \ + echo ". type=dir optional"; \ + for kernel in $${kernels}; do \ + echo "./$${kernel} type=file"; \ + done ) | eval $${pax_cmd}; \ + } \ + } +.endfor # KERNEL_SETS # } + +build_releasekernels: .PHONY +# Build kernel.gz from ${KERNEL_SETS} ${EXTRA_KERNELS} into +# ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel +# +.for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS} # { +build_releasekernels: releasekern-${configfile} +releasekern-${configfile}: .PHONY build_kernels snap_pre + @ kernlist=$$(${GETKERNELAWK} ${KERNCONFDIR}/${configfile:C/.*\///}); \ + kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \ + kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \ + cd $${kerndir} && { \ + for kernel in $${kernlist}; do \ + for s in "" $${kernsuffixes}; do \ + ks="$${kernel}$${s}"; \ + [ ! -f $${ks} ] && continue; \ + knl_gz="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel/$${kernel}-${configfile:C/.*\///}$${s}.gz"; \ + [ $${knl_gz} -nt $${ks} ] && continue; \ + rm -f $${knl_gz}; \ + echo "${TOOL_GZIP} -c -9 < $${kerndir}/$${ks} > $${knl_gz}"; \ + ${TOOL_GZIP} -c -9 < $${ks} > $${knl_gz}; \ + done; \ + done; \ + } +.endfor # KERNEL_SETS EXTRA_KERNELS # } + +# snap_md_post -- +# Machine dependent distribution media operations. +# Overridden by etc.$MACHINE/Makefile.inc +# +snap_md_post: .PHONY check_DESTDIR check_RELEASEDIR snap_post +# (empty -- look in the machine-dependent Makefile.inc) + + +clean: + -rm -rf ${CDROM.dir} ${CDROM.pathlist} ${OBSOLETE.dir} + +.if !defined(__MINIX) +SUBDIR= defaults rc.d mtree +.else +SUBDIR= devmand defaults mtree +.endif # defined(__MINIX) + +.include +.include + +test: + @echo ${OBSOLETE.files} diff --git a/etc/Makefile.inc b/etc/Makefile.inc new file mode 100644 index 000000000..def3c2ec7 --- /dev/null +++ b/etc/Makefile.inc @@ -0,0 +1,16 @@ +# $NetBSD: Makefile.inc,v 1.4 2002/04/10 14:53:43 lukem Exp $ + +.ifndef ABSTOP +ABSTOP!= cd ${.PARSEDIR}; pwd + +.if (${.PARSEDIR} == ${.CURDIR}) +RELTOP:= . +.else +RELTOP:= ${.PARSEDIR:S,^${.CURDIR},,} +.endif + +# you can set BSD{SRC,OBJ}DIR in Makefile.local.inc +.if exists(${ABSTOP}/Makefile.local.inc) +.include "${ABSTOP}/Makefile.local.inc" +.endif +.endif diff --git a/etc/defaults/Makefile b/etc/defaults/Makefile new file mode 100644 index 000000000..8b6d1d191 --- /dev/null +++ b/etc/defaults/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.5 2011/08/22 20:48:38 jym Exp $ + +.include + +.if !defined(__MINIX) +CONFIGFILES= daily.conf monthly.conf security.conf weekly.conf +.else +CONFIGFILES= minix.rc.conf +.endif # !defined(__MINIX) +FILESDIR= /etc/defaults +FILESMODE= ${NONBINMODE} + +# Manage arch-specific rc.conf(5) file +CONFIGFILES+= rc_conf +FILESNAME_rc_conf= rc.conf +FILESBUILD_rc_conf= yes + +# If present, rc.conf.append is added to the end of the default rc.conf file +RCCONF_SRCS= ${.CURDIR}/rc.conf +.if exists(../etc.${MACHINE}/rc.conf.append) +RCCONF_SRCS+= ${.CURDIR}/../etc.${MACHINE}/rc.conf.append +.endif + +rc_conf: ${RCCONF_SRCS} + ${_MKTARGET_CREATE} + ${TOOL_CAT} ${RCCONF_SRCS} > ${.TARGET} + +.include diff --git a/etc/devmand/Makefile b/etc/devmand/Makefile new file mode 100644 index 000000000..d9415c1c0 --- /dev/null +++ b/etc/devmand/Makefile @@ -0,0 +1,4 @@ + +SUBDIR+= scripts + +.include diff --git a/etc/devmand/scripts/Makefile b/etc/devmand/scripts/Makefile new file mode 100644 index 000000000..ceab4bb56 --- /dev/null +++ b/etc/devmand/scripts/Makefile @@ -0,0 +1,6 @@ + +CONFIGFILES+= block singlechar +FILESDIR=/etc/devmand/scripts +FILESMODE=${BINMODE} + +.include diff --git a/etc/motd.install b/etc/motd.install deleted file mode 100755 index fac605965..000000000 --- a/etc/motd.install +++ /dev/null @@ -1,18 +0,0 @@ - -To install additional packages, run 'pkgin'. - -To install packages from the online package repository, if you have a -working network connection from MINIX: first do a 'pkgin update' to -update the list of available packages, and then do a 'pkgin' to get a -list of commands. For example, 'pkgin install vim' installs the 'vim' -package, and 'pkgin available' will list all available packages. - -To install packages from the installation CD: same, but use pkgin_cd. -To switch to the online repository, do 'pkgin update' again. - -MINIX 3 supports multiple virtual terminals. Just use ALT+F1, F2, F3 -and F4 to navigate among them. - -For more information on how to use MINIX 3, see the wiki: -http://wiki.minix3.org. - diff --git a/etc/mtree/Makefile b/etc/mtree/Makefile new file mode 100644 index 000000000..6f7259c05 --- /dev/null +++ b/etc/mtree/Makefile @@ -0,0 +1,76 @@ +# $NetBSD: Makefile,v 1.22 2011/09/10 17:02:46 apb Exp $ + +.include + +.if ${MKX11} != "no" +. if ${X11FLAVOUR} == "Xorg" +EXTRA_DIST_FILES= ${.CURDIR}/NetBSD.dist.Xorg +. else +EXTRA_DIST_FILES= ${.CURDIR}/NetBSD.dist.XFree86 +. endif +.endif + +# XXX these are only used by compat currently, but they could be used +# by something else; this may need to be fixed properly in the future. +.if ${MKCOMPAT} != "no" +.if exists(NetBSD.dist.${MACHINE_ARCH}) +EXTRA_DIST_FILES+= ${.CURDIR}/NetBSD.dist.${MACHINE_ARCH} +.endif +.endif + +.if ${MKATF} != "no" +EXTRA_DIST_FILES+= ${.CURDIR}/NetBSD.dist.tests +.endif + +.if ${MKEXTSRC} != "no" +EXTRA_DIST_FILES+= ${.CURDIR}/NetBSD.dist.extsrc +.endif + +NetBSD.dist: NetBSD.dist.tmp + cmp -s NetBSD.dist.tmp NetBSD.dist || { \ + echo "Updating NetBSD.dist"; \ + mv NetBSD.dist.tmp NetBSD.dist; \ + } +NetBSD.dist.tmp:: + ${TOOL_CAT} ${.CURDIR}/NetBSD.dist.base ${EXTRA_DIST_FILES} > \ + ${.TARGET} + +CONFIGFILES= NetBSD.dist special +FILESDIR= /etc/mtree + +# distrib-dirs -- +# Populate $DESTDIR with directories needed by NetBSD +# +.if ${MKUNPRIVED} == "no" +TOOL_MTREE.unpriv= +.else +TOOL_MTREE.unpriv= -W +.endif + +# postinstall(8) invokes this target to produce the right +# /etc/mtree/NetBSD.dist content without duplicating logic from +# the Makefile. +# +emit_dist_file: + cat ${.CURDIR}/NetBSD.dist.base ${EXTRA_DIST_FILES} + +distrib-dirs: .PHONY check_DESTDIR NetBSD.dist +.if !defined(DISTRIBUTION_DONE) # { +# Create DESTDIR using HOST_INSTALL_DIR, not INSTALL_DIR, because +# INSTALL_DIR would want to write to the metalog, and it can't do that +# if the metalog is inside DESTDIR but DESTDIR doesn't yet exist. + ${HOST_INSTALL_DIR} -m 755 ${DESTDIR} +# Invoke mtree to create the directories listed in NetBSD.dist; +# then invoke mtree again to register those directories in the metalog. + ${TOOL_MTREE} -def ${.OBJDIR}/NetBSD.dist -N ${.CURDIR}/.. \ + -p ${DESTDIR}/ -U ${TOOL_MTREE.unpriv} +.if ${MKUNPRIVED} != "no" # { + ${TOOL_MTREE} -def ${.OBJDIR}/NetBSD.dist -N ${.CURDIR}/.. \ + -p ${DESTDIR}/ -C -k all | \ + ${TOOL_AWK} '/ optional/ {next} // {print}' | ${METALOG.add} +.endif # MKUNPRIVED # } +.endif # DISTRIBUTION_DONE # } + +CLEANFILES+= NetBSD.dist NetBSD.dist.tmp + +.include diff --git a/etc/mtree/NetBSD.dist.base b/etc/mtree/NetBSD.dist.base index b3d5273e0..93fa80769 100644 --- a/etc/mtree/NetBSD.dist.base +++ b/etc/mtree/NetBSD.dist.base @@ -44,7 +44,6 @@ ./usr/include/ddekit ./usr/include/ddekit/minix ./usr/include/g++ -./usr/include/objc ./usr/include/i386 ./usr/include/lzma ./usr/include/minix @@ -139,8 +138,8 @@ # Symlinks /set type=link uid=0 gid=0 mode=0777 -./dev/mouse link=/dev/kbdaux -./usr/bin/cc link=/usr/pkg/bin/clang -./usr/bin/strip link=/usr/pkg/bin/strip -./var/log link=/usr/log -./var/tmp link=/usr/tmp +./dev/mouse +./usr/bin/cc +./usr/bin/strip +./var/log +./var/tmp diff --git a/etc/mtree/minix.tree b/etc/mtree/minix.tree deleted file mode 100644 index e2cad7235..000000000 --- a/etc/mtree/minix.tree +++ /dev/null @@ -1,125 +0,0 @@ -755 root operator / -755 root operator /bin -755 root operator /boot -755 root operator /boot/minix -755 root operator /boot/minix_default -755 root operator /dev -/dev/mouse -> /dev/kbdaux -755 root operator /etc -755 root operator /etc/defaults -755 root operator /etc/devmand -755 root operator /etc/system.conf.d -755 root operator /home -755 root operator /lib -755 root operator /libexec -555 root operator /mnt -555 root operator /proc -700 root operator /root -755 root operator /sbin -755 root operator /sys -1777 root operator /tmp -755 root operator /usr -755 root operator /usr/adm -755 root operator /usr/adm/old -755 ast other /usr/ast -755 root operator /usr/bin -/usr/bin/cc -> /usr/pkg/bin/clang -/usr/bin/strip -> /usr/pkg/bin/strip -755 root operator /usr/etc -755 root operator /usr/include -755 root operator /usr/include/arpa -755 root operator /usr/include/compat -755 root operator /usr/include/compat/machine -755 root operator /usr/include/ddekit -755 root operator /usr/include/ddekit/minix -755 root operator /usr/include/i386 -755 root operator /usr/include/lzma -755 root operator /usr/include/minix -755 root operator /usr/include/net -755 root operator /usr/include/net/gen -755 root operator /usr/include/prop -755 root operator /usr/include/protocols -755 root operator /usr/include/rpcsvc -755 root operator /usr/include/ssp -755 root operator /usr/include/sys -755 root operator /usr/include/ufs -755 root operator /usr/include/ufs/chfs -755 root operator /usr/include/ufs/ext2fs -755 root operator /usr/include/ufs/ffs -755 root operator /usr/include/ufs/lfs -755 root operator /usr/include/ufs/mfs -755 root operator /usr/include/ufs/ufs -755 root operator /usr/lib -755 root operator /usr/lib/cawf -755 root operator /usr/lib/dict -755 root operator /usr/lib/flex -755 root operator /usr/lib/fonts -755 root operator /usr/lib/keymaps -755 root operator /usr/libexec -755 root operator /usr/log -755 root operator /usr/man -755 root operator /usr/man/man1 -755 root operator /usr/man/man1x -755 root operator /usr/man/man2 -755 root operator /usr/man/man3 -755 root operator /usr/man/man4 -755 root operator /usr/man/man5 -755 root operator /usr/man/man6 -755 root operator /usr/man/man7 -755 root operator /usr/man/man8 -755 root operator /usr/man/man9 -755 root operator /usr/mdec -755 root operator /usr/pkg -755 root operator /usr/pkg/etc -755 root operator /usr/pkg/etc/rc.d -700 root operator /usr/preserve -755 root operator /usr/run -755 root operator /usr/sbin -755 root operator /usr/share -755 root operator /usr/share/doc -755 root operator /usr/share/doc/html -755 root operator /usr/share/doc/html/bzip2 -755 root operator /usr/share/doc/psd -755 root operator /usr/share/doc/psd/19.curses -755 root operator /usr/share/misc -755 root operator /usr/share/mk -755 root operator /usr/share/terminfo -755 root operator /usr/share/zoneinfo -755 root operator /usr/share/zoneinfo/Africa -755 root operator /usr/share/zoneinfo/America -755 root operator /usr/share/zoneinfo/America/Argentina -755 root operator /usr/share/zoneinfo/America/Indiana -755 root operator /usr/share/zoneinfo/America/Kentucky -755 root operator /usr/share/zoneinfo/America/North_Dakota -755 root operator /usr/share/zoneinfo/Antarctica -755 root operator /usr/share/zoneinfo/Arctic -755 root operator /usr/share/zoneinfo/Asia -755 root operator /usr/share/zoneinfo/Atlantic -755 root operator /usr/share/zoneinfo/Australia -755 root operator /usr/share/zoneinfo/Brazil -755 root operator /usr/share/zoneinfo/Canada -755 root operator /usr/share/zoneinfo/Chile -755 root operator /usr/share/zoneinfo/Etc -755 root operator /usr/share/zoneinfo/Europe -755 root operator /usr/share/zoneinfo/Indian -755 root operator /usr/share/zoneinfo/Mexico -755 root operator /usr/share/zoneinfo/Mideast -755 root operator /usr/share/zoneinfo/Pacific -755 root operator /usr/share/zoneinfo/US -755 root operator /usr/spool -711 root operator /usr/spool/at -711 root operator /usr/spool/at/past -700 root operator /usr/spool/crontabs -775 root uucp /usr/spool/locks -700 daemon daemon /usr/spool/lpd -755 root operator /usr/spool/mail -755 root operator /usr/src -1777 root operator /usr/tmp -755 root operator /usr/var -755 root operator /usr/var/db -755 root operator /usr/var/db/pkg -755 root operator /usr/var/run -755 root operator /var -755 root operator /var/run -/var/log -> /usr/log -/var/tmp -> /usr/tmp diff --git a/etc/mtree/mtree.sh b/etc/mtree/mtree.sh deleted file mode 100755 index 96e794ac9..000000000 --- a/etc/mtree/mtree.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -set -e - -if [ $# -ne 4 -a $# -ne 5 ] -then echo "Usage: $0 mtreefile TOOL_AWK TOOL_STAT UNPRIV DESTDIR" - exit 1 -fi - -AWK=$2 -STAT=$3 -UNPRIV=$4 - -if [ $# -eq 5 ] -then DESTDIR=$5 -else DESTDIR="/" # If not set, default to root (i.e., normal case) -fi - -cat "$1" | while read line -do - NF="`echo $line | ${AWK} '{ print NF }'`" - if [ $NF = 4 ] - then mode="`echo $line | ${AWK} '{ print $1 }'`" - owner="`echo $line | ${AWK} '{ print $2 }'`" - group="`echo $line | ${AWK} '{ print $3 }'`" - dir="${DESTDIR}`echo $line | ${AWK} '{ print $4 }'`" - mkdir -p $dir - echo $dir - targetdev="`${STAT} -f %d $dir/.`" - if [ $targetdev -lt 256 ] - then echo "skipping non-dev $dir properties" - elif [ $UNPRIV != yes ] - then - chown $owner $dir - chmod $mode $dir - chgrp $group $dir - fi - elif [ $NF = 3 ] - then target="`echo $line | ${AWK} '{ print $3 }'`" - linkfile="${DESTDIR}`echo $line | ${AWK} '{ print $1 }'`" - rm -f $linkfile - ln -s $target $linkfile - else echo odd line. - exit 1 - fi -done diff --git a/etc/rc.subr b/etc/rc.subr index 20f57f423..88434919e 100644 --- a/etc/rc.subr +++ b/etc/rc.subr @@ -1007,13 +1007,13 @@ backup_file() ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur rcs -q -kb -U $_cur co -q -f -u $_cur - chown root:wheel $_cur $_cur,v + chown root:operator $_cur $_cur,v ;; remove) cp /dev/null $_cur ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur rcs -q -kb -U $_cur - chown root:wheel $_cur $_cur,v + chown root:operator $_cur $_cur,v rm $_cur ;; esac @@ -1024,7 +1024,7 @@ backup_file() cp -p $_cur $_back fi cp -p $_file $_cur - chown root:wheel $_cur + chown root:operator $_cur ;; remove) mv -f $_cur $_back diff --git a/external/Makefile b/external/Makefile index a9ec2eb91..dca5fb3ec 100644 --- a/external/Makefile +++ b/external/Makefile @@ -1,3 +1,5 @@ -SUBDIR=bsd historical +# $NetBSD: Makefile,v 1.18 2012/06/14 04:14:36 riz Exp $ + +SUBDIR+= bsd gpl3 historical .include diff --git a/external/bsd/Makefile b/external/bsd/Makefile index 90ae6bcd8..65b0c882f 100644 --- a/external/bsd/Makefile +++ b/external/bsd/Makefile @@ -1,6 +1,30 @@ +# $NetBSD: Makefile,v 1.32 2012/03/23 21:31:27 christos Exp $ + .include -SUBDIR=byacc file flex mdocml \ +SUBDIR= byacc file flex mdocml \ libarchive +.if (${MKATF} != "no") +SUBDIR+= atf +.endif +.if (${MKISCSI} != "no") +SUBDIR+= iscsi +.endif +.if (${MKLDAP} != "no") +SUBDIR+= openldap +.endif +.if (${MKLLVM} != "no") +SUBDIR+= llvm +.endif +.if (${MKCRYPTO} != "no") +SUBDIR+= pkg_install ../../crypto/external/bsd +.endif +.if (${MKPCC} != "no") +SUBDIR+= pcc +.endif +# IP Filter +.if (${MKIPFILTER} != "no") +SUBDIR+=ipf +.endif .include diff --git a/external/bsd/file/Makefile.inc b/external/bsd/file/Makefile.inc index f7e3f3d36..007de892d 100644 --- a/external/bsd/file/Makefile.inc +++ b/external/bsd/file/Makefile.inc @@ -6,11 +6,7 @@ WARNS=4 BINDIR?= /usr/bin USE_FORT?= no # data-driven bugs? -.if ${USETOOLS} == "yes" TOOL_MKMAGIC?= ${.OBJDIR}/file -.else -TOOL_MKMAGIC= ${.CURDIR}/../bin/file -.endif MFILESDIR?= /usr/share/misc MFILES?= magic.mgc diff --git a/external/bsd/file/bin/Makefile b/external/bsd/file/bin/Makefile index 43178a1e9..f4cddd57a 100644 --- a/external/bsd/file/bin/Makefile +++ b/external/bsd/file/bin/Makefile @@ -11,7 +11,8 @@ FILES= ${MFILES} .endif PROG= file -LDADD+= -L../lib -lmagic -lz +LDADD+= -L../lib +LDADD+= -lmagic -lz DPADD+= ${LIBMAGIC} ${LIBZ} MAN= file.1 magic.5 diff --git a/external/bsd/file/dist/src/file.h b/external/bsd/file/dist/src/file.h index 80bb124fd..6e52e9988 100644 --- a/external/bsd/file/dist/src/file.h +++ b/external/bsd/file/dist/src/file.h @@ -35,6 +35,12 @@ #ifndef __file_h__ #define __file_h__ +#ifdef __minix +/* LSC We are being compiled on a minix host, for some reasons + * this is not included fast enough, so ugly patch: */ +#include +#endif + #ifdef HAVE_CONFIG_H #include #endif diff --git a/external/bsd/libarchive/Makefile.inc b/external/bsd/libarchive/Makefile.inc index e884e1ad5..2a149b857 100644 --- a/external/bsd/libarchive/Makefile.inc +++ b/external/bsd/libarchive/Makefile.inc @@ -6,6 +6,7 @@ USE_FORT?= yes # complex string handling LIBARCHIVEDIR= ${NETBSDSRCDIR}/external/bsd/libarchive/dist +CPPFLAGS+= -I${DESTDIR}/usr/include CPPFLAGS+= -I${NETBSDSRCDIR}/external/bsd/libarchive/include CPPFLAGS+= -DPLATFORM_CONFIG_H=\"config_netbsd.h\" diff --git a/external/bsd/mdocml/Makefile.inc b/external/bsd/mdocml/Makefile.inc index 6dd59dd61..293136f3c 100644 --- a/external/bsd/mdocml/Makefile.inc +++ b/external/bsd/mdocml/Makefile.inc @@ -8,10 +8,9 @@ CPPFLAGS+= -DVERSION=\"${VERSION}\" -DUGLY CPPFLAGS+= -DOSNAME=\"Minix\" .if (${HOSTPROG:U} == "") -CPPFLAGE+= -DHAVE_STRLCAT -DHAVE_STRLCPY +CPPFLAGS+= -DHAVE_STRLCAT -DHAVE_STRLCPY -DHAVE_STRPTIME -DHAVE_MMAP .endif - DISTDIR:= ${.PARSEDIR}/dist .PATH: ${DISTDIR} diff --git a/external/bsd/mdocml/man/Makefile b/external/bsd/mdocml/man/Makefile index 210a685a0..24195f835 100644 --- a/external/bsd/mdocml/man/Makefile +++ b/external/bsd/mdocml/man/Makefile @@ -32,7 +32,4 @@ FILESDIR= /usr/man FILESNAME= style.css .endif -cleandepend: - : - .include diff --git a/external/gpl3/Makefile b/external/gpl3/Makefile index e25a11e98..600035a31 100644 --- a/external/gpl3/Makefile +++ b/external/gpl3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2011/10/31 08:14:44 mrg Exp $ +# $NetBSD: Makefile,v 1.7 2012/08/10 16:05:26 joerg Exp $ .include @@ -6,11 +6,13 @@ SUBDIR+= binutils .endif +.if ${MKGCC} != "no" .if ${HAVE_GCC} == 45 .if ${MKGCCCMDS} != "no" SUBDIR+= gcc .endif .endif +.endif .if ${MKGDB} != "no" .if ${HAVE_GDB} == "7" diff --git a/external/gpl3/binutils/fetch.sh b/external/gpl3/binutils/fetch.sh old mode 100644 new mode 100755 diff --git a/external/gpl3/gcc/Makefile b/external/gpl3/gcc/Makefile index 906e8f398..ae9a90eda 100644 --- a/external/gpl3/gcc/Makefile +++ b/external/gpl3/gcc/Makefile @@ -1,5 +1,6 @@ # $NetBSD: Makefile,v 1.1 2011/06/21 04:53:33 mrg Exp $ -SUBDIR+= lib .WAIT usr.bin +#SUBDIR+= lib .WAIT usr.bin +SUBDIR+= lib .include diff --git a/external/gpl3/gcc/lib/Makefile b/external/gpl3/gcc/lib/Makefile index a299eae0e..e4e471d05 100644 --- a/external/gpl3/gcc/lib/Makefile +++ b/external/gpl3/gcc/lib/Makefile @@ -1,6 +1,7 @@ # $NetBSD: Makefile,v 1.3 2011/09/23 06:47:54 mrg Exp $ # crtstuff is built out of elsewhere, or not at all -SUBDIR+= libgcc libiberty libobjc libsupc++ libstdc++-v3 libgomp +#SUBDIR+= libgcc libiberty libobjc libsupc++ libstdc++-v3 libgomp +SUBDIR+= libgcc .include diff --git a/external/gpl3/gcc/lib/libgcc/Makefile b/external/gpl3/gcc/lib/libgcc/Makefile index c49c32340..9a91ee285 100644 --- a/external/gpl3/gcc/lib/libgcc/Makefile +++ b/external/gpl3/gcc/lib/libgcc/Makefile @@ -4,10 +4,10 @@ SUBDIR+= libgcc .include -.if ${MKPIC} != "no" -SUBDIR+= libgcc_eh libgcc_s -.endif +#.if ${MKPIC} != "no" +#SUBDIR+= libgcc_eh libgcc_s +#.endif -SUBDIR+= libgcov +#SUBDIR+= libgcov .include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/.gitignore b/external/gpl3/gcc/lib/libgcc/libgcc/.gitignore new file mode 100644 index 000000000..5eae406ad --- /dev/null +++ b/external/gpl3/gcc/lib/libgcc/libgcc/.gitignore @@ -0,0 +1,3 @@ +*.c +*.h + diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/__gcc_bcmp.c b/external/gpl3/gcc/lib/libgcc/libgcc/__gcc_bcmp.c deleted file mode 100644 index a2ed33771..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/__gcc_bcmp.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L__gcc_bcmp -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/__main.c b/external/gpl3/gcc/lib/libgcc/libgcc/__main.c deleted file mode 100644 index 640abfb33..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/__main.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L__main -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_absvdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_absvdi2.c deleted file mode 100644 index 9d19f6e23..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_absvdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_absvdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_absvsi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_absvsi2.c deleted file mode 100644 index cc1ee15c4..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_absvsi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_absvsi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_addvdi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_addvdi3.c deleted file mode 100644 index 5d257ce98..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_addvdi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_addvdi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_addvsi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_addvsi3.c deleted file mode 100644 index ac90b54b6..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_addvsi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_addvsi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_ashldi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_ashldi3.c deleted file mode 100644 index 0ee103442..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_ashldi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_ashldi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_ashrdi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_ashrdi3.c deleted file mode 100644 index c7b8512c5..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_ashrdi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_ashrdi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_bswapdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_bswapdi2.c deleted file mode 100644 index b767a7d12..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_bswapdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_bswapdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_bswapsi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_bswapsi2.c deleted file mode 100644 index d70a1e75a..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_bswapsi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_bswapsi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_clear_cache.c b/external/gpl3/gcc/lib/libgcc/libgcc/_clear_cache.c deleted file mode 100644 index 227622d04..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_clear_cache.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_clear_cache -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_clz.c b/external/gpl3/gcc/lib/libgcc/libgcc/_clz.c deleted file mode 100644 index 46a5afad7..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_clz.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_clz -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_clzdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_clzdi2.c deleted file mode 100644 index 56b64b655..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_clzdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_clzdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_clzsi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_clzsi2.c deleted file mode 100644 index 853f81aef..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_clzsi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_clzsi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_cmpdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_cmpdi2.c deleted file mode 100644 index a63170084..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_cmpdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_cmpdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_ctors.c b/external/gpl3/gcc/lib/libgcc/libgcc/_ctors.c deleted file mode 100644 index f8f2648d7..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_ctors.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_ctors -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_ctzdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_ctzdi2.c deleted file mode 100644 index 01b76f9a5..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_ctzdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_ctzdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_ctzsi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_ctzsi2.c deleted file mode 100644 index cc01b7dce..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_ctzsi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_ctzsi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_divdc3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_divdc3.c deleted file mode 100644 index 597acf4d4..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_divdc3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_divdc3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_divdi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_divdi3.c deleted file mode 100644 index 7d5446a40..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_divdi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_divdi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_divsc3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_divsc3.c deleted file mode 100644 index 0b44178bf..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_divsc3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_divsc3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_divtc3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_divtc3.c deleted file mode 100644 index 5bbbf6464..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_divtc3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_divtc3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_divxc3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_divxc3.c deleted file mode 100644 index ebfccc973..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_divxc3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_divxc3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_enable_execute_stack.c b/external/gpl3/gcc/lib/libgcc/libgcc/_enable_execute_stack.c deleted file mode 100644 index cc8103d19..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_enable_execute_stack.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_enable_execute_stack -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_eprintf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_eprintf.c deleted file mode 100644 index a3a9aba00..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_eprintf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_eprintf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_ffsdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_ffsdi2.c deleted file mode 100644 index dbd7d7f09..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_ffsdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_ffsdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_ffssi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_ffssi2.c deleted file mode 100644 index 6be00c62b..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_ffssi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_ffssi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixdfdi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixdfdi.c deleted file mode 100644 index 23ea90c5a..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixdfdi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixdfdi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixsfdi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixsfdi.c deleted file mode 100644 index 1550fce85..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixsfdi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixsfdi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixtfdi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixtfdi.c deleted file mode 100644 index c8b214095..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixtfdi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixtfdi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsdfdi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsdfdi.c deleted file mode 100644 index 6cc91c53b..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsdfdi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixunsdfdi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsdfsi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsdfsi.c deleted file mode 100644 index 111934d00..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsdfsi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixunsdfsi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunssfdi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixunssfdi.c deleted file mode 100644 index ed7f1ad11..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunssfdi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixunssfdi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunssfsi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixunssfsi.c deleted file mode 100644 index c29374cb4..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunssfsi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixunssfsi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunstfdi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixunstfdi.c deleted file mode 100644 index 9a1b45726..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunstfdi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixunstfdi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsxfdi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsxfdi.c deleted file mode 100644 index 3af8ad2ea..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsxfdi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixunsxfdi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsxfsi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsxfsi.c deleted file mode 100644 index 4b80c8113..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixunsxfsi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixunsxfsi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_fixxfdi.c b/external/gpl3/gcc/lib/libgcc/libgcc/_fixxfdi.c deleted file mode 100644 index 4480200a7..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_fixxfdi.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_fixxfdi -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_floatdidf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_floatdidf.c deleted file mode 100644 index cd185b8ef..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_floatdidf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_floatdidf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_floatdisf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_floatdisf.c deleted file mode 100644 index a8c07aa4f..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_floatdisf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_floatdisf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_floatditf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_floatditf.c deleted file mode 100644 index c6ac62b0a..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_floatditf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_floatditf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_floatdixf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_floatdixf.c deleted file mode 100644 index b9b4f7377..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_floatdixf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_floatdixf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_floatundidf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_floatundidf.c deleted file mode 100644 index 78e47df31..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_floatundidf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_floatundidf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_floatundisf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_floatundisf.c deleted file mode 100644 index 0800ae1ae..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_floatundisf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_floatundisf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_floatunditf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_floatunditf.c deleted file mode 100644 index cb10ecac0..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_floatunditf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_floatunditf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_floatundixf.c b/external/gpl3/gcc/lib/libgcc/libgcc/_floatundixf.c deleted file mode 100644 index 1ee8ac2f2..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_floatundixf.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_floatundixf -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_lshrdi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_lshrdi3.c deleted file mode 100644 index 6df133a50..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_lshrdi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_lshrdi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_moddi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_moddi3.c deleted file mode 100644 index c89bbdf40..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_moddi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_moddi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_muldc3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_muldc3.c deleted file mode 100644 index 2c30c500a..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_muldc3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_muldc3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_muldi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_muldi3.c deleted file mode 100644 index 10b311e50..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_muldi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_muldi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_mulsc3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_mulsc3.c deleted file mode 100644 index b7d8ae4e9..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_mulsc3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_mulsc3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_multc3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_multc3.c deleted file mode 100644 index 2a09ee359..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_multc3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_multc3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_mulvdi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_mulvdi3.c deleted file mode 100644 index a3826bbdc..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_mulvdi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_mulvdi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_mulvsi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_mulvsi3.c deleted file mode 100644 index 4140408ff..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_mulvsi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_mulvsi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_mulxc3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_mulxc3.c deleted file mode 100644 index 0d193ab11..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_mulxc3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_mulxc3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_negdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_negdi2.c deleted file mode 100644 index d4a60afb4..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_negdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_negdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_negvdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_negvdi2.c deleted file mode 100644 index 6f6d5a2c1..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_negvdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_negvdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_negvsi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_negvsi2.c deleted file mode 100644 index ef33262ae..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_negvsi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_negvsi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_paritydi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_paritydi2.c deleted file mode 100644 index 2ef8ef8b8..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_paritydi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_paritydi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_paritysi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_paritysi2.c deleted file mode 100644 index 4536c9059..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_paritysi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_paritysi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_popcount_tab.c b/external/gpl3/gcc/lib/libgcc/libgcc/_popcount_tab.c deleted file mode 100644 index 6403678e5..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_popcount_tab.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_popcount_tab -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_popcountdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_popcountdi2.c deleted file mode 100644 index 707584fa1..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_popcountdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_popcountdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_popcountsi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_popcountsi2.c deleted file mode 100644 index ff216a900..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_popcountsi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_popcountsi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_powidf2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_powidf2.c deleted file mode 100644 index 4d6e50ca9..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_powidf2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_powidf2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_powisf2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_powisf2.c deleted file mode 100644 index f815ba3aa..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_powisf2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_powisf2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_powitf2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_powitf2.c deleted file mode 100644 index b0e32acb1..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_powitf2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_powitf2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_powixf2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_powixf2.c deleted file mode 100644 index e3ca87c90..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_powixf2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_powixf2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_subvdi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_subvdi3.c deleted file mode 100644 index 4a4bd29ef..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_subvdi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_subvdi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_subvsi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_subvsi3.c deleted file mode 100644 index 51ea52364..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_subvsi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_subvsi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_trampoline.c b/external/gpl3/gcc/lib/libgcc/libgcc/_trampoline.c deleted file mode 100644 index cd91cec96..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_trampoline.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_trampoline -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_ucmpdi2.c b/external/gpl3/gcc/lib/libgcc/libgcc/_ucmpdi2.c deleted file mode 100644 index 5e26f6b4a..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_ucmpdi2.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_ucmpdi2 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_udiv_w_sdiv.c b/external/gpl3/gcc/lib/libgcc/libgcc/_udiv_w_sdiv.c deleted file mode 100644 index e36107785..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_udiv_w_sdiv.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_udiv_w_sdiv -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_udivdi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_udivdi3.c deleted file mode 100644 index 943c72a89..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_udivdi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_udivdi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_udivmoddi4.c b/external/gpl3/gcc/lib/libgcc/libgcc/_udivmoddi4.c deleted file mode 100644 index eecff5c8a..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_udivmoddi4.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_udivmoddi4 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/_umoddi3.c b/external/gpl3/gcc/lib/libgcc/libgcc/_umoddi3.c deleted file mode 100644 index d92dc6a4a..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/_umoddi3.c +++ /dev/null @@ -1,2 +0,0 @@ -#define L_umoddi3 -#include diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/cs-tconfig.h b/external/gpl3/gcc/lib/libgcc/libgcc/cs-tconfig.h deleted file mode 100644 index 9788f7023..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/cs-tconfig.h +++ /dev/null @@ -1 +0,0 @@ -timestamp diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/insn-flags.h b/external/gpl3/gcc/lib/libgcc/libgcc/insn-flags.h deleted file mode 100644 index e69de29bb..000000000 diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/options.h b/external/gpl3/gcc/lib/libgcc/libgcc/options.h deleted file mode 100644 index e69de29bb..000000000 diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/sysroot-suffix.h b/external/gpl3/gcc/lib/libgcc/libgcc/sysroot-suffix.h deleted file mode 100644 index e69de29bb..000000000 diff --git a/external/gpl3/gcc/lib/libgcc/libgcc/tconfig.h b/external/gpl3/gcc/lib/libgcc/libgcc/tconfig.h deleted file mode 100644 index 7ec80a108..000000000 --- a/external/gpl3/gcc/lib/libgcc/libgcc/tconfig.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef GCC_TCONFIG_H -#define GCC_TCONFIG_H -#ifndef USED_FOR_TARGET -# define USED_FOR_TARGET -#endif -#include "auto-host.h" -#ifdef IN_GCC -# include "ansidecl.h" -#endif -#endif /* GCC_TCONFIG_H */ diff --git a/external/historical/nawk/bin/Makefile b/external/historical/nawk/bin/Makefile index b421c3132..8e9bb05d3 100644 --- a/external/historical/nawk/bin/Makefile +++ b/external/historical/nawk/bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2011/08/16 10:45:37 christos Exp $ +# $NetBSD: Makefile,v 1.9 2012/08/10 16:05:26 joerg Exp $ WARNS?= 4 CWARNFLAGS.clang+= -Wno-self-assign @@ -17,9 +17,7 @@ LDADD+= -lm DPADD+= ${LIBM} .endif YHEADER= yes -.if defined(HAVE_GCC) || defined(HAVE_PCC) COPTS+= -Wno-pointer-sign -.endif COPTS.run.c += -Wno-format-nonliteral COPTS.tran.c += -Wno-format-nonliteral diff --git a/external/lgpl3/mpfr/lib/libmpfr/Makefile b/external/lgpl3/mpfr/lib/libmpfr/Makefile index 47b28b884..552df429b 100644 --- a/external/lgpl3/mpfr/lib/libmpfr/Makefile +++ b/external/lgpl3/mpfr/lib/libmpfr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2011/09/21 02:06:42 mrg Exp $ +# $NetBSD: Makefile,v 1.10 2012/08/10 16:10:29 joerg Exp $ .include @@ -520,6 +520,4 @@ COPTS.set_ld.c+= -Wno-error # Don't warn about functions which cannot be stack smash protected as # there are a lot of them. -.if defined(HAVE_GCC) || defined(HAVE_PCC) COPTS += -Wno-stack-protector -.endif diff --git a/external/public-domain/xz/Makefile.inc b/external/public-domain/xz/Makefile.inc index 009d75f3b..d1f6424d7 100644 --- a/external/public-domain/xz/Makefile.inc +++ b/external/public-domain/xz/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.1 2010/11/02 16:34:36 joerg Exp $ +# $NetBSD: Makefile.inc,v 1.3 2011/10/16 17:24:32 joerg Exp $ XZHOMEPAGE= http://tukaani.org/xz/ XZVERSION= 5.0.0 diff --git a/external/public-domain/xz/lib/Makefile b/external/public-domain/xz/lib/Makefile index fd312e654..f831b58b4 100644 --- a/external/public-domain/xz/lib/Makefile +++ b/external/public-domain/xz/lib/Makefile @@ -3,6 +3,8 @@ LIB= lzma USE_SHLIBDIR= yes NOLINT= yes +# LSC MINIX for now... +NOGCCERROR=yes LIBDPLIBS+= c ${.CURDIR}/../../../../lib/libc diff --git a/gnu/dist/fetch.sh b/gnu/dist/fetch.sh old mode 100644 new mode 100755 diff --git a/include/Makefile b/include/Makefile index c34bb2d69..e100062db 100644 --- a/include/Makefile +++ b/include/Makefile @@ -25,6 +25,9 @@ INCS= a.out.h aio.h ar.h assert.h atomic.h \ ttyent.h tzfile.h ucontext.h ulimit.h unistd.h util.h utime.h utmp.h \ utmpx.h uuid.h varargs.h vis.h wchar.h wctype.h wordexp.h +# MINIX Specific headers. +INCS+= env.h fetch.h lib.h libutil.h timers.h + .else INCS= a.out.h aio.h ar.h assert.h atomic.h \ bitstring.h bm.h cdbr.h cdbw.h complex.h cpio.h ctype.h \ @@ -75,10 +78,12 @@ SUBDIR+= ../common/include/prop .endif .if defined(__MINIX) -.include "Makefile.minix.inc" SUBDIR+= arch/${MACHINE_ARCH} SUBDIR+= arch sys minix SUBDIR+= net netinet netinet6 +SUBDIR+= ddekit +.else +SUBDIR+= ../common/include/ppath .endif .include diff --git a/include/Makefile.minix.inc b/include/Makefile.minix.inc deleted file mode 100644 index 5bf445f63..000000000 --- a/include/Makefile.minix.inc +++ /dev/null @@ -1,39 +0,0 @@ -.include - -INCS+= env.h fetch.h lib.h libutil.h timers.h - -INCS+= minix/acpi.h minix/audio_fw.h minix/bitmap.h \ - minix/bdev.h minix/blockdriver.h minix/blockdriver_mt.h \ - minix/btrace.h \ - minix/callnr.h minix/chardriver.h minix/com.h minix/compiler.h \ - minix/config.h minix/const.h minix/cpufeature.h minix/crtso.h \ - minix/debug.h minix/devio.h minix/devman.h minix/dmap.h \ - minix/driver.h minix/drivers.h minix/drvlib.h minix/ds.h \ - minix/endpoint.h minix/fslib.h minix/gcov.h minix/hash.h \ - minix/hgfs.h minix/ioctl.h minix/input.h minix/ipc.h minix/ipcconst.h \ - minix/keymap.h minix/limits.h minix/mthread.h minix/minlib.h \ - minix/netdriver.h minix/optset.h minix/partition.h minix/portio.h \ - minix/priv.h minix/procfs.h minix/profile.h minix/queryparam.h \ - minix/rs.h minix/safecopies.h minix/sched.h minix/sef.h minix/sffs.h \ - minix/sound.h minix/spin.h minix/sys_config.h minix/sysinfo.h \ - minix/syslib.h minix/sysutil.h minix/timers.h minix/type.h \ - minix/tty.h minix/u64.h minix/usb.h minix/usb_ch9.h minix/vbox.h \ - minix/vboxfs.h minix/vboxif.h minix/vboxtype.h minix/vm.h \ - minix/vfsif.h minix/vtreefs.h minix/libminixfs.h minix/netsock.h - -INCS+= net/gen/arp_io.h net/gen/dhcp.h net/gen/ether.h \ - net/gen/eth_hdr.h net/gen/eth_io.h net/gen/icmp.h \ - net/gen/icmp_hdr.h net/gen/if_ether.h net/gen/inet.h \ - net/gen/in.h net/gen/ip_hdr.h net/gen/ip_io.h \ - net/gen/oneCsum.h net/gen/psip_hdr.h net/gen/psip_io.h \ - net/gen/rip.h net/gen/route.h net/gen/socket.h \ - net/gen/tcp.h net/gen/tcp_hdr.h net/gen/tcp_io.h \ - net/gen/udp.h net/gen/udp_hdr.h net/gen/udp_io.h \ - net/gen/udp_io_hdr.h net/gen/vjhc.h - -INCS+= ddekit/assert.h ddekit/initcall.h ddekit/memory.h ddekit/pgtab.h \ - ddekit/thread.h ddekit/attribs.h ddekit/inline.h ddekit/printf.h \ - ddekit/timer.h ddekit/condvar.h ddekit/interrupt.h ddekit/panic.h \ - ddekit/resources.h ddekit/types.h ddekit/debug.h ddekit/lock.h \ - ddekit/pci.h ddekit/semaphore.h ddekit/usb.h ddekit/minix/pci.h \ - ddekit/minix/msg_queue.h ddekit/ddekit.h diff --git a/include/arch/Makefile b/include/arch/Makefile index 0cae09c6a..470dcafdd 100644 --- a/include/arch/Makefile +++ b/include/arch/Makefile @@ -35,23 +35,6 @@ SUBDIR+= sun68k SUBDIR+= xen .endif -#SUBDIR=acorn26 acorn32 algor alpha amiga amigappc arm arc atari \ -# bebox \ -# cats cesfic cobalt \ -# dreamcast \ -# evbarm evbmips evbppc evbsh3 ews4800mips\ -# hp300 hpc hpcarm hpcmips hpcsh \ -# i386 iyonix \ -# luna68k \ -# m68k mac68k macppc mips mipsco mmeye mvme68k \ -# netwinder news68k newsmips next68k \ -# ofppc \ -# pmax powerpc prep \ -# sandpoint sbmips sgimips sh3 shark sparc sparc64 sun2 sun3 sun68k \ -# rs6000 \ -# vax \ -# x68k x86_64 xen \ -# zaurus INCSYMLINKS= ${MACHINE_ARCH} /usr/include/machine @@ -60,3 +43,4 @@ INCSYMLINKS+= machine/float.h /usr/include/float.h \ .include +.include diff --git a/include/ddekit/Makefile b/include/ddekit/Makefile new file mode 100644 index 000000000..b8438cb2b --- /dev/null +++ b/include/ddekit/Makefile @@ -0,0 +1,11 @@ +INCSDIR= /usr/include/ddekit + +INCS+= assert.h initcall.h memory.h pgtab.h \ + thread.h attribs.h inline.h printf.h \ + timer.h condvar.h interrupt.h panic.h \ + resources.h types.h debug.h lock.h \ + pci.h semaphore.h usb.h ddekit.h + +SUBDIR+= minix + +.include diff --git a/include/ddekit/minix/Makefile b/include/ddekit/minix/Makefile new file mode 100644 index 000000000..c10910a6a --- /dev/null +++ b/include/ddekit/minix/Makefile @@ -0,0 +1,7 @@ +INCSDIR= /usr/include/ddekit/minix + +INCS+= pci.h \ + msg_queue.h + +.include + diff --git a/include/minix/Makefile b/include/minix/Makefile index c876227f7..7df7814ab 100644 --- a/include/minix/Makefile +++ b/include/minix/Makefile @@ -5,8 +5,27 @@ NOOBJ= # defined INCSDIR= /usr/include/minix INCS+= dirent.h paths.h types.h param.h +INCS+= acpi.h audio_fw.h bitmap.h \ + bdev.h blockdriver.h blockdriver_mt.h \ + btrace.h \ + callnr.h chardriver.h com.h compiler.h \ + config.h const.h cpufeature.h crtso.h \ + debug.h devio.h devman.h dmap.h \ + driver.h drivers.h drvlib.h ds.h \ + endpoint.h fslib.h gcov.h hash.h \ + hgfs.h ioctl.h input.h ipc.h ipcconst.h \ + keymap.h limits.h mthread.h minlib.h \ + netdriver.h optset.h partition.h portio.h \ + priv.h procfs.h profile.h queryparam.h \ + rs.h safecopies.h sched.h sef.h sffs.h \ + sound.h spin.h sys_config.h sysinfo.h \ + syslib.h sysutil.h timers.h type.h \ + tty.h u64.h usb.h usb_ch9.h vbox.h \ + vboxfs.h vboxif.h vboxtype.h vm.h \ + vfsif.h vtreefs.h libminixfs.h netsock.h +# Necessary as the build system does not support multiple inclusion +# of bsd.kinc.mk in a single Makefile with different INCSDIR .include "${NETBSDSRCDIR}/common/include/sys/Makefile.mount.inc" -.include "${NETBSDSRCDIR}/common/include/Makefile.termios.inc" .include diff --git a/include/net/Makefile b/include/net/Makefile index 3b46d5e1f..950e76da2 100644 --- a/include/net/Makefile +++ b/include/net/Makefile @@ -2,4 +2,6 @@ INCSDIR= /usr/include/net INCS+= hton.h ethertypes.h if.h if_ether.h netlib.h +SUBDIR+= gen + .include diff --git a/include/net/gen/Makefile b/include/net/gen/Makefile new file mode 100644 index 000000000..c4ec1d20a --- /dev/null +++ b/include/net/gen/Makefile @@ -0,0 +1,15 @@ +INCSDIR= /usr/include/net/gen + +INCS+= arp_io.h dhcp.h ether.h \ + eth_hdr.h eth_io.h icmp.h \ + icmp_hdr.h if_ether.h inet.h \ + in.h ip_hdr.h ip_io.h \ + oneCsum.h psip_hdr.h psip_io.h \ + rip.h route.h socket.h \ + tcp.h tcp_hdr.h tcp_io.h \ + udp.h udp_hdr.h udp_io.h \ + udp_io_hdr.h vjhc.h + + +.include + diff --git a/include/sys/Makefile b/include/sys/Makefile index b22197c9b..f82783301 100644 --- a/include/sys/Makefile +++ b/include/sys/Makefile @@ -1,10 +1,8 @@ -# $NetBSD: Makefile,v 1.126 2010/03/01 21:10:13 darran Exp $ - -NETBSDINCSDIR= /usr/include -INCSDIR= /usr/include/sys +# $NetBSD: Makefile,v 1.143 2012/02/19 21:06:57 rmind Exp $ .include +INCSDIR= /usr/include/sys # Present only in minix INCS+= ioc_net.h statfs.h @@ -35,27 +33,24 @@ INCS+= ansi.h atomic.h \ tree.h ttycom.h ttydefaults.h \ types.h \ ucontext.h ucred.h uio.h un.h unistd.h utsname.h uuid.h \ + extattr.h \ wait.h exec.h INCSYMLINKS=\ - sys/fcntl.h ${NETBSDINCSDIR}/fcntl.h \ - sys/poll.h ${NETBSDINCSDIR}/poll.h \ - sys/stdint.h ${NETBSDINCSDIR}/stdint.h \ - sys/syslog.h ${NETBSDINCSDIR}/syslog.h \ - sys/termios.h ${NETBSDINCSDIR}/termios.h \ - sys/rmd160.h ${NETBSDINCSDIR}/rmd160.h \ - sys/sha1.h ${NETBSDINCSDIR}/sha1.h \ - sys/sha2.h ${NETBSDINCSDIR}/sha2.h \ - sys/md4.h ${NETBSDINCSDIR}/md4.h \ - sys/md5.h ${NETBSDINCSDIR}/md5.h + sys/fcntl.h /usr/include/fcntl.h \ + sys/poll.h /usr/include/poll.h \ + sys/stdint.h /usr/include/stdint.h \ + sys/syslog.h /usr/include/syslog.h \ + sys/termios.h /usr/include/termios.h \ + sys/rmd160.h /usr/include/rmd160.h \ + sys/sha1.h /usr/include/sha1.h \ + sys/sha2.h /usr/include/sha2.h \ + sys/md4.h /usr/include/md4.h \ + sys/md5.h /usr/include/md5.h #INCSYMLINKS+= ../soundcard.h ${INCSDIR}/soundcard.h namei: namei.src gennameih.awk ${TOOL_AWK} -f gennameih.awk < namei.src -.include -.include "${NETBSDSRCDIR}/common/include/sys/Makefile.inc" - -.include .include diff --git a/kernel/arch/i386/Makefile.inc b/kernel/arch/i386/Makefile.inc index c9b9375cc..bc9f9ac86 100644 --- a/kernel/arch/i386/Makefile.inc +++ b/kernel/arch/i386/Makefile.inc @@ -59,7 +59,10 @@ SRCS+= arch_watchdog.c CPPFLAGS+= -DUSE_WATCHDOG .endif -apic_asm.d klib.d mpx.d head.d: procoffsets.h +sconst.h: procoffsets.h +apic_asm.S head.S klib16.S klib.S mpx.S: sconst.h +SRCS+= procoffsets.h +CPPFLAGS+=-I. # It's OK to hardcode the arch as i386 here as this and procoffsets.cf # are i386-specific. diff --git a/lib/Makefile b/lib/Makefile index ffd66a9ec..cc4880d94 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,25 +1,249 @@ +# $NetBSD: Makefile,v 1.188 2012/08/17 16:22:27 joerg Exp $ +# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91 + .include -SUBDIR= csu -SUBDIR+= .WAIT -SUBDIR+= libc -SUBDIR+= .WAIT -SUBDIR+= libcompat_minix libc libblockdriver libchardriver \ - libnetdriver libedit libm libsys libtimers libutil \ - libz libfetch libvtreefs libaudiodriver libmthread \ - libexec libdevman libusb libminlib libasyn \ - libddekit libminixfs libbdev libelf libminc libcrypt libterminfo \ - libvassert libutil libbz2 libprop librmt \ - libnetsock libpuffs libsffs libhgfs libvboxfs +SUBDIR= csu .WAIT -SUBDIR+= ../external/public-domain/xz/lib +.if (${MKGCC} != "no") +. if ${HAVE_GCC} == 4 +. if (${USE_COMPILERCRTSTUFF} == "yes") +SUBDIR+= ../gnu/lib/crtstuff4 .WAIT +. endif +SUBDIR+= ../gnu/lib/libgcc4 .WAIT +. else +. if (${USE_COMPILERCRTSTUFF} == "yes") +SUBDIR+= ../external/gpl3/gcc/lib/crtstuff .WAIT +. endif +SUBDIR+= ../external/gpl3/gcc/lib/libgcc .WAIT +. endif +.endif -# libraries that follow depend on earlier ones +#LSC MINIX libc depends on libminlib because of minix/malloc-debug.c +SUBDIR+= libminlib +SUBDIR+= .WAIT + +SUBDIR+= libsys +SUBDIR+= .WAIT + +SUBDIR+= libc +SUBDIR+= .WAIT + +# +# The SUBDIRs above are included here for completeness but should be built +# and installed prior to make(dependall) in this file, as libraries listed +# below will depend on versions from DESTDIR only. +# + +#SUBDIR+= i18n_module + +SUBDIR+= libcompat_minix libblockdriver libchardriver \ + libnetdriver libedit libm libtimers libutil \ + libz libfetch libvtreefs libaudiodriver libmthread \ + libexec libdevman libusb libasyn librmt \ + libddekit libminixfs libbdev libelf libminc libcrypt libterminfo \ + libvassert libutil libbz2 libprop \ + libnetsock libpuffs libsffs libhgfs libvboxfs + +.if (${MKRUMP} != "no") +SUBDIR+= librumpclient +.endif +.if (${MKSKEY} != "no") +SUBDIR+= libskey +.endif + +.if (${MKCRYPTO} != "no") +SUBDIR+= ../crypto/external/bsd/netpgp/libmj +.endif + +.if (${MKMDNS} != "no") +SUBDIR+= ../external/apache2/mDNSResponder/lib +.endif + +#SUBDIR+= ../external/bsd/am-utils/lib -SUBDIR+= .WAIT -SUBDIR+= ../external/bsd/libarchive/lib # depends on libxz SUBDIR+= ../external/bsd/flex/lib -SUBDIR+= librefuse -SUBDIR+= libcurses +#SUBDIR+= ../external/bsd/tre/lib +#SUBDIR+= ../external/bsd/libdwarf/lib +#SUBDIR+= ../external/bsd/libelf/lib +#SUBDIR+= ../external/bsd/libevent/lib +#SUBDIR+= ../external/bsd/liblzf/lib +#SUBDIR+= ../external/bsd/libpcap/lib + +#SUBDIR+= ../external/mit/lua/lib +#SUBDIR+= ../external/mit/expat/lib + +#SUBDIR+= ../external/public-domain/sqlite/lib +SUBDIR+= ../external/public-domain/xz/lib + +#SUBDIR+= ../gnu/lib/libmalloc + +.if (${MKGCC} != "no") +. if ${HAVE_GCC} == 4 +#SUBDIR+= ../gnu/lib/libobjc4 +. else +#SUBDIR+= ../external/gpl3/gcc/lib/libobjc +#SUBDIR+= ../external/gpl3/gcc/lib/libgomp +. endif +. if ${HAVE_GCC} >= 45 && !defined(MLIBDIR) && !defined(__MINIX) +# Should probably move GMP, MPFR and MPC builds into the GCC >= 4.5 +# specific build area, but we get better parallelism this way. +SUBDIR+= ../external/lgpl3/gmp/lib/libgmp +SUBDIR+= ../external/lgpl3/mpfr/lib/libmpfr +SUBDIR+= ../external/lgpl2/mpc/lib/libmpc +. endif +.endif + +# +# Libraries that depend upon any listed previously +# (and those that depend upon these [and ...]) +# +#==================== 1st library dependency barrier ==================== +SUBDIR+= .WAIT + +SUBDIR+= libcurses # depends on libterminfo +#SUBDIR+= libdm # depends on libprop +#SUBDIR+= libedit # depends on libterminfo +#SUBDIR+= libexecinfo # depends on libelf +#SUBDIR+= libppath # depends on libprop +#SUBDIR+= libperfuse # depends on libpuffs +#SUBDIR+= libquota # depends on libprop and librpcsvc +SUBDIR+= librefuse # depends on libpuffs +.if (${MKRUMP} != "no") +SUBDIR+= librumpuser # depends on libpthread +SUBDIR+= librumphijack # depends on librumpclient and libpthread +.endif + +.if (${MKNPF} != "no") +SUBDIR+= libnpf # depends on libprop +.endif + +.if (${MKCRYPTO} != "no") +SUBDIR+= ../crypto/external/bsd/openssl/lib # depends on libcrypt +.endif + +#SUBDIR+= ../external/bsd/file/lib # depends on libz + +.if (${MKISCSI} != "no") +SUBDIR+= ../external/bsd/iscsi/lib # depends on libpthread +.endif + +SUBDIR+= ../external/bsd/libarchive/lib # depends on libxz + +.if (${MKLVM} != "no") +SUBDIR+= ../external/gpl2/lvm2/lib # depends on libprop +.endif + +.if (${MKBINUTILS} != "no") +SUBDIR+= ../external/gpl3/binutils/lib # libbfd depends on libz +.endif + +.if (${MKGCC} != "no" && ${MKCXX} != "no") +. if ${HAVE_GCC} == 4 +SUBDIR+= ../gnu/lib/libstdc++-v3_4 # depends on libm +SUBDIR+= ../gnu/lib/libsupc++4 +. else +#SUBDIR+= ../external/gpl3/gcc/lib/libstdc++-v3 +#SUBDIR+= ../external/gpl3/gcc/lib/libsupc++ +. endif +.endif + +#==================== 2nd library dependency barrier ==================== +SUBDIR+= .WAIT + +.if (${MKATF} != "no") +SUBDIR+= ../external/bsd/atf/lib # depends on libstdc++ +.endif + +#SUBDIR+= libform # depends on libcurses +#SUBDIR+= libmenu # depends on libcurses +#SUBDIR+= libradius # depends on libcrypto if (${MKCRYPTO} != "no") +.if (${MKRUMP} != "no") +SUBDIR+= librump # depends on librumpuser +.endif + +.if (${MKKERBEROS} != "no") +SUBDIR+= ../crypto/external/bsd/heimdal/lib # depends on libcrypto + # libedit, libterminfo, +.endif + +.if (${MKCRYPTO} != "no") +SUBDIR+= ../crypto/external/bsd/openssh/lib # depends on libcrypto, libz +SUBDIR+= ../crypto/external/bsd/netpgp/lib # depends on libcrypto, ... +.endif + +#SUBDIR+= ../external/bsd/bind/lib # depends on libcrypto +#SUBDIR+= ../external/bsd/fetch/lib # depends on libssl + +.if (${MKLDAP} != "no") +SUBDIR+= ../external/bsd/openldap/lib # depends on libcrypto, ... +.endif + +#==================== 3rd library dependency barrier ==================== +SUBDIR+= .WAIT + +.if (${MKRUMP} != "no") +SUBDIR+= librumpdev # depends on librump +SUBDIR+= librumpnet # depends on librump +SUBDIR+= librumpvfs # depends on librump +.endif + +.if (${MKPAM} != "no") +SUBDIR+= libpam # depends on heimdal +.endif + +.if (${MKCRYPTO} != "no") +SUBDIR+= ../crypto/external/bsd/libsaslc # depends on heimdal, openssl +.endif + +#SUBDIR+= ../external/bsd/mdocml/lib + +.if (${MKRUMP} != "no") +#==================== 4th library dependency barrier ==================== +SUBDIR+= .WAIT + +SUBDIR+= libukfs # depends on librumpvfs, librump + +#==================== 5th library dependency barrier ==================== +SUBDIR+= .WAIT + +SUBDIR+= libp2k # depends on libukfs, librumpvfs, libpuffs + +.if !defined(BSD_MK_COMPAT_FILE) +SUBDIR+= ../sys/rump/dev/lib +SUBDIR+= ../sys/rump/fs/lib +SUBDIR+= ../sys/rump/kern/lib +SUBDIR+= ../sys/rump/net/lib +.endif +.endif + +# Lua bindings come last, they might depend on anything +#SUBDIR+= lua + +# +# build_install logic for src/Makefile. +# Compute a list of subdirectories delimited by .WAIT. +# Run "make dependall && make install" for all subdirectories in a group +# concurrently, but wait after each group. +# +SUBDIR_GROUPS= 1 +CUR_GROUP:= 1 +.for dir in ${SUBDIR} +. if ${dir} == ".WAIT" +CUR_GROUP:= ${CUR_GROUP}1 +SUBDIR_GROUPS:= ${SUBDIR_GROUPS} ${CUR_GROUP} +. else +SUBDIR_GROUP.${CUR_GROUP}+= ${dir} +.endif + +.endfor + +build_install: +.for group in ${SUBDIR_GROUPS} +. if !empty(SUBDIR_GROUP.${group}) + ${MAKEDIRTARGET} . ${SUBDIR_GROUP.${group}:C/^/dependall-/} + ${MAKEDIRTARGET} . ${SUBDIR_GROUP.${group}:C/^/install-/} +. endif +.endfor .include diff --git a/lib/csu/Makefile b/lib/csu/Makefile index d212be07e..149742fca 100644 --- a/lib/csu/Makefile +++ b/lib/csu/Makefile @@ -1,19 +1,32 @@ -# $NetBSD: Makefile,v 1.28 2010/11/28 18:40:56 skrll Exp $ +# $NetBSD: Makefile,v 1.31 2012/06/16 19:19:14 joerg Exp $ .include -CSU_MACHINE_ARCH?= ${MACHINE_ARCH} - .if ${USE_COMPILERCRTSTUFF} != "yes" -ARCHDIR:= ${.PARSEDIR}/arch/${CSU_MACHINE_ARCH} +.if defined(CSU_MACHINE_ARCH) +. if !exists(${.CURDIR}/arch/${CSU_MACHINE_ARCH}/Makefile.inc) +. error CSU_MACHINE_ARCH (${CSU_MACHINE_ARCH}) is unsupported +. endif +.elif exists(${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc) +CSU_MACHINE_ARCH= ${MACHINE_ARCH} +.elif exists(${.CURDIR}/arch/${MACHINE_CPU}/Makefile.inc) +CSU_MACHINE_ARCH= ${MACHINE_CPU} +.else +.error Architecture (${MACHINE_ARCH} or ${MACHINE_CPU}) unsupported +.endif + +ARCHDIR:= ${.CURDIR}/arch/${CSU_MACHINE_ARCH} + .PATH: ${ARCHDIR} . include "${ARCHDIR}/Makefile.inc" -. include "${.PARSEDIR}/common/Makefile.inc" +. include "${.CURDIR}/common/Makefile.inc" .else +CSU_MACHINE_ARCH?= ${MACHINE_ARCH} + . if exists(${CSU_MACHINE_ARCH}_elf/Makefile) SUBDIR= ${CSU_MACHINE_ARCH}_elf . elif exists(${CSU_MACHINE_ARCH}/Makefile) diff --git a/lib/csu/common/Makefile.inc b/lib/csu/common/Makefile.inc index b7809924d..c3a479cd7 100644 --- a/lib/csu/common/Makefile.inc +++ b/lib/csu/common/Makefile.inc @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.inc,v 1.2 2010/12/07 19:51:02 joerg Exp $ +# $NetBSD: Makefile.inc,v 1.7 2012/03/25 06:55:19 joerg Exp $ .include -COMMON_DIR:= ${.PARSEDIR} +COMMON_DIR:= ${.CURDIR}/common .PATH: ${COMMON_DIR} CPPFLAGS+= -I${NETBSDSRCDIR}/libexec/ld.elf_so -I${COMMON_DIR} -I. @@ -23,7 +23,7 @@ crtbegin.o: crtbegin.S crtbeginS.o: crtbegin.S ${_MKTARGET_COMPILE} - ${COMPILE.S} -DSHARED ${ARCHDIR}/crtbegin.S -o ${.TARGET}.o + ${COMPILE.S} -DPIC -DSHARED ${ARCHDIR}/crtbegin.S -o ${.TARGET}.o ${LD} -x -r -o ${.TARGET} ${.TARGET}.o rm -f ${.TARGET}.o .if ${MKSTRIPIDENT} != "no" @@ -45,22 +45,22 @@ PICFLAGS= -fPIC PICFLAGS= .endif -crt0.o: crt0-common.c crt0.S +crt0.o: crt0.S crt0-common.c ${_MKTARGET_COMPILE} - ${COMPILE.c} ${PICFLAGS} ${COMMON_DIR}/crt0-common.c -o ${.TARGET}.c.o ${COMPILE.S} ${ARCHDIR}/crt0.S -o ${.TARGET}.S.o - ${LD} -x -r -o ${.TARGET} ${.TARGET}.c.o ${.TARGET}.S.o - rm -f ${.TARGET}.c.o ${.TARGET}.S.o + ${COMPILE.c} ${PICFLAGS} ${COMMON_DIR}/crt0-common.c -o ${.TARGET}.c.o + ${LD} -x -r -o ${.TARGET} ${.TARGET}.S.o ${.TARGET}.c.o + rm -f ${.TARGET}.S.o ${.TARGET}.c.o .if ${MKSTRIPIDENT} != "no" ${OBJCOPY} -R .ident ${.TARGET} .endif -gcrt0.o: crt0-common.c crt0.S +gcrt0.o: crt0.S crt0-common.c ${_MKTARGET_COMPILE} - ${COMPILE.c} ${PICFLAGS} -DMCRT0 ${COMMON_DIR}/crt0-common.c -o ${.TARGET}.c.o ${COMPILE.S} ${ARCHDIR}/crt0.S -o ${.TARGET}.S.o - ${LD} -x -r -o ${.TARGET} ${.TARGET}.c.o ${.TARGET}.S.o - rm -f ${.TARGET}.c.o ${.TARGET}.S.o + ${COMPILE.c} ${PICFLAGS} -DMCRT0 ${COMMON_DIR}/crt0-common.c -o ${.TARGET}.c.o + ${LD} -x -r -o ${.TARGET} ${.TARGET}.S.o ${.TARGET}.c.o + rm -f ${.TARGET}.S.o ${.TARGET}.c.o .if ${MKSTRIPIDENT} != "no" ${OBJCOPY} -R .ident ${.TARGET} .endif @@ -68,7 +68,7 @@ gcrt0.o: crt0-common.c crt0.S sysident_assym.h: ${GENASSYM_CONF} ${GENASSYM_EXTRAS} ${_MKTARGET_CREATE} cat ${COMMON_DIR}/sysident_assym.cf | \ - ${TOOL_GENASSYM} -- ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \ + ${TOOL_GENASSYM} -- ${CC} ${CFLAGS:N-Wa,*} ${CPPFLAGS} ${PROF} \ > sysident_assym.h.tmp && \ mv -f sysident_assym.h.tmp sysident_assym.h diff --git a/lib/csu/common_elf/Makefile.inc b/lib/csu/common_elf/Makefile.inc index 3d9c631a2..0e489d59b 100644 --- a/lib/csu/common_elf/Makefile.inc +++ b/lib/csu/common_elf/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.32 2009/12/13 08:52:38 mrg Exp $ +# $NetBSD: Makefile.inc,v 1.35 2012/08/04 14:59:05 matt Exp $ .if !defined(ELFSIZE) ELFSIZE=32 @@ -18,8 +18,8 @@ CPPFLAGS+= -DDWARF2_EH CPPFLAGS+= -DJCR CPPFLAGS+= -DDSO_HANDLE -.if defined(HAVE_GCC) && ${HAVE_GCC} > 3 -CFLAGS+= -fno-unit-at-a-time +.if defined(HAVE_GCC) +COPTS+= -fno-unit-at-a-time .endif .include @@ -43,7 +43,7 @@ crt0.o: crt0.c ${OBJCOPY} -R .ident ${.TARGET} .endif -# dependant on crt0.o to pick up header dependencies +# dependent on crt0.o to pick up header dependencies gcrt0.o: ${.CURDIR}/crt0.c crt0.o ${_MKTARGET_COMPILE} ${COMPILE.c} -DMCRT0 ${.CURDIR}/crt0.c -o ${.TARGET}.o @@ -55,7 +55,7 @@ gcrt0.o: ${.CURDIR}/crt0.c crt0.o crti.o: crti.c ${_MKTARGET_COMPILE} - ${COMPILE.c} ${.IMPSRC} -o ${.TARGET}.o + ${COMPILE.c} -DCRTI ${.IMPSRC} -o ${.TARGET}.o ${LD} -X -r -o ${.TARGET} ${.TARGET}.o rm -f ${.TARGET}.o .if ${MKSTRIPIDENT} != "no" @@ -64,7 +64,7 @@ crti.o: crti.c crtn.o: crtn.c ${_MKTARGET_COMPILE} - ${COMPILE.c} ${.IMPSRC} -o ${.TARGET}.o + ${COMPILE.c} -DCRTN ${.IMPSRC} -o ${.TARGET}.o ${LD} -X -r -o ${.TARGET} ${.TARGET}.o rm -f ${.TARGET}.o .if ${MKSTRIPIDENT} != "no" diff --git a/lib/libbz2/Makefile b/lib/libbz2/Makefile index 3471a60d0..5a41cbded 100644 --- a/lib/libbz2/Makefile +++ b/lib/libbz2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2008/08/29 00:02:22 gmcgarry Exp $ +# $NetBSD: Makefile,v 1.17 2012/05/07 08:51:47 wiz Exp $ .if defined(__MINIX) # ssp-buffer-size=0, __SSP_FORTIFY_LEVEL=0 @@ -27,7 +27,7 @@ COPTS+= -O0 # XXX blocksort.c gets mis-compiled with 4.1 .if (${MACHINE_ARCH} == "sh3el" || ${MACHINE_ARCH} == "sh3eb") && \ - (defined(HAVE_GCC) && ${HAVE_GCC} == 4) + defined(HAVE_GCC) COPTS.blocksort.c+= -fno-loop-optimize .endif diff --git a/lib/libc/Makefile b/lib/libc/Makefile index f65088283..83559c1c9 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.143 2010/09/04 12:17:58 ahoka Exp $ +# $NetBSD: Makefile,v 1.149 2012/01/20 16:31:29 joerg Exp $ # @(#)Makefile 8.2 (Berkeley) 2/3/94 # # All library objects contain sccsid strings by default; they may be @@ -17,9 +17,6 @@ # The Hesiod functions are always in libc. To choose that getpwent() and friends # actually call the Hesiod functions, put -DHESIOD on the CPPFLAGS line below. -.if defined(__MINIX) -.include "minix-config.inc" -.endif .include "Makefile.inc" LIB= c @@ -52,17 +49,22 @@ BUILDCOLD?= no SUBDIR=compat .include .else +.if !defined(__MINIX) +COMPATDIR=${.CURDIR}/compat +.include "${.CURDIR}/compat/Makefile.inc" +.else +SUBDIR+= pkgconfig +.include COMPATDIR= ${.CURDIR}/compat-minix .include "${.CURDIR}/compat-minix/Makefile.inc" .endif +.endif .include "${.CURDIR}/../../common/lib/libc/Makefile.inc" .include "${.CURDIR}/atomic/Makefile.inc" .include "${.CURDIR}/cdb/Makefile.inc" .include "${.CURDIR}/db/Makefile.inc" -.if (${CITRUS} == "yes") .include "${.CURDIR}/citrus/Makefile.inc" -.endif .include "${.CURDIR}/compat-43/Makefile.inc" .include "${.CURDIR}/dlfcn/Makefile.inc" .include "${.CURDIR}/gdtoa/Makefile.inc" @@ -82,7 +84,7 @@ COMPATDIR= ${.CURDIR}/compat-minix .include "${.CURDIR}/net/Makefile.inc" .include "${.CURDIR}/nameser/Makefile.inc" .include "${.CURDIR}/nls/Makefile.inc" -.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "sparc64") +.if (${MACHINE_ARCH} != "alpha") && (${ARCHSUBDIR} != "sparc64") .include "${.CURDIR}/quad/Makefile.inc" .endif .if (${USE_LIBTRE} == "yes") @@ -106,6 +108,7 @@ COMPATDIR= ${.CURDIR}/compat-minix .if defined(__MINIX) .include "${.CURDIR}/sys-minix/Makefile.inc" .else +.include "${.CURDIR}/tls/Makefile.inc" .include "${.CURDIR}/sys/Makefile.inc" .endif .include "${.CURDIR}/uuid/Makefile.inc" @@ -141,8 +144,7 @@ realall: .else realall: tags .endif -tags: ${.OBJDIR}/tags -${.OBJDIR}/tags: ${SRCS} +tags: ${SRCS} ${_MKTARGET_CREATE} -${TOOL_CTAGS} -w ${.ALLSRC:M*.c} -egrep "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" /dev/null ${.ALLSRC:M*.S} | \ @@ -150,7 +152,7 @@ ${.OBJDIR}/tags: ${SRCS} >> ${.TARGET}; sort -o ${.TARGET} ${.TARGET} .if !defined(__MINIX) -FILES= ${.OBJDIR}/tags +FILES= tags FILESNAME= libc.tags FILESDIR= /var/db .endif @@ -159,16 +161,11 @@ FILESDIR= /var/db # workaround for I18N stuffs: build singlebyte setlocale() for libc.a, # multibyte for libc.so. the quirk should be removed when we support # dlopen() from within statically linked binaries. -#.if (${CITRUS} == "yes") -#CSHLIBFLAGS+= -D_I18N_DYNAMIC -#.endif +.if !defined(__MINIX) +CSHLIBFLAGS+= -D_I18N_DYNAMIC +.endif .include # force the dynamic linker to initialize libc first SHLIB_SHFLAGS+= -Wl,-z,initfirst - -.include -SUBDIR+= pkgconfig -.include - diff --git a/lib/libc/Makefile.inc b/lib/libc/Makefile.inc index a6e22ad1c..e1af10298 100644 --- a/lib/libc/Makefile.inc +++ b/lib/libc/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.6 2010/05/30 08:28:53 tnozaki Exp $ +# $NetBSD: Makefile.inc,v 1.14 2012/03/21 14:52:40 christos Exp $ # @(#)Makefile 8.2 (Berkeley) 2/3/94 # # All library objects contain sccsid strings by default; they may be @@ -16,20 +16,22 @@ # # The Hesiod functions are always in libc. To choose that getpwent() and friends # actually call the Hesiod functions, put -DHESIOD on the CPPFLAGS line below. +.if defined(__MINIX) +.include "minix-config.inc" +.endif USE_FORT?= yes USE_SHLIBDIR= yes -CITRUS?= yes - .include -WARNS=4 +WARNS=5 .if defined(__MINIX) CPPFLAGS+= -D_LIBC .else CPPFLAGS+= -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT +CPPFLAGS+= -D_DIAGNOSTIC .endif .if (${USE_HESIOD} != "no") @@ -46,10 +48,8 @@ CPPFLAGS+= -DNLS CPPFLAGS+= -DYP .endif -.if ${MACHINE_ARCH} == "i386" # Set lint to exit on warnings LINTFLAGS+= -w -.endif # ignore 'empty translation unit' warnings. LINTFLAGS+= -X 272 @@ -57,9 +57,6 @@ LINTFLAGS+= -X 272 ARCHDIR= ${.CURDIR}/arch/${ARCHSUBDIR} AFLAGS+= -I${ARCHDIR} -.if defined(DESTDIR) -AFLAGS+= -nostdinc -isystem ${DESTDIR}/usr/include -.endif CLEANFILES+= tags # Don't try to lint the C library against itself when creating llib-lc.ln diff --git a/lib/libc/compat/Makefile b/lib/libc/compat/Makefile index d9eec76a7..62d72e569 100644 --- a/lib/libc/compat/Makefile +++ b/lib/libc/compat/Makefile @@ -17,6 +17,7 @@ COMPATDIR=${.CURDIR} .include "${.CURDIR}/locale/Makefile.inc" .include "${.CURDIR}/net/Makefile.inc" .include "${.CURDIR}/rpc/Makefile.inc" +.include "${.CURDIR}/stdio/Makefile.inc" .include "${.CURDIR}/stdlib/Makefile.inc" .include "${.CURDIR}/sys/Makefile.inc" diff --git a/lib/libc/compat/Makefile.inc b/lib/libc/compat/Makefile.inc index e6a64787f..e3c0f1521 100644 --- a/lib/libc/compat/Makefile.inc +++ b/lib/libc/compat/Makefile.inc @@ -10,6 +10,7 @@ COMPATARCHDIR=${COMPATDIR}/arch/${ARCHSUBDIR} .include "${COMPATDIR}/gen/Makefile.inc" .include "${COMPATDIR}/net/Makefile.inc" .include "${COMPATDIR}/rpc/Makefile.inc" +.include "${COMPATDIR}/stdio/Makefile.inc" .include "${COMPATDIR}/stdlib/Makefile.inc" .include "${COMPATDIR}/sys/Makefile.inc" .include "${COMPATDIR}/time/Makefile.inc" diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc index f6a38920f..e32a15aa4 100644 --- a/lib/libc/gen/Makefile.inc +++ b/lib/libc/gen/Makefile.inc @@ -53,7 +53,8 @@ SRCS+= _errno.c alarm.c alphasort.c arc4random.c assert.c basename.c clock.c \ vwarn.c vwarnx.c verr.c verrx.c wait.c waitpid.c wordexp.c .else SRCS+= _errno.c alarm.c alphasort.c arc4random.c assert.c basename.c clock.c \ - closedir.c closefrom.c confstr.c ctermid.c ctype_.c daemon.c \ + closedir.c closefrom.c \ + confstr.c ctermid.c ctype_.c daemon.c \ dehumanize_number.c devname.c dirname.c disklabel.c err.c errx.c \ errlist.c errno.c execl.c execle.c execlp.c execv.c execvp.c \ extattr.c fmtcheck.c fmtmsg.c fnmatch.c fstab.c ftok.c \ @@ -65,11 +66,11 @@ SRCS+= _errno.c alarm.c alphasort.c arc4random.c assert.c basename.c clock.c \ getpass.c getprogname.c getpwent.c getttyent.c \ getusershell.c glob.c humanize_number.c initdir.c initgroups.c \ isascii.c isatty.c isctype.c lockf.c nftw.c \ - nice.c nlist.c nlist_aout.c \ - nlist_coff.c nlist_ecoff.c nlist_elf32.c nlist_elf64.c opendir.c \ - pause.c popen.c psignal.c pthread_atfork.c ptree.c pwcache.c \ - pw_scan.c raise.c randomid.c rb.c readdir.c rewinddir.c \ - scandir.c seekdir.c setdomainname.c \ + nice.c nlist.c nlist_aout.c nlist_coff.c nlist_ecoff.c nlist_elf32.c \ + nlist_elf64.c opendir.c pause.c popen.c posix_spawn_sched.c \ + posix_spawn_fileactions.c posix_spawnp.c psignal.c pthread_atfork.c \ + ptree.c pwcache.c pw_scan.c raise.c randomid.c rb.c readdir.c \ + rewinddir.c scandir.c seekdir.c setdomainname.c \ sethostname.c setjmperr.c setmode.c setproctitle.c setprogname.c \ shquote.c shquotev.c sighold.c sigignore.c siginterrupt.c \ siglist.c signal.c signame.c sigrelse.c \ @@ -91,6 +92,7 @@ COPTS.execvp.c = -Wno-stack-protector COPTS.execl.c = -Wno-stack-protector COPTS.execle.c = -Wno-stack-protector COPTS.execlp.c = -Wno-stack-protector +COPTS.syslog.c = -Wno-format-nonliteral # machine-dependent gen sources # m-d Makefile.inc must include sources for: @@ -99,7 +101,8 @@ COPTS.execlp.c = -Wno-stack-protector .include "${ARCHDIR}/gen/Makefile.inc" -MAN+= alarm.3 arc4random.3 basename.3 bswap.3 clock.3 closefrom.3 confstr.3 \ +MAN+= alarm.3 arc4random.3 basename.3 bswap.3 clock.3 closefrom.3 \ + confstr.3 \ cpuset.3 ctermid.3 ctype.3 daemon.3 devname.3 directory.3 dirname.3 \ endutxent.3 err.3 exec.3 extattr.3 \ fmtcheck.3 fmtmsg.3 fnmatch.3 fpclassify.3 fpgetmask.3 \ diff --git a/lib/libc/gmon/Makefile.inc b/lib/libc/gmon/Makefile.inc index f735d56ba..d44e8160a 100644 --- a/lib/libc/gmon/Makefile.inc +++ b/lib/libc/gmon/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.9 2009/12/17 06:54:51 mrg Exp $ +# $NetBSD: Makefile.inc,v 1.10 2011/01/23 06:27:32 matt Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 # gmon sources @@ -10,8 +10,7 @@ SRCS+= gmon.c mcount.c MAN+= moncontrol.3 MLINKS+=moncontrol.3 monstartup.3 -.if (${MACHINE_ARCH} == "mipseb") || (${MACHINE_ARCH} == "mipsel") || \ - (${MACHINE_ARCH} == "mips64eb") || (${MACHINE_ARCH} == "mips64el") +.if (${MACHINE_CPU} == "mips") # Turn off as(1) warnings on MIPS, since warnings are fatal with WARNS>0 # and mcount.c causes warnings from as(1). # mcount.c should be fixed and this test removed. diff --git a/lib/libc/iconv/Makefile.inc b/lib/libc/iconv/Makefile.inc index 723bf382b..52b27b6eb 100644 --- a/lib/libc/iconv/Makefile.inc +++ b/lib/libc/iconv/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.4 2009/01/11 02:46:28 christos Exp $ +# $NetBSD: Makefile.inc,v 1.5 2012/01/20 16:31:29 joerg Exp $ .PATH: ${ARCHDIR}/iconv ${.CURDIR}/iconv @@ -6,8 +6,4 @@ SRCS+= iconv.c MAN+= iconv.3 MLINKS+=iconv.3 iconv_open.3 iconv.3 iconv_close.3 -.if ${CITRUS} == "yes" CPPFLAGS.iconv.c+= -DHAVE_CITRUS -I${LIBCDIR}/citrus -.else -CPPFLAGS.iconv.c+= -UHAVE_CITRUS -.endif diff --git a/lib/libc/locale/Makefile.inc b/lib/libc/locale/Makefile.inc index 06fe8ada9..f9fb3751e 100644 --- a/lib/libc/locale/Makefile.inc +++ b/lib/libc/locale/Makefile.inc @@ -1,5 +1,5 @@ # from: @(#)Makefile.inc 5.1 (Berkeley) 2/18/91 -# $NetBSD: Makefile.inc,v 1.58 2010/06/19 13:26:52 tnozaki Exp $ +# $NetBSD: Makefile.inc,v 1.60 2012/01/20 16:31:29 joerg Exp $ # locale sources .PATH: ${ARCHDIR}/locale ${.CURDIR}/locale @@ -12,7 +12,6 @@ SRCS+= _def_messages.c _def_monetary.c _def_numeric.c _def_time.c \ wcstol.c wcstoll.c wcstoimax.c wcstoul.c wcstoull.c wcstoumax.c \ wcstod.c wcstof.c wcstold.c wcscoll.c wcsxfrm.c wcsftime.c -.if (${CITRUS} == "yes") # citrus multibyte locale support # we have quirk for libc.a - see the last part of lib/libc/Makefile CPPFLAGS+= -DWITH_RUNE -I${.CURDIR} @@ -22,14 +21,6 @@ CPPFLAGS.rune.c+= -I${LIBCDIR}/citrus CPPFLAGS.runetable.c+= -I${LIBCDIR}/citrus CPPFLAGS.multibyte_c90.c+= -I${LIBCDIR}/citrus CPPFLAGS.multibyte_amd1.c+= -I${LIBCDIR}/citrus -.else -# singlebyte locale - dummy -CPPFLAGS+= -UWITH_RUNE -SRCS+= aliasname.c bsdctype.c localeio.c \ - multibyte_sb.c iswctype_sb.c \ - localeio_lc_ctype.c localeio_lc_monetary.c \ - localeio_lc_numeric.c localeio_lc_time.c localeio_lc_messages.c -.endif MAN+= setlocale.3 nl_langinfo.3 @@ -61,3 +52,5 @@ MLINKS+=towlower.3 towupper.3 MLINKS+=wcstod.3 wcstof.3 wcstod.3 wcstold.3 MLINKS+=wcstol.3 wcstoll.3 wcstol.3 wcstoimax.3 \ wcstol.3 wcstoul.3 wcstol.3 wcstoull.3 wcstol.3 wcstoumax.3 + +COPTS.wcsftime.c = -Wno-format-nonliteral diff --git a/lib/libc/minix-config.inc b/lib/libc/minix-config.inc index bdc72dd19..25001f786 100644 --- a/lib/libc/minix-config.inc +++ b/lib/libc/minix-config.inc @@ -1,6 +1,5 @@ NETBSDINCLUDES= /usr/include/ -CITRUS=yes USE_INET6=no MKYP=no #requires RPC @@ -9,3 +8,5 @@ USE_MINIXMALLOC=yes USE_FORT=no USE_LIBTRE=no +NOGCCERROR:= yes +NOCLANGERROR:= yes diff --git a/lib/libc/minix/Makefile.inc b/lib/libc/minix/Makefile.inc new file mode 100644 index 000000000..673e6e11a --- /dev/null +++ b/lib/libc/minix/Makefile.inc @@ -0,0 +1,8 @@ +# MINIX Specifics sources +.PATH: ${.CURDIR}/minix + +SRCS+= minix-malloc.c minix-calloc.c +SRCS+= minix-malloc-debug.c + +LIBDPLIBS+= sys ${NETBSDSRCDIR}/lib/libsys + diff --git a/lib/libc/nls/Makefile.inc b/lib/libc/nls/Makefile.inc index 2266b5de0..18c7e456f 100644 --- a/lib/libc/nls/Makefile.inc +++ b/lib/libc/nls/Makefile.inc @@ -8,9 +8,5 @@ MAN+= catclose.3 catgets.3 catopen.3 # indirect reference stubs, to be removed soon. SRCS+= _catclose.c _catgets.c _catopen.c -.if ${CITRUS} == "yes" CPPFLAGS.catopen.c+= -DHAVE_CITRUS -I${LIBCDIR}/citrus -.else -CPPFLAGS.catopen.c+= -UHAVE_CITRUS -I${LIBCDIR}/locale -.endif diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc index 39b919c27..b2e884cc1 100644 --- a/lib/libc/stdlib/Makefile.inc +++ b/lib/libc/stdlib/Makefile.inc @@ -43,10 +43,7 @@ SRCS+= erand48_ieee754.c .if (${USE_JEMALLOC} != "no") SRCS+= jemalloc.c .elif (${USE_MINIXMALLOC} != "no") -SRCS+= \ - minix/minix-malloc.c \ - minix/minix-calloc.c \ - minix/minix-malloc-debug.c +.include "../minix/Makefile.inc" .else SRCS+= malloc.c .endif diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c new file mode 100644 index 000000000..2578b3200 --- /dev/null +++ b/lib/libc/stdlib/malloc.c @@ -0,0 +1,1320 @@ +/* $NetBSD: malloc.c,v 1.52 2008/02/03 22:56:53 christos Exp $ */ + +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * wrote this file. As long as you retain this notice you + * can do whatever you want with this stuff. If we meet some day, and you think + * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp + * ---------------------------------------------------------------------------- + * + * From FreeBSD: malloc.c,v 1.91 2006/01/12 07:28:20 jasone + * + */ + +#ifdef __minix +#define mmap minix_mmap +#define munmap minix_munmap +#ifdef _LIBSYS +#include +#define MALLOC_NO_SYSCALLS +#define wrtwarning(w) printf("libminc malloc warning: %s\n", w) +#define wrterror(w) panic("libminc malloc error: %s\n", w) +#endif +#endif + +/* + * Defining MALLOC_EXTRA_SANITY will enable extra checks which are related + * to internal conditions and consistency in malloc.c. This has a + * noticeable runtime performance hit, and generally will not do you + * any good unless you fiddle with the internals of malloc or want + * to catch random pointer corruption as early as possible. + */ +#ifndef MALLOC_EXTRA_SANITY +#undef MALLOC_EXTRA_SANITY +#endif + +/* + * What to use for Junk. This is the byte value we use to fill with + * when the 'J' option is enabled. + */ +#define SOME_JUNK 0xd0 /* as in "Duh" :-) */ + +/* + * The basic parameters you can tweak. + * + * malloc_minsize minimum size of an allocation in bytes. + * If this is too small it's too much work + * to manage them. This is also the smallest + * unit of alignment used for the storage + * returned by malloc/realloc. + * + */ + +#include "namespace.h" +#if defined(__FreeBSD__) +# if defined(__i386__) +# define malloc_minsize 16U +# endif +# if defined(__ia64__) +# define malloc_pageshift 13U +# define malloc_minsize 16U +# endif +# if defined(__alpha__) +# define malloc_pageshift 13U +# define malloc_minsize 16U +# endif +# if defined(__sparc64__) +# define malloc_pageshift 13U +# define malloc_minsize 16U +# endif +# if defined(__amd64__) +# define malloc_pageshift 12U +# define malloc_minsize 16U +# endif +# if defined(__arm__) +# define malloc_pageshift 12U +# define malloc_minsize 16U +# endif +#ifndef __minix +# define HAS_UTRACE +# define UTRACE_LABEL +#endif /* __minix */ + +#include +void utrace(struct ut *, int); + + /* + * Make malloc/free/realloc thread-safe in libc for use with + * kernel threads. + */ +# include "libc_private.h" +# include "spinlock.h" + static spinlock_t thread_lock = _SPINLOCK_INITIALIZER; +# define _MALLOC_LOCK() if (__isthreaded) _SPINLOCK(&thread_lock); +# define _MALLOC_UNLOCK() if (__isthreaded) _SPINUNLOCK(&thread_lock); +#endif /* __FreeBSD__ */ + +#include + +#include +#if defined(__NetBSD__) +# define malloc_minsize 16U +# define HAS_UTRACE +# define UTRACE_LABEL "malloc", +#include +#include "extern.h" +#if defined(LIBC_SCCS) && !defined(lint) +__RCSID("$NetBSD: malloc.c,v 1.52 2008/02/03 22:56:53 christos Exp $"); +#endif /* LIBC_SCCS and not lint */ +int utrace(const char *, void *, size_t); + +#include +extern int __isthreaded; +static mutex_t thread_lock = MUTEX_INITIALIZER; +#define _MALLOC_LOCK() if (__isthreaded) mutex_lock(&thread_lock); +#define _MALLOC_UNLOCK() if (__isthreaded) mutex_unlock(&thread_lock); +#endif /* __NetBSD__ */ + +#if defined(__sparc__) && defined(sun) +# define malloc_minsize 16U +# define MAP_ANON (0) + static int fdzero; +# define MMAP_FD fdzero +# define INIT_MMAP() \ + { if ((fdzero = open(_PATH_DEVZERO, O_RDWR, 0000)) == -1) \ + wrterror("open of /dev/zero"); } +#endif /* __sparc__ */ + +/* Insert your combination here... */ +#if defined(__FOOCPU__) && defined(__BAROS__) +# define malloc_minsize 16U +#endif /* __FOOCPU__ && __BAROS__ */ + +#ifndef ZEROSIZEPTR +#define ZEROSIZEPTR ((void *)(uintptr_t)(1UL << (malloc_pageshift - 1))) +#endif + +/* + * No user serviceable parts behind this point. + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* + * This structure describes a page worth of chunks. + */ + +struct pginfo { + struct pginfo *next; /* next on the free list */ + void *page; /* Pointer to the page */ + u_short size; /* size of this page's chunks */ + u_short shift; /* How far to shift for this size chunks */ + u_short free; /* How many free chunks */ + u_short total; /* How many chunk */ + u_int bits[1]; /* Which chunks are free */ +}; + +/* + * This structure describes a number of free pages. + */ + +struct pgfree { + struct pgfree *next; /* next run of free pages */ + struct pgfree *prev; /* prev run of free pages */ + void *page; /* pointer to free pages */ + void *end; /* pointer to end of free pages */ + size_t size; /* number of bytes free */ +}; + +/* + * How many bits per u_int in the bitmap. + * Change only if not 8 bits/byte + */ +#define MALLOC_BITS ((int)(8*sizeof(u_int))) + +/* + * Magic values to put in the page_directory + */ +#define MALLOC_NOT_MINE ((struct pginfo*) 0) +#define MALLOC_FREE ((struct pginfo*) 1) +#define MALLOC_FIRST ((struct pginfo*) 2) +#define MALLOC_FOLLOW ((struct pginfo*) 3) +#define MALLOC_MAGIC ((struct pginfo*) 4) + +/* + * Page size related parameters, computed at run-time. + */ +static size_t malloc_pagesize; +static size_t malloc_pageshift; +static size_t malloc_pagemask; + +#ifndef malloc_minsize +#define malloc_minsize 16U +#endif + +#ifndef malloc_maxsize +#define malloc_maxsize ((malloc_pagesize)>>1) +#endif + +#define pageround(foo) (((foo) + (malloc_pagemask))&(~(malloc_pagemask))) +#define ptr2idx(foo) \ + (((size_t)(uintptr_t)(foo) >> malloc_pageshift)-malloc_origo) + +#ifndef _MALLOC_LOCK +#define _MALLOC_LOCK() +#endif + +#ifndef _MALLOC_UNLOCK +#define _MALLOC_UNLOCK() +#endif + +#ifndef MMAP_FD +#define MMAP_FD (-1) +#endif + +#ifndef INIT_MMAP +#define INIT_MMAP() +#endif + +#ifndef __minix +#ifndef MADV_FREE +#define MADV_FREE MADV_DONTNEED +#endif +#endif /* !__minix */ + +/* Number of free pages we cache */ +static size_t malloc_cache = 16; + +/* The offset from pagenumber to index into the page directory */ +static size_t malloc_origo; + +/* The last index in the page directory we care about */ +static size_t last_idx; + +/* Pointer to page directory. Allocated "as if with" malloc */ +static struct pginfo **page_dir; + +/* How many slots in the page directory */ +static size_t malloc_ninfo; + +/* Free pages line up here */ +static struct pgfree free_list; + +/* Abort(), user doesn't handle problems. */ +static int malloc_abort; + +/* Are we trying to die ? */ +static int suicide; + +/* always realloc ? */ +static int malloc_realloc; + +/* pass the kernel a hint on free pages ? */ +#if defined(MADV_FREE) +static int malloc_hint = 0; +#endif + +/* xmalloc behaviour ? */ +static int malloc_xmalloc; + +/* sysv behaviour for malloc(0) ? */ +static int malloc_sysv; + +/* zero fill ? */ +static int malloc_zero; + +/* junk fill ? */ +static int malloc_junk; + +#ifdef HAS_UTRACE + +/* utrace ? */ +static int malloc_utrace; + +struct ut { void *p; size_t s; void *r; }; + +#define UTRACE(a, b, c) \ + if (malloc_utrace) { \ + struct ut u; \ + u.p=a; u.s = b; u.r=c; \ + utrace(UTRACE_LABEL (void *) &u, sizeof u); \ + } +#else /* !HAS_UTRACE */ +#define UTRACE(a,b,c) +#endif /* HAS_UTRACE */ + +/* my last break. */ +static void *malloc_brk; + +/* one location cache for free-list holders */ +static struct pgfree *px; + +/* compile-time options */ +const char *_malloc_options; + +/* Name of the current public function */ +static const char *malloc_func; + +/* Macro for mmap */ +#define MMAP(size) \ + mmap(NULL, (size), PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, \ + MMAP_FD, (off_t)0); + +/* + * Necessary function declarations + */ +static int extend_pgdir(size_t idx); +static void *imalloc(size_t size); +static void ifree(void *ptr); +static void *irealloc(void *ptr, size_t size); + +#ifndef MALLOC_NO_SYSCALLS +static void +wrtmessage(const char *p1, const char *p2, const char *p3, const char *p4) +{ + + write(STDERR_FILENO, p1, strlen(p1)); + write(STDERR_FILENO, p2, strlen(p2)); + write(STDERR_FILENO, p3, strlen(p3)); + write(STDERR_FILENO, p4, strlen(p4)); +} + +void (*_malloc_message)(const char *p1, const char *p2, const char *p3, + const char *p4) = wrtmessage; +static void +wrterror(const char *p) +{ + + suicide = 1; + _malloc_message(getprogname(), malloc_func, " error: ", p); + abort(); +} + +static void +wrtwarning(const char *p) +{ + + /* + * Sensitive processes, somewhat arbitrarily defined here as setuid, + * setgid, root and wheel cannot afford to have malloc mistakes. + */ + if (malloc_abort || issetugid() || getuid() == 0 || getgid() == 0) + wrterror(p); +} +#endif + +/* + * Allocate a number of pages from the OS + */ +static void * +map_pages(size_t pages) +{ + caddr_t result, rresult, tail; + intptr_t bytes = pages << malloc_pageshift; + + if (bytes < 0 || (size_t)bytes < pages) { + errno = ENOMEM; + return NULL; + } + + if ((result = sbrk(bytes)) == (void *)-1) + return NULL; + + /* + * Round to a page, in case sbrk(2) did not do this for us + */ + rresult = (caddr_t)pageround((size_t)(uintptr_t)result); + if (result < rresult) { + /* make sure we have enough space to fit bytes */ + if (sbrk((intptr_t)(rresult - result)) == (void *) -1) { + /* we failed, put everything back */ + if (brk(result)) { + wrterror("brk(2) failed [internal error]\n"); + } + } + } + tail = rresult + (size_t)bytes; + + last_idx = ptr2idx(tail) - 1; + malloc_brk = tail; + + if ((last_idx+1) >= malloc_ninfo && !extend_pgdir(last_idx)) { + malloc_brk = result; + last_idx = ptr2idx(malloc_brk) - 1; + /* Put back break point since we failed. */ + if (brk(malloc_brk)) + wrterror("brk(2) failed [internal error]\n"); + return 0; + } + + return rresult; +} + +/* + * Extend page directory + */ +static int +extend_pgdir(size_t idx) +{ + struct pginfo **new, **old; + size_t newlen, oldlen; + + /* check for overflow */ + if ((((~(1UL << ((sizeof(size_t) * NBBY) - 1)) / sizeof(*page_dir)) + 1) + + (malloc_pagesize / sizeof *page_dir)) < idx) { + errno = ENOMEM; + return 0; + } + + /* Make it this many pages */ + newlen = pageround(idx * sizeof *page_dir) + malloc_pagesize; + + /* remember the old mapping size */ + oldlen = malloc_ninfo * sizeof *page_dir; + + /* + * NOTE: we allocate new pages and copy the directory rather than tempt + * fate by trying to "grow" the region.. There is nothing to prevent + * us from accidentally re-mapping space that's been allocated by our caller + * via dlopen() or other mmap(). + * + * The copy problem is not too bad, as there is 4K of page index per + * 4MB of malloc arena. + * + * We can totally avoid the copy if we open a file descriptor to associate + * the anon mappings with. Then, when we remap the pages at the new + * address, the old pages will be "magically" remapped.. But this means + * keeping open a "secret" file descriptor..... + */ + + /* Get new pages */ + new = MMAP(newlen); + if (new == MAP_FAILED) + return 0; + + /* Copy the old stuff */ + memcpy(new, page_dir, oldlen); + + /* register the new size */ + malloc_ninfo = newlen / sizeof *page_dir; + + /* swap the pointers */ + old = page_dir; + page_dir = new; + + /* Now free the old stuff */ + munmap(old, oldlen); + return 1; +} + +/* + * Initialize the world + */ +static void +malloc_init(void) +{ + int save_errno = errno; +#ifndef MALLOC_NO_SYSCALLS + const char *p; + char b[64]; + size_t i; + ssize_t j; + + /* + * Compute page-size related variables. + */ + malloc_pagesize = (size_t)sysconf(_SC_PAGESIZE); +#else + malloc_pagesize = PAGE_SIZE; +#endif + malloc_pagemask = malloc_pagesize - 1; + for (malloc_pageshift = 0; + (1UL << malloc_pageshift) != malloc_pagesize; + malloc_pageshift++) + /* nothing */ ; + + INIT_MMAP(); + +#ifdef MALLOC_EXTRA_SANITY + malloc_junk = 1; +#endif /* MALLOC_EXTRA_SANITY */ + +#ifndef MALLOC_NO_SYSCALLS + for (i = 0; i < 3; i++) { + if (i == 0) { + j = readlink("/etc/malloc.conf", b, sizeof b - 1); + if (j <= 0) + continue; + b[j] = '\0'; + p = b; + } else if (i == 1 && issetugid() == 0) { + p = getenv("MALLOC_OPTIONS"); + } else if (i == 1) { + continue; + } else { + p = _malloc_options; + } + for (; p != NULL && *p != '\0'; p++) { + switch (*p) { + case '>': malloc_cache <<= 1; break; + case '<': malloc_cache >>= 1; break; + case 'a': malloc_abort = 0; break; + case 'A': malloc_abort = 1; break; +#ifndef __minix + case 'h': malloc_hint = 0; break; + case 'H': malloc_hint = 1; break; +#endif /* !__minix */ + case 'r': malloc_realloc = 0; break; + case 'R': malloc_realloc = 1; break; + case 'j': malloc_junk = 0; break; + case 'J': malloc_junk = 1; break; +#ifdef HAS_UTRACE + case 'u': malloc_utrace = 0; break; + case 'U': malloc_utrace = 1; break; +#endif + case 'v': malloc_sysv = 0; break; + case 'V': malloc_sysv = 1; break; + case 'x': malloc_xmalloc = 0; break; + case 'X': malloc_xmalloc = 1; break; + case 'z': malloc_zero = 0; break; + case 'Z': malloc_zero = 1; break; + default: + _malloc_message(getprogname(), malloc_func, + " warning: ", "unknown char in MALLOC_OPTIONS\n"); + break; + } + } + } +#endif + + UTRACE(0, 0, 0); + + /* + * We want junk in the entire allocation, and zero only in the part + * the user asked for. + */ + if (malloc_zero) + malloc_junk = 1; + + /* Allocate one page for the page directory */ + page_dir = MMAP(malloc_pagesize); + + if (page_dir == MAP_FAILED) + wrterror("mmap(2) failed, check limits.\n"); + + /* + * We need a maximum of malloc_pageshift buckets, steal these from the + * front of the page_directory; + */ + malloc_origo = pageround((size_t)(uintptr_t)sbrk((intptr_t)0)) + >> malloc_pageshift; + malloc_origo -= malloc_pageshift; + + malloc_ninfo = malloc_pagesize / sizeof *page_dir; + + /* Recalculate the cache size in bytes, and make sure it's nonzero */ + + if (!malloc_cache) + malloc_cache++; + + malloc_cache <<= malloc_pageshift; + + /* + * This is a nice hack from Kaleb Keithly (kaleb@x.org). + * We can sbrk(2) further back when we keep this on a low address. + */ + px = imalloc(sizeof *px); + + errno = save_errno; +} + +/* + * Allocate a number of complete pages + */ +static void * +malloc_pages(size_t size) +{ + void *p, *delay_free = NULL; + size_t i; + struct pgfree *pf; + size_t idx; + + idx = pageround(size); + if (idx < size) { + errno = ENOMEM; + return NULL; + } else + size = idx; + + p = NULL; + + /* Look for free pages before asking for more */ + for(pf = free_list.next; pf; pf = pf->next) { + +#ifdef MALLOC_EXTRA_SANITY + if (pf->size & malloc_pagemask) + wrterror("(ES): junk length entry on free_list.\n"); + if (!pf->size) + wrterror("(ES): zero length entry on free_list.\n"); + if (pf->page == pf->end) + wrterror("(ES): zero entry on free_list.\n"); + if (pf->page > pf->end) + wrterror("(ES): sick entry on free_list.\n"); + if ((void*)pf->page >= (void*)sbrk(0)) + wrterror("(ES): entry on free_list past brk.\n"); + if (page_dir[ptr2idx(pf->page)] != MALLOC_FREE) + wrterror("(ES): non-free first page on free-list.\n"); + if (page_dir[ptr2idx(pf->end)-1] != MALLOC_FREE) + wrterror("(ES): non-free last page on free-list.\n"); +#endif /* MALLOC_EXTRA_SANITY */ + + if (pf->size < size) + continue; + + if (pf->size == size) { + p = pf->page; + if (pf->next != NULL) + pf->next->prev = pf->prev; + pf->prev->next = pf->next; + delay_free = pf; + break; + } + + p = pf->page; + pf->page = (char *)pf->page + size; + pf->size -= size; + break; + } + +#ifdef MALLOC_EXTRA_SANITY + if (p != NULL && page_dir[ptr2idx(p)] != MALLOC_FREE) + wrterror("(ES): allocated non-free page on free-list.\n"); +#endif /* MALLOC_EXTRA_SANITY */ + + size >>= malloc_pageshift; + + /* Map new pages */ + if (p == NULL) + p = map_pages(size); + + if (p != NULL) { + + idx = ptr2idx(p); + page_dir[idx] = MALLOC_FIRST; + for (i=1;ibits[0] * + (((malloc_pagesize >> bits)+MALLOC_BITS-1) / MALLOC_BITS); + + /* Don't waste more than two chunks on this */ + if ((1<<(bits)) <= l+l) { + bp = (struct pginfo *)pp; + } else { + bp = imalloc((size_t)l); + if (bp == NULL) { + ifree(pp); + return 0; + } + } + + bp->size = (1<shift = bits; + bp->total = bp->free = (u_short)(malloc_pagesize >> bits); + bp->page = pp; + + /* set all valid bits in the bitmap */ + k = bp->total; + i = 0; + + /* Do a bunch at a time */ + for(;k-i >= MALLOC_BITS; i += MALLOC_BITS) + bp->bits[i / MALLOC_BITS] = ~0U; + + for(; i < k; i++) + bp->bits[i/MALLOC_BITS] |= 1<<(i%MALLOC_BITS); + + if (bp == bp->page) { + /* Mark the ones we stole for ourselves */ + for(i = 0; l > 0; i++) { + bp->bits[i / MALLOC_BITS] &= ~(1 << (i % MALLOC_BITS)); + bp->free--; + bp->total--; + l -= (long)(1 << bits); + } + } + + /* MALLOC_LOCK */ + + page_dir[ptr2idx(pp)] = bp; + + bp->next = page_dir[bits]; + page_dir[bits] = bp; + + /* MALLOC_UNLOCK */ + + return 1; +} + +/* + * Allocate a fragment + */ +static void * +malloc_bytes(size_t size) +{ + size_t i; + int j; + u_int u; + struct pginfo *bp; + size_t k; + u_int *lp; + + /* Don't bother with anything less than this */ + if (size < malloc_minsize) + size = malloc_minsize; + + + /* Find the right bucket */ + j = 1; + i = size-1; + while (i >>= 1) + j++; + + /* If it's empty, make a page more of that size chunks */ + if (page_dir[j] == NULL && !malloc_make_chunks(j)) + return NULL; + + bp = page_dir[j]; + + /* Find first word of bitmap which isn't empty */ + for (lp = bp->bits; !*lp; lp++) + ; + + /* Find that bit, and tweak it */ + u = 1; + k = 0; + while (!(*lp & u)) { + u += u; + k++; + } + *lp ^= u; + + /* If there are no more free, remove from free-list */ + if (!--bp->free) { + page_dir[j] = bp->next; + bp->next = NULL; + } + + /* Adjust to the real offset of that chunk */ + k += (lp-bp->bits)*MALLOC_BITS; + k <<= bp->shift; + + if (malloc_junk) + memset((u_char*)bp->page + k, SOME_JUNK, (size_t)bp->size); + + return (u_char *)bp->page + k; +} + +/* + * Allocate a piece of memory + */ +static void * +imalloc(size_t size) +{ + void *result; + + if (suicide) + abort(); + + if ((size + malloc_pagesize) < size) /* Check for overflow */ + result = NULL; + else if ((size + malloc_pagesize) >= (uintptr_t)page_dir) + result = NULL; + else if (size <= malloc_maxsize) + result = malloc_bytes(size); + else + result = malloc_pages(size); + + if (malloc_abort && result == NULL) + wrterror("allocation failed.\n"); + + if (malloc_zero && result != NULL) + memset(result, 0, size); + + return result; +} + +/* + * Change the size of an allocation. + */ +static void * +irealloc(void *ptr, size_t size) +{ + void *p; + size_t osize, idx; + struct pginfo **mp; + size_t i; + + if (suicide) + abort(); + + idx = ptr2idx(ptr); + + if (idx < malloc_pageshift) { + wrtwarning("junk pointer, too low to make sense.\n"); + return 0; + } + + if (idx > last_idx) { + wrtwarning("junk pointer, too high to make sense.\n"); + return 0; + } + + mp = &page_dir[idx]; + + if (*mp == MALLOC_FIRST) { /* Page allocation */ + + /* Check the pointer */ + if ((size_t)(uintptr_t)ptr & malloc_pagemask) { + wrtwarning("modified (page-) pointer.\n"); + return NULL; + } + + /* Find the size in bytes */ + for (osize = malloc_pagesize; *++mp == MALLOC_FOLLOW;) + osize += malloc_pagesize; + + if (!malloc_realloc && /* unless we have to, */ + size <= osize && /* .. or are too small, */ + size > (osize - malloc_pagesize)) { /* .. or can free a page, */ + if (malloc_junk) + memset((u_char *)ptr + size, SOME_JUNK, osize-size); + return ptr; /* don't do anything. */ + } + + } else if (*mp >= MALLOC_MAGIC) { /* Chunk allocation */ + + /* Check the pointer for sane values */ + if (((size_t)(uintptr_t)ptr & ((*mp)->size-1))) { + wrtwarning("modified (chunk-) pointer.\n"); + return NULL; + } + + /* Find the chunk index in the page */ + i = ((size_t)(uintptr_t)ptr & malloc_pagemask) >> (*mp)->shift; + + /* Verify that it isn't a free chunk already */ + if ((*mp)->bits[i/MALLOC_BITS] & (1UL << (i % MALLOC_BITS))) { + wrtwarning("chunk is already free.\n"); + return NULL; + } + + osize = (*mp)->size; + + if (!malloc_realloc && /* Unless we have to, */ + size <= osize && /* ..or are too small, */ + (size > osize / 2 || /* ..or could use a smaller size, */ + osize == malloc_minsize)) { /* ..(if there is one) */ + if (malloc_junk) + memset((u_char *)ptr + size, SOME_JUNK, osize-size); + return ptr; /* ..Don't do anything */ + } + + } else { + wrtwarning("pointer to wrong page.\n"); + return NULL; + } + + p = imalloc(size); + + if (p != NULL) { + /* copy the lesser of the two sizes, and free the old one */ + if (!size || !osize) + ; + else if (osize < size) + memcpy(p, ptr, osize); + else + memcpy(p, ptr, size); + ifree(ptr); + } + return p; +} + +/* + * Free a sequence of pages + */ + +static inline void +free_pages(void *ptr, size_t idx, struct pginfo *info) +{ + size_t i; + struct pgfree *pf, *pt=NULL; + size_t l; + void *tail; + + if (info == MALLOC_FREE) { + wrtwarning("page is already free.\n"); + return; + } + + if (info != MALLOC_FIRST) { + wrtwarning("pointer to wrong page.\n"); + return; + } + + if ((size_t)(uintptr_t)ptr & malloc_pagemask) { + wrtwarning("modified (page-) pointer.\n"); + return; + } + + /* Count how many pages and mark them free at the same time */ + page_dir[idx] = MALLOC_FREE; + for (i = 1; page_dir[idx+i] == MALLOC_FOLLOW; i++) + page_dir[idx + i] = MALLOC_FREE; + + l = i << malloc_pageshift; + + if (malloc_junk) + memset(ptr, SOME_JUNK, l); + +#ifndef __minix + if (malloc_hint) + madvise(ptr, l, MADV_FREE); +#endif /* !__minix */ + + tail = (char *)ptr+l; + + /* add to free-list */ + if (px == NULL) + px = imalloc(sizeof *px); /* This cannot fail... */ + px->page = ptr; + px->end = tail; + px->size = l; + if (free_list.next == NULL) { + + /* Nothing on free list, put this at head */ + px->next = free_list.next; + px->prev = &free_list; + free_list.next = px; + pf = px; + px = NULL; + + } else { + + /* Find the right spot, leave pf pointing to the modified entry. */ + tail = (char *)ptr+l; + + for(pf = free_list.next; pf->end < ptr && pf->next != NULL; + pf = pf->next) + ; /* Race ahead here */ + + if (pf->page > tail) { + /* Insert before entry */ + px->next = pf; + px->prev = pf->prev; + pf->prev = px; + px->prev->next = px; + pf = px; + px = NULL; + } else if (pf->end == ptr ) { + /* Append to the previous entry */ + pf->end = (char *)pf->end + l; + pf->size += l; + if (pf->next != NULL && pf->end == pf->next->page ) { + /* And collapse the next too. */ + pt = pf->next; + pf->end = pt->end; + pf->size += pt->size; + pf->next = pt->next; + if (pf->next != NULL) + pf->next->prev = pf; + } + } else if (pf->page == tail) { + /* Prepend to entry */ + pf->size += l; + pf->page = ptr; + } else if (pf->next == NULL) { + /* Append at tail of chain */ + px->next = NULL; + px->prev = pf; + pf->next = px; + pf = px; + px = NULL; + } else { + wrterror("freelist is destroyed.\n"); + } + } + + /* Return something to OS ? */ + if (pf->next == NULL && /* If we're the last one, */ + pf->size > malloc_cache && /* ..and the cache is full, */ + pf->end == malloc_brk && /* ..and none behind us, */ + malloc_brk == sbrk((intptr_t)0)) { /* ..and it's OK to do... */ + int r; + /* + * Keep the cache intact. Notice that the '>' above guarantees that + * the pf will always have at least one page afterwards. + */ + pf->end = (char *)pf->page + malloc_cache; + pf->size = malloc_cache; + + r = brk(pf->end); + assert(r >= 0); + malloc_brk = pf->end; + + idx = ptr2idx(pf->end); + + for(i=idx;i <= last_idx;) + page_dir[i++] = MALLOC_NOT_MINE; + + last_idx = idx - 1; + + /* XXX: We could realloc/shrink the pagedir here I guess. */ + } + if (pt != NULL) + ifree(pt); +} + +/* + * Free a chunk, and possibly the page it's on, if the page becomes empty. + */ + +static inline void +free_bytes(void *ptr, size_t idx, struct pginfo *info) +{ + size_t i; + struct pginfo **mp; + void *vp; + + /* Find the chunk number on the page */ + i = ((size_t)(uintptr_t)ptr & malloc_pagemask) >> info->shift; + + if (((size_t)(uintptr_t)ptr & (info->size-1))) { + wrtwarning("modified (chunk-) pointer.\n"); + return; + } + + if (info->bits[i/MALLOC_BITS] & (1UL << (i % MALLOC_BITS))) { + wrtwarning("chunk is already free.\n"); + return; + } + + if (malloc_junk) + memset(ptr, SOME_JUNK, (size_t)info->size); + + info->bits[i/MALLOC_BITS] |= (u_int)(1UL << (i % MALLOC_BITS)); + info->free++; + + mp = page_dir + info->shift; + + if (info->free == 1) { + + /* Page became non-full */ + + mp = page_dir + info->shift; + /* Insert in address order */ + while (*mp && (*mp)->next && (*mp)->next->page < info->page) + mp = &(*mp)->next; + info->next = *mp; + *mp = info; + return; + } + + if (info->free != info->total) + return; + + /* Find & remove this page in the queue */ + while (*mp != info) { + mp = &((*mp)->next); +#ifdef MALLOC_EXTRA_SANITY + if (!*mp) + wrterror("(ES): Not on queue.\n"); +#endif /* MALLOC_EXTRA_SANITY */ + } + *mp = info->next; + + /* Free the page & the info structure if need be */ + page_dir[idx] = MALLOC_FIRST; + vp = info->page; /* Order is important ! */ + if(vp != (void*)info) + ifree(info); + ifree(vp); +} + +static void +ifree(void *ptr) +{ + struct pginfo *info; + size_t idx; + + /* This is legal */ + if (ptr == NULL) + return; + + /* If we're already sinking, don't make matters any worse. */ + if (suicide) + return; + + idx = ptr2idx(ptr); + + if (idx < malloc_pageshift) { + wrtwarning("junk pointer, too low to make sense.\n"); + return; + } + + if (idx > last_idx) { + wrtwarning("junk pointer, too high to make sense.\n"); + return; + } + + info = page_dir[idx]; + + if (info < MALLOC_MAGIC) + free_pages(ptr, idx, info); + else + free_bytes(ptr, idx, info); + return; +} + +static int malloc_active; /* Recusion flag for public interface. */ +static unsigned malloc_started; /* Set when initialization has been done */ + +static void * +pubrealloc(void *ptr, size_t size, const char *func) +{ + void *r; + int err = 0; + + /* + * If a thread is inside our code with a functional lock held, and then + * catches a signal which calls us again, we would get a deadlock if the + * lock is not of a recursive type. + */ + _MALLOC_LOCK(); + malloc_func = func; + if (malloc_active > 0) { + if (malloc_active == 1) { + wrtwarning("recursive call\n"); + malloc_active = 2; + } + _MALLOC_UNLOCK(); + errno = EINVAL; + return (NULL); + } + malloc_active = 1; + + if (!malloc_started) { + if (ptr != NULL) { + wrtwarning("malloc() has never been called\n"); + malloc_active = 0; + _MALLOC_UNLOCK(); + errno = EINVAL; + return (NULL); + } + malloc_init(); + malloc_started = 1; + } + + if (ptr == ZEROSIZEPTR) + ptr = NULL; + if (malloc_sysv && !size) { + if (ptr != NULL) + ifree(ptr); + r = NULL; + } else if (!size) { + if (ptr != NULL) + ifree(ptr); + r = ZEROSIZEPTR; + } else if (ptr == NULL) { + r = imalloc(size); + err = (r == NULL); + } else { + r = irealloc(ptr, size); + err = (r == NULL); + } + UTRACE(ptr, size, r); + malloc_active = 0; + _MALLOC_UNLOCK(); + if (malloc_xmalloc && err) + wrterror("out of memory\n"); + if (err) + errno = ENOMEM; + return (r); +} + +/* + * These are the public exported interface routines. + */ + +void * +malloc(size_t size) +{ + + return pubrealloc(NULL, size, " in malloc():"); +} + +int +posix_memalign(void **memptr, size_t alignment, size_t size) +{ + int err; + void *result; + + if (!malloc_started) { + malloc_init(); + malloc_started = 1; + } + /* Make sure that alignment is a large enough power of 2. */ + if (((alignment - 1) & alignment) != 0 || alignment < sizeof(void *) || + alignment > malloc_pagesize) + return EINVAL; + + /* + * (size | alignment) is enough to assure the requested alignment, since + * the allocator always allocates power-of-two blocks. + */ + err = errno; /* Protect errno against changes in pubrealloc(). */ + result = pubrealloc(NULL, (size | alignment), " in posix_memalign()"); + errno = err; + + if (result == NULL) + return ENOMEM; + + *memptr = result; + return 0; +} + +void * +calloc(size_t num, size_t size) +{ + void *ret; + + if (size != 0 && (num * size) / size != num) { + /* size_t overflow. */ + errno = ENOMEM; + return (NULL); + } + + ret = pubrealloc(NULL, num * size, " in calloc():"); + + if (ret != NULL) + memset(ret, 0, num * size); + + return ret; +} + +void +free(void *ptr) +{ + + pubrealloc(ptr, 0, " in free():"); +} + +void * +realloc(void *ptr, size_t size) +{ + + return pubrealloc(ptr, size, " in realloc():"); +} + +/* + * Begin library-private functions, used by threading libraries for protection + * of malloc during fork(). These functions are only called if the program is + * running in threaded mode, so there is no need to check whether the program + * is threaded here. + */ + +void +_malloc_prefork(void) +{ + + _MALLOC_LOCK(); +} + +void +_malloc_postfork(void) +{ + + _MALLOC_UNLOCK(); +} diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile index 6783cc582..42ad3b1f6 100644 --- a/lib/libcrypt/Makefile +++ b/lib/libcrypt/Makefile @@ -1,13 +1,15 @@ -# $NetBSD: Makefile,v 1.21 2008/08/29 00:02:22 gmcgarry Exp $ +# $NetBSD: Makefile,v 1.24 2012/08/10 04:30:47 joerg Exp $ USE_SHLIBDIR= yes +#LSC MINIX Until the library gets updated +NOGCCERROR=yes LIB= crypt SRCS= crypt.c md5crypt.c bcrypt.c crypt-sha1.c util.c pw_gensalt.c SRCS+= hmac_sha1.c -WARNS= 4 +WARNS?= 5 MAN= crypt.3 MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3 @@ -25,6 +27,4 @@ LDSTATIC?= -static .include .endif -.if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC) COPTS.crypt-sha1.c+= -Wno-pointer-sign -.endif diff --git a/lib/libcurses/Makefile b/lib/libcurses/Makefile index 3f696e2d0..c28a8cc3a 100644 --- a/lib/libcurses/Makefile +++ b/lib/libcurses/Makefile @@ -5,6 +5,8 @@ WARNS= 2 +# LSC MINIX, for termios.h ... +CPPFLAGS+=-D__NBSD_LIBC CPPFLAGS+=-I${.CURDIR} -I${NETBSDSRCDIR}/lib/libterminfo .if defined(DEBUG_CURSES) CPPFLAGS+=-g -DDEBUG diff --git a/lib/libelf/Makefile b/lib/libelf/Makefile index 1ee57e121..950233e28 100644 --- a/lib/libelf/Makefile +++ b/lib/libelf/Makefile @@ -53,12 +53,14 @@ SRCS= elf.c \ libelf_shdr.c \ libelf_xlate.c \ ${GENSRCS} -INCS= libelf.h gelf.h elfdefinitions.h +INCS+= libelf.h gelf.h elfdefinitions.h + GENSRCS= libelf_fsize.c libelf_msize.c libelf_convert.c CLEANFILES= ${GENSRCS} CFLAGS+= -I. -I${.CURDIR} + .PATH: ${.CURDIR}/compat SRCS+= mmap.c CFLAGS+= -DNO_MMAP_FILE diff --git a/lib/libexec/Makefile b/lib/libexec/Makefile index e02e248f8..06f9904f7 100644 --- a/lib/libexec/Makefile +++ b/lib/libexec/Makefile @@ -1,5 +1,8 @@ # Makefile for libexec +# LSC For now +NOGCCERROR:= yes + LIB= exec INCS= libexec.h SRCS= exec_aout.c exec_elf.c exec_general.c diff --git a/lib/libm/Makefile b/lib/libm/Makefile index 3c3de53b9..e6d49ea29 100644 --- a/lib/libm/Makefile +++ b/lib/libm/Makefile @@ -104,6 +104,8 @@ WARNS?=4 .endif WARNS?=4 +#i LSC MINIX, do not compile yet with -Werror... +NOGCCERROR=yes .PATH: ${.CURDIR}/man .PATH: ${.CURDIR}/src diff --git a/lib/libprop/Makefile b/lib/libprop/Makefile index d9c26f48f..b17e4d40f 100644 --- a/lib/libprop/Makefile +++ b/lib/libprop/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.19 2011/09/30 22:08:19 jym Exp $ +# $NetBSD: Makefile,v 1.20 2012/03/21 05:37:43 matt Exp $ .include -WARNS=4 +WARNS?=5 USE_SHLIBDIR= yes PROPLIBDIR=${NETBSDSRCDIR}/common/lib/libprop diff --git a/lib/libpuffs/Makefile b/lib/libpuffs/Makefile index e0abd0e66..1b53a6862 100644 --- a/lib/libpuffs/Makefile +++ b/lib/libpuffs/Makefile @@ -4,6 +4,9 @@ .include USE_FORT?= no # data-driven bugs? +# LSC Until this is fixed +NOGCCERROR=yes +CPPFLAGS+=-isystem ${DESTDIR}/usr/include WARNS= 4 diff --git a/lib/libsys/Makefile b/lib/libsys/Makefile index 5de363a20..9ffe70e52 100644 --- a/lib/libsys/Makefile +++ b/lib/libsys/Makefile @@ -1,6 +1,9 @@ # Makefile for libsys .include +# LSC For now +NOGCCERROR:= yes + LIB= sys SRCS= \ @@ -148,6 +151,7 @@ CPPFLAGS+= -DUSE_SYSDEBUG .endif CPPFLAGS.sched_start.c+= -I${NETBSDSRCDIR} +CPPFLAGS.vprintf.c+= -D__NBSD_LIBC .if (${CC} == "gcc") || (${CC} == "clang") LDADD+= -lminc diff --git a/lib/libterminfo/Makefile b/lib/libterminfo/Makefile index a6537ade8..cae747506 100644 --- a/lib/libterminfo/Makefile +++ b/lib/libterminfo/Makefile @@ -5,6 +5,8 @@ .endif USE_SHLIBDIR= yes +# LSC MINIX UNtil the library is fixed.. +NOGCCERROR=yes LIB= terminfo WARNS= 4 diff --git a/lib/libutil/Makefile b/lib/libutil/Makefile index af32c645f..8c178b38d 100644 --- a/lib/libutil/Makefile +++ b/lib/libutil/Makefile @@ -8,6 +8,8 @@ USE_SHLIBDIR= yes .include "${NETBSDSRCDIR}/common/lib/libutil/Makefile.inc" WARNS?= 5 +# LSC MINIX Does not compile with -Werror +NOGCCERROR=yes LIB= util CPPFLAGS+=-DLIBC_SCCS -I${.CURDIR} LINTFLAGS+=-w @@ -36,7 +38,7 @@ MAN= efun.3 getbootfile.3 getfstypename.3 getlabelsector.3 \ .else SRCS+= efun.c getbootfile.c \ - getfsspecname.c getmntopts.c sockaddr_snprintf.c\ + getmntopts.c sockaddr_snprintf.c\ login.c loginx.c login_cap.c login_tty.c logout.c logoutx.c \ logwtmp.c logwtmpx.c opendisk.c \ passwd.c pw_scan.c pidfile.c pidlock.c pty.c \ @@ -45,7 +47,7 @@ SRCS+= efun.c getbootfile.c \ ttyaction.c \ MAN= efun.3 getbootfile.3 \ - getmntopts.3 getfsspecname.3 \ + getmntopts.3 \ login.3 login_cap.3 loginx.3 \ opendisk.3 openpty.3 pidfile.3 pidlock.3 \ pw_getconf.3 pw_init.3 pw_lock.3 secure_path.3 \ @@ -65,9 +67,9 @@ YPREFIX=__pd .if !defined(__MINIX) MLINKS+=getlabelsector.3 getlabeloffset.3 -.endif MLINKS+=getlabelsector.3 getlabelusesmbr.3 MLINKS+=getdiskrawname.3 getdiskcookedname.3 +.endif MLINKS+=login.3 logout.3 MLINKS+=login.3 logwtmp.3 MLINKS+=login_cap.3 login_getclass.3 @@ -109,7 +111,9 @@ MLINKS+=efun.3 evasprintf.3 MLINKS+=stat_flags.3 string_to_flags.3 MLINKS+=stat_flags.3 flags_to_string.3 MLINKS+=snprintb.3 snprintb_m.3 +.if !defined(__MINIX) MLINKS+=util.3 libutil.3 MLINKS+=strpct.3 strspct.3 +.endif .include diff --git a/lib/libvtreefs/Makefile b/lib/libvtreefs/Makefile index a4906cff6..0f4816c83 100644 --- a/lib/libvtreefs/Makefile +++ b/lib/libvtreefs/Makefile @@ -2,6 +2,8 @@ LIB= vtreefs +CPPFLAGS+= -I${NETBSDSRCDIR}/include + SRCS= \ inode.c \ link.c \ diff --git a/libexec/ld.elf_so/Makefile b/libexec/ld.elf_so/Makefile index 6cdfa0c58..b25ea01ec 100644 --- a/libexec/ld.elf_so/Makefile +++ b/libexec/ld.elf_so/Makefile @@ -1,10 +1,13 @@ -# $NetBSD: Makefile,v 1.102 2011/01/16 02:36:05 matt Exp $ +# $NetBSD: Makefile,v 1.112 2012/08/04 15:17:16 matt Exp $ # # NOTE: when changing ld.so, ensure that ldd still compiles. # WARNS?=4 +#LSC MINIX until warnings get fixed... +NOGCCERROR:=yes + # This executable needs to be linked dynamically MINIXDYNAMIC=yes @@ -44,15 +47,12 @@ M= ${.CURDIR}/arch/${ARCHSUBDIR} (${MACHINE_ARCH} == "vax")) && \ ${MKPIC} != "no" -.if ${CC} == "gcc" -LDFLAGS+= -shared -symbolic -nostartfiles -.else -LDFLAGS+= -shared -Wl,-Bsymbolic -nostartfiles -.endif +LDFLAGS+= ${${ACTIVE_CC} == "clang":? -Wl,-Bsymbolic : -symbolic} \ + -shared -nostartfiles -nodefaultlibs LDFLAGS+= -Wl,-static LDFLAGS+= -Wl,--warn-shared-textrel -CFLAGS+= -fvisibility=hidden +COPTS+= -fvisibility=hidden # Adds SRCS, CPPFLAGS, LDFLAGS, etc. Must go first so MD startup source # is first. @@ -100,7 +100,12 @@ CPPFLAGS+= -DCOMBRELOC #CPPFLAGS+= -DRTLD_DEBUG #CPPFLAGS+= -DRTLD_DEBUG_RELOC DBG= -g -#DBG= -O3 -fomit-frame-pointer +#COPTS= -O3 -fomit-frame-pointer + +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" +COPTS+= -mno-3dnow -mno-mmx -mno-sse -mno-sse2 -mno-sse3 +.endif + .if ${SHLIBDIR} != ${LIBDIR} CPPFLAGS+= -DRTLD_DEFAULT_LIBRARY_PATH=\"${SHLIBDIR}:${LIBDIR}\" @@ -122,6 +127,12 @@ LDADD+= -lc DPADD+= ${CLIBOBJ}/libc.a .endif +.if ${MACHINE_CPU} == "hppa" || ${MACHINE_CPU} == "sh3" +# for $$divU, $$remU etc. (millicode) +LDADD+= -lgcc +DPADD+= ${LIBGCC} +.endif + STRIPFLAG= .PATH: $M diff --git a/libexec/ld.elf_so/arch/arm/Makefile.inc b/libexec/ld.elf_so/arch/arm/Makefile.inc index 280a20d98..b9a20df7c 100644 --- a/libexec/ld.elf_so/arch/arm/Makefile.inc +++ b/libexec/ld.elf_so/arch/arm/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.11 2005/06/04 16:17:17 lukem Exp $ +# $NetBSD: Makefile.inc,v 1.12 2012/08/15 03:46:07 matt Exp $ SRCS+= rtld_start.S mdreloc.c @@ -6,5 +6,8 @@ SRCS+= rtld_start.S mdreloc.c CPPFLAGS+= -fpic CPPFLAGS+= -DELFSIZE=32 +.if ${MACHINE_ARCH} == "earm" || ${MACHINE_ARCH} == "earmeb" +CPPFLAGS+= -DHAVE_INITFINI_ARRAY +.endif LDFLAGS+= -Wl,-e,_rtld_start diff --git a/libexec/ld.elf_so/arch/powerpc/Makefile.inc b/libexec/ld.elf_so/arch/powerpc/Makefile.inc index 49264ea75..9773b74d6 100644 --- a/libexec/ld.elf_so/arch/powerpc/Makefile.inc +++ b/libexec/ld.elf_so/arch/powerpc/Makefile.inc @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.inc,v 1.11 2009/10/22 21:56:13 skrll Exp $ +# $NetBSD: Makefile.inc,v 1.12 2011/10/26 15:56:58 chs Exp $ SRCS+= rtld_start.S ppc_reloc.c # XXX Should not be in CPPFLAGS! -CPPFLAGS+= -fpic -msoft-float +CPPFLAGS+= -fpic CPPFLAGS+= -DELFSIZE=32 diff --git a/releasetools/Makefile b/releasetools/Makefile index 5e0b46374..42c3af7b7 100644 --- a/releasetools/Makefile +++ b/releasetools/Makefile @@ -9,22 +9,28 @@ u=/usr MDEC= /usr/mdec GEN_FILES= *.bak image kernel *.iso *.iso.gz cdfdimage rootimage src +# LSC detect where were built the objects files +PROGROOT:= ../.. +.if "${MAKEOBJDIR:S,${.CURDIR},,}" != "" +PROGROOT:= ${MAKEOBJDIR:S,releasetools,,} +.endif + # Specify the programs that are part of the system image. -KERNEL= kernel +KERNEL= ${PROGROOT}/kernel/kernel # PROGRAMS are in the order they should be loaded by boot PROGRAMS= \ - ${NETBSDSRCDIR}/servers/ds/ds \ - ${NETBSDSRCDIR}/servers/rs/rs \ - ${NETBSDSRCDIR}/servers/pm/pm \ - ${NETBSDSRCDIR}/servers/sched/sched \ - ${NETBSDSRCDIR}/servers/vfs/vfs \ - ${NETBSDSRCDIR}/drivers/memory/memory \ - ${NETBSDSRCDIR}/drivers/log/log \ - ${NETBSDSRCDIR}/drivers/tty/tty \ - ${NETBSDSRCDIR}/servers/mfs/mfs \ - ${NETBSDSRCDIR}/servers/vm/vm \ - ${NETBSDSRCDIR}/servers/pfs/pfs \ - ${NETBSDSRCDIR}/servers/init/init + ${PROGROOT}/servers/ds/ds \ + ${PROGROOT}/servers/rs/rs \ + ${PROGROOT}/servers/pm/pm \ + ${PROGROOT}/servers/sched/sched \ + ${PROGROOT}/servers/vfs/vfs \ + ${PROGROOT}/drivers/memory/memory \ + ${PROGROOT}/drivers/log/log \ + ${PROGROOT}/drivers/tty/tty \ + ${PROGROOT}/servers/mfs/mfs \ + ${PROGROOT}/servers/vm/vm \ + ${PROGROOT}/servers/pfs/pfs \ + ${PROGROOT}/servers/init/init usage: @echo " " >&2 @@ -51,7 +57,7 @@ all: services # rebuild the program or system libraries includes: - $(MAKE) -C .. includes + $(MAKE) -C ../ includes depend: includes .gitignore $(MAKE) -C ../ depend @@ -74,11 +80,11 @@ drivers: includes servers bootable: exec su root mkboot bootable -hdboot: services - rm -rf ${DESTDIR}/boot/minix/.temp/ +hdboot: + @rm -rf ${DESTDIR}/boot/minix/.temp/ ${INSTALL_DIR} ${DESTDIR}/boot/minix/.temp # mod_0 is used to make alphabetical order equal to the boot order - n=0; \ + @n=0; \ for i in ${PROGRAMS}; \ do \ n=`expr $$n + 1`; \ @@ -86,8 +92,8 @@ hdboot: services newname="${DESTDIR}/boot/minix/.temp/$${prefix}$${n}_`basename $$i`"; \ ${INSTALL} $$i $$newname; \ done - cp ../kernel/kernel ${DESTDIR}/boot/minix/.temp/ - if [ "${MKINSTALLBOOT}" != "no" ] ; then \ + @cp ${PROGROOT}/kernel/kernel ${DESTDIR}/boot/minix/.temp/ + @if [ "${MKINSTALLBOOT}" != "no" ] ; then \ ${STRIP} -s ${DESTDIR}/boot/minix/.temp/* ; \ gzip ${DESTDIR}/boot/minix/.temp/mod* ; \ ${HOST_SH} mkboot $@; \ @@ -110,15 +116,15 @@ nbsd_fetch: date=$$1; minixpath=$$2; origpath=$$3; \ if [ $$# -lt 3 ]; then origpath=$$2; fi; \ echo "retrieving $$origpath .."; \ - cd ${NETBSDSRCDIR} && cvs -q -d ${NBSD_CVSROOT} co -N -D "$$date UTC" -d nbsdsrc "src/$$origpath" ; \ + cd .. && cvs -q -d ${NBSD_CVSROOT} co -N -D "$$date UTC" -d nbsdsrc "src/$$origpath" ; \ done nbsd_diff: - find ${NETBSDSRCDIR} -name minix-port.patch | xargs rm + find .. -name minix-port.patch | xargs rm cat nbsd_ports | grep -v '^#' | \ - ( cd ${NETBSDSRCDIR} && awk -F, '{ minixpath=$$2; origpath=$$3; if(NF < 3) { origpath=$$2; } system("sh releasetools/nbsd_diff.sh " \ + ( cd .. && awk -F, '{ minixpath=$$2; origpath=$$3; if(NF < 3) { origpath=$$2; } system("sh releasetools/nbsd_diff.sh " \ "nbsdsrc/src/"origpath" "minixpath" "minixpath"/minix-port.patch");}' ) - find ${NETBSDSRCDIR} -name minix-port.patch | xargs wc -l | sort -n + find .. -name minix-port.patch | xargs wc -l | sort -n # clean up compile results diff --git a/releasetools/nbsd_ports b/releasetools/nbsd_ports index 2e9903df9..a1c75e0fa 100644 --- a/releasetools/nbsd_ports +++ b/releasetools/nbsd_ports @@ -2,6 +2,8 @@ # Timestamp in UTC,minixpath,netbsdpath # minixpath: path in Minix source tree (starting from /usr/src/) # netbsdpath: path in BSD source tree (starting from src/) +2012/08/10 05:22:22,distrib/common +2012/10/17 12:00:00,distrib/sets 2012/10/17 12:00:00,external/bsd/libarchive 2012/10/17 12:00:00,lib/librmt 2012/10/17 12:00:00,bin/pax diff --git a/sbin/fsck/Makefile b/sbin/fsck/Makefile index 87d57f7a9..3f65baf34 100644 --- a/sbin/fsck/Makefile +++ b/sbin/fsck/Makefile @@ -10,4 +10,7 @@ DPADD+=${LIBUTIL} LDADD+=-lprop DPADD+=${LIBPROP} +# LSC Does not compile without any warnings... +NOGCCERROR:=yes + .include diff --git a/sbin/fsck_ext2fs/Makefile b/sbin/fsck_ext2fs/Makefile index c93408a3c..f5a4f3662 100644 --- a/sbin/fsck_ext2fs/Makefile +++ b/sbin/fsck_ext2fs/Makefile @@ -9,7 +9,7 @@ SRCS= dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \ pass5.c fsutil.c setup.c utilities.c ext2fs_bswap.c FSCK= ${NETBSDSRCDIR}/sbin/fsck CPPFLAGS+= -I${FSCK} -.PATH: -I/usr/nbsdsrc/src/sys/ufs/ext2fs ${FSCK} +.PATH: ${NETBSDSRCDIR}/sys/ufs/ext2fs ${FSCK} SYMLINKS+= $(BINDIR)/$(PROG) $(BINDIR)/fsck.ext2 diff --git a/sbin/newfs_ext2fs/Makefile b/sbin/newfs_ext2fs/Makefile index 7c426ab11..03cf3434c 100644 --- a/sbin/newfs_ext2fs/Makefile +++ b/sbin/newfs_ext2fs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2009/06/05 21:52:31 haad Exp $ +# $NetBSD: Makefile,v 1.4 2012/03/24 08:22:24 joerg Exp $ # @(#)Makefile 8.2 (Berkeley) 3/27/94 WARNS?= 3 # XXX: sign-compare issues @@ -10,7 +10,6 @@ SRCS= newfs_ext2fs.c mke2fs.c ext2fs_bswap.c partutil.c MAN= newfs_ext2fs.8 FSCK=${NETBSDSRCDIR}/sbin/fsck -MYFSCK=${NETBSDSRCDIR}/sbin/fsck_ext2fs CPPFLAGS+=-I${.CURDIR} -I${FSCK} DPADD+= ${LIBUTIL} @@ -22,6 +21,7 @@ DPADD+=${LIBPROP} SYMLINKS+= $(BINDIR)/$(PROG) $(BINDIR)/newfs_ext2 \ $(BINDIR)/$(PROG) $(BINDIR)/mkfs.ext2 -.PATH: ${FSCK} ${MYFSCK} #${NETBSDSRCDIR}/sys/ufs/ext2fs +#.PATH: ${NETBSDSRCDIR}/sys/ufs/ext2fs ${FSCK} +.PATH: ${NETBSDSRCDIR}/sbin/fsck_ext2fs ${FSCK} .include diff --git a/servers/init/Makefile b/servers/init/Makefile index 95d47b394..d3f1f5b78 100644 --- a/servers/init/Makefile +++ b/servers/init/Makefile @@ -4,6 +4,7 @@ PROG= init SRCS= init.c +CPPFLAGS.init.c+= -D__NBSD_LIBC MAN= BINDIR?= /usr/sbin diff --git a/share/Makefile b/share/Makefile index cc193c9a2..d6c548f59 100644 --- a/share/Makefile +++ b/share/Makefile @@ -1,5 +1,20 @@ +# $NetBSD: Makefile,v 1.32 2010/02/03 15:34:44 roy Exp $ +# from @(#)Makefile 8.1 (Berkeley) 6/5/93 + +# Missing: ms + .include +.if ${MKSHARE} != "no" || \ + make(clean) || make(cleandir) || make(distclean) || make(obj) SUBDIR= mk terminfo zoneinfo misc +.if ${MKNLS} != "no" +SUBDIR+=i18n locale nls +.endif +.endif + +# Speedup stubs for some subtrees that don't need to run these rules +includes-examples includes-man: + @true .include diff --git a/share/Makefile.inc b/share/Makefile.inc index bf21b6317..490faea6e 100644 --- a/share/Makefile.inc +++ b/share/Makefile.inc @@ -1 +1,5 @@ -BINDIR?= /usr/share +# $NetBSD: Makefile.inc,v 1.5 1997/10/17 10:48:55 mrg Exp $ +# from: @(#)Makefile.inc 8.1 (Berkeley) 6/5/93 + +BINDIR?= /usr/share +WARNS?= 1 diff --git a/share/mk/Makefile b/share/mk/Makefile index 5c4dd27ea..0ab079eae 100644 --- a/share/mk/Makefile +++ b/share/mk/Makefile @@ -1,14 +1,19 @@ +# $NetBSD: Makefile,v 1.46 2011/10/07 16:29:40 plunky Exp $ +# @(#)Makefile 8.1 (Berkeley) 6/8/93 + NOOBJ= # defined .include .if ${MKSHARE} != "no" -FILES= bsd.dep.mk bsd.files.mk \ - bsd.inc.mk bsd.info.mk \ - bsd.init.mk bsd.kinc.mk bsd.klinks.mk bsd.lib.mk \ - bsd.links.mk bsd.man.mk bsd.obj.mk bsd.own.mk \ - bsd.prog.mk bsd.subdir.mk bsd.sys.mk bsd.doc.mk \ - bsd.shlib.mk sys.mk +FILES= bsd.README bsd.clang-analyze.mk bsd.clean.mk bsd.dep.mk bsd.doc.mk \ + bsd.endian.mk bsd.files.mk \ + bsd.gcc.mk bsd.hostlib.mk bsd.hostprog.mk bsd.inc.mk bsd.info.mk \ + bsd.init.mk bsd.ioconf.mk bsd.kernobj.mk bsd.kinc.mk bsd.klinks.mk \ + bsd.kmodule.mk bsd.lib.mk bsd.links.mk bsd.lua.mk \ + bsd.man.mk bsd.nls.mk \ + bsd.obj.mk bsd.own.mk bsd.prog.mk bsd.rpc.mk bsd.shlib.mk \ + bsd.subdir.mk bsd.sys.mk bsd.test.mk bsd.x11.mk sys.mk # MINIX-specific files FILES+= minix.bootprog.mk minix.service.mk \ diff --git a/share/mk/bsd.clang-analyze.mk b/share/mk/bsd.clang-analyze.mk new file mode 100644 index 000000000..81912be3b --- /dev/null +++ b/share/mk/bsd.clang-analyze.mk @@ -0,0 +1,40 @@ +# $NetBSD: bsd.clang-analyze.mk,v 1.3 2012/04/04 10:37:18 joerg Exp $ + +.ifndef CLANG_ANALYZE_SRCS + +CLANG_ANALYZE_FLAGS+= --analyze + +CLANG_ANALYZE_CHECKERS+= core deadcode security unix + +.for checker in ${CLANG_ANALYZE_CHECKERS} +CLANG_ANALYZE_FLAGS+= -Xanalyzer -analyzer-checker=${checker} +.endfor + +.SUFFIXES: .c .cc .cpp .cxx .C .clang-analyzer + +CLANG_ANALYZE_CFLAGS= ${CFLAGS:N-Wa,--fatal-warnings} +CLANG_ANALYZE_CXXFLAGS= ${CXXFLAGS:N-Wa,--fatal-warnings} + +.c.clang-analyzer: + ${TOOL_CC.clang} ${CLANG_ANALYZE_FLAGS} \ + ${CLANG_ANALYZE_CFLAGS} ${CPPFLAGS} \ + ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} \ + ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} +.cc.clang-analyzer .cpp.clang-analyzer .cxx.clang-analyzer .C.clang-analyzer: + ${TOOL_CXX.clang} ${CLANG_ANALYZE_FLAGS} \ + ${CLANG_ANALYZE_CXXFLAGS} ${CPPFLAGS} \ + ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} \ + ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} + +CLANG_ANALYZE_SRCS= \ + ${SRCS:M*.[cC]} ${SRCS:M*.cc} \ + ${SRCS:M*.cpp} ${SRCS:M*.cxx} \ + ${DPSRCS:M*.[cC]} ${DPSRCS:M*.cc} \ + ${DPSRCS:M*.cpp} ${DPSRCS:M*.cxx} +.if !empty(CLANG_ANALYZE_SRCS) +CLANG_ANALYZE_OUTPUT= ${CLANG_ANALYZE_SRCS:R:S,$,.clang-analyzer,} +.endif + +analyze: ${CLANG_ANALYZE_OUTPUT} + +.endif diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index 1a78be680..71de88ecf 100644 --- a/share/mk/bsd.dep.mk +++ b/share/mk/bsd.dep.mk @@ -1,7 +1,6 @@ -# $NetBSD: bsd.dep.mk,v 1.68 2008/10/25 22:27:36 apb Exp $ +# $NetBSD: bsd.dep.mk,v 1.74 2012/02/19 23:19:37 matt Exp $ ##### Basic targets -cleandir: cleandepend realdepend: beforedepend .depend afterdepend .ORDER: beforedepend .depend afterdepend @@ -15,10 +14,19 @@ MKDEP_SUFFIXES?= .o # some of the rules involve .h sources, so remove them from mkdep line .if defined(SRCS) # { -__acpp_flags= ${_TRADITIONAL_CPP} +__acpp_flags= ${_ASM_TRADITIONAL_CPP} -__DPSRCS.all= ${SRCS:C/\.(c|m|s|S|C|cc|cpp|cxx)$/.d/} \ +.if defined(NODPSRCS) +.for f in ${SRCS} ${DPSRCS} +.if "${NODPSRCS:M${f}}" == "" +__DPSRCS.all+= ${f:C/\.(c|m|s|S|C|cc|cpp|cxx)$/.d/} +.endif +.endfor +beforedepend: ${DPSRCS} +.else +__DPSRCS.all+= ${SRCS:C/\.(c|m|s|S|C|cc|cpp|cxx)$/.d/} \ ${DPSRCS:C/\.(c|m|s|S|C|cc|cpp|cxx)$/.d/} +.endif __DPSRCS.d= ${__DPSRCS.all:O:u:M*.d} __DPSRCS.notd= ${__DPSRCS.all:O:u:N*.d} @@ -57,23 +65,23 @@ ${__DPSRCS.d}: ${__DPSRCS.notd} ${DPSRCS} ${_MKTARGET_CREATE} ${MKDEP} -f ${.TARGET} -- ${MKDEPFLAGS} \ ${CXXFLAGS:C/-([IDU])[ ]*/-\1/Wg:M-[IDU]*} \ - ${DESTDIR:D-nostdinc++ ${CPPFLAG_ISYSTEMXX} \ - ${DESTDIR}/usr/include/g++} \ ${CPPFLAGS} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} .endif # defined(SRCS) # } ##### Clean rules -cleandepend: .PHONY .if defined(SRCS) - rm -f .depend ${__DPSRCS.d} ${.CURDIR}/tags ${CLEANDEPEND} +CLEANDIRFILES+= .depend ${__DPSRCS.d} ${.CURDIR}/tags ${CLEANDEPEND} .endif ##### Custom rules .if !target(tags) tags: ${SRCS} .if defined(SRCS) - -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:N*.h} | \ + -cd "${.CURDIR}"; ctags -f /dev/stdout ${.ALLSRC:N*.h} | \ ${TOOL_SED} "s;\${.CURDIR}/;;" > tags .endif .endif + +##### Pull in related .mk logic +.include diff --git a/share/mk/bsd.endian.mk b/share/mk/bsd.endian.mk new file mode 100644 index 000000000..5908616f4 --- /dev/null +++ b/share/mk/bsd.endian.mk @@ -0,0 +1,28 @@ +# $NetBSD: bsd.endian.mk,v 1.16 2012/08/05 04:11:35 matt Exp $ + +.if !defined(_BSD_ENDIAN_MK_) +_BSD_ENDIAN_MK_=1 + +.include + +.if ${MACHINE_ARCH} == "alpha" || \ + ${MACHINE_ARCH} == "arm" || \ + ${MACHINE_ARCH} == "earm" || \ + ${MACHINE_ARCH} == "i386" || \ + ${MACHINE_ARCH} == "ia64" || \ + ${MACHINE_ARCH} == "vax" || \ + ${MACHINE_ARCH} == "x86_64" || \ + ${MACHINE_ARCH:C/^.*el$/el/} == "el" +TARGET_ENDIANNESS= 1234 +.elif ${MACHINE_ARCH} == "hppa" || \ + ${MACHINE_ARCH} == "m68000" || \ + ${MACHINE_ARCH} == "m68k" || \ + ${MACHINE_ARCH} == "powerpc" || \ + ${MACHINE_ARCH} == "powerpc64" || \ + ${MACHINE_ARCH} == "sparc" || \ + ${MACHINE_ARCH} == "sparc64" || \ + ${MACHINE_ARCH:C/^.*eb$/eb/} == "eb" +TARGET_ENDIANNESS= 4321 +.endif + +.endif # !defined(_BSD_ENDIAN_MK_) diff --git a/share/mk/bsd.files.mk b/share/mk/bsd.files.mk index ee5956c33..fcc000176 100644 --- a/share/mk/bsd.files.mk +++ b/share/mk/bsd.files.mk @@ -1,7 +1,7 @@ -# $NetBSD: bsd.files.mk,v 1.40 2008/12/05 18:51:16 cube Exp $ +# $NetBSD: bsd.files.mk,v 1.42 2011/09/10 16:57:35 apb Exp $ -.if !defined(_MINIX_FILES_MK_) -_MINIX_FILES_MK_=1 +.if !defined(_BSD_FILES_MK_) +_BSD_FILES_MK_=1 .include @@ -41,7 +41,7 @@ __fileinstall: .USE _FDIR:= ${FILESDIR_${F}:U${FILESDIR}} # dir override _FNAME:= ${FILESNAME_${F}:U${FILESNAME:U${F:T}}} # name override _F:= ${DESTDIR}${_FDIR}/${_FNAME} # installed path -_FDOBUILD:= ${FILESBUILD_${F}:Uno} +_FDOBUILD:= ${FILESBUILD_${F}:U${FILESBUILD:Uno}} .if ${MKUPDATE} == "no" ${_F}! ${F} __fileinstall # install rule @@ -74,7 +74,7 @@ configinstall: configfilesinstall _FDIR:= ${FILESDIR_${F}:U${FILESDIR}} # dir override _FNAME:= ${FILESNAME_${F}:U${FILESNAME:U${F:T}}} # name override _F:= ${DESTDIR}${_FDIR}/${_FNAME} # installed path -_FDOBUILD:= ${FILESBUILD_${F}:Uno} +_FDOBUILD:= ${FILESBUILD_${F}:U${FILESBUILD:Uno}} .if ${MKUPDATE} == "no" ${_F}! ${F} __fileinstall # install rule @@ -118,9 +118,7 @@ ${_TL}: ${_SL} realall: ${BUILDSYMLINKS.t} -cleandir: cleanbuildsymlinks -cleanbuildsymlinks: .PHONY - rm -f ${BUILDSYMLINKS.t} +CLEANDIRFILES+= ${BUILDSYMLINKS.t} .endif # } @@ -149,13 +147,12 @@ CLEANUUDECODE_FILES=${UUDECODE_FILES} ${UUDECODE_FILES:=.tmp} CLEANUUDECODE_FILES+=${UUDECODE_FILES_RENAME_${i}} .endfor -clean: cleanuudecodefiles -cleanuudecodefiles: .PHONY - rm -f ${CLEANUUDECODE_FILES} +CLEANFILES+= ${CLEANUUDECODE_FILES} .endif # } ##### Pull in related .mk logic .include .include +.include -.endif # !defined(_MINIX_FILES_MK_) +.endif # !defined(_BSD_FILES_MK_) diff --git a/share/mk/bsd.gcc.mk b/share/mk/bsd.gcc.mk index b1281ded5..ddf04e6d7 100644 --- a/share/mk/bsd.gcc.mk +++ b/share/mk/bsd.gcc.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.gcc.mk,v 1.3 2008/10/25 19:11:28 mrg Exp $ +# $NetBSD: bsd.gcc.mk,v 1.4 2012/07/19 19:42:45 christos Exp $ .if !defined(_BSD_GCC_MK_) _BSD_GCC_MK_=1 @@ -8,6 +8,8 @@ _GCC_CRTBEGIN!= ${CC} --print-file-name=crtbegin.o _GCC_CRTBEGINS!= ${CC} --print-file-name=crtbeginS.o _GCC_CRTEND!= ${CC} --print-file-name=crtend.o _GCC_CRTENDS!= ${CC} --print-file-name=crtendS.o +_GCC_CRTI!= ${CC} --print-file-name=crti.o +_GCC_CRTN!= ${CC} --print-file-name=crtn.o _GCC_CRTDIR!= dirname ${_GCC_CRTBEGIN} _GCC_LIBGCCDIR!= dirname `${CC} --print-libgcc-file-name` .else @@ -15,6 +17,8 @@ _GCC_CRTBEGIN?= ${DESTDIR}/usr/lib/crtbegin.o _GCC_CRTBEGINS?= ${DESTDIR}/usr/lib/crtbeginS.o _GCC_CRTEND?= ${DESTDIR}/usr/lib/crtend.o _GCC_CRTENDS?= ${DESTDIR}/usr/lib/crtendS.o +_GCC_CRTI?= ${DESTDIR}/usr/lib/crti.o +_GCC_CRTN?= ${DESTDIR}/usr/lib/crtn.o _GCC_CRTDIR?= ${DESTDIR}/usr/lib _GCC_LIBGCCDIR?= ${DESTDIR}/usr/lib .endif diff --git a/share/mk/bsd.inc.mk b/share/mk/bsd.inc.mk index 3aadf3a81..9672743d5 100644 --- a/share/mk/bsd.inc.mk +++ b/share/mk/bsd.inc.mk @@ -54,5 +54,4 @@ inclinkinstall: .PHONY ${_MKSHECHO} ${INSTALL_SYMLINK} $$l $$t; \ ${INSTALL_SYMLINK} $$l $$t; \ done; ) - .endif diff --git a/share/mk/bsd.info.mk b/share/mk/bsd.info.mk index a24761a07..ef6bd1f61 100644 --- a/share/mk/bsd.info.mk +++ b/share/mk/bsd.info.mk @@ -1,9 +1,8 @@ -# $NetBSD: bsd.info.mk,v 1.39 2009/02/28 19:18:52 joerg Exp $ +# $NetBSD: bsd.info.mk,v 1.40 2011/09/10 16:57:35 apb Exp $ .include ##### Basic targets -cleandir: cleaninfo realinstall: infoinstall ##### Default values @@ -78,15 +77,11 @@ infoinstall:: ${_F} .endif # ${MKINFO} != "no" ##### Clean rules -CLEANFILES+= ${INFOFILES} - -cleaninfo: .PHONY -.if !empty(CLEANFILES) - rm -f ${CLEANFILES} -.endif +CLEANDIRFILES+= ${INFOFILES} ##### Pull in related .mk logic .include .include +.include ${TARGETS}: # ensure existence diff --git a/share/mk/bsd.init.mk b/share/mk/bsd.init.mk index 23e1b032d..22dc168ef 100644 --- a/share/mk/bsd.init.mk +++ b/share/mk/bsd.init.mk @@ -3,11 +3,11 @@ # includes Makefile.inc and ; this is used at the # top of all files which actually "build something". -.if !defined(_MINIX_INIT_MK_) -_MINIX_INIT_MK_=1 +.if !defined(_BSD_INIT_MK_) +_BSD_INIT_MK_=1 .-include "${.CURDIR}/../Makefile.inc" .include .MAIN: all -.endif # !defined(_MINIX_INIT_MK_) +.endif # !defined(_BSD_INIT_MK_) diff --git a/share/mk/bsd.ioconf.mk b/share/mk/bsd.ioconf.mk new file mode 100644 index 000000000..009f78c31 --- /dev/null +++ b/share/mk/bsd.ioconf.mk @@ -0,0 +1,40 @@ +# $NetBSD: bsd.ioconf.mk,v 1.3 2010/03/25 20:37:36 pooka Exp $ +# + +.include + +# If IOCONF is defined, autocreate ioconf.[ch] and locators.h. +# This is useful mainly for devices. +.if !empty(IOCONF) + +# discourage direct inclusion. bsd.ioconf.mk will hopefully go away +# when the kernel build procedures are unified. +.if defined(_BSD_IOCONF_MK_USER_) + +# XXX: ioconf.c doesn't need to depend on TOOL_CONFIG, but that helps +# keep builds working while hashing out some of the experimental +# features related to ioconf. +.if ${USETOOLS} == "yes" +CONFIGDEP=${TOOL_CONFIG} +.endif +ioconf.c: ${IOCONF} ${CONFIGDEP} + ${TOOL_CONFIG} -b ${.OBJDIR} -s ${S} ${.CURDIR}/${IOCONF} + # config doesn't change the files if they're unchanged. however, + # here we want to satisfy our make dependency, so force a + # timestamp update + touch ioconf.c ioconf.h locators.h + +.else # _BSD_IOCONF_MK_USER_ + +ioconf.c: + @echo do not include bsd.ioconf.mk directly + @false + +.endif # _BSD_IOCONF_MK_USER_ + +locators.h: ioconf.c +ioconf.h: ioconf.c + +CLEANFILES+= ioconf.c ioconf.h locators.h +DPSRCS+= ioconf.c ioconf.h locators.h +.endif diff --git a/share/mk/bsd.klinks.mk b/share/mk/bsd.klinks.mk index b35c2de65..81a845fc4 100644 --- a/share/mk/bsd.klinks.mk +++ b/share/mk/bsd.klinks.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.klinks.mk,v 1.6 2009/11/27 13:50:29 pooka Exp $ +# $NetBSD: bsd.klinks.mk,v 1.9 2011/07/10 23:50:24 matt Exp $ # .include @@ -14,7 +14,7 @@ S= /sys .endif .endif -CLEANFILES+= machine ${MACHINE_CPU} +CLEANFILES+= machine ${MACHINE_CPU} ${MACHINE} .if ${MACHINE} == "sun2" || ${MACHINE} == "sun3" CLEANFILES+= sun68k .elif ${MACHINE} == "sparc64" @@ -22,7 +22,9 @@ CLEANFILES+= sparc .elif ${MACHINE} == "i386" CLEANFILES+= x86 .elif ${MACHINE} == "amd64" -CLEANFILES+= x86 +CLEANFILES+= x86 i386 +.elif ${MACHINE} == "evbmips" +CLEANFILES+= algor sbmips .endif .if defined(XEN_BUILD) || ${MACHINE} == "xen" @@ -39,8 +41,12 @@ CLEANFILES+= x86 .BEGIN: @rm -f machine && \ ln -s $S/arch/${MACHINE}/include machine - @rm -f ${MACHINE_CPU} && \ - ln -s $S/arch/${MACHINE_CPU}/include ${MACHINE_CPU} + @rm -f ${MACHINE} && \ + ln -s $S/arch/${MACHINE}/include ${MACHINE} + @if [ -d $S/arch/${MACHINE_CPU} ]; then \ + rm -f ${MACHINE_CPU} && \ + ln -s $S/arch/${MACHINE_CPU}/include ${MACHINE_CPU}; \ + fi # XXX. it gets worse.. .if ${MACHINE} == "sun2" || ${MACHINE} == "sun3" @rm -f sun68k && \ @@ -66,4 +72,10 @@ CLEANFILES+= x86 @rm -rf xen-ma && mkdir xen-ma && \ ln -s ../${XEN_BUILD:U${MACHINE_ARCH}} xen-ma/machine .endif +.if ${MACHINE} == "evbmips" + @rm -f algor && \ + ln -s $S/arch/algor/include algor + @rm -f sbmips && \ + ln -s $S/arch/sbmips/include sbmips +.endif .endif diff --git a/share/mk/bsd.kmodule.mk b/share/mk/bsd.kmodule.mk new file mode 100644 index 000000000..ee8aa573e --- /dev/null +++ b/share/mk/bsd.kmodule.mk @@ -0,0 +1,170 @@ +# $NetBSD: bsd.kmodule.mk,v 1.37 2012/08/10 16:34:23 joerg Exp $ + +# We are not building this with PIE +MKPIE=no + +.include +.include +.include + +##### Basic targets +realinstall: kmodinstall + +KERN= $S/kern + +CFLAGS+= -ffreestanding ${COPTS} +CPPFLAGS+= -nostdinc -I. -I${.CURDIR} -isystem $S -isystem $S/arch +CPPFLAGS+= -isystem ${S}/../common/include +CPPFLAGS+= -D_KERNEL -D_LKM -D_MODULE -DSYSCTL_INCLUDE_DESCR + +# XXX until the kernel is fixed again... +CFLAGS+= -fno-strict-aliasing -Wno-pointer-sign + +# XXX This is a workaround for platforms that have relative relocations +# that, when relocated by the module loader, result in addresses that +# overflow the size of the relocation (e.g. R_PPC_REL24 in powerpc). +# The real solution to this involves generating trampolines for those +# relocations inside the loader and removing this workaround, as the +# resulting code would be much faster. +.if ${MACHINE_CPU} == "arm" +CFLAGS+= -mlong-calls +.elif ${MACHINE_CPU} == "powerpc" +CFLAGS+= -mlongcall +.elif ${MACHINE_CPU} == "vax" +CFLAGS+= -fno-pic +.endif + +# evbppc needs some special help +.if ${MACHINE} == "evbppc" + +. ifndef PPC_INTR_IMPL +PPC_INTR_IMPL=\"powerpc/intr.h\" +. endif +. ifndef PPC_PCI_MACHDEP_IMPL +PPC_PCI_MACHDEP_IMPL=\"powerpc/pci_machdep.h\" +. endif +CPPFLAGS+= -DPPC_INTR_IMPL=${PPC_INTR_IMPL} +CPPFLAGS+= -DPPC_PCI_MACHDEP_IMPL=${DPPC_PCI_MACHDEP_IMPL} + +. ifdef PPC_IBM4XX +CPPFLAGS+= -DPPC_IBM4XX +. elifdef PPC_BOOKE +CPPFLAGS+= -DPPC_BOOKE +. else +CPPFLAGS+= -DPPC_OEA +. endif + +.endif + + +_YKMSRCS= ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}} +DPSRCS+= ${_YKMSRCS} +CLEANFILES+= ${_YKMSRCS} + +.if exists($S/../sys/modules/xldscripts/kmodule) +KMODSCRIPT= $S/../sys/modules/xldscripts/kmodule +.else +KMODSCRIPT= ${DESTDIR}/usr/libdata/ldscripts/kmodule +.endif + +PROG?= ${KMOD}.kmod + +##### Build rules +realall: ${PROG} + +.if (defined(USE_COMBINE) && ${USE_COMBINE} != "no" && !commands(${_P}) \ + && !defined(NOCOMBINE.${_P}) && !defined(NOCOMBINE)) +.for f in ${SRCS:N*.h:N*.sh:N*.fth:C/\.[yl]$/.c/g} +.if (${CPPFLAGS.$f:D1} == "1" || ${CPUFLAGS.$f:D2} == "2" \ + || ${COPTS.$f:D3} == "3" || ${OBJCOPTS.$f:D4} == "4" \ + || ${CXXFLAGS.$f:D5} == "5") \ + || ("${f:M*.[cyl]}" == "" || commands(${f:R:S/$/.o/})) +XOBJS+= ${f:R:S/$/.o/} +.else +XSRCS+= ${f} +NODPSRCS+= ${f} +.endif +.endfor + +.if !empty(XOBJS) +${XOBJS}: ${DPSRCS} +.endif + +${PROG}: ${XOBJS} ${XSRCS} ${DPSRCS} ${DPADD} + ${_MKTARGET_LINK} + ${CC} ${LDFLAGS} -nostdlib -MD -combine -r -Wl,-T,${KMODSCRIPT},-d \ + -o ${.TARGET} ${CFLAGS} ${CPPFLAGS} ${XOBJS} \ + ${XSRCS:@.SRC.@${.ALLSRC:M*.c:M*${.SRC.}}@:O:u} && \ + echo '.-include "${KMOD}.d"' > .depend + +.else +OBJS+= ${SRCS:N*.h:N*.sh:R:S/$/.o/g} + +${OBJS} ${LOBJS}: ${DPSRCS} + +${PROG}: ${OBJS} ${DPADD} + ${_MKTARGET_LINK} + ${CC} ${LDFLAGS} -nostdlib -r -Wl,-T,${KMODSCRIPT},-d \ + -o ${.TARGET} ${OBJS} +.endif + +##### Install rules +.if !target(kmodinstall) +.if !defined(KMODULEDIR) +_OSRELEASE!= ${HOST_SH} $S/conf/osrelease.sh -k +# Ensure these are recorded properly in METALOG on unprived installes: +KMODULEARCHDIR?= ${MACHINE} +_INST_DIRS= ${DESTDIR}/stand/${KMODULEARCHDIR} +_INST_DIRS+= ${DESTDIR}/stand/${KMODULEARCHDIR}/${_OSRELEASE} +_INST_DIRS+= ${DESTDIR}/stand/${KMODULEARCHDIR}/${_OSRELEASE}/modules +KMODULEDIR= ${DESTDIR}/stand/${KMODULEARCHDIR}/${_OSRELEASE}/modules/${KMOD} +.endif +_PROG:= ${KMODULEDIR}/${PROG} # installed path + +.if ${MKUPDATE} == "no" +${_PROG}! ${PROG} # install rule +.if !defined(BUILD) && !make(all) && !make(${PROG}) +${_PROG}! .MADE # no build at install +.endif +.else +${_PROG}: ${PROG} # install rule +.if !defined(BUILD) && !make(all) && !make(${PROG}) +${_PROG}: .MADE # no build at install +.endif +.endif + ${_MKTARGET_INSTALL} + dirs=${_INST_DIRS:Q}; \ + for d in $$dirs; do \ + ${INSTALL_DIR} $$d; \ + done + ${INSTALL_DIR} ${KMODULEDIR} + ${INSTALL_FILE} -o ${KMODULEOWN} -g ${KMODULEGRP} -m ${KMODULEMODE} \ + ${.ALLSRC} ${.TARGET} + +kmodinstall:: ${_PROG} +.PHONY: kmodinstall +.PRECIOUS: ${_PROG} # keep if install fails + +.undef _PROG +.endif # !target(kmodinstall) + +##### Clean rules +CLEANFILES+= a.out [Ee]rrs mklog core *.core ${PROG} ${OBJS} ${LOBJS} + +##### Custom rules +lint: ${LOBJS} +.if defined(LOBJS) && !empty(LOBJS) + ${LINT} ${LINTFLAGS} ${LDFLAGS:C/-L[ ]*/-L/Wg:M-L*} ${LOBJS} ${LDADD} +.endif + +##### Pull in related .mk logic +LINKSOWN?= ${KMODULEOWN} +LINKSGRP?= ${KMODULEGRP} +LINKSMODE?= ${KMODULEMODE} +.include +.include +.include +.include + +.-include "$S/arch/${MACHINE_CPU}/include/Makefile.inc" +.-include "$S/arch/${MACHINE}/include/Makefile.inc" diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index db7acbfac..8c8f087c8 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -1,9 +1,9 @@ -# $NetBSD: bsd.lib.mk,v 1.299 2009/11/27 11:44:36 tsutsui Exp $ +# $NetBSD: bsd.lib.mk,v 1.324 2012/08/23 21:21:16 joerg Exp $ # @(#)bsd.lib.mk 8.3 (Berkeley) 4/22/94 .include .include -#.include +.include # Pull in here so we can override its .c.o rule .include @@ -11,16 +11,6 @@ LIBISMODULE?= no LIBISPRIVATE?= no LIBISCXX?= no -# Build shared libraries if not set to no by now -MKPIC?= yes - -# If we're making a library but aren't making shared -# libraries and it's because there's a non-shared-aware clang -# installed, warn the user that that's the reason. -.if $(MKPIC) == "no" && defined(NONPICCLANG) -.warning Old clang, not building shared. -.endif - _LIB_PREFIX= lib .if ${LIBISMODULE} != "no" @@ -47,7 +37,6 @@ MKPROFILE:= no ##### Basic targets .PHONY: checkver libinstall realinstall: checkver libinstall -clean: cleanlib ##### LIB specific flags. # XXX: This is needed for programs that link with .a libraries @@ -57,19 +46,12 @@ clean: cleanlib CFLAGS+= ${PIE_CFLAGS} AFLAGS+= ${PIE_AFLAGS} .endif -COPTS+= ${COPTS.lib${LIB}} -CPPFLAGS+= ${CPPFLAGS.lib${LIB}} -CXXFLAGS+= ${CXXFLAGS.lib${LIB}} -OBJCOPTS+= ${OBJCOPTS.lib${LIB}} -LDADD+= ${LDADD.lib${LIB}} -LDFLAGS+= ${LDFLAGS.lib${LIB}} -LDSTATIC+= ${LDSTATIC.lib${LIB}} ##### Libraries that this may depend upon. .if defined(LIBDPLIBS) && ${MKPIC} != "no" # { .for _lib _dir in ${LIBDPLIBS} .if !defined(LIBDO.${_lib}) -LIBDO.${_lib}!= cd ${_dir} && ${PRINTOBJDIR} +LIBDO.${_lib}!= cd "${_dir}" && ${PRINTOBJDIR} .MAKEOVERRIDES+=LIBDO.${_lib} .endif LDADD+= -L${LIBDO.${_lib}} -l${_lib} @@ -78,17 +60,7 @@ DPADD+= ${LIBDO.${_lib}}/lib${_lib}.so .endif # } ##### Build and install rules -MKDEP_SUFFIXES?= .o .po .so .go .ln - -# Use purely kernel private headers in rump builds -.if !defined(RUMPKERNEL) -.if empty(CPPFLAGS:M-nostdinc) -CPPFLAGS+= ${DESTDIR:D-nostdinc ${CPPFLAG_ISYSTEM} ${DESTDIR}/usr/include} -.endif -.if empty(CXXFLAGS:M-nostdinc++) -CXXFLAGS+= ${DESTDIR:D-nostdinc++ ${CPPFLAG_ISYSTEMXX} ${DESTDIR}/usr/include/g++} -.endif -.endif +MKDEP_SUFFIXES?= .o .po .pico .go .ln .if !defined(SHLIB_MAJOR) && exists(${SHLIB_VERSION_FILE}) # { SHLIB_MAJOR != . ${SHLIB_VERSION_FILE} ; echo $$major @@ -101,7 +73,7 @@ DPADD+= ${SHLIB_VERSION_FILE} .if !defined(NOCHECKVER) && !defined(NOCHECKVER_${LIB}) && \ exists(${NETBSDSRCDIR}/lib/checkver) checkver: - @(cd ${.CURDIR} && \ + @(cd "${.CURDIR}" && \ HOST_SH=${HOST_SH:Q} AWK=${TOOL_AWK:Q} \ ${HOST_SH} ${NETBSDSRCDIR}/lib/checkver -v ${SHLIB_VERSION_FILE} \ -d ${DESTDIR}${_LIBSODIR} ${LIB}) @@ -147,8 +119,8 @@ SHLIB_FULLVERSION=${SHLIB_MAJOR} # add additional suffixes not exported. # .po is used for profiling object files. -# .so is used for PIC object files. -.SUFFIXES: .out .a .ln .so .po .go .o .s .S .c .cc .cpp .cxx .C .m .F .f .r .y .l .cl .p .h +# .pico is used for PIC object files. +.SUFFIXES: .out .a .ln .pico .po .go .o .s .S .c .cc .cpp .cxx .C .m .F .f .r .y .l .cl .p .h .SUFFIXES: .sh .m4 .m @@ -157,7 +129,8 @@ SHLIB_FULLVERSION=${SHLIB_MAJOR} # Data-driven table using make variables to control how shared libraries # are built for different platforms and object formats. -# OBJECT_FMT: currently either "ELF" or "a.out", from +# SHLIB_MAJOR, SHLIB_MINOR, SHLIB_TEENY: Major, minor, and teeny version +# numbers of shared library # SHLIB_SOVERSION: version number to be compiled into a shared library # via -soname. Usualy ${SHLIB_MAJOR} on ELF. # NetBSD/pmax used to use ${SHLIB_MAJOR}[.${SHLIB_MINOR} @@ -166,14 +139,14 @@ SHLIB_FULLVERSION=${SHLIB_MAJOR} # with ELF, also set shared-lib version for ld.so. # SHLIB_LDSTARTFILE: support .o file, call C++ file-level constructors # SHLIB_LDENDFILE: support .o file, call C++ file-level destructors -# FPICFLAGS: flags for ${FC} to compile .[fF] files to .so objects. +# FPICFLAGS: flags for ${FC} to compile .[fF] files to .pico objects. # CPPPICFLAGS: flags for ${CPP} to preprocess .[sS] files for ${AS} # CPICFLAGS: flags for ${CC} to compile .[cC] files to pic objects. -# CSHLIBFLAGS: flags for ${CC} to compile .[cC] files to .so objects. +# CSHLIBFLAGS: flags for ${CC} to compile .[cC] files to .pico objects. # (usually includes ${CPICFLAGS}) # CAPICFLAGS: flags for ${CC} to compiling .[Ss] files # (usually just ${CPPPICFLAGS} ${CPICFLAGS}) -# APICFLAGS: flags for ${AS} to assemble .[sS] to .so objects. +# APICFLAGS: flags for ${AS} to assemble .[sS] to .pico objects. .if ${MACHINE_ARCH} == "alpha" # { @@ -183,8 +156,7 @@ CPPPICFLAGS?= -DPIC CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS} APICFLAGS ?= -.elif (${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64") && \ - ${OBJECT_FMT} == "ELF" # } { +.elif (${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64") # } { # If you use -fPIC you need to define BIGPIC to turn on 32-bit # relocations in asm code @@ -218,92 +190,108 @@ MKSHLIBOBJS= no .endif # Platform-independent linker flags for ELF shared libraries -.if ${OBJECT_FMT} == "ELF" SHLIB_SOVERSION= ${SHLIB_MAJOR} SHLIB_SHFLAGS= -Wl,-soname,${_LIB_PREFIX}${LIB}.so.${SHLIB_SOVERSION} SHLIB_SHFLAGS+= -Wl,--warn-shared-textrel -SHLIB_LDSTARTFILE?= ${DESTDIR}/usr/lib/crti.o ${_GCC_CRTBEGINS} -SHLIB_LDENDFILE?= ${_GCC_CRTENDS} ${DESTDIR}/usr/lib/crtn.o -.endif +SHLIB_LDSTARTFILE?= ${_GCC_CRTI} ${_GCC_CRTBEGINS} +SHLIB_LDENDFILE?= ${_GCC_CRTENDS} ${_GCC_CRTN} CFLAGS+= ${COPTS} OBJCFLAGS+= ${OBJCOPTS} AFLAGS+= ${COPTS} FFLAGS+= ${FOPTS} +.if defined(CTFCONVERT) +.if defined(CFLAGS) && !empty(CFLAGS:M*-g*) +CTFFLAGS+= -g +.endif +.endif + .c.o: ${_MKTARGET_COMPILE} ${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .if !defined(CFLAGS) || empty(CFLAGS:M*-g*) - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .c.po: ${_MKTARGET_COMPILE} ${COMPILE.c} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -pg ${.IMPSRC} -o ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .if !defined(CFLAGS) || empty(CFLAGS:M*-g*) - ${OBJCOPY} -X ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .c.go: ${_MKTARGET_COMPILE} ${COMPILE.c} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -g ${.IMPSRC} -o ${.TARGET} -.c.so: +.c.pico: ${_MKTARGET_COMPILE} ${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET} .if !defined(CFLAGS) || empty(CFLAGS:M*-g*) - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .cc.o .cpp.o .cxx.o .C.o: ${_MKTARGET_COMPILE} ${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} .if !defined(CFLAGS) || empty(CFLAGS:M*-g*) - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .cc.po .cpp.po .cxx.po .C.po: ${_MKTARGET_COMPILE} ${COMPILE.cc} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -pg ${.IMPSRC} -o ${.TARGET} .if !defined(CFLAGS) || empty(CFLAGS:M*-g*) - ${OBJCOPY} -X ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .cc.go .cpp.go .cxx.go .C.go: ${_MKTARGET_COMPILE} ${COMPILE.cc} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -g ${.IMPSRC} -o ${.TARGET} -.cc.so .cpp.so .cxx.so .C.so: +.cc.pico .cpp.pico .cxx.pico .C.pico: ${_MKTARGET_COMPILE} ${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET} .if !defined(CFLAGS) || empty(CFLAGS:M*-g*) - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .f.o: ${_MKTARGET_COMPILE} ${COMPILE.f} ${.IMPSRC} -o ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .if !defined(FOPTS) || empty(FOPTS:M*-g*) - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .f.po: ${_MKTARGET_COMPILE} ${COMPILE.f} ${PROFFLAGS} -pg ${.IMPSRC} -o ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .if !defined(FOPTS) || empty(FOPTS:M*-g*) - ${OBJCOPY} -X ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .f.go: ${_MKTARGET_COMPILE} ${COMPILE.f} ${DEBUGFLAGS} -g ${.IMPSRC} -o ${.TARGET} -.f.so: +.f.pico: ${_MKTARGET_COMPILE} ${COMPILE.f} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET} .if !defined(FOPTS) || empty(FOPTS:M*-g*) - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .f.ln: @@ -313,50 +301,68 @@ FFLAGS+= ${FOPTS} .m.o: ${_MKTARGET_COMPILE} ${COMPILE.m} ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*) - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .m.po: ${_MKTARGET_COMPILE} ${COMPILE.m} ${PROFFLAGS} -pg ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*) - ${OBJCOPY} -X ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .m.go: ${_MKTARGET_COMPILE} ${COMPILE.m} ${DEBUGFLAGS} -g ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*) - ${OBJCOPY} -X ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif -.m.so: +.m.pico: ${_MKTARGET_COMPILE} ${COMPILE.m} ${CSHLIBFLAGS} ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*) - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .endif .s.o: ${_MKTARGET_COMPILE} ${COMPILE.s} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} - ${OBJCOPY} -x ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .S.o: ${_MKTARGET_COMPILE} ${COMPILE.S} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} - ${OBJCOPY} -x ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .s.po: ${_MKTARGET_COMPILE} ${COMPILE.s} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} - ${OBJCOPY} -X ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .S.po: ${_MKTARGET_COMPILE} ${COMPILE.S} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} - ${OBJCOPY} -X ${.TARGET} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .s.go: ${_MKTARGET_COMPILE} @@ -366,15 +372,15 @@ FFLAGS+= ${FOPTS} ${_MKTARGET_COMPILE} ${COMPILE.S} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} -.s.so: +.s.pico: ${_MKTARGET_COMPILE} ${COMPILE.s} ${CAPICFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} -.S.so: +.S.pico: ${_MKTARGET_COMPILE} ${COMPILE.S} ${CAPICFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET} - ${OBJCOPY} -x ${.TARGET} + ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET} .if defined(LIB) # { .if (${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \ @@ -384,7 +390,37 @@ _LIBS=lib${LIB}.a _LIBS= .endif +.if ${LIBISPRIVATE} != "no" \ + && (defined(USE_COMBINE) && ${USE_COMBINE} == "yes" \ + && !defined(NOCOMBINE)) # { +.for f in ${SRCS:N*.h:N*.sh:C/\.[yl]$/.c/g} +COMBINEFLAGS.${LIB}.$f := ${CPPFLAGS.$f:D1} ${CPUFLAGS.$f:D2} ${COPTS.$f:D3} ${OBJCOPTS.$f:D4} ${CXXFLAGS.$f:D5} +.if empty(COMBINEFLAGS.${LIB}.${f}) && !defined(NOCOMBINE.$f) +COMBINESRCS+= ${f} +NODPSRCS+= ${f} +.else +OBJS+= ${f:R:S/$/.o/} +.endif +.endfor + +.if !empty(COMBINESRCS) +OBJS+= lib${LIB}_combine.o +lib${LIB}_combine.o: ${COMBINESRCS} + ${_MKTARGET_COMPILE} + ${COMPILE.c} -MD --combine ${.ALLSRC} -o ${.TARGET} +.if !defined(CFLAGS) || empty(CFLAGS:M*-g*) + ${OBJCOPY} -x ${.TARGET} +.endif + +CLEANFILES+= lib${LIB}_combine.d + +.if exists("lib${LIB}_combine.d") +.include "lib${LIB}_combine.d" +.endif +.endif # empty(XSRCS.${LIB}) +.else # } { OBJS+=${SRCS:N*.h:N*.sh:R:S/$/.o/g} +.endif # } STOBJS+=${OBJS} @@ -393,7 +429,7 @@ LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln} .if ${LIBISPRIVATE} != "no" # No installation is required libinstall:: -.endif # ${LIBISPRIVATE} == "no" # { +.endif .if ${MKDEBUGLIB} != "no" _LIBS+=lib${LIB}_g.a @@ -414,16 +450,20 @@ PROFFLAGS?=-DGPROF -DPROF # since it's needed for making shared lib. # but don't install it. SOLIB=lib${LIB}_pic.a -SOBJS+=${OBJS:.o=.so} +SOBJS+=${OBJS:.o=.pico} .else SOLIB=lib${LIB}.a .endif .else SOLIB=lib${LIB}_pic.a _LIBS+=${SOLIB} -SOBJS+=${OBJS:.o=.so} +SOBJS+=${OBJS:.o=.pico} .endif .if defined(SHLIB_FULLVERSION) +_LIB.so:=lib${LIB}.so.${SHLIB_FULLVERSION} +.if ${MKDEBUG} != "no" +_LIB.debug:=${_LIB.so}.debug +.endif _LIBS+=lib${LIB}.so.${SHLIB_FULLVERSION} .endif .endif # } @@ -450,7 +490,7 @@ _YLSRCS= ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}} .NOPATH: ${ALLOBJS} ${_LIBS} ${_YLSRCS} -realall: ${SRCS} ${ALLOBJS:O} ${_LIBS} +realall: ${SRCS} ${ALLOBJS:O} ${_LIBS} ${_LIB.debug} MKARZERO?=no @@ -461,7 +501,7 @@ _INSTRANLIB= .else _ARFL=crs _ARRANFL=s -#_INSTRANLIB=${empty(PRESERVE):?-a "${RANLIB} -t":} +_INSTRANLIB=${empty(PRESERVE):?-a "${RANLIB} -t":} .endif # If you change this, please consider reflecting the change in @@ -470,6 +510,7 @@ _ARRANFL=s __archivebuild: .USE ${_MKTARGET_BUILD} rm -f ${.TARGET} + # LSC MINIX: We do not have yet imported tsort nor lorder # ${AR} ${_ARFL} ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}` ${AR} ${_ARFL} ${.TARGET} ${.ALLSRC:M*o} .endif @@ -500,14 +541,13 @@ lib${LIB}_g.a:: ${GOBJS} __archivebuild _LIBLDOPTS= -#.if ${SHLIBDIR} != "/usr/lib" -#_LIBLDOPTS+= -Wl,-rpath-link,${DESTDIR}${SHLIBDIR}:${DESTDIR}/usr/lib \ -# -R${SHLIBDIR} \ -# -L${DESTDIR}${SHLIBDIR} -#.elif ${SHLIBINSTALLDIR} != "/usr/lib" -#_LIBLDOPTS+= -Wl,-rpath-link,${DESTDIR}${SHLIBINSTALLDIR}:${DESTDIR}/usr/lib \ -# -L${DESTDIR}${SHLIBINSTALLDIR} -#.endif +.if ${SHLIBDIR} != "/usr/lib" +_LIBLDOPTS+= -Wl,-rpath,${SHLIBDIR} \ + -L=${SHLIBDIR} +.elif ${SHLIBINSTALLDIR} != "/usr/lib" +_LIBLDOPTS+= -Wl,-rpath-link,${DESTDIR}${SHLIBINSTALLDIR} \ + -L=${SHLIBINSTALLDIR} +.endif # gcc -shared now adds -lc automatically. For libraries other than libc and # libgcc* we add as a dependency the installed shared libc. For libc and @@ -515,14 +555,18 @@ _LIBLDOPTS= # -Xl,-nostdlib is not enough because we want to tell the compiler-driver not # to add standard libraries, not the linker. .if !defined(LIB) +.if !empty(LIBC_SO) DPLIBC ?= ${DESTDIR}${LIBC_SO} +.endif .else .if ${LIB} != "c" && ${LIB:Mgcc*} == "" +.if !empty(LIBC_SO) DPLIBC ?= ${DESTDIR}${LIBC_SO} +.endif .else LDLIBC ?= -nodefaultlibs .if ${LIB} == "c" -#LDADD+= -lgcc_pic +LDADD+= -lgcc .endif .endif .endif @@ -533,23 +577,16 @@ LIBCC:= ${CXX} LIBCC:= ${CC} .endif +_LDADD.lib${LIB}= ${LDADD} ${LDADD.lib${LIB}} +_LDFLAGS.lib${LIB}= ${LDFLAGS} ${LDFLAGS.lib${LIB}} + lib${LIB}.so.${SHLIB_FULLVERSION}: ${SOLIB} ${DPADD} ${DPLIBC} \ ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE} ${_MKTARGET_BUILD} rm -f lib${LIB}.so.${SHLIB_FULLVERSION} -.if defined(DESTDIR) - ${LIBCC} ${LDLIBC} -Wl,-nostdlib -B${_GCC_CRTDIR}/ -B${DESTDIR}/usr/lib/ \ - -Wl,-x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \ - -Wl,--whole-archive ${SOLIB} \ - -Wl,--no-whole-archive ${LDADD} \ - ${_LIBLDOPTS} ${LDFLAGS} \ - -L${_GCC_LIBGCCDIR} -.else - ${LIBCC} ${LDLIBC} -Wl,-x -shared ${SHLIB_SHFLAGS} ${LDFLAGS} \ + ${LIBCC} ${LDLIBC} -Wl,-x -shared ${SHLIB_SHFLAGS} ${_LDFLAGS.lib${LIB}} \ -o ${.TARGET} ${_LIBLDOPTS} \ - -Wl,--whole-archive ${SOLIB} -Wl,--no-whole-archive ${LDADD} -.endif -.if ${OBJECT_FMT} == "ELF" + -Wl,--whole-archive ${SOLIB} -Wl,--no-whole-archive ${_LDADD.lib${LIB}} # We don't use INSTALL_SYMLINK here because this is just # happening inside the build directory/objdir. XXX Why does # this spend so much effort on libraries that aren't live??? XXX @@ -560,11 +597,19 @@ lib${LIB}.so.${SHLIB_FULLVERSION}: ${SOLIB} ${DPADD} ${DPLIBC} \ .endif ${HOST_LN} -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.tmp mv -f lib${LIB}.so.tmp lib${LIB}.so -.endif .if ${MKSTRIPIDENT} != "no" ${OBJCOPY} -R .ident ${.TARGET} .endif +.if defined(_LIB.debug) +${_LIB.debug}: ${_LIB.so} + ${_MKTARGET_CREATE} + ( ${OBJCOPY} --only-keep-debug ${_LIB.so} ${_LIB.debug} \ + && ${OBJCOPY} --strip-debug -p -R .gnu_debuglink \ + --add-gnu-debuglink=${_LIB.debug} ${_LIB.so} \ + ) || (rm -f ${_LIB.debug}; false) +.endif + .if !empty(LOBJS) # { LLIBS?= -lc llib-l${LIB}.ln: ${LOBJS} @@ -582,15 +627,27 @@ lint: ${LOBJS} ${LINT} ${LINTFLAGS} ${LOBJS} .endif -cleanlib: .PHONY - rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES} - rm -f lib${LIB}.a ${STOBJS} - rm -f lib${LIB}_p.a ${POBJS} - rm -f lib${LIB}_g.a ${GOBJS} - rm -f lib${LIB}_pic.a lib${LIB}.so.* lib${LIB}.so ${SOBJS} - rm -f ${STOBJS:=.tmp} ${POBJS:=.tmp} ${SOBJS:=.tmp} ${GOBJS:=.tmp} - rm -f llib-l${LIB}.ln ${LOBJS} - +# If the number of entries in CLEANFILES is too large, then the +# commands in bsd.clean.mk encounter errors like "exec(/bin/sh) +# failed (Argument list too long)". Avoid that by splitting the +# files to clean into several lists using different variable names. +# __cleanuse is an internal target in bsd.clean.mk; the way we +# use it here mimics the way it's used by the clean target in +# bsd.clean.mk. +# +clean: libclean1 libclean2 libclean3 libclean4 libclean5 +libclean1: .PHONY .MADE __cleanuse LIBCLEANFILES1 +libclean2: .PHONY .MADE __cleanuse LIBCLEANFILES2 +libclean3: .PHONY .MADE __cleanuse LIBCLEANFILES3 +libclean4: .PHONY .MADE __cleanuse LIBCLEANFILES4 +libclean5: .PHONY .MADE __cleanuse LIBCLEANFILES5 +CLEANFILES+= a.out [Ee]rrs mklog core *.core +LIBCLEANFILES1+= lib${LIB}.a ${STOBJS} ${STOBJS:=.tmp} +LIBCLEANFILES2+= lib${LIB}_p.a ${POBJS} ${POBJS:=.tmp} +LIBCLEANFILES3+= lib${LIB}_g.a ${GOBJS} ${GOBJS:=.tmp} +LIBCLEANFILES4+= lib${LIB}_pic.a lib${LIB}.so.* lib${LIB}.so ${_LIB.debug} +LIBCLEANFILES4+= ${SOBJS} ${SOBJS:=.tmp} +LIBCLEANFILES5+= llib-l${LIB}.ln ${LOBJS} .if !target(libinstall) # { # Make sure it gets defined, in case MKPIC==no && MKLINKLIB==no @@ -698,10 +755,6 @@ ${_LIB_SO_TGT}.${SHLIB_FULLVERSION}: lib${LIB}.so.${SHLIB_FULLVERSION} ${_LIB_SO_TGT}.${SHLIB_FULLVERSION} \ ${_LIB_SO_TGTLIBDIR}.${SHLIB_FULLVERSION} .endif -.if ${OBJECT_FMT} == "a.out" && !defined(DESTDIR) - /sbin/ldconfig -m ${_LIBSODIR} ${LIBDIR} -.endif -.if ${OBJECT_FMT} == "ELF" .if defined(SHLIB_FULLVERSION) && defined(SHLIB_MAJOR) && \ "${SHLIB_FULLVERSION}" != "${SHLIB_MAJOR}" ${INSTALL_SYMLINK} \ @@ -724,6 +777,15 @@ ${_LIB_SO_TGT}.${SHLIB_FULLVERSION}: lib${LIB}.so.${SHLIB_FULLVERSION} .endif .endif .endif + +.if defined(_LIB.debug) +libinstall:: ${DESTDIR}${DEBUGDIR}${LIBDIR}/${_LIB.debug} +.PRECIOUS: ${DESTDIR}${DEBUGDIR}${LIBDIR}/${_LIB.debug} + +${DESTDIR}${DEBUGDIR}${LIBDIR}/${_LIB.debug}: ${_LIB.debug} + ${_MKTARGET_INSTALL} + ${INSTALL_FILE} -o ${DEBUGOWN} -g ${DEBUGGRP} -m ${DEBUGMODE} \ + ${.ALLSRC} ${.TARGET} .endif .if ${MKLINT} != "no" && !empty(LOBJS) @@ -752,11 +814,13 @@ LINKSOWN?= ${LIBOWN} LINKSGRP?= ${LIBGRP} LINKSMODE?= ${LIBMODE} .include -#.include +.include .include .include .include .include +.include +.include .include ${TARGETS}: # ensure existence diff --git a/share/mk/bsd.lua.mk b/share/mk/bsd.lua.mk new file mode 100644 index 000000000..2f5a28418 --- /dev/null +++ b/share/mk/bsd.lua.mk @@ -0,0 +1,164 @@ +# $NetBSD: bsd.lua.mk,v 1.4 2011/10/16 00:45:09 mbalmer Exp $ +# +# Build rules and definitions for Lua modules + +# +# Variables used +# +# LUA_VERSION currently installed version of Lua +# LUA_LIBDIR ${LIBDIR}/lua/${LUA_VERSION} +# +# LUA_MODULES list of Lua modules to build/installi +# LUA_DPLIBS shared library dependencies as per LIBDPLIBS +# +# LUA_SRCS.mod sources for each module (by default: "${mod:S/./_/g}.lua") +# +# DPADD additional dependencies for building modules +# DPADD.mod additional dependencies for a specific module +# +# +# HAVE_LUAC if defined, .lua source files will be compiled with ${LUAC} +# and installed as precompiled chunks for faster loading. Note +# that the luac file format is not yet standardised and may be +# subject to change. +# +# LUAC the luac compiler (by default: /usr/bin/luac) +# +# +# Notes: +# +# currently make(depend) and make(tags) do not support .lua sources; We +# add Lua sources to DPSRCS when HAVE_LUAC is defined and other language +# sources to SRCS for . +# +# other language support for other than C is incomplete +# +# C language sources are passed though lint, when MKLINT != "no" +# +# The Lua binary searches /usr/share/lua/5.1/ at this time and we could +# install .lua modules there which would mean slightly less duplication +# in compat builds. However, MKSHARE=no would prevent such modules from +# being installed so we just install everything under /usr/lib/lua/5.1/ +# + +.if !defined(_BSD_LUA_MK_) +_BSD_LUA_MK_=1 + +.include +.include +.include + +## +##### Basic targets +realinstall: .PHONY lua-install +realall: .PHONY lua-all +lint: .PHONY lua-lint + +lua-install: .PHONY + +lua-all: .PHONY + +lua-lint: .PHONY + +CLEANFILES+= a.out [Ee]rrs mklog core *.core + +## +##### Global variables +LUA_VERSION?= 5.1 +LUA_LIBDIR?= ${LIBDIR}/lua/${LUA_VERSION} +LUAC?= /usr/bin/luac + +## +##### Build rules + +# XX should these always be on? +CFLAGS+= -fPIC -DPIC + +.SUFFIXES: .lua .luac +.lua.luac: + ${_MKTARGET_COMPILE} + ${LUAC} -o ${.TARGET} ${.IMPSRC} + +## +##### Libraries that modules may depend upon. +.for _lib _dir in ${LUA_DPLIBS} +.if !defined(LIBDO.${_lib}) +LIBDO.${_lib}!= cd "${_dir}" && ${PRINTOBJDIR} +.MAKEOVERRIDES+=LIBDO.${_lib} +.endif +LDADD+=-L${LIBDO.${_lib}} -l${_lib} +DPADD+=${LIBDO.${_lib}}/lib${_lib}.so +.endfor + +## +##### Lua Modules +.for _M in ${LUA_MODULES} +LUA_SRCS.${_M}?=${_M:S/./_/g}.lua +LUA_DEST.${_M}=${LUA_LIBDIR}${_M:S/./\//g:S/^/\//:H} + +.if !empty(LUA_SRCS.${_M}:M*.lua) +.if ${LUA_SRCS.${_M}:[\#]} > 1 +.error Module "${_M}" has too many source files +.endif +.if defined(HAVE_LUAC) +## +## The module has Lua source and needs to be compiled +LUA_TARG.${_M}=${_M:S/./_/g}.luac +LUA_NAME.${_M}=${_M:S/./\//g:T}.luac +CLEANFILES+=${LUA_TARG.${_M}} +DPSRCS+=${LUA_SRCS.${_M}} + +.NOPATH: ${LUA_TARG.${_M}} +lua-all: ${LUA_TARG.${_M}} +${LUA_TARG.${_M}}: ${LUA_SRCS.${_M}} ${DPADD} ${DPADD.${_M}} +.else +## +## The module has Lua source and can be installed directly +LUA_TARG.${_M}=${LUA_SRCS.${_M}} +LUA_NAME.${_M}=${_M:S/./\//g:T}.lua +.endif +.else +## +## The module has other language source and we must build ${_M}.so +LUA_OBJS.${_M}=${LUA_SRCS.${_M}:N*.lua:R:S/$/.o/g} +LUA_LOBJ.${_M}=${LUA_SRCS.${_M}:M*.c:.c=.ln} +LUA_TARG.${_M}=${_M:S/./_/g}.so +LUA_NAME.${_M}=${_M:S/./\//g:T}.so +CLEANFILES+=${LUA_OBJS.${_M}} ${LUA_LOBJ.${_M}} ${LUA_TARG.${_M}} +DPSRCS+=${LUA_SRCS.${_M}} +SRCS+=${LUA_SRCS.${_M}} + +.NOPATH: ${LUA_OBJS.${_M}} ${LUA_LOBJ.${_M}} ${LUA_TARG.${_M}} +.if ${MKLINT} != "no" +${LUA_TARG.${_M}}: ${LUA_LOBJ.${_M}} +.endif +lua-lint: ${LUA_LOBJ.${_M}} +lua-all: ${LUA_TARG.${_M}} +${LUA_TARG.${_M}}: ${LUA_OBJS.${_M}} ${DPADD} ${DPADD.${_M}} + ${_MKTARGET_BUILD} + rm -f ${.TARGET} + ${CC} -Wl,--warn-shared-textrel \ + -Wl,-x -shared ${LUA_OBJS.${_M}} \ + -Wl,-soname,${LUA_NAME.${_M}} -o ${.TARGET} \ + ${LDADD} ${LDADD.${_M}} ${LDFLAGS} ${LDFLAGS.${_M}} + +.endif + +## +## module install rules +lua-install: ${DESTDIR}${LUA_DEST.${_M}}/${LUA_NAME.${_M}} +${DESTDIR}${LUA_DEST.${_M}}/${LUA_NAME.${_M}}! ${LUA_TARG.${_M}} + ${_MKTARGET_INSTALL} + ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${.ALLSRC} ${.TARGET} + +.endfor +## +##### end of modules + +.include +.include +.include +.include +.include +.endif # ! defined(_BSD_LUA_MK_) diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index cda2dcf22..cc1b037cd 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -1,17 +1,12 @@ -# $NetBSD: bsd.man.mk,v 1.102 2009/10/23 23:12:10 joerg Exp $ +# $NetBSD: bsd.man.mk,v 1.109 2011/09/10 16:57:35 apb Exp $ # @(#)bsd.man.mk 8.1 (Berkeley) 6/8/93 .include -MKCATPAGES := no -MKHTML := no - ##### Basic targets .PHONY: catinstall maninstall catpages manpages catlinks manlinks .PHONY: htmlinstall htmlpages htmllinks -.if ${MKMANDOC} == "yes" .PHONY: lintmanpages -.endif realinstall: ${MANINSTALL} ##### Default values @@ -28,7 +23,6 @@ CATDEPS?= ${TMACDEPDIR}/andoc.tmac \ ${TMACDEPDIR}/mdoc/doc-ditroff \ ${TMACDEPDIR}/mdoc/doc-nroff \ ${TMACDEPDIR}/mdoc/doc-syms -HTMLDEPS?= ${TMACDEPDIR}/doc2html.tmac MANTARGET?= cat MAN?= @@ -40,7 +34,7 @@ _MNUMBERS= 1 2 3 4 5 6 7 8 9 MANCOMPRESS?= MANSUFFIX?= .else -MANCOMPRESS?= gzip -ncf +MANCOMPRESS?= ${TOOL_GZIP} -ncf MANSUFFIX?= .gz .endif @@ -134,10 +128,7 @@ realall: ${CATPAGES} ${_MNUMBERS:@N@.$N.cat$N${MANSUFFIX}@}: ${CATDEPS} # build rule ${_MKTARGET_FORMAT} -.if defined(USETBL) - ${TOOL_TBL} ${.IMPSRC} | ${TOOL_ROFF_ASCII} -mandoc ${MANCOMPRESS} \ - > ${.TARGET}.tmp && mv ${.TARGET}.tmp ${.TARGET} -.elif ${MKMANDOC} == yes && !defined(NOMANDOC) +.if ${MKMANDOC} == yes && !defined(NOMANDOC) if test ""${NOMANDOC.${.IMPSRC:T}:tl:Q} != "yes"; then \ ${TOOL_MANDOC_ASCII} ${.IMPSRC} ${MANCOMPRESS} \ > ${.TARGET}.tmp && mv ${.TARGET}.tmp ${.TARGET}; \ @@ -145,6 +136,9 @@ ${_MNUMBERS:@N@.$N.cat$N${MANSUFFIX}@}: ${CATDEPS} # build rule ${TOOL_ROFF_ASCII} -mandoc ${.IMPSRC} ${MANCOMPRESS} \ > ${.TARGET}.tmp && mv ${.TARGET}.tmp ${.TARGET}; \ fi +.elif defined(USETBL) + ${TOOL_TBL} ${.IMPSRC} | ${TOOL_ROFF_ASCII} -mandoc ${MANCOMPRESS} \ + > ${.TARGET}.tmp && mv ${.TARGET}.tmp ${.TARGET} .else ${TOOL_ROFF_ASCII} -mandoc ${.IMPSRC} ${MANCOMPRESS} \ > ${.TARGET}.tmp && mv ${.TARGET}.tmp ${.TARGET} @@ -195,25 +189,18 @@ htmlinstall: htmlpages htmllinks htmlpages:: # ensure target exists HTMLPAGES= ${MAN:C/\.([1-9])$/.html\1/} +HTMLLINKS= ${MANSUBDIR:?../:}../html%S/%N.html +HTMLSTYLE= ${MANSUBDIR:?../:}../style.css + realall: ${HTMLPAGES} .NOPATH: ${HTMLPAGES} .SUFFIXES: ${_MNUMBERS:@N@.html$N@} -.MADE: ${HTMLDEPS} -${_MNUMBERS:@N@.$N.html$N@}: ${HTMLDEPS} # build rule +${_MNUMBERS:@N@.$N.html$N@}: # build rule ${_MKTARGET_FORMAT} -.if ${MKMANDOC} == "yes" && !defined(NOMANDOC) - if test ""${NOMANDOC.${.IMPSRC:T}:tl:Q} != "yes"; then \ - ${TOOL_MANDOC_HTML} ${.IMPSRC} > ${.TARGET}.tmp && \ - mv ${.TARGET}.tmp ${.TARGET}; \ - else \ - ${TOOL_ROFF_HTML} ${.IMPSRC} > ${.TARGET}.tmp && \ - mv ${.TARGET}.tmp ${.TARGET}; \ - fi -.else - ${TOOL_ROFF_HTML} ${.IMPSRC} > ${.TARGET}.tmp && \ + ${TOOL_MANDOC_HTML} -Oman=${HTMLLINKS} -Ostyle=${HTMLSTYLE} \ + ${.IMPSRC} > ${.TARGET}.tmp && \ mv ${.TARGET}.tmp ${.TARGET} -.endif .for F in ${HTMLPAGES:O:u} # construct installed path @@ -258,33 +245,28 @@ htmllinks:: ${_t} ##### Clean rules .undef _F -cleandir: cleanman -.if !empty(CLEANFILES) - rm -f ${CLEANFILES} -.endif - -cleanman: .PHONY .if !empty(MAN) && (${MKMAN} != "no") .if (${MKCATPAGES} != "no") - rm -f ${CATPAGES} +CLEANDIRFILES+= ${CATPAGES} .endif .if !empty(MANSUFFIX) - rm -f ${MANPAGES} ${CATPAGES:S/${MANSUFFIX}$//} +CLEANDIRFILES+= ${MANPAGES} ${CATPAGES:S/${MANSUFFIX}$//} .endif .if ${MKHTML} != "no" - rm -f ${HTMLPAGES} +CLEANDIRFILES+= ${HTMLPAGES} .endif .endif # (XXX ${CATPAGES:S...} cleans up old .catN files where .catN.gz now used) -.if ${MKMANDOC} == "yes" && !empty(MANPAGES) +.if !empty(MANPAGES) lintmanpages: ${MANPAGES} - ${TOOL_MANDOC_LINT} -Tlint -fstrict ${.ALLSRC} + ${TOOL_MANDOC_LINT} -Tlint -fstrict -Wall,stop ${.ALLSRC} .endif ##### Pull in related .mk logic .include .include .include +.include ${TARGETS} catinstall maninstall htmlinstall: # ensure existence diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index 2bc5d5a10..fb141d097 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -1,7 +1,7 @@ -# $NetBSD: bsd.obj.mk,v 1.48 2007/12/11 14:06:04 lukem Exp $ +# $NetBSD: bsd.obj.mk,v 1.49 2010/01/25 00:43:00 christos Exp $ -.if !defined(_MINIX_OBJ_MK_) -_MINIX_OBJ_MK_=1 +.if !defined(_BSD_OBJ_MK_) +_BSD_OBJ_MK_=1 .include @@ -52,7 +52,7 @@ __need_objdir_target=yes # In case .CURDIR has been twiddled by a .mk file and is now relative, # make it absolute again. .if ${__curdir:M/*} == "" -__curdir!= cd ${__curdir} && ${PAWD} +__curdir!= cd "${__curdir}" && ${PAWD} .endif __objdir:= ${__objdir}.${HOST_OSTYPE} @@ -66,7 +66,7 @@ __need_objdir_target=yes .endif obj: - @cd ${__curdir}; \ + @cd "${__curdir}"; \ here=`${PAWD}`/; subdir=$${here#${BSDSRCDIR}/}; \ if [ "$$here" != "$$subdir" ]; then \ if [ ! -d ${__usrobjdir} ]; then \ @@ -106,4 +106,4 @@ print-objdir: .include -.endif # !defined(_MINIX_OBJ_MK_) +.endif # !defined(_BSD_OBJ_MK_) diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 362a134bc..0d9152184 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,8 +1,28 @@ -# $NetBSD: bsd.own.mk,v 1.603 2009/12/06 16:15:15 uebayasi Exp $ +# $NetBSD: bsd.own.mk,v 1.706 2012/08/16 05:30:55 matt Exp $ -.if !defined(_MINIX_OWN_MK_) -_MINIX_OWN_MK_=1 +# This needs to be before bsd.init.mk +.if defined(BSD_MK_COMPAT_FILE) +.include <${BSD_MK_COMPAT_FILE}> +.endif +.if !defined(_BSD_OWN_MK_) +_BSD_OWN_MK_=1 + +# LSC SAVE SOME TIME... +MKCLEANVERIFY:= no + +.ifndef HOSTPROG +# LSC Needed at a lot of places for MINIX +CPPFLAGS+= -isystem ${DESTDIR}/usr/include +MKDYNAMICROOT:= no + +# Override MACHINE as the native host make will set it to i686 +_uname_s!= uname -s +.if ${_uname_s} == "Minix" && ${MACHINE_ARCH} == "i386" +MACHINE:= i386 +.endif + +# LSC MINIX SMP Support? .ifdef CONFIG_SMP SMP_FLAGS += -DCONFIG_SMP .ifdef CONFIG_MAX_CPUS @@ -11,18 +31,15 @@ SMP_FLAGS += -DCONFIG_MAX_CPUS=${CONFIG_MAX_CPUS} .endif CPPFLAGS+= ${SMP_FLAGS} +.endif MAKECONF?= /etc/make.conf .-include "${MAKECONF}" -.ifdef NOASSERTS -CFLAGS += -DNDEBUG=1 -.endif - # # CPU model, derived from MACHINE_ARCH # -MACHINE_CPU= ${MACHINE_ARCH:C/mipse[bl]/mips/:C/mips64e[bl]/mips/:C/sh3e[bl]/sh3/:S/m68000/m68k/:S/armeb/arm/} +MACHINE_CPU= ${MACHINE_ARCH:C/mipse[bl]/mips/:C/mips64e[bl]/mips/:C/sh3e[bl]/sh3/:S/m68000/m68k/:S/armeb/arm/:S/earm/arm/:S/earmeb/arm/:S/powerpc64/powerpc/} # # Subdirectory used below ${RELEASEDIR} when building a release @@ -46,46 +63,48 @@ RELEASEMACHINE?= ${MACHINE} NEED_OWN_INSTALL_TARGET?= yes # -# This lists the platforms which do not have working in-tree toolchains. -# For the in-tree gcc 3.3.2 toolchain, this list is empty. -# If some future port is not supported by the in-tree toolchain, this -# should be set to "yes" for that port only. +# This lists the platforms which do not have working in-tree toolchains. For +# the in-tree gcc toolchain, this list is empty. +# +# If some future port is not supported by the in-tree toolchain, this should +# be set to "yes" for that port only. # TOOLCHAIN_MISSING?= no -# default to GCC4 -.if !defined(HAVE_GCC) && !defined(HAVE_PCC) -HAVE_GCC= 4 -.if !defined(_GCC_LIBGCCDIR) -_GCC_LIBGCCDIR= ${DESTDIR}/usr/lib +# +# Platforms still using GCC 4.1 +# +.if ${MKGCC:Uyes} != "no" +.if ${MACHINE_CPU} == "vax" +HAVE_GCC?= 4 +.else +# Otherwise, default to GCC4.5 +HAVE_GCC?= 45 .endif .endif .if \ + ${MACHINE_CPU} == "arm" || \ ${MACHINE_ARCH} == "i386" || \ ${MACHINE_ARCH} == "powerpc" || \ + ${MACHINE_CPU} == "sh3" || \ ${MACHINE_ARCH} == "x86_64" -USE_COMPILERCRTSTUFF?= no +USE_COMPILERCRTSTUFF?= no .endif -USE_COMPILERCRTSTUFF?= yes +USE_COMPILERCRTSTUFF?= yes -USE_FORT?= no -# default to GDB6 -HAVE_GDB?= 6 - -# default to binutils 2.19 -HAVE_BINUTILS?= 219 - -CPPFLAG_ISYSTEM= -isystem -.if defined(HAVE_GCC) -.if ${HAVE_GCC} == 3 -CPPFLAG_ISYSTEMXX= -isystem-cxx -.else # GCC 4 -CPPFLAG_ISYSTEMXX= -cxx-isystem -.endif +# +# Platforms still using GDB 6 +# +.if ${MACHINE_CPU} == "mips" +HAVE_GDB?= 6 +.else +# Otherwise, default to GDB7 +HAVE_GDB?= 7 .endif + .if empty(.MAKEFLAGS:M-V*) .if defined(MAKEOBJDIRPREFIX) || defined(MAKEOBJDIR) PRINTOBJDIR= ${MAKE} -r -V .OBJDIR -f /dev/null xxx @@ -96,14 +115,13 @@ PRINTOBJDIR= ${MAKE} -V .OBJDIR PRINTOBJDIR= echo # prevent infinite recursion .endif - # # Determine if running in the NetBSD source tree by checking for the # existence of build.sh and tools/ in the current or a parent directory, # and setting _SRC_TOP_ to the result. # .if !defined(_SRC_TOP_) # { -_SRC_TOP_!= cd ${.CURDIR}; while :; do \ +_SRC_TOP_!= cd "${.CURDIR}"; while :; do \ here=`pwd`; \ [ -f build.sh ] && [ -d tools ] && { echo $$here; break; }; \ case $$here in /) echo ""; break;; esac; \ @@ -122,7 +140,7 @@ _SRC_TOP_!= cd ${.CURDIR}; while :; do \ NETBSDSRCDIR?= ${_SRC_TOP_} .if !defined(_SRC_TOP_OBJ_) -_SRC_TOP_OBJ_!= cd ${_SRC_TOP_} && ${PRINTOBJDIR} +_SRC_TOP_OBJ_!= cd "${_SRC_TOP_}" && ${PRINTOBJDIR} .MAKEOVERRIDES+= _SRC_TOP_OBJ_ .endif @@ -131,10 +149,8 @@ _SRC_TOP_OBJ_!= cd ${_SRC_TOP_} && ${PRINTOBJDIR} .if (${_SRC_TOP_} != "") && \ (${TOOLCHAIN_MISSING} == "no" || defined(EXTERNAL_TOOLCHAIN)) -.if (defined(BUILDSH)) USETOOLS?= yes .endif -.endif USETOOLS?= no @@ -197,11 +213,11 @@ RANLIB= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-ranlib SIZE= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-size STRIP= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-strip -CC= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-gcc -CPP= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-cpp -CXX= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-c++ -FC= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-g77 -OBJC= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-gcc +TOOL_CC.gcc= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-gcc +TOOL_CPP.gcc= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-cpp +TOOL_CXX.gcc= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-c++ +TOOL_FC.gcc= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-g77 +TOOL_OBJC.gcc= ${EXTERNAL_TOOLCHAIN}/bin/${MACHINE_GNU_PLATFORM}-gcc .else # } { # Define default locations for common tools. .if ${USETOOLS_BINUTILS:Uyes} == "yes" # { @@ -214,29 +230,47 @@ OBJDUMP= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-objdump RANLIB= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-ranlib SIZE= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-size STRIP= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-strip + +# GCC supports C, C++, Fortran and Objective C +TOOL_CC.gcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-gcc +TOOL_CPP.gcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-cpp +TOOL_CXX.gcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-c++ +TOOL_FC.gcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-g77 +TOOL_OBJC.gcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-gcc .endif # } -.if defined(HAVE_GCC) && ${USETOOLS_GCC:Uyes} == "yes" # { -CC= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-gcc -CPP= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-cpp -CXX= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-c++ -FC= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-g77 -OBJC= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-gcc -.endif # } +# Clang supports C, C++ and Objective C +TOOL_CC.clang= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-clang +TOOL_CPP.clang= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-clang-cpp +TOOL_CXX.clang= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-clang++ +TOOL_OBJC.clang= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-clang -.if defined(HAVE_PCC) && ${USETOOLS_PCC:Uyes} == "yes" -CC= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-pcc -CPP= ${TOOLDIR}/libexec/${MACHINE_GNU_PLATFORM}-cpp -CXX= false -FC= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-f77 -OBJC= false +# PCC supports C and Fortran +TOOL_CC.pcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-pcc +TOOL_CPP.pcc= ${TOOLDIR}/libexec/${MACHINE_GNU_PLATFORM}-cpp + +# +# Make sure DESTDIR is set, so that builds with these tools always +# get appropriate -nostdinc, -nostdlib, etc. handling. The default is +# , meaning start from /, the root directory. +# +DESTDIR?= + +.if !defined(HOSTPROG) && !defined(HOSTLIB) +. if ${DESTDIR} != "" +CPPFLAGS+= --sysroot=${DESTDIR} +LDFLAGS+= --sysroot=${DESTDIR} +. else +CPPFLAGS+= --sysroot=/ +LDFLAGS+= --sysroot=/ +. endif .endif - .endif # EXTERNAL_TOOLCHAIN # } HOST_MKDEP= ${TOOLDIR}/bin/${_TOOL_PREFIX}host-mkdep DBSYM= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-dbsym +ELF2AOUT= ${TOOLDIR}/bin/${_TOOL_PREFIX}m68k-elf2aout ELF2ECOFF= ${TOOLDIR}/bin/${_TOOL_PREFIX}mips-elf2ecoff INSTALL= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-install LEX= ${TOOLDIR}/bin/${_TOOL_PREFIX}lex @@ -251,15 +285,17 @@ TOOL_AMIGAAOUT2BB= ${TOOLDIR}/bin/${_TOOL_PREFIX}amiga-aout2bb TOOL_AMIGAELF2BB= ${TOOLDIR}/bin/${_TOOL_PREFIX}amiga-elf2bb TOOL_AMIGATXLT= ${TOOLDIR}/bin/${_TOOL_PREFIX}amiga-txlt TOOL_ASN1_COMPILE= ${TOOLDIR}/bin/${_TOOL_PREFIX}asn1_compile -TOOL_ATF_COMPILE= ${TOOLDIR}/bin/${_TOOL_PREFIX}atf-compile TOOL_AWK= ${TOOLDIR}/bin/${_TOOL_PREFIX}awk TOOL_CAP_MKDB= ${TOOLDIR}/bin/${_TOOL_PREFIX}cap_mkdb TOOL_CAT= ${TOOLDIR}/bin/${_TOOL_PREFIX}cat TOOL_CKSUM= ${TOOLDIR}/bin/${_TOOL_PREFIX}cksum +TOOL_CLANG_TBLGEN= ${TOOLDIR}/bin/${_TOOL_PREFIX}clang-tblgen TOOL_COMPILE_ET= ${TOOLDIR}/bin/${_TOOL_PREFIX}compile_et TOOL_CONFIG= ${TOOLDIR}/bin/${_TOOL_PREFIX}config TOOL_CRUNCHGEN= MAKE=${.MAKE:Q} ${TOOLDIR}/bin/${_TOOL_PREFIX}crunchgen TOOL_CTAGS= ${TOOLDIR}/bin/${_TOOL_PREFIX}ctags +TOOL_CTFCONVERT= ${TOOLDIR}/bin/${_TOOL_PREFIX}ctfconvert +TOOL_CTFMERGE= ${TOOLDIR}/bin/${_TOOL_PREFIX}ctfmerge TOOL_DB= ${TOOLDIR}/bin/${_TOOL_PREFIX}db TOOL_DISKLABEL= ${TOOLDIR}/bin/nbdisklabel-${MAKEWRAPPERMACHINE} TOOL_EQN= ${TOOLDIR}/bin/${_TOOL_PREFIX}eqn @@ -277,6 +313,7 @@ TOOL_INDXBIB= ${TOOLDIR}/bin/${_TOOL_PREFIX}indxbib TOOL_INSTALLBOOT= ${TOOLDIR}/bin/${_TOOL_PREFIX}installboot TOOL_INSTALL_INFO= ${TOOLDIR}/bin/${_TOOL_PREFIX}install-info TOOL_JOIN= ${TOOLDIR}/bin/${_TOOL_PREFIX}join +TOOL_LLVM_TBLGEN= ${TOOLDIR}/bin/${_TOOL_PREFIX}llvm-tblgen TOOL_M4= ${TOOLDIR}/bin/${_TOOL_PREFIX}m4 TOOL_MACPPCFIXCOFF= ${TOOLDIR}/bin/${_TOOL_PREFIX}macppc-fixcoff TOOL_MAKEFS= ${TOOLDIR}/bin/${_TOOL_PREFIX}makefs @@ -287,6 +324,7 @@ TOOL_MANDOC_HTML= ${TOOLDIR}/bin/${_TOOL_PREFIX}mandoc -Thtml TOOL_MANDOC_LINT= ${TOOLDIR}/bin/${_TOOL_PREFIX}mandoc -Tlint TOOL_MDSETIMAGE= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-mdsetimage TOOL_MENUC= MENUDEF=${TOOLDIR}/share/misc ${TOOLDIR}/bin/${_TOOL_PREFIX}menuc +TOOL_M68KELF2AOUT= ${TOOLDIR}/bin/${_TOOL_PREFIX}m68k-elf2aout TOOL_MIPSELF2ECOFF= ${TOOLDIR}/bin/${_TOOL_PREFIX}mips-elf2ecoff TOOL_MKCSMAPPER= ${TOOLDIR}/bin/${_TOOL_PREFIX}mkcsmapper TOOL_MKESDB= ${TOOLDIR}/bin/${_TOOL_PREFIX}mkesdb @@ -294,10 +332,13 @@ TOOL_MKFSMFS= ${TOOLDIR}/bin/${_TOOL_PREFIX}mkfs.mfs TOOL_MKLOCALE= ${TOOLDIR}/bin/${_TOOL_PREFIX}mklocale TOOL_MKMAGIC= ${TOOLDIR}/bin/${_TOOL_PREFIX}file TOOL_MKTEMP= ${TOOLDIR}/bin/${_TOOL_PREFIX}mktemp +TOOL_MKUBOOTIMAGE= ${TOOLDIR}/bin/${_TOOL_PREFIX}mkubootimage TOOL_MSGC= MSGDEF=${TOOLDIR}/share/misc ${TOOLDIR}/bin/${_TOOL_PREFIX}msgc TOOL_MTREE= ${TOOLDIR}/bin/${_TOOL_PREFIX}mtree +TOOL_NBPERF= ${TOOLDIR}/bin/${_TOOL_PREFIX}perf TOOL_PAX= ${TOOLDIR}/bin/${_TOOL_PREFIX}pax TOOL_PIC= ${TOOLDIR}/bin/${_TOOL_PREFIX}pic +TOOL_PIGZ= ${TOOLDIR}/bin/${_TOOL_PREFIX}pigz TOOL_PKG_CREATE= ${TOOLDIR}/bin/${_TOOL_PREFIX}pkg_create TOOL_POWERPCMKBOOTIMAGE=${TOOLDIR}/bin/${_TOOL_PREFIX}powerpc-mkbootimage TOOL_PWD_MKDB= ${TOOLDIR}/bin/${_TOOL_PREFIX}pwd_mkdb @@ -309,6 +350,7 @@ TOOL_ROFF_PS= ${TOOL_GROFF} -Tps TOOL_ROFF_RAW= ${TOOL_GROFF} -Z TOOL_RPCGEN= RPCGEN_CPP=${CPP:Q} ${TOOLDIR}/bin/${_TOOL_PREFIX}rpcgen TOOL_SED= ${TOOLDIR}/bin/${_TOOL_PREFIX}sed +TOOL_SLC= ${TOOLDIR}/bin/${_TOOL_PREFIX}slc TOOL_SOELIM= ${TOOLDIR}/bin/${_TOOL_PREFIX}soelim TOOL_SPARKCRC= ${TOOLDIR}/bin/${_TOOL_PREFIX}sparkcrc TOOL_STAT= ${TOOLDIR}/bin/${_TOOL_PREFIX}stat @@ -322,19 +364,38 @@ TOOL_ZIC= ${TOOLDIR}/bin/${_TOOL_PREFIX}zic .else # USETOOLS != yes # } { +# Clang supports C, C++ and Objective C +TOOL_CC.clang= clang +TOOL_CPP.clang= clang-cpp +TOOL_CXX.clang= clang++ +TOOL_OBJC.clang= clang + +# GCC supports C, C++, Fortran and Objective C +TOOL_CC.gcc= gcc +TOOL_CPP.gcc= cpp +TOOL_CXX.gcc= c++ +TOOL_FC.gcc= g77 +TOOL_OBJC.gcc= gcc + +# PCC supports C and Fortran +TOOL_CC.pcc= pcc +TOOL_CPP.pcc= /usr/libexec/pcpp + TOOL_AMIGAAOUT2BB= amiga-aout2bb TOOL_AMIGAELF2BB= amiga-elf2bb TOOL_AMIGATXLT= amiga-txlt TOOL_ASN1_COMPILE= asn1_compile -TOOL_ATF_COMPILE= atf-compile TOOL_AWK= awk TOOL_CAP_MKDB= cap_mkdb TOOL_CAT= cat TOOL_CKSUM= cksum +TOOL_CLANG_TBLGEN= clang-tblgen TOOL_COMPILE_ET= compile_et TOOL_CONFIG= config TOOL_CRUNCHGEN= crunchgen TOOL_CTAGS= ctags +TOOL_CTFCONVERT= ctfconvert +TOOL_CTFMERGE= ctfmerge TOOL_DB= db TOOL_DISKLABEL= disklabel TOOL_EQN= eqn @@ -352,14 +413,18 @@ TOOL_INDXBIB= indxbib TOOL_INSTALLBOOT= installboot TOOL_INSTALL_INFO= install-info TOOL_JOIN= join +TOOL_LLVM_TBLGEN= llvm-tblgen TOOL_M4= m4 TOOL_MACPPCFIXCOFF= macppc-fixcoff TOOL_MAKEFS= makefs TOOL_MAKEINFO= makeinfo TOOL_MAKEWHATIS= /usr/libexec/makewhatis -#TOOL_MAKEWHATIS= /usr/bin/makewhatis +TOOL_MANDOC_ASCII= mandoc -Tascii +TOOL_MANDOC_HTML= mandoc -Thtml -Oman=../html%S/%N.html -Ostyle=../style.css +TOOL_MANDOC_LINT= mandoc -Tlint TOOL_MDSETIMAGE= mdsetimage TOOL_MENUC= menuc +TOOL_M68KELF2AOUT= m68k-elf2aout TOOL_MIPSELF2ECOFF= mips-elf2ecoff TOOL_MKCSMAPPER= mkcsmapper TOOL_MKESDB= mkesdb @@ -367,10 +432,13 @@ TOOL_MKFSMFS= mkfs.mfs TOOL_MKLOCALE= mklocale TOOL_MKMAGIC= file TOOL_MKTEMP= mktemp +TOOL_MKUBOOTIMAGE= mkubootimage TOOL_MSGC= msgc TOOL_MTREE= mtree +TOOL_NBPERF= nbperf TOOL_PAX= pax TOOL_PIC= pic +TOOL_PIGZ= pigz TOOL_PKG_CREATE= pkg_create TOOL_POWERPCMKBOOTIMAGE= powerpc-mkbootimage TOOL_PWD_MKDB= pwd_mkdb @@ -395,6 +463,48 @@ TOOL_ZIC= zic .endif # USETOOLS != yes # } +# Fallback to ensure that all variables are defined to something +TOOL_CC.false= false +TOOL_CPP.false= false +TOOL_CXX.false= false +TOOL_FC.false= false +TOOL_OBJC.false= false + +AVAILABLE_COMPILER?= ${HAVE_PCC:Dpcc} ${HAVE_LLVM:Dclang} ${HAVE_GCC:Dgcc} false + +.for _t in CC CPP CXX FC OBJC +ACTIVE_${_t}= ${AVAILABLE_COMPILER:@.c.@ ${ !defined(UNSUPPORTED_COMPILER.${.c.}) && defined(TOOL_${_t}.${.c.}) :? ${.c.} : }@:[1]} +SUPPORTED_${_t}=${AVAILABLE_COMPILER:Nfalse:@.c.@ ${ !defined(UNSUPPORTED_COMPILER.${.c.}) && defined(TOOL_${_t}.${.c.}) :? ${.c.} : }@} +.endfor +# make bugs prevent moving this into the .for loop +CC= ${TOOL_CC.${ACTIVE_CC}} +CPP= ${TOOL_CPP.${ACTIVE_CPP}} +CXX= ${TOOL_CXX.${ACTIVE_CXX}} +FC= ${TOOL_FC.${ACTIVE_FC}} +OBJC= ${TOOL_OBJC.${ACTIVE_OBJC}} + +# OBJCOPY flags to create a.out binaries for old firmware +# shared among src/distrib and ${MACHINE}/conf/Makefile.${MACHINE}.inc +.if ${MACHINE_CPU} == "arm" +OBJCOPY_ELF2AOUT_FLAGS?= \ + -O a.out-arm-netbsd \ + -R .ident \ + -R .ARM.attributes \ + -R .ARM.exidx \ + -R .arm.atpcs \ + -R .comment \ + -R .debug_abbrev \ + -R .debug_info \ + -R .debug_line \ + -R .debug_frame \ + -R .debug_loc \ + -R .debug_pubnames \ + -R .debug_aranges \ + -R .debug_str \ + -R .debug_pubtypes \ + -R .note.netbsd.ident +.endif + # # Targets to check if DESTDIR or RELEASEDIR is provided # @@ -418,16 +528,6 @@ check_RELEASEDIR: .PHONY .NOTMAIN .endif .endif - -.if ${USETOOLS} == "yes" # { -# -# Make sure DESTDIR is set, so that builds with these tools always -# get appropriate -nostdinc, -nostdlib, etc. handling. The default is -# , meaning start from /, the root directory. -# -DESTDIR?= -.endif # } - # # Build a dynamically linked /bin and /sbin, with the necessary shared # libraries moved from /usr/lib to /lib and the shared linker moved @@ -453,14 +553,20 @@ BINOWN?= root BINMODE?= 755 NONBINMODE?= 644 +# These are here mainly because we don't want suid root in case +# a Makefile defines BINMODE. +RUMPBINGRP?= wheel +RUMPBINOWN?= root +RUMPBINMODE?= 555 +RUMPNONBINMODE?=444 + #MANDIR?= /usr/share/man MANDIR?= /usr/man #MANGRP?= wheel MANGRP?= operator MANOWN?= root MANMODE?= ${NONBINMODE} -#MANINSTALL?= catinstall htmlinstall maninstall -MANINSTALL?= maninstall +MANINSTALL?= ${_MANINSTALL} INFODIR?= /usr/share/info #INFOGRP?= wheel @@ -543,7 +649,7 @@ NOPIC= # defined MKISCSI= no # XXX GCC 4 outputs mcount() calling sequences that try to load values # from over 64KB away and this fails to assemble. -.if defined(HAVE_GCC) && (${HAVE_GCC} == 4) +.if defined(HAVE_GCC) NOPROFILE= # defined .endif .endif @@ -567,8 +673,7 @@ MKPICLIB:= no # # On VAX using ELF, all objects are PIC, not just shared libraries, -# so don't build the _pic version. Unless we are using GCC3 which -# doesn't support PIC yet. +# so don't build the _pic version. # .if ${MACHINE_ARCH} == "vax" MKPICLIB= no @@ -585,6 +690,8 @@ SHLIB_VERSION_FILE?= ${.CURDIR}/shlib_version # GNU sources and packages sometimes see architecture names differently. # GNU_ARCH.coldfire=m68k +GNU_ARCH.earm=arm +GNU_ARCH.earmeb=armeb GNU_ARCH.i386=i486 GCC_CONFIG_ARCH.i386=i486 GCC_CONFIG_TUNE.i386=nocona @@ -599,8 +706,18 @@ MACHINE_GNU_ARCH=${GNU_ARCH.${MACHINE_ARCH}:U${MACHINE_ARCH}} # In order to identify NetBSD to GNU packages, we sometimes need # an "elf" tag for historically a.out platforms. # -.if ${OBJECT_FMT} == "ELF" && \ - (${MACHINE_GNU_ARCH} == "arm" || \ +.if defined(__MINIX) +.if ${MACHINE_ARCH} == "arm" +MACHINE_GNU_PLATFORM?=arm-none-eabi +.elif ${MACHINE_ARCH} == "i386" +MACHINE_GNU_PLATFORM?=elf32-${MACHINE_ARCH}-minix +.endif +# If not found, fallback on default NetBSD target +.endif # defined(__MINIX) + +.if ${MACHINE_ARCH} == "earm" || ${MACHINE_ARCH} == "earmeb" +MACHINE_GNU_PLATFORM?=${MACHINE_GNU_ARCH}--netbsdelf-eabi +.elif (${MACHINE_GNU_ARCH} == "arm" || \ ${MACHINE_GNU_ARCH} == "armeb" || \ ${MACHINE_ARCH} == "i386" || \ ${MACHINE_CPU} == "m68k" || \ @@ -622,11 +739,11 @@ RUMPKMOD= # defined .endif TARGETS+= all clean cleandir depend dependall includes \ - install lint obj regress tags html + install lint obj regress tags html analyze PHONY_NOTMAIN = all clean cleandir depend dependall distclean includes \ - install lint obj regress tags beforedepend afterdepend \ + install lint obj regress beforedepend afterdepend \ beforeinstall afterinstall realinstall realdepend realall \ - html subdir-all subdir-install subdir-depend + html subdir-all subdir-install subdir-depend analyze .PHONY: ${PHONY_NOTMAIN} .NOTMAIN: ${PHONY_NOTMAIN} @@ -648,7 +765,7 @@ distclean: cleandir cleandir: clean dependall: .NOTMAIN realdepend .MAKE - @cd ${.CURDIR}; ${MAKE} realall + @cd "${.CURDIR}"; ${MAKE} realall .endif # @@ -688,13 +805,35 @@ MK${var}:= yes # # MK* options which have variable defaults. # -.if ${MACHINE} == "amd64" || ${MACHINE} == "sparc64" +.if ${MACHINE_ARCH} == "x86_64" || ${MACHINE_ARCH} == "sparc64" || \ + ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el" MKCOMPAT?= yes .else # Don't let this build where it really isn't supported. MKCOMPAT:= no .endif +#.if ${MACHINE_ARCH} == "x86_64" || ${MACHINE_ARCH} == "i386" || \ + +.if ${MACHINE} == "evbppc" +MKCOMPATMODULES?= yes +.else +MKCOMPATMODULES:= no +.endif + +# +# Default mips64 to softfloat now. +# emips is always softfloat. +# +.if ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el" || \ + ${MACHINE} == "emips" +MKSOFTFLOAT?= yes +.endif + +.if ${MACHINE} == "emips" +SOFTFLOAT_BITS= 32 +.endif + # # MK* backward compatibility. # @@ -710,18 +849,34 @@ MKZFS?= yes .endif # Some tough Minix defaults -MKPROFILE?= no -MKSTATICLIB:= yes -MKLINT:= no +MKPROFILE?= no +MKSTATICLIB:= yes +MKLINT:= no -# Is a clang installed that understands what to do with -shared, -# needed to build shared libraries? If not then default to no -# to build them. (It could still be done with gcc though so MKPIC -# might be set to yes by the user.) -.if !exists(/usr/pkg/bin/clang.dynok) -NONPICCLANG= yes # Hint to other Makefiles -MKPIC?= no -.endif +# LSC MINIX does not support these features ATM. +USE_FORT:= no +MKYP:= no +MKNLS:= no +MKCOVERAGE?= no +MKPOSTFIX:= no +MKKMOD:= no +MKATF:= no +MKEXTSRC:= no +MKRUMP:= no +MKSKEY:= no +MKCRYPTO:= no +MKMDNS:= no +MKNPF:= no +MKISCSI:= no +MKLVM:= no +MKKERBEROS:= no +MKLDAP:= no +MKPAM:= no +MKIPFILTER:= no +MKGROFF:= no +MKHTML:= no +MKBINUTILS:= no +MKGDB:= no # # MK* options which default to "yes". @@ -729,23 +884,27 @@ MKPIC?= no _MKVARS.yes= \ MKATF \ MKBINUTILS \ - MKCATPAGES MKCRYPTO MKCOMPLEX MKCVS \ + MKCRYPTO MKCOMPLEX MKCVS MKCXX \ MKDOC \ - MKGCC MKGCCCMDS MKGDB \ + MKGCC MKGCCCMDS MKGDB MKGROFF \ MKHESIOD MKHTML \ MKIEEEFP MKINET6 MKINFO MKIPFILTER MKISCSI \ MKKERBEROS \ MKKMOD \ MKLDAP MKLINKLIB MKLINT MKLVM \ - MKMAN \ + MKMAN MKMANDOC \ MKMDNS \ + MKMAKEMANDB \ MKNLS \ + MKNPF \ MKOBJ \ - MKPAM \ + MKPAM MKPERFUSE \ MKPF MKPIC MKPICINSTALL MKPICLIB MKPOSTFIX MKPROFILE \ + MKRUMP \ MKSHARE MKSKEY MKSTATICLIB \ MKX11FONTS \ MKYP + #MINIX-specific vars _MKVARS.yes+= \ MKMCONTEXT MKSYSDEBUG MKLIVEUPDATE MKSTATECTL MKTRACE @@ -759,33 +918,69 @@ ${var}?= yes .endfor # -# MK* options which default to "no". +# Exceptions to the above: +# +#.if ${MACHINE} == "evbppc" +#MKKMOD= no +#.endif + +# +# MK* options which default to "no". Note that MKZFS has a different +# default for some platforms, see above. # _MKVARS.no= \ - MKCRYPTO_IDEA MKCRYPTO_MDC2 MKCRYPTO_RC5 MKDEBUG MKDEBUGLIB \ - MKEXTSRC MKCOVERAGE \ - MKMANDOC MKMANZ MKOBJDIRS \ - MKPCC MKPCCCMDS \ + MKBSDGREP MKBSDTAR \ + MKCATPAGES MKCRYPTO_RC5 MKDEBUG \ + MKDEBUGLIB MKDTRACE MKEXTSRC \ + MKMANZ MKOBJDIRS \ + MKLLVM MKPCC \ + MKPIGZGZIP \ + MKREPRO \ MKSOFTFLOAT MKSTRIPIDENT \ - MKUNPRIVED MKUPDATE MKX11 MKZFS MKBSDTAR \ - MKARZERO + MKUNPRIVED MKUPDATE MKX11 MKZFS + #MINIX-specific vars _MKVARS.no+= \ - MKIMAGEONLY MKSMALL USETOOLS + MKIMAGEONLY MKSMALL .if (${MACHINE_ARCH} == "arm") _MKVARS.no+= \ MKWATCHDOG MKACPI MKAPIC MKDEBUGREG MKINSTALLBOOT MKPCI .endif + .for var in ${_MKVARS.no} ${var}?=no .endfor +# +# Do we default to XFree86 or Xorg for this platform? +# +.if \ + ${MACHINE} == "acorn32" || \ + ${MACHINE} == "alpha" || \ + ${MACHINE} == "amiga" || \ + ${MACHINE} == "ews4800mips" || \ + ${MACHINE} == "mac68k" || \ + ${MACHINE} == "newsmips" || \ + ${MACHINE} == "pmax" || \ + ${MACHINE} == "sun3" || \ + ${MACHINE} == "x68k" +X11FLAVOUR?= XFree86 +.else +X11FLAVOUR?= Xorg +.endif + # # Force some options off if their dependencies are off. # +.if ${MKCXX} == "no" +MKATF:= no +MKGROFF:= no +.endif + .if ${MKCRYPTO} == "no" MKKERBEROS:= no +MKLDAP:= no .endif .if ${MKMAN} == "no" @@ -793,6 +988,14 @@ MKCATPAGES:= no MKHTML:= no .endif +_MANINSTALL= maninstall +.if ${MKCATPAGES} != "no" +_MANINSTALL+= catinstall +.endif +.if ${MKHTML} != "no" +_MANINSTALL+= htmlinstall +.endif + .if ${MKLINKLIB} == "no" MKLINT:= no MKPICINSTALL:= no @@ -822,7 +1025,6 @@ MKWATCHDOG:= no MKACPI:= no MKAPIC:= no MKMCONTEXT:= no -MKCOVERAGE:= no MKDEBUGREG:= no MKSYSDEBUG:= no MKLIVEUPDATE:= no @@ -834,13 +1036,16 @@ MKTRACE:= no # install(1) parameters. # COPY?= -c +.if ${HOST_OSTYPE:C/\-.*//} != "Minix" .if ${MKUPDATE} == "no" PRESERVE?= .else +#XXX: Not supported by MINIX install PRESERVE?= -p .endif #XXX: Not supported by MINIX install -#RENAME?= -r +RENAME?= -r +.endif HRDLINK?= -l h SYMLINK?= -l s @@ -854,9 +1059,7 @@ INSTPRIV.unpriv= .endif INSTPRIV?= ${INSTPRIV.unpriv} -N ${NETBSDSRCDIR}/etc .endif -STRIPFLAG?= -#XXX: Strip flag for MINIX -#STRIPFLAG?= -s +STRIPFLAG?= .if ${NEED_OWN_INSTALL_TARGET} != "no" INSTALL_DIR?= ${INSTALL} ${INSTPRIV} -d @@ -888,9 +1091,18 @@ ${var}?= no # USE_* options which default to "yes" unless their corresponding MK* # variable is set to "no". # -.for var in USE_HESIOD USE_INET6 USE_KERBEROS USE_LDAP USE_PAM USE_YP \ -USE_WATCHDOG USE_ACPI USE_APIC USE_MCONTEXT USE_DEBUGREG USE_SYSDEBUG \ -USE_LIVEUPDATE USE_STATECTL USE_TRACE USE_PCI +.for var in USE_HESIOD USE_INET6 USE_KERBEROS USE_LDAP USE_PAM USE_YP +.if (${${var:S/USE_/MK/}} == "no") +${var}:= no +.else +${var}?= yes +.endif +.endfor + +#MINIX-specific vars +.for var in \ + USE_WATCHDOG USE_ACPI USE_APIC USE_MCONTEXT USE_DEBUGREG USE_SYSDEBUG \ + USE_LIVEUPDATE USE_STATECTL USE_TRACE USE_PCI .if (${${var:S/USE_/MK/}} == "no") ${var}:= no .else @@ -908,15 +1120,140 @@ ${var}?= yes # # USE_* options which default to "no". # -#.for var in -#${var}?= no -#.endfor +# For now, disable pigz as compressor by default +.for var in USE_PIGZGZIP USE_LIBTRE +${var}?= no +.endfor +.if ${USE_PIGZGZIP} != "no" +TOOL_GZIP= ${TOOL_PIGZ} +.else +TOOL_GZIP= gzip +.endif + +# +# Where X11 sources are and where it is installed to. +# +.if !defined(X11SRCDIR) +.if exists(${NETBSDSRCDIR}/../xsrc) +X11SRCDIR!= cd "${NETBSDSRCDIR}/../xsrc" && pwd +.else +X11SRCDIR= /usr/xsrc +.endif +.endif # !defined(X11SRCDIR) + +X11SRCDIR.xc?= ${X11SRCDIR}/xfree/xc +X11SRCDIR.local?= ${X11SRCDIR}/local +.if ${X11FLAVOUR} == "Xorg" +X11ROOTDIR?= /usr/X11R7 +.else +X11ROOTDIR?= /usr/X11R6 +.endif +X11BINDIR?= ${X11ROOTDIR}/bin +X11ETCDIR?= /etc/X11 +X11FONTDIR?= ${X11ROOTDIR}/lib/X11/fonts +X11INCDIR?= ${X11ROOTDIR}/include +X11LIBDIR?= ${X11ROOTDIR}/lib/X11 +X11MANDIR?= ${X11ROOTDIR}/man +X11SHAREDIR?= ${X11ROOTDIR}/share +X11USRLIBDIR?= ${X11ROOTDIR}/lib + +# +# New modular-xorg based builds +# +X11SRCDIRMIT?= ${X11SRCDIR}/external/mit +.for _lib in \ + FS ICE SM X11 XScrnSaver XTrap Xau Xcomposite Xcursor Xdamage \ + Xdmcp Xevie Xext Xfixes Xfont Xft Xi Xinerama Xmu Xpm \ + Xrandr Xrender Xres Xt Xtst Xv XvMC Xxf86dga Xxf86misc Xxf86vm drm \ + fontenc xkbfile xkbui Xaw lbxutil Xfontcache pciaccess xcb +X11SRCDIR.${_lib}?= ${X11SRCDIRMIT}/lib${_lib}/dist +.endfor + +.for _proto in \ + xcmisc xext xf86bigfont bigreqs input kb x fonts fixes scrnsaver \ + xinerama dri2 render resource record video xf86dga xf86misc \ + xf86vidmode composite damage trap gl randr fontcache xf86dri \ + xcb- +X11SRCDIR.${_proto}proto?= ${X11SRCDIRMIT}/${_proto}proto/dist +.endfor + +.for _dir in \ + xtrans fontconfig expat freetype evieext mkfontscale bdftopcf \ + xkbcomp xorg-cf-files imake xorg-server xbiff xkbdata xkeyboard-config \ + xbitmaps appres xeyes xev xedit sessreg pixman \ + beforelight bitmap editres makedepend fonttosfnt fslsfonts \ + fstobdf MesaDemos MesaGLUT MesaLib ico iceauth lbxproxy listres lndir \ + luit xproxymanagementprotocol mkfontdir oclock proxymngr rgb \ + setxkbmap smproxy twm viewres x11perf xauth xcalc xclipboard \ + xclock xcmsdb xconsole xcutsel xditview xdpyinfo xdriinfo xdm \ + xfd xf86dga xfindproxy xfontsel xfwp xgamma xgc xhost xinit \ + xkill xload xlogo xlsatoms xlsclients xlsfonts xmag xmessage \ + xmh xmodmap xmore xman xprop xrandr xrdb xrefresh xset \ + xsetmode xsetpointer xsetroot xsm xstdcmap xvidtune xvinfo \ + xwininfo xwud xprehashprinterlist xplsprinters xkbprint xkbevd \ + xterm xwd xfs xfsinfo xphelloworld xtrap xkbutils xkbcomp \ + xkeyboard-config xinput xcb-util \ + font-adobe-100dpi font-adobe-75dpi font-adobe-utopia-100dpi \ + font-adobe-utopia-75dpi font-adobe-utopia-type1 \ + font-alias \ + font-bh-100dpi font-bh-75dpi font-bh-lucidatypewriter-100dpi \ + font-bh-lucidatypewriter-75dpi font-bh-ttf font-bh-type1 \ + font-bitstream-100dpi font-bitstream-75dpi font-bitstream-type1 \ + font-cursor-misc font-daewoo-misc font-dec-misc font-ibm-type1 \ + font-isas-misc font-jis-misc font-misc-misc font-mutt-misc \ + font-sony-misc font-util ttf-bitstream-vera encodings +X11SRCDIR.${_dir}?= ${X11SRCDIRMIT}/${_dir}/dist +.endfor + +.for _i in \ + elographics keyboard mouse synaptics vmmouse void ws +X11SRCDIR.xf86-input-${_i}?= ${X11SRCDIRMIT}/xf86-input-${_i}/dist +.endfor + +.for _v in \ + ag10e apm ark ast ati chips cirrus crime \ + geode glint i128 i740 igs imstt intel mach64 mga \ + neomagic newport nsc nv nvxbox openchrome pnozz \ + r128 radeonhd rendition \ + s3 s3virge savage siliconmotion sis suncg14 \ + suncg6 sunffb sunleo suntcx \ + tdfx tga trident tseng vesa vga via vmware wsfb xgi +X11SRCDIR.xf86-video-${_v}?= ${X11SRCDIRMIT}/xf86-video-${_v}/dist +.endfor + +.if ${X11FLAVOUR} == "Xorg" +X11DRI?= yes +.endif + +X11DRI?= no +X11LOADABLE?= yes + + +# +# Where extsrc sources are and where it is installed to. +# +.if !defined(EXTSRCSRCDIR) +.if exists(${NETBSDSRCDIR}/../extsrc) +EXTSRCSRCDIR!= cd "${NETBSDSRCDIR}/../extsrc" && pwd +.else +EXTSRCSRCDIR= /usr/extsrc +.endif +.endif # !defined(EXTSRCSRCDIR) + +EXTSRCROOTDIR?= /usr/ext +EXTSRCBINDIR?= ${EXTSRCROOTDIR}/bin +EXTSRCETCDIR?= /etc/ext +EXTSRCINCDIR?= ${EXTSRCROOTDIR}/include +EXTSRCLIBDIR?= ${EXTSRCROOTDIR}/lib/ext +EXTSRCMANDIR?= ${EXTSRCROOTDIR}/man +EXTSRCUSRLIBDIR?= ${EXTSRCROOTDIR}/lib # # MAKEDIRTARGET dir target [extra make(1) params] -# run "cd $${dir} && ${MAKE} [params] $${target}", with a pretty message +# run "cd $${dir} && ${MAKEDIRTARGETENV} ${MAKE} [params] $${target}", with a pretty message # +MAKEDIRTARGETENV?= MAKEDIRTARGET=\ @_makedirtarget() { \ dir="$$1"; shift; \ @@ -932,7 +1269,7 @@ MAKEDIRTARGET=\ show=$${this:-.}; \ echo "$${target} ===> $${show%/}$${1:+ (with: $$@)}"; \ cd "$${real}" \ - && ${MAKE} _THISDIR_="$${this}" "$$@" $${target}; \ + && ${MAKEDIRTARGETENV} ${MAKE} _THISDIR_="$${this}" "$$@" $${target}; \ }; \ _makedirtarget @@ -944,7 +1281,7 @@ MAKEDIRTARGET=\ # 3 Ignore the effect of the "@" prefix in make commands # 4 Trace shell commands using the shell's -x flag # -MAKEVERBOSE?= 1 +MAKEVERBOSE?= 2 .if ${MAKEVERBOSE} == 0 _MKMSG?= @\# @@ -996,4 +1333,6 @@ _MKTARGET_YACC?= ${_MKMSG_YACC} ${.CURDIR:T}/${.TARGET} TARGETS+= lintmanpages .endif -.endif # !defined(_MINIX_OWN_MK_) +TESTSBASE= /usr/tests + +.endif # !defined(_BSD_OWN_MK_) diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index 4926f04b3..685cbd159 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -1,88 +1,189 @@ -# $NetBSD: bsd.prog.mk,v 1.244 2009/12/08 15:18:42 uebayasi Exp $ +# $NetBSD: bsd.prog.mk,v 1.278 2012/08/24 20:26:24 jmmv Exp $ # @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94 .ifndef HOSTPROG .include -.include +.include +.include +#.include +.include + # # Definitions and targets shared among all programs built by a single # Makefile. # -##### Minix rule to make the "install" target depend on -##### "all" and "depend" targets -realinstall: realall -realall: depend -depend: ${.CURDIR}/.gitignore - ##### Basic targets realinstall: proginstall scriptsinstall -clean: cleanprog -cleanobjs: .PHONY - -cleanprog: .PHONY cleanobjs cleanextra - rm -f a.out [Ee]rrs mklog core *.core - -##### Default values -.if empty(CPPFLAGS:M-nostdinc) -CPPFLAGS+= ${DESTDIR:D-nostdinc ${CPPFLAG_ISYSTEM} ${DESTDIR}/usr/include} +.gdbinit: + rm -f .gdbinit +.if defined(DESTDIR) && !empty(DESTDIR) + echo "set solib-absolute-prefix ${DESTDIR}" > .gdbinit +.else + touch .gdbinit .endif -.if empty(CXXFLAGS:M-nostdinc++) -CXXFLAGS+= ${DESTDIR:D-nostdinc++ ${CPPFLAG_ISYSTEMXX} ${DESTDIR}/usr/include/g++} +.for __gdbinit in ${GDBINIT} + echo "source ${__gdbinit}" >> .gdbinit +.endfor + +CLEANFILES+= a.out [Ee]rrs mklog core *.core .gdbinit + +.if defined(SHAREDSTRINGS) +CLEANFILES+=strings +.c.o: + ${CC} -E ${CPPFLAGS} ${CFLAGS} ${.IMPSRC} | xstr -c - + @${CC} ${CPPFLAGS} ${CFLAGS} -c x.c -o ${.TARGET} + @rm -f x.c + +.cc.o .cpp.o .cxx.o .C.o: + ${CXX} -E ${CPPFLAGS} ${CXXFLAGS} ${.IMPSRC} | xstr -c - + @mv -f x.c x.cc + @${CXX} ${CPPFLAGS} ${CXXFLAGS} -c x.cc -o ${.TARGET} + @rm -f x.cc .endif + +.if defined(MKPIE) && (${MKPIE} != "no") +CFLAGS+= ${PIE_CFLAGS} +AFLAGS+= ${PIE_AFLAGS} +LDFLAGS+= ${PIE_LDFLAGS} +.endif + CFLAGS+= ${COPTS} OBJCFLAGS+= ${OBJCOPTS} MKDEP_SUFFIXES?= .o .ln +# CTF preserve debug symbols +.if defined(MKDTRACE) && (${MKDTRACE} != "no") && (${CFLAGS:M-g} != "") +CTFFLAGS+= -g +CTFMFLAGS+= -g +.endif + +# ELF platforms depend on crti.o, crtbegin.o, crtend.o, and crtn.o +.ifndef LIBCRTBEGIN +LIBCRTBEGIN= ${DESTDIR}/usr/lib/crti.o ${_GCC_CRTBEGIN} +.MADE: ${LIBCRTBEGIN} +.endif +.ifndef LIBCRTEND +LIBCRTEND= ${_GCC_CRTEND} ${DESTDIR}/usr/lib/crtn.o +.MADE: ${LIBCRTEND} +.endif +_SHLINKER= ${SHLINKDIR}/ld.elf_so + +.ifndef LIBCRT0 +LIBCRT0= ${DESTDIR}/usr/lib/crt0.o +.MADE: ${LIBCRT0} +.endif + ##### Installed system library definitions # # E.g. # LIBC?=${DESTDIR}/usr/lib/libc.a # LIBX11?=${DESTDIR}/usr/X11R7/lib/libX11.a # etc.. +# NB: If you are a library here, add it in bsd.README -# .for _lib in \ -# archive asn1 bluetooth bsdmalloc bz2 c c_pic cdk com_err compat \ -# crypt crypto crypto_idea crypto_mdc2 crypto_rc5 \ -# curses dbm des edit event \ -# fetch form fl g2c gcc gnumalloc gssapi hdb heimntlm hx509 intl ipsec \ -# kadm5clnt kadm5srv kafs krb5 kvm l lber ldap ldap_r \ -# m magic menu objc ossaudio pam pcap pci pmc posix pthread pthread_dbg \ -# puffs radius resolv rmt roken rpcsvc rt rump rumpuser skey sl ss \ -# ssh ssl termcap usbhid util wrap y z bind9 dns lwres isccfg isccc isc \ -# \ -# rumpfs_cd9660fs rumpfs_efs rumpfs_ext2fs rumpfs_ffs rumpfs_hfs \ -# rumpfs_lfs rumpfs_msdosfs rumpfs_nfs rumpfs_ntfs rumpfs_syspuffs \ -# rumpfs_tmpfs rumpfs_udf rumpfs_ufs .for _lib in \ - c curses blockdriver chardriver netdriver edit end m sys timers util \ - bz2 l audiodriver exec ddekit devman usb elf bdev sffs hgfs vboxfs \ - minc minlib + audiodriver \ + blockdriver \ + chardriver \ + netdriver \ + c \ + curses \ + edit \ + expat \ + end \ + sys \ + timers \ + util \ + bz2 \ + l \ + m \ + exec \ + ddekit \ + devman \ + usb \ + elf \ + bdev \ + sffs \ + hgfs \ + vboxfs \ + minc \ + minlib \ + min\ + lib + .ifndef LIB${_lib:tu} -LIB${_lib:tu}= ${DESTDIR}/usr/lib/lib${_lib}.a +LIB${_lib:tu}= ${DESTDIR}/usr/lib/lib${_lib:S/xx/++/:S/atf_c/atf-c/}.a .MADE: ${LIB${_lib:tu}} # Note: ${DESTDIR} will be expanded .endif .endfor -# These need + -> X transformations -.ifndef LIBSTDCXX -LIBSTDCXX= ${DESTDIR}/usr/lib/libstdc++.a -.MADE: ${LIBSTDCXX} -.endif - -.ifndef LIBSUPCXX -LIBSUPCXX= ${DESTDIR}/usr/lib/libsupc++.a -.MADE: ${LIBSUPCXX} +#LSC Add minix base library, required for libc to work. +LDADD+= -L=/usr/lib -lminlib + +# PAM applications, if linked statically, need more libraries +.if (${MKPIC} == "no") +.if (${MKCRYPTO} != "no") +PAM_STATIC_LDADD+= -lssh +PAM_STATIC_DPADD+= ${LIBSSH} +.endif +.if (${MKKERBEROS} != "no") +PAM_STATIC_LDADD+= -lkafs -lkrb5 -lhx509 -lwind -lasn1 \ + -lroken -lcom_err -lheimbase -lcrypto +PAM_STATIC_DPADD+= ${LIBKAFS} ${LIBKRB5} ${LIBHX509} ${LIBWIND} ${LIBASN1} \ + ${LIBROKEN} ${LIBCOM_ERR} ${LIBHEIMBASE} ${LIBCRYPTO} +.endif +.if (${MKSKEY} != "no") +PAM_STATIC_LDADD+= -lskey +PAM_STATIC_DPADD+= ${LIBSKEY} +.endif +PAM_STATIC_LDADD+= -lradius -lcrypt -lrpcsvc -lutil +PAM_STATIC_DPADD+= ${LIBRADIUS} ${LIBCRYPT} ${LIBRPCSVC} ${LIBUTIL} +.else +PAM_STATIC_LDADD= +PAM_STATIC_DPADD= .endif +# NB: If you are a library here, add it in bsd.README .for _lib in \ - dps expat fntstubs fontcache fontconfig fontenc freetype FS \ - GL GLU ICE lbxutil SM X11 Xau Xaw Xdmcp Xext Xfont Xft \ - Xi Xinerama xkbfile Xmu Xmuu Xpm Xrandr Xrender Xss Xt \ - XTrap Xtst Xv Xxf86dga Xxf86misc Xxf86vm + FS \ + GL \ + GLU \ + ICE \ + SM \ + X11 \ + XTrap \ + Xau \ + Xaw \ + Xdmcp \ + Xext \ + Xfont \ + Xft \ + Xi \ + Xinerama \ + Xmu \ + Xmuu \ + Xpm \ + Xrandr \ + Xrender \ + Xss \ + Xt \ + Xtst \ + Xv \ + Xxf86dga \ + Xxf86misc \ + Xxf86vm \ + dps \ + fntstubs \ + fontcache \ + fontconfig \ + fontenc \ + freetype \ + lbxutil \ + xkbfile .ifndef LIB${_lib:tu} LIB${_lib:tu}= ${DESTDIR}${X11USRLIBDIR}/lib${_lib}.a .MADE: ${LIB${_lib:tu}} # Note: ${DESTDIR} will be expanded @@ -93,11 +194,28 @@ LIB${_lib:tu}= ${DESTDIR}${X11USRLIBDIR}/lib${_lib}.a CPPFLAGS+= -DRESCUEDIR=\"${RESCUEDIR}\" .endif +_PROGLDOPTS= +.if ${SHLINKDIR} != "/usr/libexec" # XXX: change or remove if ld.so moves +_PROGLDOPTS+= -Wl,-dynamic-linker=${_SHLINKER} +.endif +.if ${SHLIBDIR} != "/usr/lib" +_PROGLDOPTS+= -Wl,-rpath,${SHLIBDIR} \ + -L=${SHLIBDIR} +.elif ${SHLIBINSTALLDIR} != "/usr/lib" +_PROGLDOPTS+= -Wl,-rpath-link,${DESTDIR}${SHLIBINSTALLDIR} \ + -L=${SHLIBINSTALLDIR} +.endif + __proginstall: .USE ${_MKTARGET_INSTALL} ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${STRIPFLAG} ${.ALLSRC} ${.TARGET} +__progrumpinstall: .USE + ${_MKTARGET_INSTALL} + ${INSTALL_FILE} -o ${RUMPBINOWN} -g ${RUMPBINGRP} -m ${RUMPBINMODE} \ + ${STRIPFLAG} ${.ALLSRC} ${.TARGET} + __progdebuginstall: .USE ${_MKTARGET_INSTALL} ${INSTALL_FILE} -o ${DEBUGOWN} -g ${DEBUGGRP} -m ${DEBUGMODE} \ @@ -114,15 +232,44 @@ _APPEND_MANS=yes _APPEND_SRCS=yes _CCLINKFLAGS= -.if defined(DESTDIR) -_CCLINKFLAGS+= -B${_GCC_CRTDIR}/ -B${DESTDIR}/usr/lib/ -.endif .if defined(PROG_CXX) PROG= ${PROG_CXX} _CCLINK= ${CXX} ${_CCLINKFLAGS} .endif +.if defined(RUMPPRG) +PROG= ${RUMPPRG} +. ifndef CRUNCHEDPROG +. if (${MKRUMP} != "no") +PROGS= ${RUMPPRG} rump.${RUMPPRG} +. else +PROGS= ${RUMPPRG} +. endif +. if defined(SRCS) +. if (${MKRUMP} != "no") +SRCS.rump.${PROG}:= ${SRCS} ${PROG}_rumpops.c ${RUMPSRCS} +. endif +SRCS+= ${PROG}_hostops.c +. else +SRCS= ${PROG}.c ${PROG}_hostops.c +. if (${MKRUMP} != "no") +SRCS.rump.${PROG}= ${PROG}.c ${PROG}_rumpops.c ${RUMPSRCS} +. endif +. endif +. if (${MKRUMP} != "no") +DPSRCS+= ${PROG}_rumpops.c ${RUMPSRCS} +LDADD.rump.${PROG}+= -lrumpclient +DPADD.rump.${PROG}+= ${LIBRUMPCLIENT} +MAN.rump.${PROG}= # defined but feeling empty +_RUMPINSTALL.rump.${PROG}=# defined +. endif +. else # CRUNCHEDPROG +PROGS= ${PROG} +CPPFLAGS+= -DCRUNCHOPS +. endif +.endif + .if defined(PROG) _CCLINK?= ${CC} ${_CCLINKFLAGS} . if defined(MAN) @@ -143,24 +290,29 @@ _APPEND_SRCS= no # Turn the single-program PROG and PROG_CXX variables into their multi-word # counterparts, PROGS and PROGS_CXX. -.if defined(PROG_CXX) && !defined(PROGS_CXX) +.if !defined(RUMPPRG) +. if defined(PROG_CXX) && !defined(PROGS_CXX) PROGS_CXX= ${PROG_CXX} -.elif defined(PROG) && !defined(PROGS) +. elif defined(PROG) && !defined(PROGS) PROGS= ${PROG} +. endif .endif - - # # Per-program definitions and targets. # +_CCLINK.CDEFAULT= ${CC} ${_CCLINKFLAGS} # Definitions specific to C programs. .for _P in ${PROGS} SRCS.${_P}?= ${_P}.c _CCLINK.${_P}= ${CC} ${_CCLINKFLAGS} +_CFLAGS.${_P}= ${CFLAGS} ${CPUFLAGS} +_CPPFLAGS.${_P}= ${CPPFLAGS} +_COPTS.${_P}= ${COPTS} .endfor +_CCLINK.CXXDEFAULT= ${CXX} ${_CCLINKFLAGS} # Definitions specific to C++ programs. .for _P in ${PROGS_CXX} SRCS.${_P}?= ${_P}.cc @@ -173,19 +325,24 @@ _CCLINK.${_P}= ${CXX} ${_CCLINKFLAGS} BINDIR.${_P}?= ${BINDIR} PROGNAME.${_P}?= ${_P} -.if ${MKDEBUG} != "no" && ${OBJECT_FMT} == "ELF" && !commands(${_P}) +.if ${MKDEBUG} != "no" && !commands(${_P}) _PROGDEBUG.${_P}:= ${PROGNAME.${_P}}.debug .endif +.if defined(PAXCTL_FLAGS) +PAXCTL_FLAGS.${_P}?= ${PAXCTL_FLAGS} +.endif + ##### PROG specific flags. +_DPADD.${_P}= ${DPADD} ${DPADD.${_P}} _LDADD.${_P}= ${LDADD} ${LDADD.${_P}} _LDFLAGS.${_P}= ${LDFLAGS} ${LDFLAGS.${_P}} _LDSTATIC.${_P}= ${LDSTATIC} ${LDSTATIC.${_P}} ##### Build and install rules .if !empty(_APPEND_SRCS:M[Yy][Ee][Ss]) -SRCS+= ${SRCS.${_P}} # For bsd.dep.mk +SRCS+= ${SRCS.${_P}} # For bsd.dep.mk .endif _YPSRCS.${_P}= ${SRCS.${_P}:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS.${_P}:M*.y:.y=.h}} @@ -201,17 +358,67 @@ LOBJS.${_P}+= ${LSRCS:.c=.ln} ${SRCS.${_P}:M*.c:.c=.ln} .if defined(OBJS.${_P}) && !empty(OBJS.${_P}) # { .NOPATH: ${OBJS.${_P}} ${_P} ${_YPSRCS.${_P}} +.if (defined(USE_COMBINE) && ${USE_COMBINE} != "no" && !commands(${_P}) \ + && (${_CCLINK.${_P}} == ${_CCLINK.CDEFAULT} \ + || ${_CCLINK.${_P}} == ${_CCLINK.CXXDEFAULT}) \ + && !defined(NOCOMBINE.${_P}) && !defined(NOCOMBINE)) +.for f in ${SRCS.${_P}:N*.h:N*.sh:N*.fth:C/\.[yl]$/.c/g} +#_XFLAGS.$f := ${CPPFLAGS.$f:D1} ${CPUFLAGS.$f:D2} \ +# ${COPTS.$f:D3} ${OBJCOPTS.$f:D4} ${CXXFLAGS.$f:D5} +.if (${CPPFLAGS.$f:D1} == "1" || ${CPUFLAGS.$f:D2} == "2" \ + || ${COPTS.$f:D3} == "3" || ${OBJCOPTS.$f:D4} == "4" \ + || ${CXXFLAGS.$f:D5} == "5") \ + || ("${f:M*.[cyl]}" == "" || commands(${f:R:S/$/.o/})) +XOBJS.${_P}+= ${f:R:S/$/.o/} +.else +XSRCS.${_P}+= ${f} +NODPSRCS+= ${f} +.endif +.endfor + +${_P}: .gdbinit ${LIBCRT0} ${XOBJS.${_P}} ${SRCS.${_P}} ${DPSRCS} ${LIBC} ${LIBCRTBEGIN} ${LIBCRTEND} ${_DPADD.${_P}} + ${_MKTARGET_LINK} +.if defined(DESTDIR) + ${_CCLINK.${_P}} -Wl,-nostdlib \ + ${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} ${_PROGLDOPTS} \ + -B${_GCC_CRTDIR}/ -B${DESTDIR}/usr/lib/ \ + -MD --combine ${_CPPFLAGS.${_P}} ${_CFLAGS.${_P}} ${_COPTS.${_P}} \ + ${XSRCS.${_P}:@.SRC.@${.ALLSRC:M*.c:M*${.SRC.}}@:O:u} ${XOBJS.${_P}} \ + ${_LDADD.${_P}} -L${_GCC_LIBGCCDIR} -L${DESTDIR}/usr/lib +.else + ${_CCLINK.${_P}} ${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} ${_PROGLDOPTS} \ + -MD --combine ${_CPPFLAGS.${_P}} ${_COPTS.${_P}} + ${XSRCS.${_P}:@.SRC.@${.ALLSRC:M*.c:M*${.SRC.}}@:O:u} ${XOBJS.${_P}} \ + ${_LDADD.${_P}} +.endif # defined(DESTDIR) +.if defined(CTFMERGE) + ${CTFMERGE} ${CTFMFLAGS} -o ${.TARGET} ${OBJS.${_P}} +.endif +.if defined(PAXCTL_FLAGS.${_P}) + ${PAXCTL} ${PAXCTL_FLAGS.${_P}} ${.TARGET} +.endif +.if ${MKSTRIPIDENT} != "no" + ${OBJCOPY} -R .ident ${.TARGET} +.endif + +CLEANFILES+= ${_P}.d +.if exists(${_P}.d) +.include "${_P}.d" # include -MD depend for program. +.endif +.else # USE_COMBINE + ${OBJS.${_P}} ${LOBJS.${_P}}: ${DPSRCS} -${_P}: ${LIBCRT0} ${OBJS.${_P}} ${LIBC} ${LIBCRTBEGIN} ${LIBCRTEND} ${DPADD} +${_P}: .gdbinit ${LIBCRT0} ${OBJS.${_P}} ${LIBC} ${LIBCRTBEGIN} ${LIBCRTEND} ${_DPADD.${_P}} .if !commands(${_P}) ${_MKTARGET_LINK} ${_CCLINK.${_P}} \ - ${DESTDIR:D-Wl,-nostdlib} \ ${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} \ ${OBJS.${_P}} ${_LDADD.${_P}} \ - ${DESTDIR:D-L${_GCC_LIBGCCDIR}} \ ${_PROGLDOPTS} +.if defined(CTFMERGE) + ${CTFMERGE} ${CTFMFLAGS} -o ${.TARGET} ${OBJS.${_P}} +.endif .if defined(PAXCTL_FLAGS.${_P}) ${PAXCTL} ${PAXCTL_FLAGS.${_P}} ${.TARGET} .endif @@ -219,17 +426,19 @@ ${_P}: ${LIBCRT0} ${OBJS.${_P}} ${LIBC} ${LIBCRTBEGIN} ${LIBCRTEND} ${DPADD} ${OBJCOPY} -R .ident ${.TARGET} .endif .endif # !commands(${_P}) +.endif # USE_COMBINE -${_P}.ro: ${OBJS.${_P}} ${DPADD} +${_P}.ro: ${OBJS.${_P}} ${_DPADD.${_P}} ${_MKTARGET_LINK} - ${LD} -r -dc -o ${.TARGET} ${OBJS.${_P}} + ${CC} ${LDFLAGS} -nostdlib -r -Wl,-dc -o ${.TARGET} ${OBJS.${_P}} .if defined(_PROGDEBUG.${_P}) ${_PROGDEBUG.${_P}}: ${_P} ${_MKTARGET_CREATE} - ${OBJCOPY} --only-keep-debug ${_P} ${_PROGDEBUG.${_P}} - ${OBJCOPY} -R .gnu_debuglink --add-gnu-debuglink=${_PROGDEBUG.${_P}} ${_P} \ - || rm -f ${_PROGDEBUG.${_P}} + ( ${OBJCOPY} --only-keep-debug ${_P} ${_PROGDEBUG.${_P}} \ + && ${OBJCOPY} --strip-debug -p -R .gnu_debuglink \ + --add-gnu-debuglink=${_PROGDEBUG.${_P}} ${_P} \ + ) || (rm -f ${_PROGDEBUG.${_P}}; false) .endif .endif # defined(OBJS.${_P}) && !empty(OBJS.${_P}) # } @@ -243,14 +452,10 @@ MAN+= ${MAN.${_P}} realall: ${_P} ${_PROGDEBUG.${_P}} -cleanprog: cleanprog-${_P} -cleanprog-${_P}: - rm -f ${_P} ${_PROGDEBUG.${_P}} +CLEANFILES+= ${_P} ${_PROGDEBUG.${_P}} .if defined(OBJS.${_P}) && !empty(OBJS.${_P}) -cleanobjs: cleanobjs-${_P} -cleanobjs-${_P}: - rm -f ${OBJS.${_P}} ${LOBJS.${_P}} +CLEANFILES+= ${OBJS.${_P}} ${LOBJS.${_P}} .endif _PROG_INSTALL+= proginstall-${_P} @@ -262,7 +467,11 @@ proginstall-${_P}:: ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}} \ ${_PROGDEBUG.${_P}:D${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}} .if ${MKUPDATE} == "no" +.if defined(_RUMPINSTALL.${_P}) +${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! ${_P} __progrumpinstall +.else ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! ${_P} __proginstall +.endif .if !defined(BUILD) && !make(all) && !make(${_P}) ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! .MADE .endif @@ -273,7 +482,11 @@ ${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}! .MADE .endif .endif # define(_PROGDEBUG.${_P}) .else # MKUPDATE != no +.if defined(_RUMPINSTALL.${_P}) +${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: ${_P} __progrumpinstall +.else ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: ${_P} __proginstall +.endif .if !defined(BUILD) && !make(all) && !make(${_P}) ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: .MADE .endif @@ -297,9 +510,7 @@ lint-${_P}: ${LOBJS.${_P}} .if defined(OBJS) && !empty(OBJS) && \ (empty(PROGS) && empty(PROGS_CXX)) -cleanobjs: cleanobjs-plain -cleanobjs-plain: - rm -f ${OBJS} ${LOBJS} +CLEANFILES+= ${OBJS} ${LOBJS} .endif .if !target(proginstall) @@ -352,28 +563,15 @@ LINKSOWN?= ${BINOWN} LINKSGRP?= ${BINGRP} LINKSMODE?= ${BINMODE} .include +.include .include .include .include .include .include -.include - - -cleanextra: .PHONY -.if defined(CLEANFILES) && !empty(CLEANFILES) - rm -f ${CLEANFILES} -.endif +.include +.include ${TARGETS}: # ensure existence -${.CURDIR}/.gitignore: Makefile - echo $(CLEANFILES) $(PROGS) | tr ' ' '\n' >${.TARGET} - -.if defined(MINIXDYNAMIC) -LDFLAGS += -dynamic -.else -LDFLAGS += -static -.endif - .endif # HOSTPROG diff --git a/share/mk/bsd.rpc.mk b/share/mk/bsd.rpc.mk new file mode 100644 index 000000000..edfd6a126 --- /dev/null +++ b/share/mk/bsd.rpc.mk @@ -0,0 +1,75 @@ +# $NetBSD: bsd.rpc.mk,v 1.12 2011/09/10 16:57:35 apb Exp $ + +.include + +RPC_XDIR?= ${.CURDIR}/ + +# We don't use implicit suffix rules here to avoid dependencies in the +# Installed files. + +.if defined(RPC_INCS) # { + +.for I in ${RPC_INCS} +${I}: ${I:.h=.x} + ${_MKTARGET_CREATE} + ${TOOL_RPCGEN} -C -h ${RPC_XDIR}${I:.h=.x} -o ${.TARGET} +.endfor + +DPSRCS+= ${RPC_INCS} +CLEANFILES+= ${RPC_INCS} + +.endif # } + + +.if defined(RPC_XDRFILES) # { + +.for I in ${RPC_XDRFILES} +${I}: ${RPC_XDIR}${I:_xdr.c=.x} + ${_MKTARGET_CREATE} + ${TOOL_RPCGEN} -C -c ${RPC_XDIR}${I:_xdr.c=.x} -o ${.TARGET} +.endfor + +DPSRCS+= ${RPC_XDRFILES} +CLEANFILES+= ${RPC_XDRFILES} + +.endif # } + + +.if defined(RPC_SVCFILES) # { + +.for I in ${RPC_SVCCLASS} +_RPCS += -s ${I} +.endfor + +.for I in ${RPC_SVCFILES} + +${I}: ${RPC_XDIR}${I:_svc.c=.x} + ${_MKTARGET_CREATE} + ${TOOL_RPCGEN} -C ${_RPCS} ${RPC_SVCFLAGS} ${RPC_XDIR}${I:_svc.c=.x} \ + -o ${.TARGET} +.endfor + +DPSRCS+= ${RPC_SVCFILES} +CLEANFILES+= ${RPC_SVCFILES} + +.endif # } + +.if defined(RPC_CLNTFILES) # { + +.for I in ${RPC_CLNTFILES} + +${I}: ${RPC_XDIR}${I:_clnt.c=.x} + ${_MKTARGET_CREATE} + ${TOOL_RPCGEN} -C -l ${_RPCS} ${RPC_CLNTFLAGS} \ + ${RPC_XDIR}${I:_clnt.c=.x} -o ${.TARGET} +.endfor + +DPSRCS+= ${RPC_CLNTFILES} +CLEANFILES+= ${RPC_CLNTFILES} + +.endif # } + +##### Pull in related .mk logic +.include +.include +.include diff --git a/share/mk/bsd.shlib.mk b/share/mk/bsd.shlib.mk index 763b6395a..bb058c2f6 100644 --- a/share/mk/bsd.shlib.mk +++ b/share/mk/bsd.shlib.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.shlib.mk,v 1.6 2007/08/29 21:34:17 hira Exp $ +# $NetBSD: bsd.shlib.mk,v 1.8 2012/08/23 21:21:17 joerg Exp $ .if !defined(_BSD_SHLIB_MK_) _BSD_SHLIB_MK_=1 diff --git a/share/mk/bsd.subdir.mk b/share/mk/bsd.subdir.mk index 56311af72..0692f40cf 100644 --- a/share/mk/bsd.subdir.mk +++ b/share/mk/bsd.subdir.mk @@ -1,21 +1,31 @@ -# $NetBSD: bsd.subdir.mk,v 1.50 2009/11/29 16:00:00 uebayasi Exp $ +# $NetBSD: bsd.subdir.mk,v 1.52 2010/05/26 00:48:15 uwe Exp $ # @(#)bsd.subdir.mk 8.1 (Berkeley) 6/8/93 .include -# MINIX: cleandepend works for SUBDIRs -TARGETS+= cleandepend -.PHONY: cleandepend -.NOTMAIN: cleandepend - .if !defined(NOSUBDIR) # { .for dir in ${SUBDIR} +.if "${dir}" == ".WAIT" +# Don't play with .WAIT +__REALSUBDIR+=${dir} +.else +.if "${dir:H}" != "" +# It is a relative path; make it absolute so exists can't search the path. +.if exists(${.CURDIR}/${dir}.${MACHINE}) +__REALSUBDIR+=${dir}.${MACHINE} +.else +__REALSUBDIR+=${dir} +.endif +.else +# It is an absolute path; leave it alone .if exists(${dir}.${MACHINE}) __REALSUBDIR+=${dir}.${MACHINE} .else __REALSUBDIR+=${dir} .endif +.endif +.endif .endfor __recurse: .USE diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index b32b043e2..ac0eacb05 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -1,11 +1,25 @@ -# $NetBSD: bsd.sys.mk,v 1.186 2009/11/30 16:13:23 uebayasi Exp $ +# $NetBSD: bsd.sys.mk,v 1.218 2012/09/05 22:40:30 riz Exp $ # # Build definitions used for NetBSD source tree builds. -.if !defined(_MINIX_SYS_MK_) -_MINIX_SYS_MK_=1 +.if !defined(_BSD_SYS_MK_) +_BSD_SYS_MK_=1 + +.if ${MKREPRO:Uno} == "yes" +CPPFLAGS+= -Wp,-iremap,${NETBSDSRCDIR}:/usr/src +CPPFLAGS+= -Wp,-iremap,${DESTDIR}/:/ +CPPFLAGS+= -Wp,-iremap,${X11SRCDIR}:/usr/xsrc +.endif + +# Enable c99 mode by default. +# This has the side effect of complaining for missing prototypes +# implicit type declarations and missing return statements. +.if defined(HAVE_GCC) || defined(HAVE_LLVM) +CFLAGS+= -std=gnu99 +.endif .if defined(WARNS) +CFLAGS+= ${${ACTIVE_CC} == "clang":? -Wno-sign-compare -Wno-pointer-sign :} .if ${WARNS} > 0 CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith #CFLAGS+= -Wmissing-declarations -Wredundant-decls -Wnested-externs @@ -15,11 +29,9 @@ CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith # in a traditional environment' warning, as opposed to 'this code behaves # differently in traditional and ansi environments' which is the warning # we wanted, and now we don't get anymore. -CFLAGS+= -Wno-sign-compare -.if !empty(CC:Mgcc) -CFLAGS+= -Wno-traditional -.endif -.if !defined(NOGCCERROR) && !empty(CC:Mgcc) +CFLAGS+= -Wno-sign-compare +CFLAGS+= ${${ACTIVE_CC} != "clang":? -Wno-traditional :} +.if !defined(NOGCCERROR) # Set assembler warnings to be fatal CFLAGS+= -Wa,--fatal-warnings .endif @@ -27,9 +39,11 @@ CFLAGS+= -Wa,--fatal-warnings # XXX no proper way to avoid "FOO is a patented algorithm" warnings # XXX on linking static libs .if (!defined(MKPIC) || ${MKPIC} != "no") && \ - (!defined(LDSTATIC) || ${LDSTATIC} != "-static") \ - && !empty(CC:Mgcc) + (!defined(LDSTATIC) || ${LDSTATIC} != "-static") +# XXX there are some strange problems not yet resolved +. if !defined(HAVE_GCC) || defined(HAVE_LLVM) LDFLAGS+= -Wl,--fatal-warnings +. endif .endif .endif .if ${WARNS} > 1 @@ -38,22 +52,42 @@ CFLAGS+= -Wreturn-type -Wswitch -Wshadow .if ${WARNS} > 2 CFLAGS+= -Wcast-qual -Wwrite-strings CFLAGS+= -Wextra -Wno-unused-parameter +# Readd -Wno-sign-compare to override -Wextra with clang +CFLAGS+= -Wno-sign-compare CXXFLAGS+= -Wabi CXXFLAGS+= -Wold-style-cast CXXFLAGS+= -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder \ - -Wno-deprecated -Wno-non-template-friend \ - -Woverloaded-virtual -Wno-pmf-conversions -Wsign-promo -Wsynth + -Wno-deprecated -Woverloaded-virtual -Wsign-promo -Wsynth +CXXFLAGS+= ${${ACTIVE_CXX} == "gcc":? -Wno-non-template-friend -Wno-pmf-conversions :} .endif -.if ${WARNS} > 3 && defined(HAVE_GCC) && ${HAVE_GCC} >= 3 -CFLAGS+= -Wsign-compare -CFLAGS+= -std=gnu99 +.if ${WARNS} > 3 && (defined(HAVE_GCC) || defined(HAVE_LLVM)) +.if ${WARNS} > 4 +CFLAGS+= -Wold-style-definition +.endif +CFLAGS+= -Wsign-compare -Wformat=2 +CFLAGS+= ${${ACTIVE_CC} == "clang":? -Wno-error=format-nonliteral :} +CFLAGS+= ${${ACTIVE_CC} == "gcc":? -Wno-format-zero-length :} +.endif +.if ${WARNS} > 3 && defined(HAVE_LLVM) +CFLAGS+= ${${ACTIVE_CC} == "clang":? -Wpointer-sign -Wmissing-noreturn :} +.endif +.if (defined(HAVE_GCC) && ${HAVE_GCC} == 45 \ + && (${MACHINE_ARCH} == "sh3eb" || \ + ${MACHINE_ARCH} == "sh3el" || \ + ${MACHINE_ARCH} == "m68k" || \ + ${MACHINE_ARCH} == "m68000")) +# XXX GCC 4.5 for sh3 and m68k (which we compile with -Os) is extra noisy for +# cases it should be better with +CFLAGS+= -Wno-uninitialized .endif .endif -# XXX: Temporarily disabled for MINIX -# CPPFLAGS+= ${AUDIT:D-D__AUDIT__} -# CFLAGS+= ${CWARNFLAGS} ${NOGCCERROR:D:U-Werror} -# LINTFLAGS+= ${DESTDIR:D-d ${DESTDIR}/usr/include} +CWARNFLAGS+= ${CWARNFLAGS.${ACTIVE_CC}} + +CPPFLAGS+= ${AUDIT:D-D__AUDIT__} +_NOWERROR= ${defined(NOGCCERROR) || (${ACTIVE_CC} == "clang" && defined(NOCLANGERROR)):?yes:no} +CFLAGS+= ${${_NOWERROR} == "no" :?-Werror:} ${CWARNFLAGS} +LINTFLAGS+= ${DESTDIR:D-d ${DESTDIR}/usr/include} .if (${MACHINE_ARCH} == "alpha") || \ (${MACHINE_ARCH} == "hppa") || \ @@ -65,29 +99,27 @@ HAS_SSP= no HAS_SSP= yes .endif -.if defined(NBSD_LIBC) && (${NBSD_LIBC} != "no") -CPPFLAGS+= -D__NBSD_LIBC -.endif - -.if defined(USE_FORT) && (${USE_FORT} != "no") +.if ${USE_FORT:Uno} != "no" USE_SSP?= yes .if !defined(KERNSRCDIR) && !defined(KERN) # not for kernels nor kern modules CPPFLAGS+= -D_FORTIFY_SOURCE=2 .endif .endif -.if defined(USE_SSP) && (${USE_SSP} != "no") && (${BINDIR:Ux} != "/usr/mdec") +.if (${USE_SSP:Uno} != "no") && (${BINDIR:Ux} != "/usr/mdec") .if ${HAS_SSP} == "yes" -COPTS+= -fstack-protector -Wstack-protector --param ssp-buffer-size=1 +COPTS+= -fstack-protector -Wstack-protector +COPTS+= ${${ACTIVE_CC} == "clang":? -mllvm -stack-protector-buffer-size=1 :} +COPTS+= ${${ACTIVE_CC} == "gcc":? --param ssp-buffer-size=1 :} .endif .endif -.if defined(MKSOFTFLOAT) && (${MKSOFTFLOAT} != "no") +.if ${MKSOFTFLOAT:Uno} != "no" COPTS+= -msoft-float FOPTS+= -msoft-float .endif -.if defined(MKIEEEFP) && (${MKIEEEFP} != "no") +.if ${MKIEEEFP:Uno} != "no" .if ${MACHINE_ARCH} == "alpha" CFLAGS+= -mieee FFLAGS+= -mieee @@ -98,18 +130,33 @@ FFLAGS+= -mieee CFLAGS+= -Wa,-Av8plus .endif +.if !defined(NOGCCERROR) +.if (${MACHINE_ARCH} == "mips64el") || (${MACHINE_ARCH} == "mips64eb") +CPUFLAGS+= -Wa,--fatal-warnings +.endif +.endif + +#.if ${MACHINE} == "sbmips" +#CFLAGS+= -mips64 -mtune=sb1 +#.endif + +#.if (${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "mips64eb") && \ +# (defined(MKPIC) && ${MKPIC} == "no") +#CPUFLAGS+= -mno-abicalls -fno-PIC +#.endif CFLAGS+= ${CPUFLAGS} AFLAGS+= ${CPUFLAGS} +.if !defined(LDSTATIC) || ${LDSTATIC} != "-static" # Position Independent Executable flags PIE_CFLAGS?= -fPIC -DPIC PIE_LDFLAGS?= -Wl,-pie -shared-libgcc PIE_AFLAGS?= -fPIC -DPIC +.endif # Helpers for cross-compiling HOST_CC?= cc HOST_CFLAGS?= -O -HOST_CFLAGS?= HOST_COMPILE.c?=${HOST_CC} ${HOST_CFLAGS} ${HOST_CPPFLAGS} -c HOST_COMPILE.cc?= ${HOST_CXX} ${HOST_CXXFLAGS} ${HOST_CPPFLAGS} -c .if defined(HOSTPROG_CXX) @@ -120,7 +167,6 @@ HOST_LINK.c?= ${HOST_CC} ${HOST_CFLAGS} ${HOST_CPPFLAGS} ${HOST_LDFLAGS} HOST_CXX?= c++ HOST_CXXFLAGS?= -O -HOST_CXXFLAGS?= HOST_CPP?= cpp HOST_CPPFLAGS?= @@ -151,10 +197,13 @@ STRIP?= strip .c.o: ${_MKTARGET_COMPILE} ${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .c.ln: ${_MKTARGET_COMPILE} - ${LINT} ${LINTFLAGS} \ + ${LINT} ${LINTFLAGS} ${LINTFLAGS.${.IMPSRC:T}} \ ${CPPFLAGS:C/-([IDU])[ ]*/-\1/Wg:M-[IDU]*} \ ${CPPFLAGS.${.IMPSRC:T}:C/-([IDU])[ ]*/-\1/Wg:M-[IDU]*} \ -i ${.IMPSRC} @@ -170,6 +219,9 @@ STRIP?= strip .m.o: ${_MKTARGET_COMPILE} ${COMPILE.m} ${OBJCOPTS} ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif # Host-compiled C objects # The intermediate step is necessary for Sun CC, which objects to calling @@ -189,10 +241,16 @@ STRIP?= strip .s.o: ${_MKTARGET_COMPILE} ${COMPILE.s} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .S.o: ${_MKTARGET_COMPILE} ${COMPILE.S} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif # Lex LFLAGS+= ${LPREFIX.${.IMPSRC:T}:D-P${LPREFIX.${.IMPSRC:T}}} @@ -206,18 +264,17 @@ LFLAGS+= ${LPREFIX:D-P${LPREFIX}} YFLAGS+= ${YPREFIX.${.IMPSRC:T}:D-p${YPREFIX.${.IMPSRC:T}}} ${YHEADER.${.IMPSRC:T}:D-d} YFLAGS+= ${YPREFIX:D-p${YPREFIX}} ${YHEADER:D-d} -.ifdef QUIET_YACC -.y.c: - ${_MKTARGET_YACC} - ${YACC.y} -o ${.TARGET} ${.IMPSRC} 2> /dev/null -.else .y.c: ${_MKTARGET_YACC} ${YACC.y} -o ${.TARGET} ${.IMPSRC} -.endif .ifdef YHEADER +.if empty(.MAKEFLAGS:M-n) .y.h: ${.TARGET:.h=.c} .endif +.endif -.endif # !defined(_MINIX_SYS_MK_) +# Objcopy +OBJCOPYLIBFLAGS?=${"${.TARGET:M*.po}" != "":?-X:-x} + +.endif # !defined(_BSD_SYS_MK_) diff --git a/share/mk/bsd.test.mk b/share/mk/bsd.test.mk new file mode 100644 index 000000000..5427550a7 --- /dev/null +++ b/share/mk/bsd.test.mk @@ -0,0 +1,157 @@ +# $NetBSD: bsd.test.mk,v 1.21 2012/08/25 22:21:16 jmmv Exp $ +# + +.include + +_TESTS:= # empty + +.if defined(TESTS_SUBDIRS) +SUBDIR+= ${TESTS_SUBDIRS} +_TESTS:= ${TESTS_SUBDIRS:N.WAIT} +.endif + +.include + +.if defined(TESTS_C) +_TESTS+= ${TESTS_C} +PROGS+= ${TESTS_C} +. for _T in ${TESTS_C} +BINDIR.${_T}= ${TESTSDIR} +LDADD.${_T}+= -latf-c +DPADD.${_T}+= ${LIBATF_C} +MAN.${_T}?= # empty +. endfor +.endif + +.if defined(TESTS_CXX) +_TESTS+= ${TESTS_CXX} +PROGS_CXX+= ${TESTS_CXX} +. for _T in ${TESTS_CXX} +BINDIR.${_T}= ${TESTSDIR} +LDADD.${_T}+= -latf-c++ -latf-c +DPADD.${_T}+= ${LIBATF_CXX} ${LIBATF_C} +MAN.${_T}?= # empty +. endfor +.endif + +.if defined(TESTS_SH) +_TESTS+= ${TESTS_SH} +CLEANDIRFILES+= ${TESTS_SH} + +. for _T in ${TESTS_SH} +SCRIPTS+= ${_T} +SCRIPTSDIR_${_T}= ${TESTSDIR} + +CLEANDIRFILES+= ${_T}.tmp + +TESTS_SH_SRC_${_T}?= ${_T}.sh +${_T}: ${TESTS_SH_SRC_${_T}} + ${_MKTARGET_BUILD} + echo '#! /usr/bin/atf-sh' >${.TARGET}.tmp + cat ${.ALLSRC} >>${.TARGET}.tmp + chmod +x ${.TARGET}.tmp + mv ${.TARGET}.tmp ${.TARGET} +. endfor +.endif + +ATFFILE?= auto + +.if ${ATFFILE:tl} != "no" +FILES+= Atffile +FILESDIR_Atffile= ${TESTSDIR} + +. if ${ATFFILE:tl} == "auto" +CLEANDIRFILES+= Atffile Atffile.tmp + +realall: Atffile +Atffile: Makefile + ${_MKTARGET_CREATE} + @{ echo 'Content-Type: application/X-atf-atffile; version="1"'; \ + echo; \ + echo '# Automatically generated by bsd.test.mk.'; \ + echo; \ + echo 'prop: test-suite = "NetBSD"'; \ + echo; \ + for tp in ${_TESTS}; do \ + echo "tp: $${tp}"; \ + done; } >Atffile.tmp + @mv Atffile.tmp Atffile +. endif + +.include +.endif + +.if !empty(SCRIPTS) || !empty(PROGS) || !empty(PROGS_CXX) +. include +.endif + +# +# Definition of the "make test" target and supporting variables. +# +# This target, by necessity, can only work for native builds (i.e. a NetBSD +# host building a release for the same system). The target runs ATF, which is +# not in the toolchain, and the tests execute code built for the target host. +# +# Due to the dependencies of the binaries built by the source tree and how they +# are used by tests, it is highly possible for a execution of "make test" to +# report bogus results unless the new binaries are put in place. +# + +TESTS_PATH += ${DESTDIR}/bin ${DESTDIR}/sbin ${DESTDIR}/usr/bin ${DESTDIR}/usr/sbin +TESTS_LD_LIBRARY_PATH += ${DESTDIR}/lib ${DESTDIR}/usr/lib + +TESTS_ENV += ATF_BUILD_CC=${DESTDIR}/usr/bin/cc +TESTS_ENV += ATF_BUILD_CPP=${DESTDIR}/usr/bin/cpp +TESTS_ENV += ATF_BUILD_CXX=${DESTDIR}/usr/bin/c++ +TESTS_ENV += ATF_CONFDIR=${DESTDIR}/etc +TESTS_ENV += ATF_INCLUDEDIR=${DESTDIR}/usr/include +TESTS_ENV += ATF_LIBDIR=${DESTDIR}/usr/lib +TESTS_ENV += ATF_LIBEXECDIR=${DESTDIR}/usr/libexec +TESTS_ENV += ATF_PKGDATADIR=${DESTDIR}/usr/share/atf +TESTS_ENV += ATF_SHELL=${DESTDIR}/bin/sh +TESTS_ENV += LD_LIBRARY_PATH=${TESTS_LD_LIBRARY_PATH:tW:S/ /:/g} +TESTS_ENV += PATH=${TESTS_PATH:tW:S/ /:/g} + +_TESTS_FIFO = ${.OBJDIR}/atf-run.fifo +_TESTS_LOG = ${.OBJDIR}/atf-run.log +CLEANDIRFILES += ${_TESTS_FIFO} ${_TESTS_LOG} + +.PHONY: test +.if defined(TESTSDIR) +. if ${TESTSDIR} == ${TESTSBASE} +# Forbid this case. It is likely to cause false positives/negatives and it +# does not cover all the tests (e.g. it misses testing software in external). +test: + @echo "*** Sorry, you cannot use make test from src/tests. Install the" + @echo "*** tests into their final location and run them from /usr/tests" + @false +. else +test: + @echo "*** WARNING: make test is experimental" + @echo "***" + @echo "*** Using this test does not preclude you from running the tests" + @echo "*** installed in /usr/tests. This test run may raise false" + @echo "*** positives and/or false negatives." + @echo + @set -e; \ + cd ${DESTDIR}${TESTSDIR}; \ + rm -f ${_TESTS_FIFO}; \ + mkfifo ${_TESTS_FIFO}; \ + cat ${_TESTS_FIFO} | tee ${_TESTS_LOG} | \ + ${TESTS_ENV} ${DESTDIR}/usr/bin/atf-report & \ + result=0; \ + ${TESTS_ENV} ${DESTDIR}/usr/bin/atf-run >>${_TESTS_FIFO} || result=1; \ + wait; \ + rm -f ${_TESTS_FIFO}; \ + echo; \ + echo "*** The verbatim output of atf-run has been saved to ${_TESTS_LOG}"; \ + echo "*** Once again, note that "make test" is unsupported."; \ + test $${result} -eq 0 +. endif +.else +test: + @echo "*** No TESTSDIR defined; nothing to do." +.endif + +##### Pull in related .mk logic +.include diff --git a/share/mk/bsd.x11.mk b/share/mk/bsd.x11.mk new file mode 100644 index 000000000..915c666ae --- /dev/null +++ b/share/mk/bsd.x11.mk @@ -0,0 +1,429 @@ +# $NetBSD: bsd.x11.mk,v 1.106 2012/04/04 10:59:47 joerg Exp $ + +.include + +BINDIR= ${X11BINDIR} +LIBDIR= ${X11USRLIBDIR} +MANDIR= ${X11MANDIR} + +COPTS+= -fno-strict-aliasing + +.include + +.if defined(USE_SSP) && (${USE_SSP} != "no") +CPPFLAGS+= -DNO_ALLOCA +.endif + +X11FLAGS.VERSION= -DOSMAJORVERSION=5 -DOSMINORVERSION=99 # XXX + +# THREADS_DEFINES +X11FLAGS.THREADS= -DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API \ + -DXNO_MTSAFE_PWDAPI + +# CONNECTION_FLAGS +X11FLAGS.CONNECTION= -DTCPCONN -DUNIXCONN -DHAS_STICKY_DIR_BIT \ + -DHAS_FCHOWN + +.if (${USE_INET6} != "no") +X11FLAGS.CONNECTION+= -DIPv6 +.endif + +# EXT_DEFINES +.if ${X11FLAVOUR} == "Xorg" +X11FLAGS.BASE_EXTENSION= -DMITMISC -DXTEST -DXTRAP -DXSYNC -DXCMISC \ + -DXRECORD -DMITSHM -DBIGREQS -DXF86VIDMODE \ + -DXF86MISC -DDPMSExtension -DEVI \ + -DSCREENSAVER -DXV -DXVMC -DGLXEXT \ + -DRES + +X11FLAGS.PERVASIVE_EXTENSION= -DSHAPE -DXINPUT -DXKB -DLBX -DXAPPGROUP \ + -DXCSECURITY -DTOGCUP -DXF86BIGFONT \ + -DDPMSExtension -DPIXPRIV -DPANORAMIX \ + -DRENDER -DRANDR -DXFIXES -DDAMAGE \ + -DCOMPOSITE -DXEVIE +X11FLAGS.EXTENSION= ${X11FLAGS.BASE_EXTENSION} \ + ${X11FLAGS.PERVASIVE_EXTENSION} + +X11FLAGS.DIX= -DHAVE_DIX_CONFIG_H -D_BSD_SOURCE -DHAS_FCHOWN \ + -DHAS_STICKY_DIR_BIT -D_POSIX_THREAD_SAFE_FUNCTIONS \ + -DHAVE_XORG_CONFIG_H +X11INCS.DIX= -I${X11INCSDIR}/freetype2 \ + -I${X11INCSDIR}/pixman-1 \ + -I$(X11SRCDIR.xorg-server)/include \ + -I$(X11SRCDIR.xorg-server)/Xext \ + -I$(X11SRCDIR.xorg-server)/composite \ + -I$(X11SRCDIR.xorg-server)/damageext \ + -I$(X11SRCDIR.xorg-server)/xfixes \ + -I$(X11SRCDIR.xorg-server)/Xi \ + -I$(X11SRCDIR.xorg-server)/mi \ + -I$(X11SRCDIR.xorg-server)/miext/shadow \ + -I$(X11SRCDIR.xorg-server)/miext/damage \ + -I$(X11SRCDIR.xorg-server)/render \ + -I$(X11SRCDIR.xorg-server)/randr \ + -I$(X11SRCDIR.xorg-server)/fb \ + -I$(X11SRCDIR.xorg-server)/../include +.else +X11FLAGS.EXTENSION= -DMITMISC -DXTEST -DXTRAP -DXSYNC -DXCMISC -DXRECORD \ + -DMITSHM -DBIGREQS -DXF86MISC -DDBE -DDPMSExtension \ + -DEVI -DSCREENSAVER -DXV -DXVMC -DGLXEXT \ + -DGLX_USE_MESA -DFONTCACHE -DRES +.endif + +X11FLAGS.DRI= -DGLXEXT -DXF86DRI -DGLX_DIRECT_RENDERING \ + -DGLX_USE_DLOPEN -DGLX_USE_MESA + +.if ${X11DRI} != "no" +X11FLAGS.EXTENSION+= ${X11FLAGS.DRI} +.endif + +# ServerDefines +X11FLAGS.SERVER= -DSHAPE -DXKB -DLBX -DXAPPGROUP -DXCSECURITY \ + -DTOGCUP -DXF86BIGFONT -DDPMSExtension -DPIXPRIV \ + -DPANORAMIX -DRENDER -DRANDR -DGCCUSESGAS \ + -DAVOID_GLYPHBLT -DSINGLEDEPTH -DXvExtension \ + -DXFree86Server -DXvMCExtension -DSMART_SCHEDULE \ + -DBUILDDEBUG -DXResExtension -DNDEBUG + +# OS_DEFINES +X11FLAGS.OS_DEFINES= -DDDXOSINIT -DSERVER_LOCK -DDDXOSFATALERROR \ + -DDDXOSVERRORF -DDDXTIME -DUSB_HID + +.if !(${MACHINE} == "acorn32" || \ + (${MACHINE} == "alpha" && ${X11FLAVOUR} != "Xorg") || \ + ${MACHINE} == "amiga" || \ + ${MACHINE} == "pmax" || \ + ${MACHINE} == "sun3" || \ + ${MACHINE} == "vax") +# EXT_DEFINES +X11FLAGS.EXTENSION+= -DXF86VIDMODE + +# ServerDefines +X11FLAGS.SERVER+= -DXINPUT -DXFreeXDGA -DXF86VIDMODE +.endif + +.if ${MACHINE_ARCH} == "alpha" || \ + ${MACHINE_ARCH} == "sparc64" || \ + ${MACHINE_ARCH} == "x86_64" +# ServerDefines +X11FLAGS.SERVER+= -D_XSERVER64 +X11FLAGS.EXTENSION+= -D__GLX_ALIGN64 +.endif + +.if ${MACHINE} == "amd64" || \ + ${MACHINE} == "cats" || \ + ${MACHINE} == "i386" || \ + ${MACHINE} == "macppc" || \ + ${MACHINE} == "netwinder" || \ + ${MACHINE} == "ofppc" || \ + ${MACHINE} == "prep" || \ + ${MACHINE} == "sgimips" || \ + ${MACHINE} == "sparc64" || \ + ${MACHINE} == "sparc" || \ + ${MACHINE} == "shark" || \ + ${MACHINE} == "zaurus" +# LOADABLE +X11FLAGS.LOADABLE= -DXFree86LOADER -DIN_MODULE -DXFree86Module \ + ${${ACTIVE_CXX} == "gcc":? -fno-merge-constants :} +.endif + +# XXX FIX ME +.if ${X11FLAVOUR} == "Xorg" +XVENDORNAMESHORT= '"X.Org"' +XVENDORNAME= '"The X.Org Foundation"' +XORG_RELEASE= '"Release 1.10.3"' +__XKBDEFRULES__= '"xorg"' +XLOCALE.DEFINES= -DXLOCALEDIR=\"${X11LIBDIR}/locale\" \ + -DXLOCALELIBDIR=\"${X11LIBDIR}/locale\" + +# XXX oh yeah, fix me later +XORG_VERSION_CURRENT="(((1) * 10000000) + ((10) * 100000) + ((3) * 1000) + 0)" +.endif + +PRINT_PACKAGE_VERSION= awk '/^PACKAGE_VERSION=/ { \ + match($$1, "([0-9]+\\.)+[0-9]+"); \ + version = substr($$1, RSTART, RLENGTH); \ + } END { print version }' + + +# Extract X11VERSION +PRINTX11VERSION=${TOOL_AWK} ' \ + /^\#define XF86_VERSION_MAJOR/ {major = $$3} \ + /^\#define XF86_VERSION_MINOR/ {minor = $$3} \ + /^\#define XF86_VERSION_PATCH/ {patch = $$3} \ + /^\#define XF86_VERSION_SNAP/ {snap = $$3} \ + END { print "((("major") * 10000000) + (("minor") * 100000) + (("patch") * 1000) + "snap")"}' \ + ${X11SRCDIR.xc}/programs/Xserver/hw/xfree86/xf86Version.h + +# Commandline to convert 'XCOMM' comments and 'XHASH' to '#', among other +# things. Transformed from the "CppSedMagic" macro from "Imake.rules". +# +X11TOOL_UNXCOMM= ${TOOL_SED} -e '/^\# *[0-9][0-9]* *.*$$/d' \ + -e '/^\#line *[0-9][0-9]* *.*$$/d' \ + -e '/^[ ]*XCOMM$$/s/XCOMM/\#/' \ + -e '/^[ ]*XCOMM[^a-zA-Z0-9_]/s/XCOMM/\#/' \ + -e '/^[ ]*XHASH/s/XHASH/\#/' \ + -e '/\@\@$$/s/\@\@$$/\\/' + + +CPPFLAGS+= -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO +CPPFLAGS+= -I${DESTDIR}${X11INCDIR} + +.if ${MACHINE_ARCH} == "x86_64" +CPPFLAGS+= -D__AMD64__ +.endif + +LDFLAGS+= -Wl,-rpath,${X11USRLIBDIR} -L=${X11USRLIBDIR} + + +# +# .cpp -> "" handling +# CPPSCRIPTS list of files/scripts to run through cpp +# CPPSCRIPTFLAGS extra flags to ${CPP} +# CPPSCRIPTFLAGS_fn extra flags to ${CPP} for file `fn' +# +.if defined(CPPSCRIPTS) # { +.SUFFIXES: .cpp + +.cpp: + ${_MKTARGET_CREATE} + rm -f ${.TARGET} + ${CC} -E -undef -traditional - \ + ${CPPSCRIPTFLAGS_${.TARGET}:U${CPPSCRIPTFLAGS}} \ + < ${.IMPSRC} | ${X11TOOL_UNXCOMM} > ${.TARGET} + +realall: ${CPPSCRIPTS} + +CLEANFILES+= ${CPPSCRIPTS} +.endif # } + +# +# X.Org pkgconfig files handling +# +# PKGCONFIG is expected to contain a list of pkgconfig module names. +# They will produce the files .pc, .pc, etc, to be +# put in X11USRLIBDIR/pkgconfig. +# +# PKGDIST contains the name of a X11SRCDIR subscript where to find the +# source file for the pkgconfig files. +# +# If PKGDIST is not suitable, a consumer can set PKGDIST. with +# the full path to the source file. +# +# Also, the consumer can use PKGDIST alone, and a PKGCONFIG will be +# derived from it. Many times, PKGDIST is capitalized and PKGCONFIG is +# the lower case version. +# + +.if defined(PKGDIST) && !defined(PKGCONFIG) +PKGCONFIG= ${PKGDIST:tl} +.endif +.if defined(PKGCONFIG) + +.include + +_PKGCONFIG_FILES= ${PKGCONFIG:C/$/.pc/} + +.PHONY: pkgconfig-install +pkgconfig-install: + +realall: ${_PKGCONFIG_FILES:O:u} +realinstall: pkgconfig-install + +.for _pkg in ${PKGCONFIG:O:u} +PKGDIST.${_pkg}?= ${X11SRCDIR.${PKGDIST:U${_pkg}}} +_PKGDEST.${_pkg}= ${DESTDIR}${X11USRLIBDIR}/pkgconfig/${_pkg}.pc + +.PATH: ${PKGDIST.${_pkg}} + +FILESOWN_${_pkg}.pc= ${BINOWN} +FILESGRP_${_pkg}.pc= ${BINGRP} +FILESMODE_${_pkg}.pc= ${NONBINMODE} + +${_PKGDEST.${_pkg}}: ${_pkg}.pc __fileinstall +pkgconfig-install: ${_PKGDEST.${_pkg}} +.endfor + +# XXX +# The sed script is very, very ugly. What we actually need is a +# mknative-xorg script that will generate all the .pc files from +# running the autoconfigure script. +# And yes, it has to be splitted in two otherwise it's too long +# for sed to handle. + +# hacky transforms: +# @XCBPROTO_VERSION@ + +.SUFFIXES: .pc.in .pc +.pc.in.pc: + ${_MKTARGET_CREATE} + rm -f ${.TARGET} + if [ -n '${PKGCONFIG_VERSION.${.PREFIX}}' ]; then \ + _pkg_version='${PKGCONFIG_VERSION.${.PREFIX}}'; \ + else \ + _pkg_version=$$(${PRINT_PACKAGE_VERSION} \ + ${PKGDIST.${.PREFIX}}/configure); \ + fi; \ + ${TOOL_SED} \ + -e "s,@prefix@,${X11ROOTDIR},; \ + s,@INSTALL_DIR@,${X11ROOTDIR},; \ + s,@exec_prefix@,\\$$\{prefix\},; \ + s,@libdir@,\\$$\{prefix\}/lib,; \ + s,@includedir@,\\$$\{prefix\}/include,; \ + s,@datarootdir@,\\$$\{prefix\}/share,; \ + s,@datadir@,\\$$\{datarootdir\},; \ + s,@appdefaultdir@,\\$$\{libdir}/X11/app-defaults,; \ + s,@MAPDIR@,\\$$\{libdir\}/X11/fonts/util,; \ + s,@ICONDIR@,\\$$\{datarootdir\}/icons,; \ + s,@PACKAGE_VERSION@,$${_pkg_version},; \ + s,@VERSION@,$${_pkg_version},; \ + s,@COMPOSITEEXT_VERSION@,$${_pkg_version%.*},; \ + s,@DAMAGEEXT_VERSION@,$${_pkg_version%.*},; \ + s,@FIXESEXT_VERSION@,$${_pkg_version%.*},; \ + s,@RANDR_VERSION@,$${_pkg_version%.*},; \ + s,@RENDER_VERSION@,$${_pkg_version%.*}," \ + -e "s,@LIBS@,,; \ + s,@Z_LIBS@,-lz,; \ + s,@LIBZ@,-lz,; \ + s,@LIBBZ2@,-lbz2,; \ + s,@xkb_base@,\\$$\{prefix\}/lib/X11/xkb,; \ + s,@xcbincludedir@,\\$$\{prefix\}/share/xcb,; \ + s,@fontrootdir@,\\$$\{libdir\}/X11/fonts,; \ + s,@LIBXML2_LIBS@,,; \ + s,@ICONV_LIBS@,,; \ + s,@NEEDED@,,; \ + s,@FT2_EXTRA_LIBS@,," \ + -e "s,@moduledir@,\\$$\{libdir\}/modules,; \ + s,@sdkdir@,\\$$\{includedir\}/xorg,; \ + s,@PIXMAN_CFLAGS@,,; \ + s,@LIB_DIR@,/lib,; \ + s,@INSTALL_LIB_DIR@,\\$$\{prefix\}/lib,; \ + s,@INSTALL_INC_DIR@,\\$$\{prefix\}/include,; \ + s,@XKBPROTO_REQUIRES@,kbproto,; \ + s,@XCBPROTO_VERSION@,1.7,; \ + s,@FREETYPE_REQUIRES@,freetype2,; \ + s,@EXPAT_LIBS@,-lexpat,; \ + s,@FREETYPE_LIBS@,-lfreetype,; \ + s,@DEP_CFLAGS@,,; \ + s,@DEP_LIBS@,,; \ + s,@X11_EXTRA_DEPS@,,; \ + s,@XTHREAD_CFLAGS@,-D_REENTRANT,; \ + s,@XTHREADLIB@,-lpthread,; \ + s,@GL_LIB@,GL,; \ + s,@GL_PC_REQ_PRIV@,x11 xext,; \ + s,@GL_PC_LIB_PRIV@,-lm -lpthread,; \ + s,@GL_PC_CFLAGS@,," \ + -e "s,@GLU_LIB@,GLU,; \ + s,@GLU_PC_REQ@,gl,; \ + s,@GLU_PC_REQ_PRIV@,,; \ + s,@GLU_PC_LIB_PRIV@,-lGLU,; \ + s,@GLU_PC_CFLAGS@,,; \ + s,@GLUT_LIB@,glut,; \ + s,@GLUT_PC_REQ_PRIV@,gl glu,; \ + s,@GLUT_PC_LIB_PRIV@,-lglut,; \ + s,@GLUT_PC_CFLAGS@,,; \ + s,@GLW_PC_CFLAGS@,,; \ + s,@GLW_PC_REQ_PRIV@,x11 xt,; \ + s,@GLW_PC_LIB_PRIV@,,; \ + s,@DRI_DRIVER_DIR@,\\$$\{libdir\}/modules/dri,; \ + s,@DRI_PC_REQ_PRIV@,,; \ + s,@GLW_LIB@,GLw,; \ + s,@abi_ansic@,0.4,; \ + s,@abi_videodrv@,5.0,; \ + s,@abi_xinput@,4.0,; \ + s,@abi_extension@,2.0,; \ + s,@abi_font@,0.6,; \ + s,@fchown_define@,-DHAS_FCHOWN,; \ + s,@sticky_bit_define@,-DHAS_STICKY_DIR_BIT," \ + -e '/^Libs:/ s%-L\([^ ]*\)%-Wl,-rpath,\1 &%g' \ + < ${.IMPSRC} > ${.TARGET}.tmp && \ + mv -f ${.TARGET}.tmp ${.TARGET} + +CLEANDIRFILES+= ${_PKGCONFIG_FILES} ${_PKGCONFIG_FILES:C/$/.tmp/} +.endif + +# +# APPDEFS (app defaults) handling +# +.if defined(APPDEFS) # { +appdefsinstall:: .PHONY ${APPDEFS:@S@${DESTDIR}${X11LIBDIR}/app-defaults/${S:T:R}@} +.PRECIOUS: ${APPDEFS:@S@${DESTDIR}${X11LIBDIR}/app-defaults/${S:T:R}@} + +__appdefinstall: .USE + ${_MKTARGET_INSTALL} + ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} \ + ${.ALLSRC} ${.TARGET} + +.for S in ${APPDEFS:O:u} +${DESTDIR}${X11LIBDIR}/app-defaults/${S:T:R}: ${S} __appdefinstall +.endfor + +realinstall: appdefsinstall +.endif # } + + +# +# .man page handling +# +.if (${MKMAN} != "no" && (${MAN:U} != "" || ${PROG:U} != "")) # { +CLEANDIRFILES+= ${MAN:U${PROG:D${PROG.1}}} +.endif # } + +.SUFFIXES: .man .man.pre .1 .3 .4 .5 .7 + +_X11MANTRANSFORM= \ + __adminmansuffix__ 8 \ + __apploaddir__ ${X11ROOTDIR}/lib/X11/app-defaults \ + __appmansuffix__ 1 \ + __bindir__ ${X11BINDIR} \ + __drivermansuffix__ 4 \ + __filemansuffix__ 5 \ + __LIB_MAN_SUFFIX__ 3 \ + __libmansuffix__ 3 \ + __logdir__ /var/log \ + __mandir__ ${X11MANDIR} \ + __miscmansuffix__ 7 \ + __oslibmansuffix__ 3 \ + __projectroot__ ${X11ROOTDIR} \ + ${X11EXTRAMANTRANSFORMS} + +# Note the escaping trick for _X11MANTRANSFORM using % to replace spaces +.if ${X11FLAVOUR} != "Xorg" +X11VERSION= "XFree86 4.5.0" +X11MANCPP?= yes +_X11MANTRANSFORM+= \ + __vendorversion__ ${X11VERSION:C/ /%/gW} +.else +XORGVERSION= '"X Version 11"' +X11MANCPP?= no +_X11MANTRANSFORM+= \ + __vendorversion__ ${XORGVERSION:C/ /%/gW} \ + __XCONFIGFILE__ xorg.conf \ + __xconfigfile__ xorg.conf \ + __XCONFIGFILEMAN__ '__XCONFIGFILE__%(__filemansuffix__)' \ + __xorgversion__ ${XORGVERSION:C/ /%/gW} \ + __XSERVERNAME__ Xorg \ + __xservername__ Xorg +.endif + +_X11MANTRANSFORMCMD= ${TOOL_SED} -e 's/\\$$/\\ /' ${.IMPSRC} + +.if ${X11MANCPP} != "no" +_X11MANTRANSFORMCMD+= | ${CC} -E -undef -traditional - +. for __def__ __value__ in ${_X11MANTRANSFORM} +_X11MANTRANSFORMCMD+= -D${__def__}=${__value__:C/%/ /gW} +. endfor +.else +_X11MANTRANSFORMCMD+= | ${TOOL_SED} +. for __def__ __value__ in ${_X11MANTRANSFORM} +_X11MANTRANSFORMCMD+= -e s,${__def__},${__value__:C/%/ /gW},g +. endfor +.endif +_X11MANTRANSFORMCMD+= ${X11EXTRAMANDEFS} + +.man.1 .man.3 .man.4 .man.5 .man.7 .man.pre.1 .man.pre.4 .man.pre.5: + ${_MKTARGET_CREATE} + rm -f ${.TARGET} + ${_X11MANTRANSFORMCMD} | ${X11TOOL_UNXCOMM} > ${.TARGET} + +##### Pull in related .mk logic +.include diff --git a/share/mk/minix.gcc.mk b/share/mk/minix.gcc.mk index 38dce40e5..3d048841a 100644 --- a/share/mk/minix.gcc.mk +++ b/share/mk/minix.gcc.mk @@ -1,3 +1,10 @@ + +.if defined(MINIXDYNAMIC) && ${MINIXDYNAMIC} == "yes" +LDFLAGS += -dynamic +.else +LDFLAGS += -static +.endif + AFLAGS+=-D__ASSEMBLY__ CPPFLAGS+= -fno-builtin -Wall -Wno-sign-compare .if ${MACHINE_ARCH} == "i386" @@ -6,3 +13,9 @@ CPPFLAGS+= -march=i586 CPPFLAGS+= -march=armv7-a CPPFLAGS+= -D__minix .endif + +# LSC In the current state there is too much to be done +# Some package have been identified by directly adding NOGCCERROR +# To their Makefiles +NOGCCERROR:= yes +NOCLANGERROR:= yes diff --git a/share/mk/minix.service.mk b/share/mk/minix.service.mk index d9badbf57..d906f6697 100644 --- a/share/mk/minix.service.mk +++ b/share/mk/minix.service.mk @@ -1,6 +1,8 @@ # MINIX-specific servers/drivers options .include +CPPFLAGS+= -D__NBSD_LIBC + .if !empty(CC:M*gcc) LDADD+= -nodefaultlibs -lgcc -lsys -lgcc -lminc .elif !empty(CC:M*clang) diff --git a/share/mk/sys.mk b/share/mk/sys.mk index e94493577..7facd89fe 100644 --- a/share/mk/sys.mk +++ b/share/mk/sys.mk @@ -1,4 +1,4 @@ -# $NetBSD: sys.mk,v 1.99 2008/09/07 15:54:52 kent Exp $ +# $NetBSD: sys.mk,v 1.109 2012/06/22 20:32:35 abs Exp $ # @(#)sys.mk 8.2 (Berkeley) 3/21/94 unix?= We run MINIX. @@ -6,64 +6,74 @@ unix?= We run MINIX. # This variable should be used to differentiate Minix builds in Makefiles. __MINIX= yes +COMPILER_TYPE=gnu +NBSD_LIBC= yes + +.if defined(MKSMALL) && ${MKSMALL} == "yes" +DBG= -Os +CFLAGS+= -DNDEBUG +.endif + .SUFFIXES: .a .o .ln .s .S .c .cc .cpp .cxx .C .f .F .r .p .l .y .sh .LIBS: .a -### MINIX: see at bottom -#AR?= aal +AR?= ar ARFLAGS?= rl RANLIB?= ranlib AS?= as AFLAGS?= -COMPILE.s?= ${CC} ${AFLAGS} -c -LINK.s?= ${CC} ${AFLAGS} ${LDFLAGS} -#COMPILE.S?= ${CC} ${AFLAGS} ${CPPFLAGS} -c -traditional-cpp -COMPILE.S?= ${CC} ${AFLAGS} ${CPPFLAGS} -c -LINK.S?= ${CC} ${AFLAGS} ${CPPFLAGS} ${LDFLAGS} +COMPILE.s?= ${CC} ${AFLAGS} ${AFLAGS.${<:T}} -c +LINK.s?= ${CC} ${AFLAGS} ${AFLAGS.${<:T}} ${LDFLAGS} +_ASM_TRADITIONAL_CPP= -x assembler-with-cpp +COMPILE.S?= ${CC} ${AFLAGS} ${AFLAGS.${<:T}} ${CPPFLAGS} ${_ASM_TRADITIONAL_CPP} -c +LINK.S?= ${CC} ${AFLAGS} ${AFLAGS.${<:T}} ${CPPFLAGS} ${LDFLAGS} CC?= clang -.if ${MACHINE_ARCH} == "alpha" || \ - ${MACHINE_ARCH} == "arm" || \ - ${MACHINE_ARCH} == "x86_64" || \ - ${MACHINE_ARCH} == "armeb" || \ - ${MACHINE_ARCH} == "hppa" || \ - ${MACHINE_ARCH} == "i386" || \ - ${MACHINE_ARCH} == "m68k" || \ - ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb" || \ - ${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "mips64eb" || \ - ${MACHINE_ARCH} == "powerpc" || \ - ${MACHINE_ARCH} == "sparc" || \ - ${MACHINE_ARCH} == "sparc64" -#DBG?= -O2 -#MINIX: use -O for now -DBG?= -O -.elif ${MACHINE_ARCH} == "sh3el" || ${MACHINE_ARCH} == "sh3eb" + +.if ${MACHINE_ARCH} == "sh3el" || ${MACHINE_ARCH} == "sh3eb" # -O2 is too -falign-* zealous for low-memory sh3 machines DBG?= -Os -freorder-blocks +.elif ${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "m68000" +# see src/doc/HACKS for details +DBG?= -Os .elif ${MACHINE_ARCH} == "vax" DBG?= -O1 -fgcse -fstrength-reduce -fgcse-after-reload -.elif ${MACHINE_ARCH} == "m68000" -# see src/doc/HACKS for details -DBG?= -O1 .else +#MINIX: use -O for now +#DBG?= -O2 DBG?= -O -DBG?= .endif CFLAGS?= ${DBG} LDFLAGS?= COMPILE.c?= ${CC} ${CFLAGS} ${CPPFLAGS} -c LINK.c?= ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} +# C Type Format data is required for DTrace +# XXX TBD VERSION is not defined +CTFFLAGS ?= -L VERSION +CTFMFLAGS ?= -t -L VERSION + +.if defined(MKDTRACE) && ${MKDTRACE} != "no" +CTFCONVERT ?= ${TOOL_CTFCONVERT} +CTFMERGE ?= ${TOOL_CTFMERGE} +.if defined(CFLAGS) && (${CFLAGS:M-g} != "") +CTFFLAGS += -g +CTFMFLAGS += -g +.else +CFLAGS += -g +.endif +.endif + CXX?= c++ CXXFLAGS?= ${CFLAGS:N-Wno-traditional:N-Wstrict-prototypes:N-Wmissing-prototypes:N-Wno-pointer-sign:N-ffreestanding:N-std=gnu99} __ALLSRC1= ${empty(DESTDIR):?${.ALLSRC}:${.ALLSRC:S|^${DESTDIR}|^destdir|}} __ALLSRC2= ${empty(MAKEOBJDIR):?${__ALLSRC1}:${__ALLSRC1:S|^${MAKEOBJDIR}|^obj|}} __ALLSRC3= ${empty(NETBSDSRCDIR):?${__ALLSRC2}:${__ALLSRC2:S|^${NETBSDSRCDIR}|^src|}} - -_CXXSEED?= ${BUILDSEED:D-frandom-seed=${BUILDSEED:Q}/${__ALLSRC3:O:Q}/${.TARGET:Q}} +__BUILDSEED= ${BUILDSEED}/${__ALLSRC3:O}/${.TARGET} +_CXXSEED?= ${BUILDSEED:D-frandom-seed=${__BUILDSEED:hash}} COMPILE.cc?= ${CXX} ${_CXXSEED} ${CXXFLAGS} ${CPPFLAGS} -c LINK.cc?= ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS} @@ -121,8 +131,14 @@ YACC.y?= ${YACC} ${YFLAGS} # C .c: ${LINK.c} -o ${.TARGET} ${.IMPSRC} ${LDLIBS} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .c.o: ${COMPILE.c} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .c.a: ${COMPILE.c} ${.IMPSRC} ${AR} ${ARFLAGS} ${.TARGET} ${.PREFIX}.o @@ -154,8 +170,14 @@ YACC.y?= ${YACC} ${YFLAGS} .F: ${LINK.F} -o ${.TARGET} ${.IMPSRC} ${LDLIBS} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .F.o: ${COMPILE.F} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .F.a: ${COMPILE.F} ${.IMPSRC} ${AR} ${ARFLAGS} ${.TARGET} ${.PREFIX}.o @@ -173,8 +195,14 @@ YACC.y?= ${YACC} ${YFLAGS} # Pascal .p: ${LINK.p} -o ${.TARGET} ${.IMPSRC} ${LDLIBS} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .p.o: ${COMPILE.p} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .p.a: ${COMPILE.p} ${.IMPSRC} ${AR} ${ARFLAGS} ${.TARGET} ${.PREFIX}.o @@ -183,16 +211,28 @@ YACC.y?= ${YACC} ${YFLAGS} # Assembly .s: ${LINK.s} -o ${.TARGET} ${.IMPSRC} ${LDLIBS} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .s.o: ${COMPILE.s} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .s.a: ${COMPILE.s} ${.IMPSRC} ${AR} ${ARFLAGS} ${.TARGET} ${.PREFIX}.o rm -f ${.PREFIX}.o .S: ${LINK.S} -o ${.TARGET} ${.IMPSRC} ${LDLIBS} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .S.o: ${COMPILE.S} ${.IMPSRC} +.if defined(CTFCONVERT) + ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} +.endif .S.a: ${COMPILE.S} ${.IMPSRC} ${AR} ${ARFLAGS} ${.TARGET} ${.PREFIX}.o @@ -225,18 +265,7 @@ YACC.y?= ${YACC} ${YFLAGS} rm -f y.tab.c # Shell -# .sh: -# rm -f ${.TARGET} -# cp ${.IMPSRC} ${.TARGET} -# chmod a+x ${.TARGET} - -# MINIX - -COMPILER_TYPE=gnu -AR?= ar -NBSD_LIBC= yes - -.if defined(MKSMALL) && ${MKSMALL} == "yes" -DBG= -Os -CFLAGS+= -DNDEBUG -.endif +.sh: + rm -f ${.TARGET} + cp ${.IMPSRC} ${.TARGET} + chmod a+x ${.TARGET} diff --git a/sys/arch/i386/stand/boot/Makefile.boot b/sys/arch/i386/stand/boot/Makefile.boot index 4b98817fc..e3abdb857 100644 --- a/sys/arch/i386/stand/boot/Makefile.boot +++ b/sys/arch/i386/stand/boot/Makefile.boot @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.boot,v 1.56 2011/12/25 06:09:09 tsutsui Exp $ +# $NetBSD: Makefile.boot,v 1.58 2012/08/10 12:18:15 joerg Exp $ S= ${.CURDIR}/../../../../.. @@ -7,7 +7,6 @@ PROG?= boot NEWVERSWHAT?= "BIOS Boot" VERSIONFILE?= ${.CURDIR}/../version -ACTIVE_CC?= ${CC} AFLAGS.biosboot.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} SOURCES?= biosboot.S boot2.c conf.c devopen.c exec.c @@ -34,13 +33,14 @@ BINMODE=444 .PATH: ${.CURDIR}/.. ${.CURDIR}/../../lib +# MINIX LSC seems to be still needed +#LDFLAGS+= -nostdlib -Wl,-N -Wl,-e,boot_start LDFLAGS+= -nostdlib -Wl,-N -Wl,-e,boot_start -L${DESTDIR}/${LIBDIR} CPPFLAGS+= -I ${.CURDIR}/.. -I ${.CURDIR}/../../lib -I ${S}/lib/libsa CPPFLAGS+= -I ${.OBJDIR} # Make sure we override any optimization options specified by the user COPTS= -Os -.if defined(HAVE_GCC) .if ${MACHINE_ARCH} == "x86_64" LDFLAGS+= -Wl,-m,elf_i386 AFLAGS+= -m32 @@ -50,7 +50,6 @@ KERNMISCMAKEFLAGS="LIBKERN_ARCH=i386" .else CPUFLAGS= -march=i386 -mtune=i386 .endif -.endif CFLAGS+= -mno-sse -mno-sse2 -mno-sse3 @@ -92,9 +91,7 @@ SAMISCCPPFLAGS+= -DLIBSA_PRINTF_LONGLONG_SUPPORT SAMISCMAKEFLAGS+= SA_USE_CREAD=yes # Read compressed kernels SAMISCMAKEFLAGS+= SA_INCLUDE_NET=no # Netboot via TFTP, NFS -.if defined(HAVE_GCC) || defined(HAVE_PCC) CPPFLAGS+= -Wno-pointer-sign -.endif # CPPFLAGS+= -DBOOTXX_RAID1_SUPPORT @@ -138,7 +135,6 @@ LIBKERN= # use MINIX minc Z_AS= library .include "${S}/lib/libz/Makefile.inc" LIBZ= ${ZLIB} -## XXX ??? LIBZ is set up as usual, we use the regular one cleandir distclean: .WAIT cleanlibdir @@ -157,6 +153,7 @@ vers.c: ${VERSIONFILE} ${SOURCES} ${LIBLIST} ${.CURDIR}/../Makefile.boot # Anything that calls 'real_to_prot' must have a %pc < 0x10000. # We link the program, find the callers (all in libi386), then # explicitly pull in the required objects before any other library code. +# MINIX (LSC adding LDADD still needed?) ${PROG}: ${OBJS} ${LIBLIST} ${.CURDIR}/../Makefile.boot ${_MKTARGET_LINK} bb="$$( ${CC} -o ${PROG}.syms ${LDFLAGS} -Wl,-Ttext,0 -Wl,-cref \ diff --git a/sys/arch/i386/stand/boot/biosboot/Makefile b/sys/arch/i386/stand/boot/biosboot/Makefile index 7d697f331..2239257ff 100644 --- a/sys/arch/i386/stand/boot/biosboot/Makefile +++ b/sys/arch/i386/stand/boot/biosboot/Makefile @@ -1,5 +1,7 @@ # $NetBSD: Makefile,v 1.3 2005/12/11 12:17:48 christos Exp $ +# MINIX (LSC this still needed?) +# Adding cleaning of specific target? -D_MINIX is not defined at top level ? PROG= boot_monitor CLEANFILES= lib diff --git a/sys/arch/i386/stand/bootxx/Makefile.bootxx b/sys/arch/i386/stand/bootxx/Makefile.bootxx index 338fc3aca..269c9b55e 100644 --- a/sys/arch/i386/stand/bootxx/Makefile.bootxx +++ b/sys/arch/i386/stand/bootxx/Makefile.bootxx @@ -1,8 +1,7 @@ -# $NetBSD: Makefile.bootxx,v 1.42 2011/06/20 06:52:38 mrg Exp $ +# $NetBSD: Makefile.bootxx,v 1.43 2012/08/10 12:18:15 joerg Exp $ S= ${.CURDIR}/../../../../.. -ACTIVE_CC?= ${CC} AFLAGS.bootxx.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} AFLAGS.label.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} AFLAGS.pbr.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} @@ -64,7 +63,6 @@ CPPFLAGS+= -Os CPPFLAGS+= -DNO_LBA_CHECK -.if defined(HAVE_GCC) .if ${MACHINE_ARCH} == "x86_64" LDFLAGS+= -Wl,-m,elf_i386 AFLAGS+= -m32 @@ -75,7 +73,6 @@ KERNMISCMAKEFLAGS="LIBKERN_ARCH=i386" CPPFLAGS+= -DEPIA_HACK CPUFLAGS= -march=i386 -mtune=i386 .endif -.endif CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes CPPFLAGS+= -nostdinc -D_STANDALONE diff --git a/sys/arch/i386/stand/cdboot/Makefile b/sys/arch/i386/stand/cdboot/Makefile index c175af059..8e164cdee 100644 --- a/sys/arch/i386/stand/cdboot/Makefile +++ b/sys/arch/i386/stand/cdboot/Makefile @@ -1,13 +1,13 @@ # $NetBSD: Makefile,v 1.12 2011/05/20 22:29:55 joerg Exp $ +S= ${.CURDIR}/../../../.. + AFLAGS.cdboot.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} NOMAN= # defined .include STRIPFLAG= # nothing -TOOL_SED?= sed -NM?= nm LIBCRT0= # nothing LIBCRTBEGIN= # nothing @@ -26,7 +26,8 @@ BINMODE= 444 .PATH: ${.CURDIR}/.. LDFLAGS+= -nostdlib -Wl,-e,start -CPPFLAGS+= -I. -I${.CURDIR}/../lib # -I${S} +#CPPFLAGS+= -I. -I${.CURDIR}/../lib -I${S} +CPPFLAGS+= -I. -I${.CURDIR}/../lib CPPFLAGS+= -DPRIMARY_LOAD_ADDRESS=${PRIMARY_LOAD_ADDRESS} CPPFLAGS+= -DSECONDARY_LOAD_ADDRESS=${SECONDARY_LOAD_ADDRESS} CPPFLAGS+= -DDISABLE_KEYPRESS @@ -39,11 +40,11 @@ AFLAGS+= -m32 .if defined(_NetBSD_) # NetBSD can be compiled from a foreign host, MINIX do not. So commented out. # Make sys/ a local thing for benefit of cross-compilers -S= ${.CURDIR}/../../../../.. CPPFLAGS+= -I${S} # And same for machine/; need a bit more work because of symlink BUILDSYMLINKS+= $S/arch/i386/include machine \ $S/arch/x86/include x86 + DPSRCS+= machine x86 .endif diff --git a/sys/arch/i386/stand/lib/Makefile b/sys/arch/i386/stand/lib/Makefile index a80b5efb8..871771e66 100644 --- a/sys/arch/i386/stand/lib/Makefile +++ b/sys/arch/i386/stand/lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2011/06/22 02:49:44 mrg Exp $ +# $NetBSD: Makefile,v 1.36 2012/08/10 12:18:15 joerg Exp $ S?= ${.CURDIR}/../../../.. @@ -11,7 +11,6 @@ I386_INCLUDE_DOS?= no I386_INCLUDE_BUS?= no I386_INCLUDE_PS2?= yes -ACTIVE_CC?= ${CC} AFLAGS.biosdelay.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} AFLAGS.biosgetrtc.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} AFLAGS.biosgetsystime.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} @@ -76,6 +75,6 @@ lib${LIB}.o:: ${OBJS} @${LD} -r -o lib${LIB}.o `lorder ${OBJS} | tsort` # XXX -.if ${HAVE_GCC} == 45 +.if ${HAVE_GCC:U} == 45 COPTS.biosdisk.c+= -fno-strict-aliasing .endif diff --git a/sys/arch/i386/stand/lib/Makefile.inc b/sys/arch/i386/stand/lib/Makefile.inc index 754a38525..73cefc172 100644 --- a/sys/arch/i386/stand/lib/Makefile.inc +++ b/sys/arch/i386/stand/lib/Makefile.inc @@ -32,6 +32,9 @@ I386MAKE= \ I386MISCCPPFLAGS=${I386MISCCPPFLAGS:Q} \ ${I386MISCMAKEFLAGS} +# LSC Fro now +NOGCCERROR:= yes + ${I386LIB}: .NOTMAIN __always_make_i386lib @echo making sure the i386 library is up to date... @${I386MAKE} libi386.a diff --git a/sys/arch/i386/stand/mbr/Makefile.mbr b/sys/arch/i386/stand/mbr/Makefile.mbr index 2fe70dab2..141545b64 100644 --- a/sys/arch/i386/stand/mbr/Makefile.mbr +++ b/sys/arch/i386/stand/mbr/Makefile.mbr @@ -1,4 +1,6 @@ -# $NetBSD: Makefile.mbr,v 1.17 2009/11/20 17:28:19 dsl Exp $ +# $NetBSD: Makefile.mbr,v 1.18 2011/05/20 15:05:02 joerg Exp $ + +S= ${.CURDIR}/../../../../.. NOMAN= # defined @@ -14,8 +16,6 @@ PIE_AFLAGS= .include STRIPFLAG= # override -TOOL_SED?= sed -NM?= nm SRCS?= mbr.S @@ -24,10 +24,10 @@ BINMODE= 444 .PATH: ${.CURDIR}/.. -LOADADDR= 0x8800 - LDFLAGS+= -nostdlib -Wl,-e,start -CPPFLAGS+= -I. -I${.CURDIR}/../../lib -DLOADADDR=${LOADADDR} +# MINIX LSC DO we need to remove the includes?? +CPPFLAGS+= -I. -I${.CURDIR}/../../lib #-I${S} +CPPFLAGS+= -DLOADADDR=${LOADADDR} .if ${MACHINE_ARCH} == "x86_64" LDFLAGS+= -Wl,-m,elf_i386 @@ -47,6 +47,11 @@ AFLAGS+= "-Wa,--divide" CLEANFILES+= ${PROG}.tmp +LOADADDR= 0x8800 + +AFLAGS.mbr.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} +AFLAGS.gpt.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} + ${PROG}: ${OBJS} ${_MKTARGET_LINK} ${CC} -o ${PROG}.tmp ${LDFLAGS} -Wl,-Ttext,${LOADADDR} ${OBJS} diff --git a/sys/arch/i386/stand/mbr/gptmbr/Makefile b/sys/arch/i386/stand/mbr/gptmbr/Makefile index 5839cbcc9..7273c96f0 100644 --- a/sys/arch/i386/stand/mbr/gptmbr/Makefile +++ b/sys/arch/i386/stand/mbr/gptmbr/Makefile @@ -4,7 +4,6 @@ PROG= gptmbr.bin SRCS= gptmbr.S AFLAGS.gptmbr.S= ${${ACTIVE_CC} == "clang":?-no-integrated-as:} -AFLAGS+= "-Wa,--divide" .include <../Makefile.mbr> diff --git a/sys/arch/i386/stand/mbr/mbr_com0_9600/Makefile b/sys/arch/i386/stand/mbr/mbr_com0_9600/Makefile index 1007c8d91..bb3a8a618 100644 --- a/sys/arch/i386/stand/mbr/mbr_com0_9600/Makefile +++ b/sys/arch/i386/stand/mbr/mbr_com0_9600/Makefile @@ -5,6 +5,4 @@ AFLAGS+= -DBOOTSEL -DBOOT_EXTENDED -DCOM_PORT=0 -DCOM_BAUD=9600 AFLAGS+= -DTERSE_ERROR -DNO_CHS AFLAGS+= "-DBOOTSEL_FLAGS=MBR_BS_ACTIVE|MBR_BS_EXTLBA|MBR_BS_ASCII" -AFLAGS+= "-Wa,--divide" - .include <../Makefile.mbr> diff --git a/sys/lib/libsa/Makefile b/sys/lib/libsa/Makefile index 2d7b7cbd5..d3f661f54 100644 --- a/sys/lib/libsa/Makefile +++ b/sys/lib/libsa/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.76 2011/12/25 06:09:08 tsutsui Exp $ +# $NetBSD: Makefile,v 1.78 2012/08/10 16:05:27 joerg Exp $ LIB= sa NOPIC= # defined @@ -41,7 +41,10 @@ SRCS+= exec.c .if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH} != "x86_64" SRCS+= memcmp.c memcpy.c memmove.c memset.c strchr.c .endif -##SRCS+= bcopy.c bzero.c # Remove me eventually. + +.ifndef __MINIX +SRCS+= bcopy.c bzero.c # Remove me eventually. +.endif # io routines SRCS+= closeall.c dev.c disklabel.c dkcksum.c ioctl.c nullfs.c stat.c fstat.c @@ -55,12 +58,15 @@ SRCS+= ls.c .endif .if (${SA_USE_LOADFILE} == "yes") -#SRCS+= loadfile.c loadfile_ecoff.c loadfile_elf32.c lookup_elf32.c \ -# loadfile_elf64.c lookup_elf64.c -SRCS+= loadfile.c loadfile_elf32.c loadfile_elf64.c -.if (${MACHINE_CPU} != "mips") && !defined(__MINIX) +.ifndef __MINIX +SRCS+= loadfile.c loadfile_ecoff.c loadfile_elf32.c lookup_elf32.c \ + loadfile_elf64.c lookup_elf64.c +.if (${MACHINE_CPU} != "mips") SRCS+= loadfile_aout.c .endif +.else +SRCS+= loadfile.c loadfile_elf32.c loadfile_elf64.c +.endif .endif .if (${SA_INCLUDE_NET} == "yes") @@ -83,6 +89,9 @@ SRCS+= ustarfs.c SRCS+= dosfs.c SRCS+= ext2fs.c SRCS+= minixfs3.c +.ifndef __MINIX_w +SRCS+= fnmatch.c +.endif # for historic compatibility ufs == ffsv1 SRCS+= ufs.c @@ -105,9 +114,7 @@ lib${LIB}.o:: ${OBJS} @rm -f lib${LIB}.o @${LD} -r -o lib${LIB}.o `lorder ${OBJS} | tsort` -.if defined(HAVE_GCC) || defined(HAVE_PCC) CPPFLAGS+= -Wno-pointer-sign -.endif .if defined(HAVE_GCC) && ${HAVE_GCC} >= 45 && ${MACHINE_ARCH} == "vax" COPTS.bootp.c+= -O0 diff --git a/sys/lib/libz/Makefile.inc b/sys/lib/libz/Makefile.inc index 12e010838..e6ab5eb82 100644 --- a/sys/lib/libz/Makefile.inc +++ b/sys/lib/libz/Makefile.inc @@ -19,13 +19,17 @@ # Default values: ZDST?= ${.OBJDIR}/lib/z Z_AS?= library -ZDOTDIR?= ../../../../../. .ifndef __MINIX +ZDOTDIR?= ../../. + ZDIR= ${S:S@^.@${ZDOTDIR}@:Q}/lib/libz .else +ZDOTDIR?= ../../../../../. + ZDIR= ${.CURDIR}/${ZDOTDIR}/lib/libz .endif + .if (${Z_AS} == "obj") ZLIB= ${ZDST}/libz.o ZLIB_PROF= ${ZDST}/libz.po diff --git a/tools/Makefile b/tools/Makefile index 27bafe67e..f514905ef 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -2,7 +2,58 @@ .include -HAVE_GCC= 45 +.if defined(HAVE_GCC) || defined(HAVE_PCC) +TOOLCHAIN_BITS= gmake .WAIT +.endif + +.if ${TOOLCHAIN_MISSING} == "no" +.if defined(HAVE_GCC) +.if ${HAVE_GCC} >= 45 +TOOLCHAIN_BITS+= gmp .WAIT +TOOLCHAIN_BITS+= mpfr .WAIT +TOOLCHAIN_BITS+= mpc .WAIT +.endif +.endif +.endif + +.if ${TOOLCHAIN_MISSING} == "no" +TOOLCHAIN_BITS+= binutils .WAIT +.endif + +.if defined(HAVE_GCC) +.if ${TOOLCHAIN_MISSING} == "no" +TOOLCHAIN_BITS+= gcc +. if ${MKCROSSGDB:Uno} != "no" +TOOLCHAIN_BITS+= gdb +. endif +TOOLCHAIN_BITS+= .WAIT +# XXX Eventually, we want to be able to build dbsym and mdsetimage +# XXX if EXTERNAL_TOOLCHAIN is set. +.endif +.endif + +.if defined(HAVE_PCC) +.if ${TOOLCHAIN_MISSING} == "no" +TOOLCHAIN_BITS+= pcc +.endif +.endif + +.ifndef __MINIX +TOOLCHAIN_BITS+= dbsym mdsetimage +.endif + +DTRACE_BITS= +.if ${MKDTRACE} != "no" +DTRACE_BITS+= .WAIT libelf +DTRACE_BITS+= .WAIT libdwarf +DTRACE_BITS+= .WAIT libctf +DTRACE_BITS+= .WAIT ctfconvert ctfmerge +.endif + +LINT_BITS= +.if ${MKLINT} != "no" +LINT_BITS= lint lint2 +.endif # Dependencies in SUBDIR below ordered to maximize parallel ability. SUBDIR= host-mkdep .WAIT compat .WAIT \ @@ -16,10 +67,97 @@ SUBDIR= host-mkdep .WAIT compat .WAIT \ .WAIT tic \ .WAIT lex \ .WAIT pax \ - .WAIT gmake .WAIT gmp .WAIT mpfr .WAIT mpc .WAIT binutils .WAIT gcc \ - cat file pwd_mkdb stat zic \ + .WAIT ${TOOLCHAIN_BITS} \ + cat cksum \ + file \ + .WAIT \ + pwd_mkdb stat zic +.if ${MKLLVM} != "no" +# .WAIT between llvm-tblgen and llvm-clang-tblgen ensures install +# rules works correctly +SUBDIR+= \ + llvm .WAIT \ + llvm-lib/libLLVMSupport llvm-lib/libLLVMTableGen .WAIT \ + llvm-tblgen .WAIT llvm-clang-tblgen .WAIT \ + llvm-include .WAIT \ + llvm-lib .WAIT \ + llvm-clang +.endif +.if ${MKMAN} != "no" || ${MKDOC} != "no" || ${MKHTML} != "no" +. if ${MKGROFF} != "no" +SUBDIR+= groff +. endif +SUBDIR+= mandoc +.endif + +.if ${MKMAINTAINERTOOLS:Uno} != "no" +SUBDIR+= autoconf .WAIT gettext +.endif + +.if ${USE_PIGZGZIP} != "no" +SUBDIR+= pigz +.endif + +.if ${MACHINE} == "hp700" +SUBDIR+= hp700-mkboot +.endif + +.if ${MACHINE} == "ibmnws" +SUBDIR+= ibmnws-ncdcs +.endif + +.if ${MACHINE} == "macppc" +SUBDIR+= macppc-fixcoff +.endif + +.if (${MACHINE} == "prep" || ${MACHINE} == "rs6000" || ${MACHINE} == "bebox") +SUBDIR+= powerpc-mkbootimage +.endif + +.if ${MACHINE_ARCH} == "m68k" +SUBDIR+= m68k-elf2aout +.endif + +.if (${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb" || \ + ${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "mips64eb") +SUBDIR+= mips-elf2ecoff +.endif + +.if (${MACHINE} == "sgimips") +SUBDIR+= sgivol +.endif + +.if ${MACHINE} == "acorn32" +SUBDIR+= sparkcrc +.endif + +.if (${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64") +SUBDIR+= fgen +.endif + +.if ${MACHINE} == "amiga" +SUBDIR+= amiga-elf2bb +SUBDIR+= amiga-txlt +.endif + +.if ${MACHINE} == "hp300" +SUBDIR+= hp300-mkboot +.endif + +.if ${MACHINE} == "evbarm" || ${MACHINE} == "evbmips" || \ + ${MACHINE} == "evbppc" || ${MACHINE} == "sandpoint" +SUBDIR+= mkubootimage +.endif + +check_MKTOOLS: .PHONY .NOTMAIN +.if ${MKTOOLS:Uyes} == "no" + @echo '*** WARNING: "MKTOOLS" is set to "no"; this will prevent building and' + @echo '*** updating your host toolchain. This should be used only as a' + @echo '*** temporary workaround for toolchain problems, as it will result' + @echo '*** in version skew and build errors over time!' +.endif .if ${MKTOOLS:Uyes} == "no" || ${USETOOLS} != "yes" # { realall realdepend install: check_MKTOOLS diff --git a/tools/Makefile.gnuhost b/tools/Makefile.gnuhost index 4c58c3fc6..4b942b606 100644 --- a/tools/Makefile.gnuhost +++ b/tools/Makefile.gnuhost @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.gnuhost,v 1.37 2012/01/21 22:31:15 christos Exp $ +# $NetBSD: Makefile.gnuhost,v 1.39 2012/06/19 21:48:33 hans Exp $ # # Rules used when building a GNU host package. Expects MODULE to be set. # @@ -34,14 +34,19 @@ FIND_ARGS+= \! \( -type d \( \ -name 'nbsd.mt' -o \ -name 'tests*' \ \) -prune \) +_GNU_GET_SCRIPTS:= \ + external/gpl3/gcc/fetch.sh \ + external/gpl3/binutils/fetch.sh \ + gnu/dist/fetch.sh \ + external/lgpl2/mpc/fetch.sh \ + external/lgpl3/gmp/fetch.sh \ + external/lgpl3/mpfr/fetch.sh - -_GNU_GET_SRC!= ${HOST_SH} ${.CURDIR}/../../external/gpl3/gcc/fetch.sh && \ - ${HOST_SH} ${.CURDIR}/../../external/gpl3/binutils/fetch.sh && \ - ${HOST_SH} ${.CURDIR}/../../gnu/dist/fetch.sh && \ - ${HOST_SH} ${.CURDIR}/../../external/lgpl2/mpc/fetch.sh && \ - ${HOST_SH} ${.CURDIR}/../../external/lgpl3/gmp/fetch.sh && \ - ${HOST_SH} ${.CURDIR}/../../external/lgpl3/mpfr/fetch.sh +_gnu_get_src: ${_GNU_GET_SCRIPTS} +.for name in ${_GNU_GET_SCRIPTS} +${name}: + ${HOST_SH} ${.CURDIR}/../../${name} +.endfor # Do this "find" only if actually building something. .if (${USETOOLS} == "yes") && empty(.MAKEFLAGS:M-V*) && \ @@ -105,17 +110,17 @@ MAKE_ARGS+= BISON=true DESTDIR= INSTALL=${HOST_INSTALL_FILE:Q} ALL_TARGET?= all INSTALL_TARGET?=install -BUILD_PLATFORM!= uname -srm | tr ' ' '-' +BUILD_PLATFORM!= uname -srm | tr ' ()' '-' CONFIGURE_PLATFORM!= if [ -s .configure_done ]; then cat .configure_done; else echo none; fi .if "${BUILD_PLATFORM}" != "${CONFIGURE_PLATFORM}" configure_cleanup: @mkdir build 2>/dev/null || true @(echo "Cleaning stale cache files ${BUILD_PLATFORM} != ${CONFIGURE_PLATFORM}") - @(cd build && find . -name config.cache -print0 | xargs -0 rm -f) + @(cd build && find . -name config.cache | xargs rm -f) configure_cleanup=configure_cleanup .endif -.configure_done: ${_GNU_CFGSRC} ${.CURDIR}/Makefile ${configure_cleanup} +.configure_done: _gnu_get_src .WAIT ${_GNU_CFGSRC} ${.CURDIR}/Makefile ${configure_cleanup} @mkdir build 2>/dev/null || true @(cd build && ${CONFIGURE_ENV} ${HOST_SH} ${GNUHOSTDIST}/configure ${CONFIGURE_ARGS}) @echo ${BUILD_PLATFORM} > $@ diff --git a/tools/Makefile.host b/tools/Makefile.host index 9d90dc222..ede0a7575 100644 --- a/tools/Makefile.host +++ b/tools/Makefile.host @@ -11,6 +11,10 @@ COMPATOBJ!= cd ${.CURDIR}/../compat && ${PRINTOBJDIR} .-include "${COMPATOBJ}/defs.mk" .endif +.if ${HOST_OSTYPE:C/\-.*//} == "Minix" +LDADD+= -lcompat_minix +.endif + # Resolve pathnames in variables. _RESOLVE_VARS= CFLAGS CPPFLAGS DPADD HOST_CPPFLAGS LDADD .for var in ${_RESOLVE_VARS} diff --git a/tools/Makefile.nbincludes b/tools/Makefile.nbincludes new file mode 100644 index 000000000..7cded023c --- /dev/null +++ b/tools/Makefile.nbincludes @@ -0,0 +1,53 @@ +# $NetBSD: Makefile.nbincludes,v 1.3 2012/08/05 06:20:14 christos Exp $ + +# NOxxx definitions are copied from Makefile.host, and are +# required before .include . The include of bsd.own.mk +# itself is required to get definitions of TOOL_* variables used in +# "!=" variable assignments (which are performed early). +# +NOINFO= # defined +NOLINT= # defined +NOMAN= # defined + +.include + +_ARCHDIR= ${.CURDIR}/../../sys/arch +_INCDIR= ${.CURDIR}/../../include +_SYSDIR= ${.CURDIR}/../../sys/sys +_UFSDIR= ${.CURDIR}/../../sys/ufs +_SUBDIR!= cd ${_ARCHDIR} && ${MAKE} -V SUBDIR + +.if make(depend) || make(all) || make(dependall) || make(install) +# There's no need to run these commands for "make cleandir" or "make obj", +# and TOOL_SED will not yet have been built. +_UFS_INCS!= cd ${_UFSDIR} && find ffs ufs -name '*.h' +_ARCH_INCS!= ${TOOL_SED} -e 's/^\#.*//' ${.CURDIR}/../headerlist +.endif + +_ARCH_INCS+= ews4800mips/include/pdinfo.h ews4800mips/include/vtoc.h + +_INCS= disktab.h +_SYSINCS= bootblock.h \ + disklabel.h disklabel_acorn.h disklabel_gpt.h disklabel_rdb.h \ + dkbad.h \ + exec_elf.h + +HOST_CPPFLAGS+= -I${TOOLDIR}/include -I${TOOLDIR}/include/nbinclude + +beforedepend: + ${HOST_INSTALL_DIR} ${TOOLDIR}/include/nbinclude + ${HOST_INSTALL_DIR} ${TOOLDIR}/include/nbinclude/sys + ${HOST_INSTALL_DIR} ${TOOLDIR}/include/nbinclude/ufs +.if !defined(__MINIX) + cd ${_ARCHDIR} && \ + ${TOOL_PAX} -s /include\\/// -rw ${_ARCH_INCS} \ + ${TOOLDIR}/include/nbinclude + cd ${_INCDIR} && \ + ${TOOL_PAX} -rw ${_INCS} ${TOOLDIR}/include/nbinclude + cd ${_SYSDIR} && \ + ${TOOL_PAX} -rw ${_SYSINCS} ${TOOLDIR}/include/nbinclude/sys + cd ${_UFSDIR} && \ + ${TOOL_PAX} -rw ${_UFS_INCS} ${TOOLDIR}/include/nbinclude/ufs +.endif + cd ${TOOLDIR}/include/nbinclude && rm -f machine && \ + ${HOST_INSTALL_SYMLINK} ${MACHINE} machine diff --git a/tools/binutils/Makefile b/tools/binutils/Makefile index 3b204b566..7c87b0c2f 100644 --- a/tools/binutils/Makefile +++ b/tools/binutils/Makefile @@ -11,10 +11,12 @@ BRANDING?= \ --with-bugurl="http://www.NetBSD.org/support/send-pr.html" \ --with-lib-path="=/usr/lib" --with-sysroot +# LSC FIXME: We are now using the triple i386-elf-minix instead of +# elf32-i386-minix which is the correct one for us... CONFIGURE_ARGS= --target=${MACHINE_GNU_PLATFORM} --disable-nls \ + --target=${MACHINE_ARCH}-elf-minix \ --program-transform-name="s,^,${MACHINE_GNU_PLATFORM}-," \ --disable-werror \ - --target=i386-elf-minix \ ${BRANDING} MAKE_ARGS= MACHINE= MAKEINFO=${TOOL_MAKEINFO:Q} diff --git a/tools/compat/Makefile b/tools/compat/Makefile index 2e2635eb4..bfe8c6482 100644 --- a/tools/compat/Makefile +++ b/tools/compat/Makefile @@ -2,6 +2,24 @@ HOSTLIB= nbcompat +.ifndef __MINIX +SRCS= atoll.c basename.c cdbr.c cdbw.c dirname.c \ + fgetln.c flock.c fparseln.c fpurge.c \ + getcap.c getline.c getmode.c getopt_long.c gettemp.c \ + heapsort.c \ + issetugid.c lchflags.c lchmod.c lchown.c libyywrap.c \ + md2.c md2hl.c md4c.c md4hl.c md5c.c md5hl.c \ + mi_vector_hash.c mkdtemp.c \ + mkstemp.c pread.c putc_unlocked.c pwcache.c pwrite.c \ + pw_scan.c \ + raise_default_signal.c rmd160.c rmd160hl.c \ + setenv.c setgroupent.c \ + setpassent.c setprogname.c sha1.c sha1hl.c sha2.c \ + sha256hl.c sha384hl.c sha512hl.c snprintf.c stat_flags.c \ + strlcat.c strlcpy.c strmode.c strndup.c strsep.c strsuftoll.c \ + strtoll.c unvis.c vis.c err.c errx.c verr.c verrx.c \ + vwarn.c vwarnx.c warn.c warnx.c fts.c glob.c efun.c +.else SRCS= atoll.c basename.c dirname.c fgetln.c flock.c fparseln.c \ fpurge.c getline.c getmode.c getopt_long.c gettemp.c \ heapsort.c \ @@ -17,6 +35,7 @@ SRCS= atoll.c basename.c dirname.c fgetln.c flock.c fparseln.c \ strlcat.c strlcpy.c strmode.c strndup.c strsep.c strsuftoll.c \ strtoll.c unvis.c vis.c err.c errx.c verr.c verrx.c \ vwarn.c vwarnx.c warn.c warnx.c fts.c glob.c efun.c +.endif BUILD_OSTYPE!= uname -s @@ -31,7 +50,8 @@ CPPFLAGS+= -no-cpp-precomp CPPFLAGS+= -I. -I./include -I${.CURDIR} -I${.CURDIR}/sys \ -DHAVE_NBTOOL_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -.PATH: ${.CURDIR}/../../lib/libc/gen \ +.PATH: ${.CURDIR}/../../lib/libc/cdb \ + ${.CURDIR}/../../lib/libc/gen \ ${.CURDIR}/../../lib/libc/hash \ ${.CURDIR}/../../lib/libc/hash/md2 \ ${.CURDIR}/../../lib/libc/hash/md5 \ diff --git a/tools/compat/compat_defs.h b/tools/compat/compat_defs.h index 1968a36d6..4d4843ab3 100644 --- a/tools/compat/compat_defs.h +++ b/tools/compat/compat_defs.h @@ -1,4 +1,4 @@ -/* $NetBSD: compat_defs.h,v 1.83 2012/01/21 20:05:27 tsutsui Exp $ */ +/* $NetBSD: compat_defs.h,v 1.86 2012/06/04 10:18:01 joerg Exp $ */ #ifndef __NETBSD_COMPAT_DEFS_H__ #define __NETBSD_COMPAT_DEFS_H__ @@ -18,7 +18,7 @@ /* So _NETBSD_SOURCE doesn't end up defined. Define enough to pull in standard defs. Other platforms may need similiar defines. */ -#ifdef __NetBSD__ +#if defined(__NetBSD__) || defined(__minix) #define _ISOC99_SOURCE #define _POSIX_SOURCE 1 #define _POSIX_C_SOURCE 200112L @@ -72,6 +72,11 @@ #endif #define __UNCONST(a) ((void *)(unsigned long)(const void *)(a)) +#undef __predict_false +#define __predict_false(x) (x) +#undef __predict_true +#define __predict_true(x) (x) + /* We don't include here, so that "compat_pwd.h" works. */ struct passwd; @@ -214,7 +219,7 @@ char *dirname(char *); #else /*XXX: Very hacky but no other way to bring this into scope w/o defining _NETBSD_SOURCE which we're avoiding. */ -#ifdef __NetBSD__ +#if defined(__NetBSD__) || defined(__minix) struct _dirdesc { int dd_fd; /* file descriptor associated with directory */ long dd_loc; /* offset in current buffer */ @@ -255,7 +260,7 @@ int easprintf(char **, const char *, ...); int evasprintf(char **, const char *, va_list); #endif -#if !HAVE_FGETLN || defined(__NetBSD__) +#if !HAVE_FGETLN || defined(__NetBSD__) || defined(__minix) char *fgetln(FILE *, size_t *); #endif @@ -267,7 +272,7 @@ char *fgetln(FILE *, size_t *); int flock(int, int); #endif -#if !HAVE_FPARSELN || BROKEN_FPARSELN || defined(__NetBSD__) +#if !HAVE_FPARSELN || BROKEN_FPARSELN || defined(__NetBSD__) || defined(__minix) # define FPARSELN_UNESCESC 0x01 # define FPARSELN_UNESCCONT 0x02 # define FPARSELN_UNESCCOMM 0x04 @@ -424,7 +429,7 @@ int setgroupent(int); int setpassent(int); #endif -#if !HAVE_SETPROGNAME || defined(__NetBSD__) +#if !HAVE_SETPROGNAME || defined(__NetBSD__) || defined(__minix) const char *getprogname(void); void setprogname(const char *); #endif @@ -449,7 +454,7 @@ void strmode(mode_t, char *); char *strndup(const char *, size_t); #endif -#if !HAVE_STRSEP || defined(__NetBSD__) +#if !HAVE_STRSEP || defined(__NetBSD__) || defined(__minix) char *strsep(char **, const char *); #endif @@ -1108,7 +1113,7 @@ __GEN_ENDIAN_DEC(64, le) #endif /* Protected by _NETBSD_SOURCE otherwise. */ -#if HAVE_STRUCT_STAT_ST_FLAGS && defined(__NetBSD__) +#if HAVE_STRUCT_STAT_ST_FLAGS && (defined(__NetBSD__) || defined(__minix)) #define UF_SETTABLE 0x0000ffff #define UF_NODUMP 0x00000001 #define UF_IMMUTABLE 0x00000002 @@ -1188,9 +1193,9 @@ __GEN_ENDIAN_DEC(64, le) #endif /* Has quad_t but these prototypes don't get pulled into scope. w/o we lose */ -#ifdef __NetBSD__ -quad_t strtoq __P((const char *, char **, int)); -u_quad_t strtouq __P((const char *, char **, int)); +#if defined(__NetBSD__) || defined(__minix) +quad_t strtoq(const char *, char **, int); +u_quad_t strtouq(const char *, char **, int); #endif #endif /* !__NETBSD_COMPAT_DEFS_H__ */ diff --git a/tools/compat/configure b/tools/compat/configure index 57c24ac18..1fa623085 100755 --- a/tools/compat/configure +++ b/tools/compat/configure @@ -1864,12 +1864,12 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu - echo "$as_me:1867: checking for NetBSD" >&5 -echo $ECHO_N "checking for NetBSD... $ECHO_C" >&6 + echo "$as_me:1867: checking for MINIX3" >&5 +echo $ECHO_N "checking for MINIX3... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF #line 1870 "configure" #include "confdefs.h" -#ifdef __NetBSD__ +#ifdef __minix yes #endif diff --git a/tools/file/Makefile b/tools/file/Makefile index 9453861f0..40da916e9 100644 --- a/tools/file/Makefile +++ b/tools/file/Makefile @@ -15,5 +15,7 @@ CONFIGURE_ARGS= --program-prefix=${_TOOL_PREFIX} --disable-shared \ .include "${.CURDIR}/../Makefile.gnuhost" +.if ${HOST_OSTYPE:C/\-.*//} != "Minix" # Force avoiding possibly non-executable install-sh. CONFIGURE_ENV+= ac_cv_path_mkdir="${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-install -d" +.endif diff --git a/tools/gcc/Makefile b/tools/gcc/Makefile index 4ce2a19c2..0f36745bd 100644 --- a/tools/gcc/Makefile +++ b/tools/gcc/Makefile @@ -4,14 +4,17 @@ HAVE_GCC= 45 # On Minix +.ifdef __MINIX +GCC_LANGUAGES=c +.else GCC_LANGUAGES=c c++ objc +.endif MODULE= gcc4 MKNATIVE_CONFIG_TARGET_LIBS= \ configure-target-libiberty \ configure-target-libstdc++-v3 \ - configure-target-libobjc \ - configure-target-libgcc + configure-target-libobjc .if ${HAVE_GCC} == 45 MKNATIVE_TARGET= gcc45 @@ -36,19 +39,20 @@ MULTILIB_ARGS= --disable-multilib SOFTFLOAT_ARGS= -with-float=soft .endif +# LSC FIXME We are not using the correct target ATM, so overrides for now... COMMON_CONFIGURE_ARGS= --target=${MACHINE_GNU_PLATFORM} \ + --target=${MACHINE_ARCH}-elf-minix \ + --disable-libssp \ --enable-long-long \ --enable-threads \ --with-bugurl=http://www.NetBSD.org/Misc/send-pr.html \ --with-pkgversion="NetBSD nb2 20111202" \ + --with-system-zlib \ ${VAX_CONFIGURE_ARGS} \ - --enable-__cxa_atexit \ - --target=${MACHINE_ARCH}-elf-minix \ --disable-threads \ --disable-visibility \ - --enable-__cxa_atexit \ - --disable-libunwind - + --disable-libunwind \ + --enable-__cxa_atexit .if defined(GCC_CONFIG_ARCH.${MACHINE_ARCH}) COMMON_CONFIGURE_ARGS+= --with-arch=${GCC_CONFIG_ARCH.${MACHINE_ARCH}} .endif @@ -68,11 +72,15 @@ CONFIGURE_ARGS+= \ ${MULTILIB_ARGS} \ ${SOFTFLOAT_ARGS} \ --program-transform-name="s,^,${MACHINE_GNU_PLATFORM}-," \ - --enable-languages=c + --enable-languages="${GCC_LANGUAGES}" GCC_CPPFLAGS= -DNETBSD_TOOLS -DTARGET_SYSTEM_ROOT=0 \ -DTARGET_SYSTEM_ROOT_RELOCATABLE +.if ${HOST_OSTYPE:C/\-.*//} == "Minix" +GCC_CPPFLAGS+= -D_NETBSD_SOURCE -D_POSIX_SOURCE -D_COMPAT_MINIX +.endif + MAKE_ARGS= MACHINE= MAKEINFO=${TOOL_MAKEINFO:Q} \ LIBGCC= LIBGCC1= LIBGCC1_TEST= LIBGCC2= INSTALL_LIBGCC= \ EXTRA_PARTS= CPPFLAGS=${GCC_CPPFLAGS:Q} \ diff --git a/tools/gcc/mknative-gcc b/tools/gcc/mknative-gcc index 79d2c87b4..b019f9901 100755 --- a/tools/gcc/mknative-gcc +++ b/tools/gcc/mknative-gcc @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: mknative-gcc,v 1.66 2012/01/10 12:27:54 skrll Exp $ +# $NetBSD: mknative-gcc,v 1.67 2012/08/11 16:05:01 skrll Exp $ # # Shell script for generating all the constants needed for a native # platform build of src/gnu/dist/gcc. @@ -33,7 +33,7 @@ get_crtstuff () { mkdir -p $_OUTDIR/lib/$_subdir/arch getvars gcc/Makefile \ - INCLUDES CRTSTUFF_CFLAGS CRTSTUFF_T_CFLAGS \ + INCLUDES CRTSTUFF_CFLAGS CRTSTUFF_T_CFLAGS CRTSTUFF_T_CFLAGS_S \ tm_defines xm_file xm_defines \ | sed "s,-I$_DESTDIR/usr/include,,g" \ | write_mk $_OUTDIRBASE/lib/$_subdir/arch/$MACHINE_ARCH.mk diff --git a/tools/gmake/Makefile b/tools/gmake/Makefile index 797b4269a..7c2732857 100644 --- a/tools/gmake/Makefile +++ b/tools/gmake/Makefile @@ -3,6 +3,10 @@ GNUHOSTDIST= ${.CURDIR}/../../gnu/dist/gmake +.if ${HOST_OSTYPE:C/\-.*//} == "Minix" +HOST_CPPFLAGS+=-D_NETBSD_SOURCE -D_POSIX_SOURCE -D_COMPAT_MINIX +.endif + CONFIGURE_ENV+= CC=${HOST_CC:Q} \ CFLAGS=${HOST_CFLAGS:Q} \ CPPFLAGS=${HOST_CPPFLAGS:Q} \ diff --git a/tools/gmp/Makefile b/tools/gmp/Makefile index bd6f1fb85..b8c9b5d86 100644 --- a/tools/gmp/Makefile +++ b/tools/gmp/Makefile @@ -13,5 +13,7 @@ CONFIGURE_ARGS+=--disable-shared CONFIGURE_ENV:= ${CONFIGURE_ENV:NPATH=*:NCFLAGS=*:NCXXFLAGS=*} \ PATH="${TOOLDIR:Q}/bin:$$$$PATH" +.if ${HOST_OSTYPE:C/\-.*//} != "Minix" # Force avoiding possibly non-executable install-sh. CONFIGURE_ENV+= ac_cv_path_mkdir="${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-install -d" +.endif diff --git a/tools/headerlist b/tools/headerlist new file mode 100644 index 000000000..7dfb7d770 --- /dev/null +++ b/tools/headerlist @@ -0,0 +1,136 @@ +# $NetBSD: headerlist,v 1.6 2011/01/26 01:18:55 pooka Exp $ +# +# do not edit; this file was automatically generated by: +# NetBSD: mkheaderlist.sh,v 1.1 2007/08/07 12:38:23 yamt Exp + +./acorn26/include/disklabel.h +./acorn26/include/elf_machdep.h +./acorn32/include/disklabel.h +./acorn32/include/elf_machdep.h +./algor/include/disklabel.h +./algor/include/elf_machdep.h +./alpha/include/disklabel.h +./alpha/include/elf_machdep.h +./amd64/include/disklabel.h +./amd64/include/elf_machdep.h +./amiga/include/disklabel.h +./amiga/include/elf_machdep.h +./amigappc/include/disklabel.h +./amigappc/include/elf_machdep.h +./arc/include/disklabel.h +./arc/include/elf_machdep.h +./arm/include/disklabel.h +./arm/include/elf_machdep.h +./atari/include/disklabel.h +./atari/include/elf_machdep.h +./mips/include/elf_machdep.h +./bebox/include/disklabel.h +./bebox/include/elf_machdep.h +./cats/include/disklabel.h +./cats/include/elf_machdep.h +./cesfic/include/disklabel.h +./cesfic/include/elf_machdep.h +./cobalt/include/disklabel.h +./cobalt/include/elf_machdep.h +./emips/include/disklabel.h +./emips/include/elf_machdep.h +./dreamcast/include/disklabel.h +./dreamcast/include/elf_machdep.h +./evbarm/include/disklabel.h +./evbarm/include/elf_machdep.h +./evbmips/include/disklabel.h +./evbmips/include/elf_machdep.h +./evbppc/include/disklabel.h +./evbppc/include/elf_machdep.h +./evbsh3/include/disklabel.h +./evbsh3/include/elf_machdep.h +./ews4800mips/include/disklabel.h +./ews4800mips/include/elf_machdep.h +./hp300/include/disklabel.h +./hp300/include/elf_machdep.h +./hp700/include/disklabel.h +./hp700/include/elf_machdep.h +./hpc/stand/hpcboot/arm/elf_machdep.h +./hpc/stand/hpcboot/sh3/elf_machdep.h +./hpc/stand/hpcboot/mips/elf_machdep.h +./hpc/stand/include/machine/disklabel.h +./hpc/stand/include/machine/elf_machdep.h +./hpcarm/include/disklabel.h +./hpcarm/include/elf_machdep.h +./hpcmips/include/disklabel.h +./hpcmips/include/elf_machdep.h +./hpcmips/stand/include/machine/disklabel.h +./hpcmips/stand/include/machine/elf_machdep.h +./hpcmips/stand/include/mips/elf_machdep.h +./hpcsh/include/disklabel.h +./hpcsh/include/elf_machdep.h +./hppa/include/elf_machdep.h +./i386/include/disklabel.h +./i386/include/elf_machdep.h +./ia64/include/disklabel.h +./ia64/include/elf_machdep.h +./ibmnws/include/disklabel.h +./ibmnws/include/elf_machdep.h +./iyonix/include/disklabel.h +./iyonix/include/elf_machdep.h +./landisk/include/disklabel.h +./landisk/include/elf_machdep.h +./luna68k/include/disklabel.h +./luna68k/include/elf_machdep.h +./m68k/include/elf_machdep.h +./mac68k/include/disklabel.h +./mac68k/include/elf_machdep.h +./macppc/include/disklabel.h +./macppc/include/elf_machdep.h +./mipsco/include/disklabel.h +./mipsco/include/elf_machdep.h +./mmeye/include/disklabel.h +./mmeye/include/elf_machdep.h +./mvme68k/include/disklabel.h +./mvme68k/include/elf_machdep.h +./mvmeppc/include/disklabel.h +./mvmeppc/include/elf_machdep.h +./netwinder/include/disklabel.h +./netwinder/include/elf_machdep.h +./news68k/include/disklabel.h +./news68k/include/elf_machdep.h +./newsmips/include/disklabel.h +./newsmips/include/elf_machdep.h +./next68k/include/disklabel.h +./next68k/include/elf_machdep.h +./ofppc/include/disklabel.h +./ofppc/include/elf_machdep.h +./pmax/include/disklabel.h +./pmax/include/elf_machdep.h +./powerpc/include/elf_machdep.h +./prep/include/disklabel.h +./prep/include/elf_machdep.h +./rs6000/include/disklabel.h +./rs6000/include/elf_machdep.h +./sandpoint/include/disklabel.h +./sandpoint/include/elf_machdep.h +./sbmips/include/disklabel.h +./sbmips/include/elf_machdep.h +./sgimips/include/disklabel.h +./sgimips/include/elf_machdep.h +./sh3/include/disklabel.h +./sh3/include/elf_machdep.h +./shark/include/disklabel.h +./shark/include/elf_machdep.h +./sparc/include/disklabel.h +./sparc/include/elf_machdep.h +./sparc64/include/disklabel.h +./sparc64/include/elf_machdep.h +./sun2/include/disklabel.h +./sun2/include/elf_machdep.h +./sun3/include/disklabel.h +./sun3/include/elf_machdep.h +./sun68k/include/disklabel.h +./usermode/include/disklabel.h +./usermode/include/elf_machdep.h +./vax/include/disklabel.h +./vax/include/elf_machdep.h +./x68k/include/disklabel.h +./x68k/include/elf_machdep.h +./zaurus/include/disklabel.h +./zaurus/include/elf_machdep.h diff --git a/tools/lex/Makefile b/tools/lex/Makefile index e0e9f27ba..f84180e7c 100644 --- a/tools/lex/Makefile +++ b/tools/lex/Makefile @@ -3,6 +3,11 @@ HOSTPROGNAME= ${_TOOL_PREFIX}lex HOST_SRCDIR= external/bsd/flex/bin +.if ${HOST_OSTYPE:C/\-.*//} == "Minix" +HOST_CPPFLAGS+=-D_NETBSD_SOURCE -D_POSIX_SOURCE -D_COMPAT_MINIX +HOST_LDFLAGS+= -static +.endif + .include "${.CURDIR}/../Makefile.host" HOST_CPPFLAGS+= -DM4=\"${TOOL_M4}\" diff --git a/tools/mandoc/Makefile b/tools/mandoc/Makefile new file mode 100644 index 000000000..fbfb643a8 --- /dev/null +++ b/tools/mandoc/Makefile @@ -0,0 +1,36 @@ +# $NetBSD: Makefile,v 1.5 2010/02/20 13:43:31 joerg Exp $ + +HOSTPROGNAME= ${_TOOL_PREFIX}mandoc +HOST_SRCDIR= external/bsd/mdocml/bin/mandoc + +NOMAN= # defined + +.include +.include + +NETBSD_MINOR!= ${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh -n +NETBSD_OSNAME= "NetBSD ${NETBSD_MINOR}" + +HOST_CPPFLAGS+= -DOSNAME=${NETBSD_OSNAME:Q} -DHAVE_CONFIG_H -I. + +DPSRCS+= config.h + +CLEANFILES+= config.log config.h + +config.h: config.h.pre config.h.post + rm -f config.log + ( cat ${DISTDIR}/config.h.pre; \ + echo; \ + if $(CC) $(CFLAGS) -Werror -c ${DISTDIR}/test-strlcat.c >> config.log 2>&1; then \ + echo '#define HAVE_STRLCAT'; \ + rm test-strlcat.o; \ + fi; \ + if $(CC) $(CFLAGS) -Werror -c ${DISTDIR}/test-strlcpy.c >> config.log 2>&1; then \ + echo '#define HAVE_STRLCPY'; \ + rm test-strlcpy.o; \ + fi; \ + echo; \ + cat ${DISTDIR}/config.h.post \ + ) > $@ + +.include "${.CURDIR}/../Makefile.host" diff --git a/tools/mkfs.mfs/Makefile b/tools/mkfs.mfs/Makefile index 97b09dbc2..b76dd9f82 100644 --- a/tools/mkfs.mfs/Makefile +++ b/tools/mkfs.mfs/Makefile @@ -1,5 +1,4 @@ HOSTPROGNAME= ${_TOOL_PREFIX}mkfs.mfs HOST_SRCDIR= usr.sbin/mkfs.mfs -LDADD= #defined .include "${.CURDIR}/../Makefile.host" diff --git a/tools/mkheaderlist.sh b/tools/mkheaderlist.sh new file mode 100644 index 000000000..d0a075bf4 --- /dev/null +++ b/tools/mkheaderlist.sh @@ -0,0 +1,21 @@ +#!/bin/sh +# $NetBSD: mkheaderlist.sh,v 1.2 2011/02/05 13:30:26 yamt Exp $ + +# scan the source tree and create the headerlist file which is used by +# Makefile.nbincludes. + +set -e + +mklist() +{ + echo "# \$NetBSD\$" + echo "#" + echo '# do not edit; this file was automatically generated by:' + echo '# $NetBSD: mkheaderlist.sh,v 1.2 2011/02/05 13:30:26 yamt Exp $' | sed -e 's/\$//g' + echo + cd ../sys/arch && find . -name disklabel.h -o -name elf_machdep.h +} + +LIST=headerlist +rm -f ${LIST} +mklist > ${LIST} diff --git a/tools/mpc/Makefile b/tools/mpc/Makefile index 64c9b21ff..19abce89d 100644 --- a/tools/mpc/Makefile +++ b/tools/mpc/Makefile @@ -10,5 +10,7 @@ CONFIGURE_ARGS+=--disable-shared .include "${.CURDIR}/../Makefile.gnuhost" +.if ${HOST_OSTYPE:C/\-.*//} != "Minix" # Force avoiding possibly non-executable install-sh. CONFIGURE_ENV+= ac_cv_path_mkdir="${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-install -d" +.endif diff --git a/tools/mpfr/Makefile b/tools/mpfr/Makefile index 2d101e139..fa34a1356 100644 --- a/tools/mpfr/Makefile +++ b/tools/mpfr/Makefile @@ -9,5 +9,7 @@ CONFIGURE_ARGS+=--disable-shared .include "${.CURDIR}/../Makefile.gnuhost" +.if ${HOST_OSTYPE:C/\-.*//} != "Minix" # Force avoiding possibly non-executable install-sh. CONFIGURE_ENV+= ac_cv_path_mkdir="${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-install -d" +.endif diff --git a/tools/sed/Makefile b/tools/sed/Makefile index 1a6e90a30..28b141335 100644 --- a/tools/sed/Makefile +++ b/tools/sed/Makefile @@ -2,6 +2,9 @@ HOSTPROGNAME= ${_TOOL_PREFIX}sed HOST_SRCDIR= usr.bin/sed + +.ifdef __MINIX SYMLINKS= # defined so usr.bin/sed/Makefile does not set it +.endif .include "${.CURDIR}/../Makefile.host" diff --git a/tools/tic/Makefile b/tools/tic/Makefile index a26168d83..24b050dde 100644 --- a/tools/tic/Makefile +++ b/tools/tic/Makefile @@ -7,5 +7,8 @@ HOST_SRCS= compile.c hash.c TERMINFODIR= ${NETBSDSRCDIR}/lib/libterminfo .include "${.CURDIR}/../Makefile.host" +.ifndef __MINIX +.include "${TERMINFODIR}/Makefile.hash" +.endif .PATH: ${TERMINFODIR} diff --git a/usr.bin/Makefile.inc b/usr.bin/Makefile.inc index 25b3aeeb9..1c512e0af 100644 --- a/usr.bin/Makefile.inc +++ b/usr.bin/Makefile.inc @@ -1,2 +1,5 @@ -BINDIR?=/usr/bin +# $NetBSD: Makefile.inc,v 1.10 2012/03/21 05:47:53 matt Exp $ +# from: @(#)Makefile.inc 8.1 (Berkeley) 6/6/93 +WARNS?= 5 +BINDIR?=/usr/bin diff --git a/usr.bin/gzip/Makefile b/usr.bin/gzip/Makefile index 19c56e5b0..aedd89acd 100644 --- a/usr.bin/gzip/Makefile +++ b/usr.bin/gzip/Makefile @@ -1,5 +1,8 @@ # $NetBSD: Makefile,v 1.16 2011/06/21 13:25:45 joerg Exp $ +# LSC Until it compiles cleanly... +NOGCCERROR:=yes + USE_FORT?= no # data-driven bugs? PROG= gzip diff --git a/usr.bin/ldd/Makefile b/usr.bin/ldd/Makefile index 351d3787d..77583e18a 100644 --- a/usr.bin/ldd/Makefile +++ b/usr.bin/ldd/Makefile @@ -1,44 +1,5 @@ -# $NetBSD: Makefile,v 1.15 2009/12/15 04:06:43 mrg Exp $ +# $NetBSD: Makefile,v 1.16 2011/04/15 08:47:02 plunky Exp $ -WARNS?= 3 # XXX: -Wsign-compare issues ld.elf_so source +SUBDIR+= elf32 elf64 elf32_compat .WAIT build -.include # for MKDYNAMICROOT definition - -PROG= ldd -SRCS= ldd.c -MAN= ldd.1 - - -SUBDIR+= elf32 elf64 elf32_compat - -.if (${MACHINE_ARCH} != "alpha") -LIB_ELF32DIR!= cd ${.CURDIR}/elf32 && ${PRINTOBJDIR} -EXTRA_LIBS+= ${LIB_ELF32DIR}/libldd_elf32.a -.endif - -.if (${MACHINE_ARCH} == "mips64el") || (${MACHINE_ARCH} == "mips64eb") -LIB_ELF32COMPATDIR!= cd ${.CURDIR}/elf32_compat && ${PRINTOBJDIR} -EXTRA_LIBS+= ${LIB_ELF32COMPATDIR}/libldd_elf32_compat.a -.endif - -.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc64") || \ - (${MACHINE_ARCH} == "x86_64") || (${MACHINE_ARCH} == "powerpc64") || \ - (${MACHINE_ARCH} == "mips64el") || (${MACHINE_ARCH} == "mips64eb") -LIB_ELF64DIR!= cd ${.CURDIR}/elf64 && ${PRINTOBJDIR} -EXTRA_LIBS+= ${LIB_ELF64DIR}/libldd_elf64.a -CPPFLAGS.ldd.c= -DELFSIZE=64 -.else -CPPFLAGS.ldd.c= -DELFSIZE=32 -.endif - -LDADD+= ${EXTRA_LIBS} -DPADD+= ${EXTRA_LIBS} - -.include "Makefile.common" - -.if (${MKDYNAMICROOT} == "no") -LDSTATIC?= -static -.endif - -.include .include diff --git a/usr.bin/ldd/Makefile.common b/usr.bin/ldd/Makefile.common index 901bcb1dd..7559b3c43 100644 --- a/usr.bin/ldd/Makefile.common +++ b/usr.bin/ldd/Makefile.common @@ -1,4 +1,7 @@ -# $NetBSD: Makefile.common,v 1.1 2009/01/06 03:59:56 mrg Exp $ +# $NetBSD: Makefile.common,v 1.2 2012/02/17 08:13:18 matt Exp $ + +# LSC Until it compiles cleanly... +NOGCCERROR:=yes LDELFSO=${NETBSDSRCDIR}/libexec/ld.elf_so CPPFLAGS+= -I${LDELFSO} -DLIBDIR=\"${LIBDIR}\" @@ -8,6 +11,6 @@ CPPFLAGS+= -D_RTLD_SOURCE .if (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "sparc64") || \ (${MACHINE_ARCH} == "arm") || (${MACHINE_ARCH} == "m68k") || \ - (${MACHINE_ARCH} == "powerpc") + (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH:Mmips*} != "") CPPFLAGS+= -DVARPSZ .endif diff --git a/usr.bin/ldd/build/Makefile b/usr.bin/ldd/build/Makefile new file mode 100644 index 000000000..c3b868f3c --- /dev/null +++ b/usr.bin/ldd/build/Makefile @@ -0,0 +1,40 @@ +# $NetBSD: Makefile,v 1.1 2011/04/15 08:47:02 plunky Exp $ + +.include # for MKDYNAMICROOT definition + +PROG= ldd +SRCS= ldd.c +MAN= ldd.1 + +.PATH: ${.CURDIR}/.. + +.if (${MACHINE_ARCH} != "alpha") +LIB_ELF32DIR!= cd ${.CURDIR}/../elf32 && ${PRINTOBJDIR} +EXTRA_LIBS+= ${LIB_ELF32DIR}/libldd_elf32.a +.endif + +.if (${MACHINE_ARCH} == "mips64el") || (${MACHINE_ARCH} == "mips64eb") +LIB_ELF32COMPATDIR!= cd ${.CURDIR}/../elf32_compat && ${PRINTOBJDIR} +EXTRA_LIBS+= ${LIB_ELF32COMPATDIR}/libldd_elf32_compat.a +.endif + +.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc64") || \ + (${MACHINE_ARCH} == "x86_64") || (${MACHINE_ARCH} == "powerpc64") || \ + (${MACHINE_ARCH} == "mips64el") || (${MACHINE_ARCH} == "mips64eb") +LIB_ELF64DIR!= cd ${.CURDIR}/../elf64 && ${PRINTOBJDIR} +EXTRA_LIBS+= ${LIB_ELF64DIR}/libldd_elf64.a +CPPFLAGS.ldd.c= -DELFSIZE=64 +.else +CPPFLAGS.ldd.c= -DELFSIZE=32 +.endif + +LDADD+= ${EXTRA_LIBS} +DPADD+= ${EXTRA_LIBS} + +.include "Makefile.common" + +.if (${MKDYNAMICROOT} == "no") +LDSTATIC?= -static +.endif + +.include diff --git a/usr.bin/ldd/elf32/Makefile b/usr.bin/ldd/elf32/Makefile index 81fe415ea..f6e79ce8c 100644 --- a/usr.bin/ldd/elf32/Makefile +++ b/usr.bin/ldd/elf32/Makefile @@ -1,8 +1,16 @@ -# $NetBSD: Makefile,v 1.7 2009/12/13 08:50:56 mrg Exp $ +# $NetBSD: Makefile,v 1.8 2011/03/09 23:10:08 joerg Exp $ .include .include +RTLD_FUNCS = \ + _rtld_tls_allocate \ + _rtld_tls_free \ + +.for _d in ${RTLD_FUNCS} +CPPFLAGS+= -D${_d}=_elf32_${_d} +.endfor + CPPFLAGS+= -DELFSIZE=32 LIB= ldd_elf32 diff --git a/usr.bin/ldd/elf64/Makefile b/usr.bin/ldd/elf64/Makefile index 441b3693b..25e6afb15 100644 --- a/usr.bin/ldd/elf64/Makefile +++ b/usr.bin/ldd/elf64/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2009/12/13 08:50:57 mrg Exp $ +# $NetBSD: Makefile,v 1.6 2011/03/09 23:10:08 joerg Exp $ .include @@ -30,6 +30,8 @@ RTLD_FUNCS = \ _rtld_add_paths \ _rtld_process_hints \ _rtld_sysctl \ + _rtld_tls_allocate \ + _rtld_tls_free \ _rtld_load_library .for _d in ${RTLD_FUNCS} diff --git a/usr.bin/login/Makefile b/usr.bin/login/Makefile index 088b50447..1f181be09 100644 --- a/usr.bin/login/Makefile +++ b/usr.bin/login/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.52 2011/04/24 21:42:06 elric Exp $ +# $NetBSD: Makefile,v 1.55 2012/04/24 16:52:26 christos Exp $ # @(#)Makefile 8.1 (Berkeley) 7/19/93 WARNS?= 2 # XXX -Wcast-qual issues diff --git a/usr.bin/m4/Makefile b/usr.bin/m4/Makefile index 3f266373a..5b7c53811 100644 --- a/usr.bin/m4/Makefile +++ b/usr.bin/m4/Makefile @@ -24,4 +24,7 @@ tokenizer.o: parser.h CLEANFILES+=parser.c parser.h tokenizer.o +# LSC Until it compiles cleanly... +NOGCCERROR:=yes + .include diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index bcfd975e8..240d886f3 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2011/08/14 13:06:09 christos Exp $ +# $NetBSD: Makefile,v 1.56 2012/05/30 21:54:23 sjg Exp $ # @(#)Makefile 5.2 (Berkeley) 12/28/90 PROG= make @@ -30,6 +30,9 @@ CPPFLAGS+= -DHAVE_SETENV -DHAVE_STRERROR -DHAVE_STRDUP \ CPPFLAGS+= -DMAKE_MACHINE=\"${MACHINE}\" -DMAKE_MACHINE_ARCH=\"${MACHINE_ARCH}\" +# LSC Until it compiles cleanly... +NOGCCERROR:=yes + .PATH: ${.CURDIR}/lst.lib #.if make(install) @@ -42,13 +45,13 @@ SUBDIR+= unit-tests .include .include -.ifdef TOOLDIR CPPFLAGS+= -DMAKE_NATIVE COPTS.var.c += -Wno-cast-qual COPTS.job.c += -Wno-format-nonliteral COPTS.parse.c += -Wno-format-nonliteral COPTS.var.c += -Wno-format-nonliteral +.ifdef TOOLDIR # this is a native netbsd build, # use libutil rather than the local emalloc etc. CPPFLAGS+= -DUSE_EMALLOC @@ -58,4 +61,4 @@ DPADD+=${LIBUTIL} # A simple unit-test driver to help catch regressions accept test: - cd ${.CURDIR}/unit-tests && ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET} + cd ${.CURDIR}/unit-tests && MAKEFLAGS= ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET} diff --git a/usr.bin/mkdep/Makefile b/usr.bin/mkdep/Makefile index fc0820701..2ad94e82e 100644 --- a/usr.bin/mkdep/Makefile +++ b/usr.bin/mkdep/Makefile @@ -6,4 +6,7 @@ MAN= mkdep.1 PROG= mkdep SRCS= mkdep.c findcc.c +# LSC Until it compiles cleanly... +NOGCCERROR:=yes + .include diff --git a/usr.bin/newgrp/Makefile b/usr.bin/newgrp/Makefile index 0b7dc876b..a210ae48a 100644 --- a/usr.bin/newgrp/Makefile +++ b/usr.bin/newgrp/Makefile @@ -14,7 +14,7 @@ BINMODE=4555 CPPFLAGS+=-DGRUTIL_ACCEPT_GROUP_NUMBERS CPPFLAGS+=-DGRUTIL_ALLOW_GROUP_ERRORS # for POSIX.1 compliance -CPPFLAGS+= #-DLOGIN_CAP +#CPPFLAGS+=-DLOGIN_CAP DPADD+= ${LIBCRYPT} ${LIBUTIL} LDADD+= -lcrypt -lutil diff --git a/usr.bin/passwd/Makefile b/usr.bin/passwd/Makefile index 799944186..9faf40b3e 100644 --- a/usr.bin/passwd/Makefile +++ b/usr.bin/passwd/Makefile @@ -7,6 +7,9 @@ USE_YP= no USE_KERBEROS= no USE_PAM= no + +# LSC Until it compiles cleanly... +NOGCCERROR:=yes .endif USE_FORT?= yes # setuid diff --git a/usr.bin/seq/Makefile b/usr.bin/seq/Makefile index 54d4bfac3..fc4afacc6 100644 --- a/usr.bin/seq/Makefile +++ b/usr.bin/seq/Makefile @@ -4,4 +4,7 @@ PROG= seq DPADD= ${LIBMATH} LDADD= -lm +# LSC Until it compiles cleanly... +NOGCCERROR:=yes + .include diff --git a/usr.bin/stat/Makefile b/usr.bin/stat/Makefile index c2cd6e1cc..97b9c1744 100644 --- a/usr.bin/stat/Makefile +++ b/usr.bin/stat/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2003/07/25 03:21:17 atatat Exp $ +# $NetBSD: Makefile,v 1.8 2011/08/17 13:22:33 christos Exp $ PROG= stat @@ -12,4 +12,9 @@ LINKS+= ${BINDIR}/stat ${BINDIR}/lstat MLINKS= stat.1 readlink.1 .endif +COPTS.stat.c += -Wno-format-nonliteral + +# LSC Until it compiles cleanly... +NOGCCERROR:=yes + .include diff --git a/usr.bin/tic/Makefile b/usr.bin/tic/Makefile index 4bb2b86ab..e65cd6270 100644 --- a/usr.bin/tic/Makefile +++ b/usr.bin/tic/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2010/02/03 15:16:32 roy Exp $ +# $NetBSD: Makefile,v 1.2 2012/05/31 20:10:06 joerg Exp $ PROG= tic WARNS= 4 @@ -7,7 +7,7 @@ CPPFLAGS+= -I${.CURDIR}/../../lib/libterminfo .ifndef HOSTPROG LDADD+= -lterminfo -lutil -DPADD+= ${LIBTERMINFO} +DPADD+= ${LIBTERMINFO} #${LIBUTIL} .endif .include diff --git a/usr.bin/top/top.c b/usr.bin/top/top.c index 7b3fd2262..ac07430b6 100644 --- a/usr.bin/top/top.c +++ b/usr.bin/top/top.c @@ -50,7 +50,7 @@ int order = ORDER_CPU; u32_t system_hz; /* name of cpu cycle types, in the order they appear in /psinfo. */ -char *cputimenames[] = { "user", "ipc", "kernelcall" }; +const char *cputimenames[] = { "user", "ipc", "kernelcall" }; #define CPUTIMENAMES (sizeof(cputimenames)/sizeof(cputimenames[0])) @@ -154,8 +154,8 @@ void parse_file(pid_t pid) p->p_memory = 0L; if (!(p->p_flags & IS_TASK)) { - int i; - if ((i=fscanf(fp, " %lu %*u %*u %*c %*d %*u %u %*u %d %*c %*d %*u", + int j; + if ((j=fscanf(fp, " %lu %*u %*u %*c %*d %*u %u %*u %d %*c %*d %*u", &p->p_memory, &effuid, &p->p_nice)) != 3) { fclose(fp); diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index c1862e2a6..2133b6cca 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -3,6 +3,9 @@ .include +# LSC Until it compiles cleanly... +NOGCCERROR:=yes + PROG= xinstall SRCS= xinstall.c getid.c MAN= install.1 diff --git a/usr.sbin/Makefile.inc b/usr.sbin/Makefile.inc index 27d80a74a..ddb25e755 100644 --- a/usr.sbin/Makefile.inc +++ b/usr.sbin/Makefile.inc @@ -1 +1,5 @@ -BINDIR?= /usr/sbin +# $NetBSD: Makefile.inc,v 1.6 2009/04/22 15:23:01 lukem Exp $ +# from: @(#)Makefile.inc 8.1 (Berkeley) 6/6/93 + +BINDIR?= /usr/sbin +WARNS?= 4 diff --git a/usr.sbin/mkfs.mfs/Makefile b/usr.sbin/mkfs.mfs/Makefile index c9a462e83..96bc044d6 100644 --- a/usr.sbin/mkfs.mfs/Makefile +++ b/usr.sbin/mkfs.mfs/Makefile @@ -5,6 +5,11 @@ MAN= CPPFLAGS+= -D_MINIX -LDADD?= -lminlib -lcompat_minix +# LSC Adding this to activate the getline renaming macro +CPPFLAGS+= -D__NBSD_LIBC + +.if ${HOST_OSTYPE:C/\-.*//} == "Minix" || !defined(HOSTPROGNAME) +LDADD+= -lminlib -lcompat_minix +.endif .include diff --git a/usr.sbin/pwd_mkdb/Makefile b/usr.sbin/pwd_mkdb/Makefile index 64b1e731a..2d07fea26 100644 --- a/usr.sbin/pwd_mkdb/Makefile +++ b/usr.sbin/pwd_mkdb/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $NetBSD: Makefile,v 1.19 2009/01/14 23:18:57 christos Exp $ +# $NetBSD: Makefile,v 1.20 2011/08/25 16:53:25 joerg Exp $ .include @@ -12,4 +12,6 @@ LDADD+= -lutil DPADD+= ${LIBUTIL} .endif +COPTS.pwd_mkdb.c+= -Wno-format-nonliteral + .include