Android-x86
Fork
Donation

  • R/O
  • HTTP
  • SSH
  • HTTPS

external-bluetooth-glib: List of commits

external/bluetooth/glib


RSS
Rev. Time Author
43b201b lollipop-x86 marshmallow-x86 nougat-x86 android-x86-6.0-r1 android-x86-6.0-r2 android-x86-6.0-r3 2015-08-27 01:43:32 Chih-Wei Huang

android: make the config be compatible with 64-bit platform

2b3086c kitkat-x86 2014-02-12 21:48:09 Andrzej Kaczmarek

android: Make library unstripped for debug variants

3701c73 2013-10-21 21:34:46 Andrei Emeltchenko

android: Add top level Android.mk

Top level Android makefile is needed for glib build

66a6690 2013-10-09 17:41:29 Szymon Janc

Add Android build system support

Compiler warnings flags not enabled by glib upstream but enabled by\
Android build are disabled to not make extra noise while building.

780a677 2012-07-15 07:03:45 Matthias Clasen

Updates for 2.32.4

be0bef9 2012-07-15 07:03:45 Matthias Clasen

GApplication: remove reference to non-existing example

There's no example called gapplication-example-menu.c in
the gio/tests/ directory.

ddd7f74 2012-07-15 05:50:35 Matthias Clasen

Fix contenttype tests

069f429 2012-07-15 05:33:23 Matthias Clasen

Fix GModule documentation a bit

The documentation for g_module_make_resident was for some reason
in the doc comment for g_module_name.

https://bugzilla.gnome.org/show_bug.cgi?id=679813

aa6239d 2012-07-15 05:33:23 Rui Matos

GDBusNodeInfo: remove a spurious for loop

https://bugzilla.gnome.org/show_bug.cgi?id=679671

f0fe7d5 2012-07-15 05:33:22 Rui Matos

GDBusNodeInfo: the XML string must contain exactly one node element

Make the documentation clear about this.

https://bugzilla.gnome.org/show_bug.cgi?id=679671

3f0ed5c 2012-07-15 05:33:22 Ryan Lortie

GVariant: fix string validation

String validation was done by checking if the string was valid utf8 and
ensuring that the first non-utf8 character was the last character (ie:
the nul terminator).

No check was actually done to make sure that this byte actually
contained a nul, however, so it was possible that you could have a
string like "hello\xff" with length 6 that would correctly validate.

Fix that, and test it.

c9b3993 2012-07-15 05:33:22 Antoine Jacoutot

goptions: use G_N_ELEMENTS instead of nitems

9e0ea40 2012-07-15 05:33:22 Antoine Jacoutot

OpenBSD: explicitely define nitems

nitems is never guaranteed to be defined in sys/params.h as it is meant
to be defined within a protected ifdef __KERNEL condition.

f6b98fe 2012-07-15 05:33:21 Ryan Lortie

GVariant: support comparing booleans

g_variant_compare() is documented as working on booleans but somehow
this case was missed. Add it and test it.

Problem discovered by Charles Kerr.

e6f659a 2012-07-15 05:33:21 Ryan Lortie

GSettings: be more careful about keys names with /

Prevent attempts to access keys ending with slashes that exist in the
schema file as references to child schemas.

Also: don't emit change signals for these same keys.

6f2b922 2012-07-15 05:33:21 Emmanuele Bassi

Constify collect and lcopy strings in GTypeValueTable

This avoids warnings when creating idiomatic value tables, like:

static const GTypeValueTable _clutter_shader_float_value_table = {
clutter_value_init_shader_float,
clutter_value_free_shader_float,
clutter_value_copy_shader_float,
clutter_value_peek_pointer,
"ip",
clutter_value_collect_shader_float,
"pp",
clutter_value_lcopy_shader_float
};

Because the strings are literals. And, really: nobody should be using
allocated values for the collection and lcopy strings.

https://bugzilla.gnome.org/show_bug.cgi?id=671545

89c5e03 2012-07-15 05:33:20 Matthias Clasen

Improve the g_dir_read_name documentation

This function can return NULL in error cases as well. Document
this, and explain how to discriminate the cases.
https://bugzilla.gnome.org/show_bug.cgi?id=639771

1eea903 2012-07-15 05:33:20 Neil Roberts

Fix the 'Since' tag for G_SOURCE_{REMOVE,CONTINUE}

The Since tag for these was saying 2.28 but it was actually added in
2.31. It looks like all of the Since tags list stable version numbers
so this patch bumps that up to 2.32.

https://bugzilla.gnome.org/show_bug.cgi?id=679258

33f8869 2012-07-15 05:33:20 Simon Feltman

Updated codegen to work with python3.

Most changes were just replacing usage of "has_key" with "in".
Also updated the sorting function which was simplified and
changed to a "key" function instead of "cmp" (which is no longer
supported in python3. Verified everything builds with
python 2.7 and 3.

https://bugzilla.gnome.org/show_bug.cgi?id=678066

c147bd5 2012-07-15 05:33:19 Johan Dahlin

Use the same Python as we found in configure

Don't assume /usr/bin/python is python 2.x, on newer Ubuntu versions
it's actually python 3.x.

4b8c6f9 2012-07-15 05:33:19 Martin Pitt

Fix /contenttype/guess test

After fixing bug 674452 this test case now reliably fails, as "ABC abc" is text
and definitively not PowerPoint. It previously worked as g_content_type_guess()
was reading beyond the boundary of the data due to specifying -1 as data
length.

Update that test case to expect a PO template instead, and add two more with a
definitive PO template syntax and some binary data. We do not currently have a
MIME magic for PowerPoint, so we cannot actually detect it with certainty, but
at least make sure that the returned MIME type is correct.

https://bugzilla.gnome.org/show_bug.cgi?id=678941

e58a299 2012-07-15 05:33:19 Alexander Larsson

Fix the mimetype default fix

We need to ignore the defaults.list item only when there
was a mimetype handler found in a previous mimetype, not
if one was found for the same mimetype as the one that
is listed in defaults.list (same for the new-style defaults).

8d0f19d 2012-07-15 05:33:19 Alexander Larsson

Fix default app lookup wrt parent types and defaults.list

There was an issue when looking up the default handler
for a type where a supertype was listed in defaults.list.
We would pick the default for the parent type even if
there was a handler for the more specific type.

In the case of the new-style defaults marking (
"Default Applications" in mimeapps.list) we were already
checking for a more specific handler befor using a default,
but we also need to do a similar check for the defaults.list
case.

https://bugzilla.gnome.org/show_bug.cgi?id=678944

5bf587c 2012-07-15 05:33:18 Stef Walter

GTlsInteraction: Fix incorrect locking of mutex

* Fix incorrect locking of mutex in g_tls_interaction_invoke_ask_password()

https://bugzilla.gnome.org/show_bug.cgi?id=678758

c1aac00 2012-07-15 05:33:18 Martin Pitt

gio/tests/contenttype: Call g_content_type_guess() with valid data len

g_content_type_guess() requires specifying a valid data length. Fixes a
segfault when running the test.

Also add an explicit check for this and return XDG_MIME_TYPE_UNKNOWN when
data_size is specified as -1, to avoid crashing.

https://bugzilla.gnome.org/show_bug.cgi?id=674452

7f3295b 2012-07-15 05:33:18 Martin Pitt

/mainloop/timeouts test: Reduce race condition

Due to load, particular traits of the architecture, or other circumstances, the
/mainloop/timeouts sometimes manages to call the "every
100 ms" timer loop only 9 times in 1050 ms.

This is an inherent race-condition in the test; allow it some slack and accept
9 times as well.

https://bugzilla.gnome.org/show_bug.cgi?id=678959

567f4d0 2012-07-15 05:33:17 Philipp Kern

valuetransform: Fix definition of ulong_bool

On big endian 64 bit machines such as s390x, an uint is too small to hold a
ulong_bool; it needs to be an actual ulong.

https://bugzilla.gnome.org/show_bug.cgi?id=678949
http://bugs.debian.org/662057

2e76d87 2012-07-15 05:33:17 Martin Pitt

Allow slightly too small poll duration in /socket/timed_wait test

Sometimes the poll duration in the /socket/timed_wait test is slightly lower
than the requested 100000, causing failures like

ERROR:/build/buildd/glib2.0-2.33.2/./gio/tests/socket.c:619:test_timed_wait:
assertion failed (poll_duration > = 100000): (99240 >= 100000)
FAIL

Adjust the test to also allow some jitter in the "too small" direction, similar
to the already existing span for "slightly too large".

https://bugzilla.gnome.org/show_bug.cgi?id=678881

1da1129 2012-07-15 05:33:17 Lars Uebernickel

GDbusActionGroup: always set strict when _query_action fails

086603c 2012-07-15 05:33:17 Matthias Clasen

Remove a few redundant ;s

Show on old repository browser