Changes: * Motorola support, tested with models v710/e815 * object caching and directory parsing (for things like ObexFS) * Nokia support via IrDA and Bluetooth * Siemens S65 support * Everything but data goes to stderr for more simple redirection. * VMO converter (gsm and wav) split into seperate package. * Ericsson and Siemens cable support unified (still testing). pkgsrc changes: * NetBSD bluetooth support, thanks to Iain Hibbert for finishing it.
15 lines
451 B
Text
15 lines
451 B
Text
$NetBSD: patch-ae,v 1.2 2006/07/17 12:29:57 xtraeme Exp $
|
|
|
|
--- obexftp/client.c.orig 2006-07-09 12:37:02.000000000 +0200
|
|
+++ obexftp/client.c 2006-07-09 12:38:10.000000000 +0200
|
|
@@ -48,6 +48,10 @@
|
|
#ifdef __FreeBSD__
|
|
#include <sys/types.h>
|
|
#include <bluetooth.h>
|
|
+#elif defined(__NetBSD__)
|
|
+#include <sys/types.h>
|
|
+#include <bluetooth.h>
|
|
+#include <netbt/rfcomm.h>
|
|
#else /* Linux */
|
|
#include <bluetooth/bluetooth.h>
|
|
#include <bluetooth/rfcomm.h>
|