Control: tags -1 patch fixed-upstream Hi,
This FTBFS can be worked around by not using -Werror. Upstream has done that in their GitHub repository (in a so-called "initial commit", which makes it non-obvious). On my amd64 and i386 cowbuilder chroots, the build succeeds when debian/patches/buildflags is modified not to add -Werror. Diff attached. Regards, Juhani https://github.com/inflex/ripMIME/blob/master/Makefile#L18 https://github.com/inflex/ripMIME/blob/master/ripOLE/Makefile#L3 https://sources.debian.org/src/ripmime/1.4.0.10.debian.1-1/Makefile/#L18 https://sources.debian.org/src/ripmime/1.4.0.10.debian.1-1/ripOLE/Makefile/#L3 https://sources.debian.org/src/ripmime/1.4.0.10.debian.1-1/debian/patches/buildflags
diff -Nru ripmime-1.4.0.10.debian.1/debian/patches/buildflags ripmime-1.4.0.10.debian.1/debian/patches/buildflags --- ripmime-1.4.0.10.debian.1/debian/patches/buildflags 2013-11-10 11:47:07.000000000 +0200 +++ ripmime-1.4.0.10.debian.1/debian/patches/buildflags 2017-12-11 13:01:51.000000000 +0200 @@ -5,7 +5,7 @@ #CFLAGS ?= -Wall -g -O2 -Werror $(CPU_OPTS) #CFLAGS=-Wall -g -O2 -Wundef -Wshadow -Wsign-compare -I. -CFLAGS=-Wall -g -I. -O2 -Werror -+CFLAGS=-Wall -g -I. -O2 -Werror $(shell dpkg-buildflags --get CFLAGS) ++CFLAGS=-Wall -g -I. -O2 $(shell dpkg-buildflags --get CFLAGS) # OLE decoding is still considered to be 'beta' mode - so it # disabled in the stable release of ripMIME for now @@ -32,7 +32,7 @@ OBJS= ole.o olestream-unwrap.o bytedecoders.o logger.o pldstr.o bt-int.o -CFLAGS=-Wall -g -O2 -I. -Werror -+CFLAGS=-Wall -g -O2 -I. -Werror $(shell dpkg-buildflags --get CFLAGS) ++CFLAGS=-Wall -g -O2 -I. $(shell dpkg-buildflags --get CFLAGS) .c.o: