Hello community, here is the log from the commit of package bluez-libs checked in at Thu May 17 11:23:05 CEST 2007. -------- --- bluez-libs/bluez-libs.changes 2007-01-28 23:57:29.000000000 +0100 +++ /mounts/work_src_done/STABLE/bluez-libs/bluez-libs.changes 2007-05-10 15:41:11.000000000 +0200 @@ -1,0 +2,8 @@ +Thu May 10 15:39:16 CEST 2007 - dgollub@suse.de + +- update to v3.10: + * Add version code for Bluetooth 2.1 specification. + * Add ESCO_LINK connection type constant. + * Export sdp_uuid32_to_uuid128() function. + +------------------------------------------------------------------- Old: ---- bluez-libs-3.9.tar.gz New: ---- bluez-libs-3.10.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bluez-libs.spec ++++++ --- /var/tmp/diff_new_pack.A10029/_old 2007-05-17 11:22:54.000000000 +0200 +++ /var/tmp/diff_new_pack.A10029/_new 2007-05-17 11:22:54.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package bluez-libs (Version 3.9) +# spec file for package bluez-libs (Version 3.10) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -12,8 +12,8 @@ Name: bluez-libs URL: http://bluez.sourceforge.net -Version: 3.9 -Release: 2 +Version: 3.10 +Release: 1 Summary: Bluetooth Libraries License: GNU General Public License (GPL) Group: Hardware/Mobile @@ -63,7 +63,12 @@ %{_datadir}/aclocal/bluez.m4 %doc AUTHORS COPYING INSTALL ChangeLog NEWS README -%changelog -n bluez-libs +%changelog +* Thu May 10 2007 - dgollub@suse.de +- update to v3.10: + * Add version code for Bluetooth 2.1 specification. + * Add ESCO_LINK connection type constant. + * Export sdp_uuid32_to_uuid128() function. * Sun Jan 28 2007 - seife@suse.de - update to v3.9: * update copyright information ++++++ bluez-libs-3.9.tar.gz -> bluez-libs-3.10.tar.gz ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/ChangeLog new/bluez-libs-3.10/ChangeLog --- old/bluez-libs-3.9/ChangeLog 2007-01-28 21:16:41.000000000 +0100 +++ new/bluez-libs-3.10/ChangeLog 2007-05-10 08:40:53.000000000 +0200 @@ -1,3 +1,8 @@ +ver 3.10: + Add version code for Bluetooth 2.1 specification. + Add ESCO_LINK connection type constant. + Export sdp_uuid32_to_uuid128() function. + ver 3.9: Update copyright information. diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/configure new/bluez-libs-3.10/configure --- old/bluez-libs-3.9/configure 2007-01-28 21:27:12.000000000 +0100 +++ new/bluez-libs-3.10/configure 2007-05-10 09:49:26.000000000 +0200 @@ -1775,7 +1775,7 @@ # Define the identity of the package. PACKAGE=bluez-libs - VERSION=3.9 + VERSION=3.10 cat >>confdefs.h <<_ACEOF diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/configure.in new/bluez-libs-3.10/configure.in --- old/bluez-libs-3.9/configure.in 2007-01-28 21:16:41.000000000 +0100 +++ new/bluez-libs-3.10/configure.in 2007-05-10 08:40:53.000000000 +0200 @@ -1,7 +1,7 @@ AC_PREREQ(2.50) AC_INIT() -AM_INIT_AUTOMAKE(bluez-libs, 3.9) +AM_INIT_AUTOMAKE(bluez-libs, 3.10) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/include/hci.h new/bluez-libs-3.10/include/hci.h --- old/bluez-libs-3.9/include/hci.h 2007-01-28 21:16:41.000000000 +0100 +++ new/bluez-libs-3.10/include/hci.h 2007-05-09 08:40:39.000000000 +0200 @@ -198,6 +198,7 @@ /* Baseband links */ #define SCO_LINK 0x00 #define ACL_LINK 0x01 +#define ESCO_LINK 0x02 /* LMP features */ #define LMP_3SLOT 0x01 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/include/sdp_lib.h new/bluez-libs-3.10/include/sdp_lib.h --- old/bluez-libs-3.9/include/sdp_lib.h 2007-01-28 21:16:42.000000000 +0100 +++ new/bluez-libs-3.10/include/sdp_lib.h 2007-05-09 08:40:39.000000000 +0200 @@ -475,6 +475,7 @@ int sdp_uuid128_cmp(const void *p1, const void *p2); uuid_t *sdp_uuid_to_uuid128(uuid_t *uuid); void sdp_uuid16_to_uuid128(uuid_t *uuid128, uuid_t *uuid16); +void sdp_uuid32_to_uuid128(uuid_t *uuid128, uuid_t *uuid32); int sdp_uuid128_to_uuid(uuid_t *uuid); int sdp_uuid_to_proto(uuid_t *uuid); int sdp_uuid_extract(const uint8_t *buffer, uuid_t *uuid, int *scanned); diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/src/hci.c new/bluez-libs-3.10/src/hci.c --- old/bluez-libs-3.9/src/hci.c 2007-01-28 21:16:42.000000000 +0100 +++ new/bluez-libs-3.10/src/hci.c 2007-02-18 04:34:48.000000000 +0100 @@ -505,6 +505,7 @@ { "1.1", 0x01 }, { "1.2", 0x02 }, { "2.0", 0x03 }, + { "2.1", 0x04 }, { NULL } }; diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/src/Makefile.am new/bluez-libs-3.10/src/Makefile.am --- old/bluez-libs-3.9/src/Makefile.am 2006-12-25 16:29:24.000000000 +0100 +++ new/bluez-libs-3.10/src/Makefile.am 2007-05-10 08:40:54.000000000 +0200 @@ -2,7 +2,7 @@ lib_LTLIBRARIES = libbluetooth.la libbluetooth_la_SOURCES = bluetooth.c hci.c sdp.c -libbluetooth_la_LDFLAGS = -version-info 7:0:5 +libbluetooth_la_LDFLAGS = -version-info 8:0:6 INCLUDES = -I$(top_builddir)/include diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/src/Makefile.in new/bluez-libs-3.10/src/Makefile.in --- old/bluez-libs-3.9/src/Makefile.in 2007-01-28 21:27:10.000000000 +0100 +++ new/bluez-libs-3.10/src/Makefile.in 2007-05-10 09:49:24.000000000 +0200 @@ -166,7 +166,7 @@ target_alias = @target_alias@ lib_LTLIBRARIES = libbluetooth.la libbluetooth_la_SOURCES = bluetooth.c hci.c sdp.c -libbluetooth_la_LDFLAGS = -version-info 7:0:5 +libbluetooth_la_LDFLAGS = -version-info 8:0:6 INCLUDES = -I$(top_builddir)/include MAINTAINERCLEANFILES = Makefile.in all: all-am diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.9/src/sdp.c new/bluez-libs-3.10/src/sdp.c --- old/bluez-libs-3.9/src/sdp.c 2007-01-28 21:16:42.000000000 +0100 +++ new/bluez-libs-3.10/src/sdp.c 2007-05-09 08:40:39.000000000 +0200 @@ -2629,13 +2629,14 @@ reqsize += sizeof(uint32_t); p += sizeof(uint32_t); - if (0 > sdp_gen_record_pdu(rec, &pdu)) { + if (sdp_gen_record_pdu(rec, &pdu) < 0) { errno = ENOMEM; status = -1; goto end; } memcpy(p, pdu.data, pdu.data_size); reqsize += pdu.data_size; + free(pdu.data); reqhdr->plen = htons(reqsize - sizeof(sdp_pdu_hdr_t)); status = sdp_send_req_w4_rsp(session, reqbuf, rspbuf, reqsize, &rspsize); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de