abook (0.6.0~pre2-4) unstable; urgency=low
+ [ Rhonda D'Vine ]
* Add -std=gnu89 to CFLAGS as suggested by Martin Michlmayr to fix FTBFS
with gcc-5, thanks (closes: #777764)
+ [ Arthur Marble ]
+ * Fix FTBFS with clang (closes: #756536)
+ - Fixed undefined reference error
+ changed inline int field_id to int field_id
+
--
abook (0.6.0~pre2-3) unstable; urgency=low
--- /dev/null
+Author: Arthur Marble <arthur@info9.net> vim:ft=diff:
+Description: Fix FTBFS with clang
+ - Fixed undefined reference error
+ changed inline int field_id to int field_id
+
+Index: VCS/database.h
+===================================================================
+--- VCS.orig/database.h 2015-06-30 19:54:40.542707520 +0200
++++ VCS/database.h 2015-06-30 19:54:40.542707520 +0200
+@@ -60,7 +60,7 @@
+ /*
+ * Field operations
+ */
+-inline int field_id(int i);
++static inline int field_id(int i);
+ abook_field *find_standard_field(char *key, int do_declare);
+ abook_field *real_find_field(char *key, abook_field_list *list, int *nb);
+ #define find_field(key, list) real_find_field(key, list, NULL)