[maemo-commits] [maemo-commits] r14930 - in projects/connectivity/bluez-utils-debian/trunk: . patches

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Mon Dec 10 11:29:15 EET 2007
Author: jh
Date: 2007-12-10 11:29:05 +0200 (Mon, 10 Dec 2007)
New Revision: 14930

Added:
   projects/connectivity/bluez-utils-debian/trunk/patches/006_no_sdp_cache.patch
Modified:
   projects/connectivity/bluez-utils-debian/trunk/changelog
   projects/connectivity/bluez-utils-debian/trunk/control
Log:
Update to 3.23

Modified: projects/connectivity/bluez-utils-debian/trunk/changelog
===================================================================
--- projects/connectivity/bluez-utils-debian/trunk/changelog	2007-12-10 09:18:06 UTC (rev 14929)
+++ projects/connectivity/bluez-utils-debian/trunk/changelog	2007-12-10 09:29:05 UTC (rev 14930)
@@ -1,3 +1,17 @@
+bluez-utils (3.23-0osso1) unstable; urgency=low
+
+  * New upstream release.
+  * Proper mmap usage (fix mentioned below too). Fixes: NB#77011
+  * Changes from upstream ChangeLog:
+     - Fix key search function to honor the mmap area size.
+     - Fix Avahi integration of network service.
+     - Add new plugin communication for audio service.
+     - Enable basic AVRCP support by default.
+     - More optimizations to the SBC library.
+     - Create common error definitions.
+
+ -- Johan Hedberg <johan.hedberg at nokia.com>  Mon, 10 Dec 2007 09:22:43 +0000
+
 bluez-utils (3.22-0osso2) unstable; urgency=low
 
   * Remove SDP cache support since it seems to be unstable. Fixes: NB#75222

Modified: projects/connectivity/bluez-utils-debian/trunk/control
===================================================================
--- projects/connectivity/bluez-utils-debian/trunk/control	2007-12-10 09:18:06 UTC (rev 14929)
+++ projects/connectivity/bluez-utils-debian/trunk/control	2007-12-10 09:29:05 UTC (rev 14930)
@@ -2,7 +2,7 @@
 Section: admin
 Priority: optional
 Maintainer: Johan Hedberg <johan.hedberg at nokia.com>
-Build-Depends: bison, debhelper (>> 4.1.0), flex, libbluetooth2-dev (>= 3.22), autotools-dev, cdbs, libdbus-1-dev, libglib2.0-dev, libhal-dev, libasound2-dev, libgstreamer-plugins-base0.10-dev
+Build-Depends: bison, debhelper (>> 4.1.0), flex, libbluetooth2-dev (>= 3.23), autotools-dev, cdbs, libdbus-1-dev, libglib2.0-dev, libhal-dev, libasound2-dev, libgstreamer-plugins-base0.10-dev
 Standards-Version: 3.6.1
 
 Package: bluez-utils

Added: projects/connectivity/bluez-utils-debian/trunk/patches/006_no_sdp_cache.patch
===================================================================
--- projects/connectivity/bluez-utils-debian/trunk/patches/006_no_sdp_cache.patch	2007-12-10 09:18:06 UTC (rev 14929)
+++ projects/connectivity/bluez-utils-debian/trunk/patches/006_no_sdp_cache.patch	2007-12-10 09:29:05 UTC (rev 14930)
@@ -0,0 +1,29 @@
+--- hcid/dbus-sdp.c	2007-12-10 09:25:36.000000000 +0000
++++ hcid/dbus-sdp.c	2007-12-10 09:26:59.000000000 +0000
+@@ -358,25 +358,7 @@
+ 
+ static int sdp_store_record(const char *src, const char *dst, uint32_t handle, uint8_t *buf, size_t size)
+ {
+-	char filename[PATH_MAX + 1], key[28], *value;
+-	int i, err;
+-
+-	create_name(filename, PATH_MAX, STORAGEDIR, src, "sdp");
+-
+-	create_file(filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
+-
+-	snprintf(key, sizeof(key), "%17s#%08X", dst, handle);
+-
+-	value = g_malloc0(size * 2 + 1);
+-
+-	for (i = 0; i < size; i++)
+-		sprintf(value + (i * 2), "%02X", buf[i]);
+-
+-	err = textfile_put(filename, key, value);
+-
+-	g_free(value);
+-
+-	return err;
++	return 0;
+ }
+ 
+ static void transaction_context_free(void *udata, gboolean cache)


More information about the maemo-commits mailing list