Source: libindicate Severity: minor Tags: patch User: pkg-llvm-t...@lists.alioth.debian.org Usertags: clang-ftbfs
Hello, Using the rebuild infrastructure, your package fails to build with clang (instead of gcc). See build logs here: http://clang.debian.net/logs/2014-01-14/libindicate_0.6.92-2_unstable_clang.log Thanks, Alexander -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.13-1-amd64 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
--- libindicate-0.6.92/libindicate/listener.c 2012-03-21 16:37:56.000000000 -0400 +++ libindicate-0.6.92-my/libindicate/listener.c 2014-06-12 18:26:10.677301595 -0400 @@ -126,9 +126,9 @@ static GDBusNodeInfo * bus_listener_node_info = NULL; static GDBusInterfaceInfo * bus_listener_interface_info = NULL; static const GDBusInterfaceVTable bus_interface_table = { - method_call: bus_method_call, - get_property: NULL, /* No properties that can be get */ - set_property: NULL /* No properties that can be set */ + .method_call = bus_method_call, + .get_property = NULL, /* No properties that can be get */ + .set_property = NULL /* No properties that can be set */ }; --- libindicate-0.6.92/libindicate/server.c 2012-03-09 16:55:27.000000000 -0500 +++ libindicate-0.6.92-my/libindicate/server.c 2014-06-12 18:19:55.248037430 -0400 @@ -211,9 +211,9 @@ static GDBusNodeInfo * bus_node_info = NULL; static GDBusInterfaceInfo * bus_interface_info = NULL; static const GDBusInterfaceVTable bus_interface_table = { - method_call: bus_method_call, - get_property: bus_get_prop, - set_property: NULL /* No properties that can be set */ + .method_call = bus_method_call, + .get_property = bus_get_prop, + .set_property = NULL /* No properties that can be set */ }; static method_table_t bus_method_table[METHOD_COUNT];