blob: 688f038d51f52635d3fd4d6adec28dcecae3ec62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ac,v 1.1 2006/04/22 18:19:02 joerg Exp $
--- qcamview.c.orig 2006-04-22 18:15:43.000000000 +0000
+++ qcamview.c
@@ -16,7 +16,11 @@
#include <string.h>
#include <err.h>
+#if defined(__DragonFly__)
+#include <bus/usb/usb.h>
+#else
#include <dev/usb/usb.h>
+#endif
#include <gtk/gtk.h>
#include <gdk_imlib.h>
|