Dear maintainer, Here is the NMU diff according to DevRef 5.11.1[1][2] for RC bug: #562291. See the *.c files for important fixes. Feel free to contact if you have any questions.
Thank you for maintaining the package, Jari Aalto [1] http://www.debian.org/doc/developers-reference/pkgs.html#nmu [2] http://dep.debian.net/deps/dep1.html lsdiff(1) of changes: a/bifont.c a/debian/changelog a/funcfont.c a/kpse.c
bifont.c | 3 ++- debian/changelog | 10 ++++++++++ funcfont.c | 3 ++- kpse.c | 3 ++- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/bifont.c b/bifont.c index 1363868..fcd107b 100644 --- a/bifont.c +++ b/bifont.c @@ -7,7 +7,8 @@ #include "bifont.h" #include "jsub.h" #ifdef KPATHSEA -#include <kpathsea/c-auto.h> +extern struct str_llist_elt *value; /* Forward declaration */ +#include <kpathsea/config.h> #include <kpathsea/pathsearch.h> #include <kpathsea/tex-file.h> #endif diff --git a/debian/changelog b/debian/changelog index 5463084..9549dae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +dvi2dvi (2.0alpha-9.1) unstable; urgency=low + + [Jari Aalto] + * Non-maintainer upload. + * bifont.c, funcfont.c, kpse.c + - Fix include error: expected specifier-qualifier-list + before str_llist_type (RC bug FTBFS serious; Closes: #562291). + + -- Jari Aalto <[email protected]> Fri, 26 Mar 2010 20:40:59 +0200 + dvi2dvi (2.0alpha-9) unstable; urgency=low * Bumped to Standards-Version: 3.7.3. diff --git a/funcfont.c b/funcfont.c index 71384c4..f212676 100644 --- a/funcfont.c +++ b/funcfont.c @@ -6,7 +6,8 @@ #include "global.h" #include "funcfont.h" #ifdef KPATHSEA -#include <kpathsea/c-auto.h> +extern struct str_llist_elt *value; /* Forward declaration */ +#include <kpathsea/config.h> #include <kpathsea/pathsearch.h> #include <kpathsea/tex-file.h> #endif diff --git a/kpse.c b/kpse.c index bab9805..e8f7a5f 100644 --- a/kpse.c +++ b/kpse.c @@ -1,7 +1,8 @@ #ifdef KPATHSEA #include "defs.h" -#include <kpathsea/c-auto.h> +extern struct str_llist_elt *value; /* Forward declaration */ +#include <kpathsea/config.h> #include <kpathsea/pathsearch.h> #include <kpathsea/tex-file.h> #include <kpathsea/tex-glyph.h>

