blob: b4aaadb53e2dc14df57cc77ea350562923c04fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$NetBSD: patch-af,v 1.2 2006/07/17 12:29:57 xtraeme Exp $
--- obexftp/obexftp_io.c.orig 2006-07-09 12:40:32.000000000 +0200
+++ obexftp/obexftp_io.c 2006-07-09 12:41:36.000000000 +0200
@@ -30,6 +30,18 @@
#include <string.h>
#include <time.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifdef HAVE_BLUETOOTH
+#ifdef __NetBSD__
+#include <bluetooth.h>
+#else
+#include <bluetooth/bluetooth.h>
+#endif
+#endif /* HAVE_BLUETOOTH */
+
#include <openobex/obex.h>
#include "obexftp_io.h"
|