summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpvalchev <pvalchev@openbsd.org>2001-12-30 07:10:42 +0000
committerpvalchev <pvalchev@openbsd.org>2001-12-30 07:10:42 +0000
commit3cc97b41bd910e3f4ea55576554872fc7be4d314 (patch)
tree63d6270cdccc16994c09aa08bacaabe2193f1250
parentlibusb -> libusbhid (diff)
downloadwireguard-openbsd-3cc97b41bd910e3f4ea55576554872fc7be4d314.tar.xz
wireguard-openbsd-3cc97b41bd910e3f4ea55576554872fc7be4d314.zip
libusb has been renamed
-rw-r--r--usr.bin/usbhidctl/Makefile4
-rw-r--r--usr.bin/usbhidctl/usbhid.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/usbhidctl/Makefile b/usr.bin/usbhidctl/Makefile
index 9fe0245bd5b..2ddba645f55 100644
--- a/usr.bin/usbhidctl/Makefile
+++ b/usr.bin/usbhidctl/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.1 2001/09/02 17:55:29 pvalchev Exp $
+# $OpenBSD: Makefile,v 1.2 2001/12/30 07:10:42 pvalchev Exp $
# $NetBSD: Makefile,v 1.4 1999/05/11 21:02:25 augustss Exp $
PROG= usbhidctl
SRCS= usbhid.c
-LDADD+= -lusb
+LDADD+= -lusbhid
DPADD+= ${LIBUSB}
.include <bsd.prog.mk>
diff --git a/usr.bin/usbhidctl/usbhid.c b/usr.bin/usbhidctl/usbhid.c
index 768ce6fa40a..6630ad8f156 100644
--- a/usr.bin/usbhidctl/usbhid.c
+++ b/usr.bin/usbhidctl/usbhid.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usbhid.c,v 1.1 2001/09/02 17:55:29 pvalchev Exp $ */
+/* $OpenBSD: usbhid.c,v 1.2 2001/12/30 07:10:42 pvalchev Exp $ */
/* $NetBSD: usbhid.c,v 1.17 2001/03/28 03:17:42 simonb Exp $ */
/*
@@ -51,7 +51,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include <usb.h>
+#include <usbhid.h>
/* Parser tokens */
#define DELIM_USAGE '.'