Subversion Repositories prayer

Compare Revisions

Ignore whitespace Rev 177 → Rev 178

/trunk/debian/changelog
1,3 → 1,9
prayer (1.3.5-dfsg1-7) unstable; urgency=low
 
* template_index_externs.patch: Fix FTBFS (Closes: #957707).
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 09 Aug 2020 21:24:13 +0200
 
prayer (1.3.5-dfsg1-6.1) unstable; urgency=medium
 
* Non-maintainer upload.
/trunk/debian/patches/series
11,3 → 11,4
no-referrer.patch
glibc-2.28.patch
glibc-2.30.patch
template_index_externs.patch
/trunk/debian/patches/template_index_externs.patch
0,0 → 1,14
Description: Add extern to struct declarations in template indices.
Bug-Debian: https://bugs.debian.org/957707
 
--- a/templates/src/build_index.pl
+++ b/templates/src/build_index.pl
@@ -23,7 +23,7 @@ print <<'EOM';
EOM
foreach $i (@templates) {
- print "struct template _template_${prefix}_${i};\n";
+ print "extern struct template _template_${prefix}_${i};\n";
}
print <<"EOM";