diff -u texlive-bin-2007.dfsg.2/debian/changelog texlive-bin-2007.dfsg.2/debian/changelog --- texlive-bin-2007.dfsg.2/debian/changelog +++ texlive-bin-2007.dfsg.2/debian/changelog @@ -1,3 +1,10 @@ +texlive-bin (2007.dfsg.2-6ubuntu2) karmic; urgency=low + + * debian/patches/ubuntu_libpoppler-0.11: fix a FTBFS because of unuseful + call to GfxFont destructor (virtual and protected) (LP: #383825) + + -- Fabrice Coutadeur Fri, 05 Jun 2009 04:17:22 +0000 + texlive-bin (2007.dfsg.2-6ubuntu1) karmic; urgency=low * Merge from Debian unstable, remaining changes: diff -u texlive-bin-2007.dfsg.2/debian/patches/series texlive-bin-2007.dfsg.2/debian/patches/series --- texlive-bin-2007.dfsg.2/debian/patches/series +++ texlive-bin-2007.dfsg.2/debian/patches/series @@ -62,0 +63 @@ +ubuntu_libpoppler-0.11 only in patch2: unchanged: --- texlive-bin-2007.dfsg.2.orig/debian/patches/ubuntu_libpoppler-0.11 +++ texlive-bin-2007.dfsg.2/debian/patches/ubuntu_libpoppler-0.11 @@ -0,0 +1,14 @@ +Fix a FTBFS with libpoppler 0.11: the destructor of GfxFont is virtual, and it doesn't make sense to call it. +Index: texlive-bin-2007.dfsg.2/build/source/texk/web2c/pdftexdir/pdftoepdf.cc +=================================================================== +--- texlive-bin-2007.dfsg.2.orig/build/source/texk/web2c/pdftexdir/pdftoepdf.cc 2009-05-29 04:39:57.000000000 +0000 ++++ texlive-bin-2007.dfsg.2/build/source/texk/web2c/pdftexdir/pdftoepdf.cc 2009-05-29 04:42:24.000000000 +0000 +@@ -633,7 +633,7 @@ + } + for (r = encodingList; r != NULL; r = n) { + n = r->next; +- delete r->font; ++// delete r->font; + delete r; + } + }