summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2015-03-24 06:55:08 +0000
committerngie <ngie@FreeBSD.org>2015-03-24 06:55:08 +0000
commitc363eff24fce54d0e276a33350140db2cd33c11a (patch)
treec9d15c2de659df11604c5a9be8a60e9ad27c9c92
parent67ce9fefafb276f90f26ae1847ad17c016a27744 (diff)
downloadFreeBSD-src-c363eff24fce54d0e276a33350140db2cd33c11a.zip
FreeBSD-src-c363eff24fce54d0e276a33350140db2cd33c11a.tar.gz
MFC r278135,r278202:
r278135 (by amdmi3): - Remove more files when MK_USB == no Reviewed by: ngie Approved by: ngie Differential Revision: D1600 r278202: Clean up more usb related files when MK_USB == no when dealing with manpages, libraries, and binaries Sponsored by: EMC / Isilon Storage Division
-rw-r--r--etc/Makefile21
-rw-r--r--include/Makefile6
-rw-r--r--share/examples/Makefile17
-rw-r--r--share/man/man4/Makefile114
-rw-r--r--share/man/man9/Makefile7
-rw-r--r--share/misc/Makefile9
-rw-r--r--tools/build/mk/OptionalObsoleteFiles.inc349
7 files changed, 455 insertions, 68 deletions
diff --git a/etc/Makefile b/etc/Makefile
index 8f8263a..670ac15 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -44,7 +44,6 @@ BIN1= crontab \
rc.bsdextended \
rc.firewall \
rc.initdiskless \
- rc.sendmail \
rc.shutdown \
rc.subr \
remote \
@@ -144,6 +143,10 @@ BIN1+= portsnap.conf
BIN1+= pf.os
.endif
+.if ${MK_SENDMAIL} != "no"
+BIN1+= rc.sendmail
+.endif
+
.if ${MK_TCSH} != "no"
BIN1+= csh.cshrc csh.login csh.logout
.endif
@@ -248,7 +251,9 @@ distribution:
${_+_}cd ${.CURDIR}/devd; ${MAKE} install
${_+_}cd ${.CURDIR}/gss; ${MAKE} install
${_+_}cd ${.CURDIR}/periodic; ${MAKE} install
+.if ${MK_PKGBOOTSTRAP} != "no"
${_+_}cd ${.CURDIR}/pkg; ${MAKE} install
+.endif
${_+_}cd ${.CURDIR}/rc.d; ${MAKE} install
${_+_}cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap
${_+_}cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt
@@ -310,8 +315,10 @@ distribution:
.endif
${INSTALL} -o ${BINOWN} -g operator -m 664 /dev/null \
${DESTDIR}/etc/dumpdates
+.if ${MK_LOCATE} != "no"
${INSTALL} -o nobody -g ${BINGRP} -m 644 /dev/null \
${DESTDIR}/var/db/locate.database
+.endif
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
${DESTDIR}/var/crash
cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
@@ -379,6 +386,7 @@ distrib-dirs: ${MTREES:N/*}
done; true
.endif
${INSTALL_SYMLINK} usr/src/sys ${DESTDIR}/sys
+.if ${MK_MAN} != "no"
cd ${DESTDIR}/usr/share/man; \
for mandir in man*; do \
${INSTALL_SYMLINK} ../$$mandir \
@@ -386,23 +394,30 @@ distrib-dirs: ${MTREES:N/*}
${INSTALL_SYMLINK} ../$$mandir \
${DESTDIR}/usr/share/man/en.UTF-8/; \
done
+.if ${MK_OPENSSL} != "no"
cd ${DESTDIR}/usr/share/openssl/man; \
for mandir in man*; do \
${INSTALL_SYMLINK} ../$$mandir \
${DESTDIR}/usr/share/openssl/man/en.ISO8859-1/; \
done
+.endif
set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
while [ $$# -gt 0 ] ; do \
${INSTALL_SYMLINK} "$$2" "${DESTDIR}/usr/share/man/$$1"; \
- ${INSTALL_SYMLINK} "$$2" \
- "${DESTDIR}/usr/share/openssl/man/$$1"; \
+ if [ "${MK_OPENSSL}" != "no" ]; then \
+ ${INSTALL_SYMLINK} "$$2" \
+ "${DESTDIR}/usr/share/openssl/man/$$1"; \
+ fi; \
shift; shift; \
done
+.endif
+.if ${MK_NLS} != "no"
set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \
while [ $$# -gt 0 ] ; do \
${INSTALL_SYMLINK} "$$2" "${DESTDIR}/usr/share/nls/$$1"; \
shift; shift; \
done
+.endif
etc-examples:
cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
diff --git a/include/Makefile b/include/Makefile
index 5aa1a47..4aa08ac 100644
--- a/include/Makefile
+++ b/include/Makefile
@@ -46,7 +46,7 @@ LSUBDIRS= cam/ata cam/scsi \
dev/hwpmc \
dev/ic dev/iicbus ${_dev_ieee488} dev/io dev/lmc dev/mfi dev/nvme \
dev/ofw dev/pbio dev/pci ${_dev_powermac_nvram} dev/ppbus dev/smbus \
- dev/speaker dev/usb dev/utopia dev/vkbd dev/wi \
+ dev/speaker dev/utopia dev/vkbd dev/wi \
fs/devfs fs/fdescfs fs/msdosfs fs/nandfs fs/nfs fs/nullfs \
fs/procfs fs/smbfs fs/udf fs/unionfs \
geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \
@@ -58,6 +58,10 @@ LSUBDIRS= cam/ata cam/scsi \
security/mac_mls security/mac_partition \
ufs/ffs ufs/ufs
+.if ${MK_USB} != "no"
+LSUBDIRS+= dev/usb
+.endif
+
LSUBSUBDIRS= dev/mpt/mpilib
.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64"
diff --git a/share/examples/Makefile b/share/examples/Makefile
index 32d71a1..00951d9 100644
--- a/share/examples/Makefile
+++ b/share/examples/Makefile
@@ -18,7 +18,6 @@ LDIRS= BSD_daemon \
ipfw \
jails \
kld \
- libusb20 \
libvgl \
mdoc \
netgraph \
@@ -92,12 +91,6 @@ XFILES= BSD_daemon/FreeBSD.pfa \
kld/syscall/module/syscall.c \
kld/syscall/test/Makefile \
kld/syscall/test/call.c \
- libusb20/Makefile \
- libusb20/README \
- libusb20/util.c \
- libusb20/util.h \
- libusb20/bulk.c \
- libusb20/control.c \
libvgl/Makefile \
libvgl/demo.c \
mdoc/POSIX-copyright \
@@ -203,6 +196,16 @@ XFILES+= hast/ucarp.sh \
hast/vip-up.sh
.endif
+.if ${MK_USB} != "no"
+LDIRS+= libusb20
+XFILES+= libusb20/Makefile \
+ libusb20/README \
+ libusb20/util.c \
+ libusb20/util.h \
+ libusb20/bulk.c \
+ libusb20/control.c
+.endif
+
.if ${MACHINE_CPUARCH} == "amd64"
.if ${MK_BHYVE} != "no"
LDIRS+= bhyve
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index c1e5154..d54dc0d 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -504,54 +504,6 @@ MAN= aac.4 \
tws.4 \
tx.4 \
txp.4 \
- u3g.4 \
- uark.4 \
- uart.4 \
- uath.4 \
- ubsa.4 \
- ubsec.4 \
- ubser.4 \
- ubtbcmfw.4 \
- uchcom.4 \
- ucom.4 \
- ucycom.4 \
- udav.4 \
- udbp.4 \
- udp.4 \
- udplite.4 \
- uep.4 \
- ufm.4 \
- ufoma.4 \
- uftdi.4 \
- ugen.4 \
- uhci.4 \
- uhid.4 \
- uhso.4 \
- uipaq.4 \
- ukbd.4 \
- uled.4 \
- ulpt.4 \
- umass.4 \
- umcs.4 \
- umct.4 \
- umodem.4 \
- ums.4 \
- unix.4 \
- upgt.4 \
- uplcom.4 \
- ural.4 \
- urio.4 \
- urndis.4 \
- ${_urtw.4} \
- urtwn.4 \
- urtwnfw.4 \
- usb.4 \
- usb_template.4 \
- usb_quirk.4 \
- uslcom.4 \
- utopia.4 \
- uvisor.4 \
- uvscom.4 \
vale.4 \
vga.4 \
vge.4 \
@@ -733,13 +685,6 @@ MLINKS+=tl.4 if_tl.4
MLINKS+=tun.4 if_tun.4
MLINKS+=tx.4 if_tx.4
MLINKS+=txp.4 if_txp.4
-MLINKS+=u3g.4 u3gstub.4
-MLINKS+=uath.4 if_uath.4
-MLINKS+=udav.4 if_udav.4
-MLINKS+=upgt.4 if_upgt.4
-MLINKS+=ural.4 if_ural.4
-MLINKS+=urndis.4 if_urndis.4
-MLINKS+=${_urtw.4} ${_if_urtw.4}
MLINKS+=vge.4 if_vge.4
MLINKS+=vlan.4 if_vlan.4
MLINKS+=${_vmx.4} ${_if_vmx.4}
@@ -884,4 +829,63 @@ _pflog.4= pflog.4
_pfsync.4= pfsync.4
.endif
+.if ${MK_USB} != "no"
+MAN+= u3g.4 \
+ uark.4 \
+ uart.4 \
+ uath.4 \
+ ubsa.4 \
+ ubsec.4 \
+ ubser.4 \
+ ubtbcmfw.4 \
+ uchcom.4 \
+ ucom.4 \
+ ucycom.4 \
+ udav.4 \
+ udbp.4 \
+ udp.4 \
+ udplite.4 \
+ uep.4 \
+ ufm.4 \
+ ufoma.4 \
+ uftdi.4 \
+ ugen.4 \
+ uhci.4 \
+ uhid.4 \
+ uhso.4 \
+ uipaq.4 \
+ ukbd.4 \
+ uled.4 \
+ ulpt.4 \
+ umass.4 \
+ umcs.4 \
+ umct.4 \
+ umodem.4 \
+ ums.4 \
+ unix.4 \
+ upgt.4 \
+ uplcom.4 \
+ ural.4 \
+ urio.4 \
+ urndis.4 \
+ ${_urtw.4} \
+ urtwn.4 \
+ urtwnfw.4 \
+ usb.4 \
+ usb_template.4 \
+ usb_quirk.4 \
+ uslcom.4 \
+ utopia.4 \
+ uvisor.4 \
+ uvscom.4 \
+
+MLINKS+=u3g.4 u3gstub.4
+MLINKS+=uath.4 if_uath.4
+MLINKS+=udav.4 if_udav.4
+MLINKS+=upgt.4 if_upgt.4
+MLINKS+=ural.4 if_ural.4
+MLINKS+=urndis.4 if_urndis.4
+MLINKS+=${_urtw.4} ${_if_urtw.4}
+.endif
+
.include <bsd.prog.mk>
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile
index 76e8314..13140d0 100644
--- a/share/man/man9/Makefile
+++ b/share/man/man9/Makefile
@@ -1,5 +1,7 @@
# $FreeBSD$
+.include <bsd.own.mk>
+
MAN= accept_filter.9 \
accf_data.9 \
accf_dns.9 \
@@ -270,7 +272,6 @@ MAN= accept_filter.9 \
uidinfo.9 \
uio.9 \
unr.9 \
- usbdi.9 \
utopia.9 \
vaccess.9 \
vaccess_acl_nfs4.9 \
@@ -1408,6 +1409,9 @@ MLINKS+=uidinfo.9 uifind.9 \
uidinfo.9 uihold.9
MLINKS+=uio.9 uiomove.9 \
uio.9 uiomove_nofault.9
+
+.if ${MK_USB} != "no"
+MAN+= usbdi.9
MLINKS+=usbdi.9 usbd_do_request.9 \
usbdi.9 usbd_do_request_flags.9 \
usbdi.9 usbd_errstr.9 \
@@ -1459,6 +1463,7 @@ MLINKS+=usbdi.9 usbd_do_request.9 \
usbdi.9 usb_fifo_reset.9 \
usbdi.9 usb_fifo_softc.9 \
usbdi.9 usb_fifo_wakeup.9
+.endif
MLINKS+=vcount.9 count_dev.9
MLINKS+=vfsconf.9 vfs_modevent.9 \
vfsconf.9 vfs_register.9 \
diff --git a/share/misc/Makefile b/share/misc/Makefile
index 3e2afc4..37452c2 100644
--- a/share/misc/Makefile
+++ b/share/misc/Makefile
@@ -1,15 +1,22 @@
# From: @(#)Makefile 8.1 (Berkeley) 6/8/93
# $FreeBSD$
+.include <bsd.own.mk>
+
.PATH: ${.CURDIR}/../../sys/dev/usb
FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot \
committers-src.dot eqnchar flowers init.ee \
iso3166 iso639 latin1 man.template mdoc.template operator pci_vendors \
- scsi_modes usb_hid_usages usbdevs \
+ scsi_modes \
organization.dot
NO_OBJ=
FILESDIR= ${BINDIR}/misc
+.if ${MK_USB} != "no"
+FILES+= usb_hid_usages
+FILES+= usbdevs
+.endif
+
.include <bsd.prog.mk>
diff --git a/tools/build/mk/OptionalObsoleteFiles.inc b/tools/build/mk/OptionalObsoleteFiles.inc
index 28dbd9f..967bf80 100644
--- a/tools/build/mk/OptionalObsoleteFiles.inc
+++ b/tools/build/mk/OptionalObsoleteFiles.inc
@@ -4861,8 +4861,357 @@ OLD_FILES+=usr/sbin/unbound-control-setup
.endif
.if ${MK_USB} == no
+OLD_FILES+=etc/devd/uath.conf
OLD_FILES+=etc/devd/uauth.conf
+OLD_FILES+=etc/devd/ulpt.conf
OLD_FILES+=etc/devd/usb.conf
+OLD_FILES+=usr/bin/usbhidaction
+OLD_FILES+=usr/bin/usbhidctl
+OLD_FILES+=usr/include/libusb.h
+OLD_FILES+=usr/include/libusb20.h
+OLD_FILES+=usr/include/libusb20_desc.h
+OLD_FILES+=usr/include/usb.h
+OLD_FILES+=usr/include/usbhid.h
+OLD_FILES+=usr/lib/libusb.a
+OLD_FILES+=usr/lib/libusb.so
+OLD_LIBS+=usr/lib/libusb.so.3
+OLD_FILES+=usr/lib/libusb_p.a
+OLD_FILES+=usr/lib/libusbhid.a
+OLD_FILES+=usr/lib/libusbhid.so
+OLD_LIBS+=usr/lib/libusbhid.so.4
+OLD_FILES+=usr/lib/libusbhid_p.a
+OLD_FILES+=usr/lib32/libusb.a
+OLD_FILES+=usr/lib32/libusb.so
+OLD_LIBS+=usr/lib32/libusb.so.3
+OLD_FILES+=usr/lib32/libusb_p.a
+OLD_FILES+=usr/lib32/libusbhid.a
+OLD_FILES+=usr/lib32/libusbhid.so
+OLD_LIBS+=usr/lib32/libusbhid.so.4
+OLD_FILES+=usr/lib32/libusbhid_p.a
+OLD_FILES+=usr/libdata/pkgconfig/libusb-0.1.pc
+OLD_FILES+=usr/libdata/pkgconfig/libusb-1.0.pc
+OLD_FILES+=usr/libdata/pkgconfig/libusb-2.0.pc
+OLD_FILES+=usr/sbin/uathload
+OLD_FILES+=usr/sbin/uhsoctl
+OLD_FILES+=usr/sbin/usbconfig
+OLD_FILES+=usr/sbin/usbdump
+OLD_FILES+=usr/share/examples/libusb20/Makefile
+OLD_FILES+=usr/share/examples/libusb20/README
+OLD_FILES+=usr/share/examples/libusb20/bulk.c
+OLD_FILES+=usr/share/examples/libusb20/control.c
+OLD_FILES+=usr/share/examples/libusb20/util.c
+OLD_FILES+=usr/share/examples/libusb20/util.h
+OLD_DIRS+=usr/share/examples/libusb20
+OLD_FILES+=usr/share/man/man1/uhsoctl.1.gz
+OLD_FILES+=usr/share/man/man1/usbhidaction.1.gz
+OLD_FILES+=usr/share/man/man1/usbhidctl.1.gz
+OLD_FILES+=usr/share/man/man3/hid_dispose_report_desc.3.gz
+OLD_FILES+=usr/share/man/man3/hid_end_parse.3.gz
+OLD_FILES+=usr/share/man/man3/hid_get_data.3.gz
+OLD_FILES+=usr/share/man/man3/hid_get_item.3.gz
+OLD_FILES+=usr/share/man/man3/hid_get_report_desc.3.gz
+OLD_FILES+=usr/share/man/man3/hid_init.3.gz
+OLD_FILES+=usr/share/man/man3/hid_locate.3.gz
+OLD_FILES+=usr/share/man/man3/hid_report_size.3.gz
+OLD_FILES+=usr/share/man/man3/hid_set_data.3.gz
+OLD_FILES+=usr/share/man/man3/hid_start_parse.3.gz
+OLD_FILES+=usr/share/man/man3/hid_usage_in_page.3.gz
+OLD_FILES+=usr/share/man/man3/hid_usage_page.3.gz
+OLD_FILES+=usr/share/man/man3/libusb.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_add_dev_quirk.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_alloc_default.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_dequeue_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_device_foreach.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_enqueue_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_free.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_get_dev_quirk.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_get_quirk_name.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_get_template.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_remove_dev_quirk.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_be_set_template.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_desc_foreach.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_alloc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_alloc_config.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_check_connected.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_close.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_detach_kernel_driver.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_free.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_address.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_backend_name.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_bus_number.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_config_index.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_debug.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_desc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_device_desc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_fd.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_iface_desc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_info.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_mode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_parent_address.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_parent_port.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_port_path.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_power_mode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_power_usage.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_get_speed.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_kernel_driver_active.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_open.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_process.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_req_string_simple_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_req_string_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_request_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_reset.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_set_alt_index.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_set_config_index.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_set_debug.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_set_power_mode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_dev_wait_process.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_error_name.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_me_decode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_me_encode.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_me_get_1.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_me_get_2.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_strerror.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_bulk_intr_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_callback_wrapper.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_clear_stall_sync.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_close.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_drain.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_actual_frames.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_actual_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_max_frames.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_max_packet_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_max_total_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_pointer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_priv_sc0.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_priv_sc1.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_status.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_get_time_complete.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_open.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_pending.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_buffer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_callback.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_flags.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_length.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_priv_sc0.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_priv_sc1.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_timeout.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_set_total_frames.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_setup_bulk.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_setup_control.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_setup_intr.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_setup_isoc.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_start.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_stop.3.gz
+OLD_FILES+=usr/share/man/man3/libusb20_tr_submit.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_alloc_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_attach_kernel_driver.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_bulk_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_cancel_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_check_connected.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_claim_interface.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_clear_halt.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_close.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_control_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_detach_kernel_driver.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_detach_kernel_driver_np.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_error_name.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_event_handler_active.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_event_handling_ok.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_exit.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_bos_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_config_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_device_list.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_ss_endpoint_comp.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_free_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_active_config_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_bus_number.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_config_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_config_descriptor_by_value.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device_address.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device_list.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_device_speed.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_driver.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_driver_np.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_max_iso_packet_size.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_max_packet_size.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_next_timeout.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_pollfds.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_string_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_get_string_descriptor_ascii.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events_completed.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events_locked.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events_timeout.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_handle_events_timeout_completed.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_init.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_interrupt_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_kernel_driver_active.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_lock_event_waiters.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_lock_events.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_open.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_open_device_with_vid_pid.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_parse_bos_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_parse_ss_endpoint_comp.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_ref_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_release_interface.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_reset_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_set_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_set_debug.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_set_interface_alt_setting.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_set_pollfd_notifiers.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_strerror.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_submit_transfer.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_try_lock_events.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_unlock_event_waiters.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_unlock_events.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_unref_device.3.gz
+OLD_FILES+=usr/share/man/man3/libusb_wait_for_event.3.gz
+OLD_FILES+=usr/share/man/man3/libusbhid.3.gz
+OLD_FILES+=usr/share/man/man3/usb.3.gz
+OLD_FILES+=usr/share/man/man3/usb_bulk_read.3.gz
+OLD_FILES+=usr/share/man/man3/usb_bulk_write.3.gz
+OLD_FILES+=usr/share/man/man3/usb_check_connected.3.gz
+OLD_FILES+=usr/share/man/man3/usb_claim_interface.3.gz
+OLD_FILES+=usr/share/man/man3/usb_clear_halt.3.gz
+OLD_FILES+=usr/share/man/man3/usb_close.3.gz
+OLD_FILES+=usr/share/man/man3/usb_control_msg.3.gz
+OLD_FILES+=usr/share/man/man3/usb_destroy_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/usb_device.3.gz
+OLD_FILES+=usr/share/man/man3/usb_fetch_and_parse_descriptors.3.gz
+OLD_FILES+=usr/share/man/man3/usb_find_busses.3.gz
+OLD_FILES+=usr/share/man/man3/usb_find_devices.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_busses.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_descriptor_by_endpoint.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_string.3.gz
+OLD_FILES+=usr/share/man/man3/usb_get_string_simple.3.gz
+OLD_FILES+=usr/share/man/man3/usb_init.3.gz
+OLD_FILES+=usr/share/man/man3/usb_interrupt_read.3.gz
+OLD_FILES+=usr/share/man/man3/usb_interrupt_write.3.gz
+OLD_FILES+=usr/share/man/man3/usb_open.3.gz
+OLD_FILES+=usr/share/man/man3/usb_parse_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/usb_parse_descriptor.3.gz
+OLD_FILES+=usr/share/man/man3/usb_release_interface.3.gz
+OLD_FILES+=usr/share/man/man3/usb_reset.3.gz
+OLD_FILES+=usr/share/man/man3/usb_resetep.3.gz
+OLD_FILES+=usr/share/man/man3/usb_set_altinterface.3.gz
+OLD_FILES+=usr/share/man/man3/usb_set_configuration.3.gz
+OLD_FILES+=usr/share/man/man3/usb_set_debug.3.gz
+OLD_FILES+=usr/share/man/man3/usb_strerror.3.gz
+OLD_FILES+=usr/share/man/man3/usbhid.3.gz
+OLD_FILES+=usr/share/man/man4/u3g.4.gz
+OLD_FILES+=usr/share/man/man4/u3gstub.4.gz
+OLD_FILES+=usr/share/man/man4/uark.4.gz
+OLD_FILES+=usr/share/man/man4/uart.4.gz
+OLD_FILES+=usr/share/man/man4/uath.4.gz
+OLD_FILES+=usr/share/man/man4/ubsa.4.gz
+OLD_FILES+=usr/share/man/man4/ubsec.4.gz
+OLD_FILES+=usr/share/man/man4/ubser.4.gz
+OLD_FILES+=usr/share/man/man4/ubtbcmfw.4.gz
+OLD_FILES+=usr/share/man/man4/uchcom.4.gz
+OLD_FILES+=usr/share/man/man4/ucom.4.gz
+OLD_FILES+=usr/share/man/man4/ucycom.4.gz
+OLD_FILES+=usr/share/man/man4/udav.4.gz
+OLD_FILES+=usr/share/man/man4/udbp.4.gz
+OLD_FILES+=usr/share/man/man4/udp.4.gz
+OLD_FILES+=usr/share/man/man4/udplite.4.gz
+OLD_FILES+=usr/share/man/man4/uep.4.gz
+OLD_FILES+=usr/share/man/man4/ufm.4.gz
+OLD_FILES+=usr/share/man/man4/ufoma.4.gz
+OLD_FILES+=usr/share/man/man4/uftdi.4.gz
+OLD_FILES+=usr/share/man/man4/ugen.4.gz
+OLD_FILES+=usr/share/man/man4/uhci.4.gz
+OLD_FILES+=usr/share/man/man4/uhid.4.gz
+OLD_FILES+=usr/share/man/man4/uhso.4.gz
+OLD_FILES+=usr/share/man/man4/uipaq.4.gz
+OLD_FILES+=usr/share/man/man4/ukbd.4.gz
+OLD_FILES+=usr/share/man/man4/uled.4.gz
+OLD_FILES+=usr/share/man/man4/ulpt.4.gz
+OLD_FILES+=usr/share/man/man4/umass.4.gz
+OLD_FILES+=usr/share/man/man4/umcs.4.gz
+OLD_FILES+=usr/share/man/man4/umct.4.gz
+OLD_FILES+=usr/share/man/man4/umodem.4.gz
+OLD_FILES+=usr/share/man/man4/umoscom.4.gz
+OLD_FILES+=usr/share/man/man4/ums.4.gz
+OLD_FILES+=usr/share/man/man4/unix.4.gz
+OLD_FILES+=usr/share/man/man4/upgt.4.gz
+OLD_FILES+=usr/share/man/man4/uplcom.4.gz
+OLD_FILES+=usr/share/man/man4/ural.4.gz
+OLD_FILES+=usr/share/man/man4/urio.4.gz
+OLD_FILES+=usr/share/man/man4/urndis.4.gz
+OLD_FILES+=usr/share/man/man4/urtw.4.gz
+OLD_FILES+=usr/share/man/man4/urtwn.4.gz
+OLD_FILES+=usr/share/man/man4/urtwnfw.4.gz
+OLD_FILES+=usr/share/man/man4/usb.4.gz
+OLD_FILES+=usr/share/man/man4/usb_quirk.4.gz
+OLD_FILES+=usr/share/man/man4/usb_template.4.gz
+OLD_FILES+=usr/share/man/man4/usfs.4.gz
+OLD_FILES+=usr/share/man/man4/uslcom.4.gz
+OLD_FILES+=usr/share/man/man4/utopia.4.gz
+OLD_FILES+=usr/share/man/man4/uvisor.4.gz
+OLD_FILES+=usr/share/man/man4/uvscom.4.gz
+OLD_FILES+=usr/share/man/man8/uathload.8.gz
+OLD_FILES+=usr/share/man/man8/usbconfig.8.gz
+OLD_FILES+=usr/share/man/man8/usbdump.8.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_alloc_buffer.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_attach.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_detach.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_free_buffer.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_get_data.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_get_data_buffer.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_get_data_error.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_get_data_linear.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_bytes_max.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_data.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_data_buffer.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_data_error.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_put_data_linear.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_reset.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_softc.9.gz
+OLD_FILES+=usr/share/man/man9/usb_fifo_wakeup.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_do_request.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_do_request_flags.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_errstr.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_lookup_id_by_info.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_lookup_id_by_uaa.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_clear_stall.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_drain.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_pending.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_poll.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_setup.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_start.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_stop.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_submit.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_transfer_unsetup.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_clr_flag.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_frame_data.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_frame_len.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_get_frame.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_get_priv.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_is_stalled.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_max_framelen.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_max_frames.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_max_len.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_flag.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_frame_data.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_frame_len.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_frame_offset.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_frames.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_interval.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_priv.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_stall.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_set_timeout.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_softc.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_state.9.gz
+OLD_FILES+=usr/share/man/man9/usbd_xfer_status.9.gz
+OLD_FILES+=usr/share/man/man9/usbdi.9.gz
+OLD_FILES+=usr/share/misc/usb_hid_usages
+OLD_FILES+=usr/share/misc/usbdevs
.endif
.if ${MK_UTMPX} == no
OpenPOWER on IntegriCloud