diff -Nru re-0.1/debian/changelog re-0.1/debian/changelog --- re-0.1/debian/changelog 2015-12-06 14:10:56.000000000 +0000 +++ re-0.1/debian/changelog 2016-11-19 17:58:31.000000000 +0000 @@ -1,3 +1,10 @@ +re (0.1-6.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS (Closes: #811750). + + -- Andrey Rahmatullin Sat, 19 Nov 2016 22:58:31 +0500 + re (0.1-6) unstable; urgency=low * Compile with echo on to show the GCC command line (Closes: #355127) diff -Nru re-0.1/debian/patches/fix-narrowing.patch re-0.1/debian/patches/fix-narrowing.patch --- re-0.1/debian/patches/fix-narrowing.patch 1970-01-01 00:00:00.000000000 +0000 +++ re-0.1/debian/patches/fix-narrowing.patch 2016-11-19 17:34:42.000000000 +0000 @@ -0,0 +1,26 @@ +Index: re-0.1/src/ru32cp.c +=================================================================== +--- re-0.1.orig/src/ru32cp.c ++++ re-0.1/src/ru32cp.c +@@ -80,7 +80,7 @@ Tcpi CPI[32] = + ðñòóôõö÷øùúûüýþÿ -f + */ + +-char uni_dead [128] = ++unsigned char uni_dead [128] = + {0x02,0x04,0x03,0x04,0x1A,0x20,0x53,0x04,0x1E,0x20,0x26,0x20,0x20,0x20,0x21,0x20 + ,0x88,0x00,0x30,0x20,0x09,0x04,0x39,0x20,0x0A,0x04,0x0C,0x04,0x0B,0x04,0x0F,0x04 + ,0x52,0x04,0x18,0x20,0x19,0x20,0x1C,0x20,0x1D,0x20,0x22,0x20,0x13,0x20,0x14,0x20 +Index: re-0.1/src/ru32cp.h +=================================================================== +--- re-0.1.orig/src/ru32cp.h ++++ re-0.1/src/ru32cp.h +@@ -10,7 +10,7 @@ + typedef char Tcpi[4][65]; + + extern Tcpi CPI[]; +-extern char uni_dead []; ++extern unsigned char uni_dead []; + extern char CPILetter[]; + + extern int CPIcount, diff -Nru re-0.1/debian/patches/series re-0.1/debian/patches/series --- re-0.1/debian/patches/series 2015-12-06 14:33:49.000000000 +0000 +++ re-0.1/debian/patches/series 2016-11-19 17:32:59.000000000 +0000 @@ -1,2 +1,3 @@ remove-typedef remove-typedef2 +fix-narrowing.patch