Control: tags 778173 + pending

Dear maintainer,

I've prepared an NMU for wmressel (versioned as 0.8-5.1) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer -  https://www.debian.org/
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Funny Van Dannen: Jesus
diff -u wmressel-0.8/debian/changelog wmressel-0.8/debian/changelog
--- wmressel-0.8/debian/changelog
+++ wmressel-0.8/debian/changelog
@@ -1,3 +1,12 @@
+wmressel (0.8-5.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix "ftbfs with GCC-5": apply patch from Elizabeth J Dall:
+    add extern to the INLINE functions.
+    (Closes: #778173)
+
+ -- gregor herrmann <gre...@debian.org>  Sun, 19 Jul 2015 17:32:42 +0200
+
 wmressel (0.8-5) unstable; urgency=low
 
   * Patched wmressel to use to link against gtk 2.0 instead of 1.2.
only in patch2:
unchanged:
--- wmressel-0.8.orig/src/wmgeneral/list.c
+++ wmressel-0.8/src/wmgeneral/list.c
@@ -38,7 +38,7 @@
 
 /* Return a cons cell produced from (head . tail) */
 
-INLINE LinkedList* 
+extern INLINE LinkedList* 
 list_cons(void* head, LinkedList* tail)
 {
   LinkedList* cell;
@@ -51,7 +51,7 @@
 
 /* Return the length of a list, list_length(NULL) returns zero */
 
-INLINE int
+extern INLINE int
 list_length(LinkedList* list)
 {
   int i = 0;
@@ -66,7 +66,7 @@
 /* Return the Nth element of LIST, where N count from zero.  If N 
    larger than the list length, NULL is returned  */
 
-INLINE void*
+extern INLINE void*
 list_nth(int index, LinkedList* list)
 {
   while(index-- != 0)
@@ -81,7 +81,7 @@
 
 /* Remove the element at the head by replacing it by its successor */
 
-INLINE void
+extern INLINE void
 list_remove_head(LinkedList** list)
 {
   if (!*list) return;  
@@ -101,7 +101,7 @@
 
 /* Remove the element with `car' set to ELEMENT */
 /*
-INLINE void
+extern INLINE void
 list_remove_elem(LinkedList** list, void* elem)
 {
   while (*list)
@@ -112,7 +112,7 @@
     }
 }*/
 
-INLINE LinkedList *
+extern INLINE LinkedList *
 list_remove_elem(LinkedList* list, void* elem)
 {
     LinkedList *tmp;
@@ -132,7 +132,7 @@
 
 /* Return element that has ELEM as car */
 
-INLINE LinkedList*
+extern INLINE LinkedList*
 list_find(LinkedList* list, void* elem)
 {
   while(list)
@@ -146,7 +146,7 @@
 
 /* Free list (backwards recursive) */
 
-INLINE void
+extern INLINE void
 list_free(LinkedList* list)
 {
   if(list)
@@ -158,7 +158,7 @@
 
 /* Map FUNCTION over all elements in LIST */
 
-INLINE void
+extern INLINE void
 list_mapcar(LinkedList* list, void(*function)(void*))
 {
   while(list)

Attachment: signature.asc
Description: Digital Signature

Reply via email to