From df8a0f324d377d1ebdca11fef45f877c3256185d Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 8 Jan 2022 20:22:28 -0800 Subject: [PATCH] bluez: fix compilation with glibc sync() is implemented now. Signed-off-by: Rosen Penev --- utils/bluez/patches/206-sync.patch | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 utils/bluez/patches/206-sync.patch diff --git a/utils/bluez/patches/206-sync.patch b/utils/bluez/patches/206-sync.patch new file mode 100644 index 0000000000..265400e646 --- /dev/null +++ b/utils/bluez/patches/206-sync.patch @@ -0,0 +1,27 @@ +--- a/obexd/client/sync.c ++++ b/obexd/client/sync.c +@@ -209,7 +209,7 @@ static void sync_remove(struct obc_sessi + g_dbus_unregister_interface(conn, path, SYNC_INTERFACE); + } + +-static struct obc_driver sync = { ++static struct obc_driver sync2 = { + .service = "SYNC", + .uuid = SYNC_UUID, + .target = OBEX_SYNC_UUID, +@@ -228,7 +228,7 @@ int sync_init(void) + if (!conn) + return -EIO; + +- err = obc_driver_register(&sync); ++ err = obc_driver_register(&sync2); + if (err < 0) { + dbus_connection_unref(conn); + conn = NULL; +@@ -245,5 +245,5 @@ void sync_exit(void) + dbus_connection_unref(conn); + conn = NULL; + +- obc_driver_unregister(&sync); ++ obc_driver_unregister(&sync2); + }