Theres currently a problem with the makefile included in pdftohtml-0.38.tar.gz. you will need to edit xpdf/Makefile and remove the refrences to TextOutputDev.cc, XPDFCore.cc, TextOutputDev.o, XPDFCore.o
Logged In: YES user_id=13118
I verify this comment.
The diff follows:
diff -ur pdftohtml-0.38/xpdf/Makefile.ORIG pdftohtml-0.38/xpdf/Makefile --- pdftohtml-0.38/xpdf/Makefile.ORIG 2006-02-13 00:49:32.000000000 +0000 +++ pdftohtml-0.38/xpdf/Makefile 2006-02-13 00:50:04.000000000 +0000 @@ -70,10 +70,8 @@ $(srcdir)/Parser.cc \ $(srcdir)/SplashOutputDev.cc \ $(srcdir)/Stream.cc \ - $(srcdir)/TextOutputDev.cc \ $(srcdir)/UnicodeMap.cc \ $(srcdir)/UnicodeTypeTable.cc \ - $(srcdir)/XPDFCore.cc \ $(srcdir)/XRef.cc
#------------------------------------------------------------------------ @@ -84,8 +82,8 @@ GfxState.o GlobalParams.o JArithmeticDecoder.o JBIG2Stream.o \ JPXStream.o Lexer.o Link.o NameToCharCode.o Object.o Outline.o \ OutputDev.o Page.o Parser.o PDFDoc.o PDFDocEncoding.o PSOutputDev.o \ - PSTokenizer.o SplashOutputDev.o Stream.o TextOutputDev.o \ - UnicodeMap.o UnicodeTypeTable.o XPDFCore.o \ + PSTokenizer.o SplashOutputDev.o Stream.o \ + UnicodeMap.o UnicodeTypeTable.o \ XRef.o $(LIBPREFIX)Xpdf.a: $(XPDF_OBJS) rm -f $(LIBPREFIX)Xpdf.a
Logged In: YES user_id=1457680
What function will be lost due to this bug? There must be a reason why TextOutputDev and XPDFCore was included in the makefile right?
Logged In: NO
Excellent - saved me much time
Log in to post a comment.
Logged In: YES
user_id=13118
I verify this comment.
The diff follows:
diff -ur pdftohtml-0.38/xpdf/Makefile.ORIG
pdftohtml-0.38/xpdf/Makefile
--- pdftohtml-0.38/xpdf/Makefile.ORIG 2006-02-13
00:49:32.000000000 +0000
+++ pdftohtml-0.38/xpdf/Makefile 2006-02-13
00:50:04.000000000 +0000
@@ -70,10 +70,8 @@
$(srcdir)/Parser.cc \ $(srcdir)/SplashOutputDev.cc \ $(srcdir)/Stream.cc \ - $(srcdir)/TextOutputDev.cc \ $(srcdir)/UnicodeMap.cc \ $(srcdir)/UnicodeTypeTable.cc \ - $(srcdir)/XPDFCore.cc \ $(srcdir)/XRef.cc
#------------------------------------------------------------------------
@@ -84,8 +82,8 @@
GfxState.o GlobalParams.o JArithmeticDecoder.o
JBIG2Stream.o \ JPXStream.o Lexer.o Link.o NameToCharCode.o Object.o
Outline.o \ OutputDev.o Page.o Parser.o PDFDoc.o
PDFDocEncoding.o PSOutputDev.o \ - PSTokenizer.o SplashOutputDev.o Stream.o
TextOutputDev.o \ - UnicodeMap.o UnicodeTypeTable.o XPDFCore.o \ + PSTokenizer.o SplashOutputDev.o Stream.o \ + UnicodeMap.o UnicodeTypeTable.o \ XRef.o
$(LIBPREFIX)Xpdf.a: $(XPDF_OBJS)
rm -f $(LIBPREFIX)Xpdf.a
Logged In: YES
user_id=1457680
What function will be lost due to this bug? There must be a
reason why TextOutputDev and XPDFCore was included in the
makefile right?
Logged In: NO
Excellent - saved me much time