Control: tags 957948 + patch Control: tags 957948 + pending -- Dear maintainer,
I've prepared an NMU for wmmatrix (versioned as 0.2-12.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should cancel it. -- Regards Sudip diff -u wmmatrix-0.2/debian/changelog wmmatrix-0.2/debian/changelog --- wmmatrix-0.2/debian/changelog +++ wmmatrix-0.2/debian/changelog @@ -1,3 +1,10 @@ +wmmatrix (0.2-12.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix ftbfs with GCC-10. (Closes: #957948) + + -- Sudip Mukherjee <sudipm.mukher...@gmail.com> Tue, 08 Sep 2020 20:51:45 +0100 + wmmatrix (0.2-12) unstable; urgency=low * Change Build-Depends: x11proto-core-dev. (Closes: #515407) only in patch2: unchanged: --- wmmatrix-0.2.orig/xutils.c +++ wmmatrix-0.2/xutils.c @@ -63,10 +63,14 @@ extern char TimeColor[30]; extern char BackgroundColor[30]; - - - - +/* + * Global variable + */ +Display *display; +Window Root; +Window iconwin, win; +int screen; +int DisplayDepth; /* * flush_expose only in patch2: unchanged: --- wmmatrix-0.2.orig/xutils.h +++ wmmatrix-0.2/xutils.h @@ -18,11 +18,11 @@ /* * Global variable */ -Display *display; -Window Root; -Window iconwin, win; -int screen; -int DisplayDepth; +extern Display *display; +extern Window Root; +extern Window iconwin, win; +extern int screen; +extern int DisplayDepth;