Sophie

Sophie

distrib > Mandriva > current > i586 > media > contrib-release-src > by-pkgid > 4a50ab359942ac4c35cceab4f713aaec > files > 28

texlive-2007-21.r6295.8mdv2010.1.src.rpm

diff -p -up ./texk/web2c/pdftexdir/pdftoepdf.cc.orig3 ./texk/web2c/pdftexdir/pdftoepdf.cc
--- ./texk/web2c/pdftexdir/pdftoepdf.cc.orig3	2009-02-04 13:36:56.000000000 -0500
+++ ./texk/web2c/pdftexdir/pdftoepdf.cc	2009-02-04 13:50:32.000000000 -0500
@@ -26,25 +26,24 @@ $Id: pdftoepdf.cc 181 2007-07-09 10:10:0
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>
-#include <aconf.h>
-#include <GString.h>
-#include <gmem.h>
-#include <gfile.h>
-#include <config.h>
 #include <assert.h>
-#include "Object.h"
-#include "Stream.h"
-#include "Array.h"
-#include "Dict.h"
-#include "XRef.h"
-#include "Catalog.h"
-#include "Link.h"
-#include "Page.h"
-#include "GfxFont.h"
-#include "PDFDoc.h"
-#include "GlobalParams.h"
-#include "Error.h"
-
+#include <dirent.h>
+#include <poppler/poppler-config.h>
+#include <poppler/goo/GooString.h>
+#include <poppler/goo/gmem.h>
+#include <poppler/goo/gfile.h>
+#include "poppler/Object.h"
+#include "poppler/Stream.h"
+#include "poppler/Array.h"
+#include "poppler/Dict.h"
+#include "poppler/XRef.h"
+#include "poppler/Link.h"
+#include "poppler/Catalog.h"
+#include "poppler/Page.h"
+#include "poppler/GfxFont.h"
+#include "poppler/PDFDoc.h"
+#include "poppler/GlobalParams.h"
+#include "poppler/Error.h"
 #include "epdf.h"
 
 // This file is mostly C and not very much C++; it's just used to interface
@@ -169,7 +168,7 @@ static PdfDocument *find_add_document(ch
     fprintf(stderr, "\npdfTeX Debug: Creating %s (%d)\n", p->file_name,
             p->occurences);
 #endif
-    GString *docName = new GString(p->file_name);
+    GooString *docName = new GooString(p->file_name);
     p->doc = new PDFDoc(docName);       // takes ownership of docName
     if (!p->doc->isOk() || !p->doc->okToPrint()) {
         pdftex_fail("xpdf: reading PDF image failed");
@@ -511,7 +510,7 @@ static void copyObject(Object * obj)
     int i, l, c;
     Ref ref;
     char *p;
-    GString *s;
+    GooString *s;
     if (obj->isBool()) {
         pdf_printf("%s", obj->getBool()? "true" : "false");
     } else if (obj->isInt()) {
@@ -675,7 +675,7 @@
     Page *page;
     int rotate;
     PDFRectangle *pagebox;
-    float pdf_version_found, pdf_version_wanted;
+    int minor_pdf_version_found;
     // initialize
     if (!isInit) {
         globalParams = new GlobalParams();
@@ -687,18 +687,14 @@
     epdf_doc = (void *) pdf_doc;
 
     // check PDF version
-    // this works only for PDF 1.x -- but since any versions of PDF newer
-    // than 1.x will not be backwards compatible to PDF 1.x, pdfTeX will
-    // then have to changed drastically anyway.
-    pdf_version_found = pdf_doc->doc->getPDFVersion();
-    pdf_version_wanted = 1 + (minor_pdf_version_wanted * 0.1);
-    if (pdf_version_found > pdf_version_wanted) {
+    minor_pdf_version_found = pdf_doc->doc->getPDFMinorVersion();
+    if (minor_pdf_version_found > minor_pdf_version_wanted) {
         char msg[] =
-            "PDF inclusion: found PDF version <%.1f>, but at most version <%.1f> allowed";
+            "PDF inclusion: found PDF minor version <%i>, but at most minor version <%i> allowed";
         if (pdf_inclusion_errorlevel > 0) {
-            pdftex_fail(msg, pdf_version_found, pdf_version_wanted);
+            pdftex_fail(msg, minor_pdf_version_found, minor_pdf_version_wanted);
         } else {
-            pdftex_warn(msg, pdf_version_found, pdf_version_wanted);
+            pdftex_warn(msg, minor_pdf_version_found, minor_pdf_version_wanted);
         }
     }
     epdf_num_pages = pdf_doc->doc->getCatalog()->getNumPages();
@@ -704,7 +703,7 @@ read_pdf_info(char *image_name, char *pa
     epdf_num_pages = pdf_doc->doc->getCatalog()->getNumPages();
     if (page_name) {
         // get page by name
-        GString name(page_name);
+        GooString name(page_name);
         LinkDest *link = pdf_doc->doc->findDest(&name);
         if (link == 0 || !link->isOk())
             pdftex_fail("PDF inclusion: invalid destination <%s>", page_name);
diff -p -up ./texk/web2c/pdftexdir/pdftosrc.cc.orig4 ./texk/web2c/pdftexdir/pdftosrc.cc
--- ./texk/web2c/pdftexdir/pdftosrc.cc.orig4	2009-02-04 13:53:10.000000000 -0500
+++ ./texk/web2c/pdftexdir/pdftosrc.cc	2009-02-04 14:42:11.000000000 -0500
@@ -25,22 +25,23 @@ $Id: pdftosrc.cc 114 2007-05-23 18:23:49
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>
-#include <aconf.h>
 #include <assert.h>
-#include <GString.h>
-#include <gmem.h>
-#include <gfile.h>
-#include "Object.h"
-#include "Stream.h"
-#include "Array.h"
-#include "Dict.h"
-#include "XRef.h"
-#include "Catalog.h"
-#include "Page.h"
-#include "GfxFont.h"
-#include "PDFDoc.h"
-#include "GlobalParams.h"
-#include "Error.h"
+
+#include <dirent.h>
+#include <poppler/goo/GooString.h>
+#include <poppler/goo/gmem.h>
+#include <poppler/goo/gfile.h>
+#include "poppler/Object.h"
+#include "poppler/Stream.h"
+#include "poppler/Array.h"
+#include "poppler/Dict.h"
+#include "poppler/XRef.h"
+#include "poppler/Catalog.h"
+#include "poppler/Page.h"
+#include "poppler/GfxFont.h"
+#include "poppler/PDFDoc.h"
+#include "poppler/GlobalParams.h"
+#include "poppler/Error.h"
 
 static XRef *xref = 0;
 
@@ -48,7 +49,7 @@ int main(int argc, char *argv[])
 {
     char *p, buf[1024];
     PDFDoc *doc;
-    GString *fileName;
+    GooString *fileName;
     Stream *s;
     Object srcStream, srcName, catalogDict;
     FILE *outfile;
@@ -62,8 +63,8 @@ int main(int argc, char *argv[])
                 "Usage: pdftosrc <PDF-file> [<stream-object-number>]\n");
         exit(1);
     }
-    fileName = new GString(argv[1]);
-    globalParams = new GlobalParams();
+    fileName = new GooString(argv[1]);
+    globalParams = new GlobalParams(NULL);
     doc = new PDFDoc(fileName);
     if (!doc->isOk()) {
         fprintf(stderr, "Invalid PDF file\n");
@@ -83,7 +84,7 @@ int main(int argc, char *argv[])
     }
     srcStream.initNull();
     if (objnum == 0) {
-        catalogDict.dictLookup("SourceObject", &srcStream);
+        catalogDict.dictLookup(UGooString("SourceObject"), &srcStream);
         if (!srcStream.isStream("SourceFile")) {
             fprintf(stderr, "No SourceObject found\n");
             exit(1);
diff -p -up ./texk/web2c/pdftexdir/pdftex.mk.orig6 ./texk/web2c/pdftexdir/pdftex.mk
--- ./texk/web2c/pdftexdir/pdftex.mk.orig6	2009-02-04 14:46:23.000000000 -0500
+++ ./texk/web2c/pdftexdir/pdftex.mk	2009-02-04 14:49:29.000000000 -0500
@@ -3,6 +3,9 @@
 # differ between releases of pdfeTeX.
 # $Id: pdftex.mk 215 2007-07-31 16:32:04Z oneiros $
 
+# use libpoppler instead of included xpdf code
+ADDLDFLAGS = -lpoppler
+
 # We build pdftex
 pdftex = @PETEX@ pdftex
 pdftexdir = pdftexdir
@@ -29,7 +32,7 @@ pdftex_o = pdftexini.o pdftex0.o pdftex1
 
 # Making pdftex
 pdftex: pdftexd.h $(pdftex_o) $(pdftexextra_o) $(pdftexlibsdep)
-	@CXXHACKLINK@ $(pdftex_o) $(pdftexextra_o) $(pdftexlibs) $(socketlibs) @CXXHACKLDLIBS@ @CXXLDEXTRA@
+	@CXXHACKLINK@ $(pdftex_o) $(pdftexextra_o) $(pdftexlibs) $(socketlibs) @CXXHACKLDLIBS@ @CXXLDEXTRA@ $(ADDLDFLAGS)
 
 # C file dependencies.
 $(pdftex_c) pdftexcoerce.h pdftexd.h: pdftex.p $(web2c_texmf) $(srcdir)/$(pdftexdir)/pdftex.defines $(srcdir)/$(pdftexdir)/pdftex.h
@@ -153,10 +156,10 @@ ttf2afm-clean:
 	rm -f ttf2afm.c macnames.c
 # 
 # pdftosrc
-pdftosrc = pdftosrc
+pdftosrc = 
 
 pdftosrc: $(pdftexdir)/pdftosrc.o $(LIBXPDFDEP)
-	@CXXHACKLINK@ $(pdftexdir)/pdftosrc.o $(LDLIBXPDF) -lm @CXXLDEXTRA@
+	@CXXHACKLINK@ $(pdftexdir)/pdftosrc.o $(LDLIBXPDF) -lm @CXXLDEXTRA@ $(ADDLDFLAGS)
 $(pdftexdir)/pdftosrc.o:$(srcdir)/$(pdftexdir)/pdftosrc.cc
 	cd $(pdftexdir) && $(MAKE) pdftosrc.o
 check: pdftosrc-check
diff -p -up ./configure.in.orig000 ./configure.in
--- ./configure.in.orig000	2009-02-09 12:40:01.000000000 -0500
+++ ./configure.in	2009-02-09 12:42:50.000000000 -0500
@@ -151,9 +151,9 @@ export needs_pnglib
 # we need zlib for dvipng, texinfo, pdf[ex]tex, xetex, dvipdfm, dvipdfmx, xdvipdfmx
 test ! -d $srcdir/$ZLIBDIR    && : ${needs_zlib=no}
 test "$with_dvipng"  != no    && : ${needs_zlib=yes}
-test "$with_pdftex"  != no    && : ${needs_zlib=yes}
-test "$with_pdfetex" != no    && : ${needs_zlib=yes}
-test "$with_xetex"   != no    && : ${needs_zlib=yes}
+test "$with_pdftex"  != no    && : ${needs_zlib=no}
+test "$with_pdfetex" != no    && : ${needs_zlib=no}
+test "$with_xetex"   != no    && : ${needs_zlib=no}
 test "$with_dvipdfm" != no    && : ${needs_zlib=yes}
 test "$with_dvipdfmx" != no   && : ${needs_zlib=yes}
 test "$with_xdvipdfmx" != no  && : ${needs_zlib=yes}
@@ -219,7 +219,7 @@ dnl We cannot use variables (e.g. $LIBPN
 sinclude(libs/libpng/libpng.ac)
 sinclude(libs/zlib/zlib.ac)
 sinclude(libs/ncurses/ncurses.ac)
-sinclude(libs/xpdf/libxpdf.ac)
+#sinclude(libs/xpdf/libxpdf.ac)
 sinclude(libs/t1lib/t1lib.ac)
 sinclude(libs/gd/gd.ac)
 sinclude(libs/freetype/freetype.ac)
diff -p -up ./configure.orig001 ./configure
--- ./configure.orig001	2009-02-09 12:46:49.000000000 -0500
+++ ./configure	2009-02-09 12:48:29.000000000 -0500
@@ -3476,9 +3476,9 @@ export needs_zlib
 
 # we need libxpdf for pdf[ex]tex, xetex
 test ! -d $srcdir/$LIBXPDFDIR && : ${needs_libxpdf=no}
-test "$with_pdftex"  != no    && : ${needs_libxpdf=yes}
-test "$with_pdfetex" != no    && : ${needs_libxpdf=yes}
-test "$with_xetex"   != no    && : ${needs_libxpdf=yes}
+test "$with_pdftex"  != no    && : ${needs_libxpdf=no}
+test "$with_pdfetex" != no    && : ${needs_libxpdf=no}
+test "$with_xetex"   != no    && : ${needs_libxpdf=no}
 : ${needs_libxpdf=no}
 export needs_libxpdf
 
diff -p -up ./texk/web2c/xetexdir/XeTeX_ext.c.orig002 ./texk/web2c/xetexdir/XeTeX_ext.c
--- ./texk/web2c/xetexdir/XeTeX_ext.c.orig002	2009-02-09 12:51:10.000000000 -0500
+++ ./texk/web2c/xetexdir/XeTeX_ext.c	2009-02-09 12:53:04.000000000 -0500
@@ -33,7 +33,7 @@ authorization from SIL International.
  */
 
 #ifdef XETEX_OTHER
-#include "xpdf/config.h"
+#include "poppler/poppler-config.h"
 #include "png.h"
 #endif
 
@@ -190,7 +190,7 @@ void initversionstring(char **versions)
 #else
 		"Compiled with fontconfig version %d.%d.%d; using %d.%d.%d\n"
 		"Compiled with libpng version %s; using %s\n"
-		"Compiled with xpdf version %s\n"
+		"Compiled with libpoppler version %s\n"
 #endif
 		;
 
diff -p -up ./texk/web2c/xetexdir/pdfimage.cpp.orig003 ./texk/web2c/xetexdir/pdfimage.cpp
--- ./texk/web2c/xetexdir/pdfimage.cpp.orig003	2009-02-09 12:57:12.000000000 -0500
+++ ./texk/web2c/xetexdir/pdfimage.cpp	2009-02-09 12:58:50.000000000 -0500
@@ -11,10 +11,23 @@
 
 #include "pdfimage.h"
 
-#include "PDFDoc.h"
-#include "Catalog.h"
-#include "Page.h"
-#include "GString.h"
+#include <dirent.h>
+#include <poppler/poppler-config.h>
+#include <poppler/goo/GooString.h>
+#include <poppler/goo/gmem.h>
+#include <poppler/goo/gfile.h>
+#include "poppler/Object.h"
+#include "poppler/Stream.h"
+#include "poppler/Array.h"
+#include "poppler/Dict.h"
+#include "poppler/XRef.h"
+#include "poppler/Link.h"
+#include "poppler/Catalog.h"
+#include "poppler/Page.h"
+#include "poppler/GfxFont.h"
+#include "poppler/PDFDoc.h"
+#include "poppler/GlobalParams.h"
+#include "poppler/Error.h"
 
 #include "XeTeX_ext.h"
 
@@ -28,7 +41,7 @@ my_fmin(double x, double y)
 int
 pdf_get_rect(char* filename, int page_num, int pdf_box, realrect* box)
 {
-	GString*	name = new GString(filename);
+	GooString*	name = new GooString(filename);
 	PDFDoc*		doc = new PDFDoc(name);
 	
 	if (!doc) {
diff -p -up ./texk/web2c/xetexdir/xetex.mk.orig004 ./texk/web2c/xetexdir/xetex.mk
--- ./texk/web2c/xetexdir/xetex.mk.orig004	2009-02-09 13:00:06.000000000 -0500
+++ ./texk/web2c/xetexdir/xetex.mk	2009-02-09 13:03:08.000000000 -0500
@@ -4,6 +4,9 @@
 
 Makefile: $(srcdir)/xetexdir/xetex.mk
 
+# use libpoppler instead of included xpdf code
+ADDLDFLAGS = -lpoppler
+
 # this should probably move to common.mk some day,
 # but need to check possible effect on other programs
 ALL_CXXFLAGS = @CXXFLAGS@
@@ -33,7 +36,7 @@ xetex = @XETEX@ xetex
 
 @XETEX_GENERIC@ XETEX_DEFINES = -DXETEX_OTHER
 
-@XETEX_GENERIC@ EXTRALIBS = @LDLIBXPDF@ @LDLIBPNG@ @LDFONTCONFIG@
+@XETEX_GENERIC@ EXTRALIBS = @LDLIBXPDF@ @LDLIBPNG@ @LDFONTCONFIG@ $(ADDLDFLAGS)
 
 @XETEX_GENERIC@ EXTRADEPS = @LIBXPDFDEP@ @LIBPNGDEP@
 
@@ -163,7 +166,7 @@ pngimage.o: $(srcdir)/xetexdir/pngimage.
 	$(compile) $(ALL_CFLAGS) $(LIBPNGCPPFLAGS) $(ZLIBCPPFLAGS) -c $< -o $@
 
 pdfimage.o: $(srcdir)/xetexdir/pdfimage.cpp $(srcdir)/xetexdir/pdfimage.h
-	$(CXX) $(ALL_CFLAGS) $(LIBXPDFCPPFLAGS) -c $< -o $@
+	$(CXX) $(ALL_CFLAGS) $(LIBXPDFCPPFLAGS) -I/usr/include/poppler -c $< -o $@
 
 XeTeX_pic.o: $(srcdir)/xetexdir/XeTeX_pic.c $(srcdir)/xetexdir/XeTeX_ext.h $(XeTeXImageHdrs)
 	$(compile) $(TECKITFLAGS) $(ALL_CFLAGS) $(XETEX_DEFINES) -c $< -o $@
diff -p -up ./texk/web2c/pdftexdir/utils.c.orig005 ./texk/web2c/pdftexdir/utils.c
--- ./texk/web2c/pdftexdir/utils.c.orig005	2009-02-09 13:04:36.000000000 -0500
+++ ./texk/web2c/pdftexdir/utils.c	2009-02-09 13:06:00.000000000 -0500
@@ -36,7 +36,7 @@ $Id: utils.c 168 2007-07-06 20:38:42Z on
 #include "zlib.h"
 #include "ptexlib.h"
 #include "png.h"
-#include "xpdf/config.h"        /* just to get the xpdf version */
+#include "poppler/poppler-config.h" /* just to get the xpdf version */
 
 #define check_nprintf(size_get, size_want) \
     if ((unsigned)(size_get) >= (unsigned)(size_want)) \
@@ -1265,7 +1265,7 @@ void initversionstring(char **versions)
     (void) asprintf(versions,
                     "Compiled with libpng %s; using libpng %s\n"
                     "Compiled with zlib %s; using zlib %s\n"
-                    "Compiled with xpdf version %s\n",
+                    "Compiled with libpoppler version %s\n",
                     PNG_LIBPNG_VER_STRING, png_libpng_ver,
                     ZLIB_VERSION, zlib_version, "0.0.0");
 }
diff -p -up ./texk/web2c/pdftexdir/pdftexextra.in.orig006 ./texk/web2c/pdftexdir/pdftexextra.in
--- ./texk/web2c/pdftexdir/pdftexextra.in.orig006	2009-02-09 13:10:35.000000000 -0500
+++ ./texk/web2c/pdftexdir/pdftexextra.in	2009-02-09 13:11:01.000000000 -0500
@@ -26,7 +26,7 @@ $Id: pdftexextra.in 114 2007-05-23 18:23
    (generated from ../lib/texmfmp.c).
 */
 
-#define BANNER "This is pdfTeX, Version 3.141592-PDFTEX-VERSION-ETEX-VERSION"
+#define BANNER "This is pdfTeX using libpoppler, Version 3.141592-PDFTEX-VERSION-ETEX-VERSION"
 #define COPYRIGHT_HOLDER "Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX)"
 #define AUTHOR NULL
 #define PROGRAM_HELP PDFTEXHELP
diff -p -up ./texk/web2c/xetexdir/pdfimage.cpp.orig008 ./texk/web2c/xetexdir/pdfimage.cpp
--- ./texk/web2c/xetexdir/pdfimage.cpp.orig008	2009-02-09 13:23:02.000000000 -0500
+++ ./texk/web2c/xetexdir/pdfimage.cpp	2009-02-09 13:23:12.000000000 -0500
@@ -100,7 +100,7 @@ int
 pdf_count_pages(char* filename)
 {
 	int			pages = 0;
-	GString*	name = new GString(filename);
+	GooString*	name = new GooString(filename);
 	PDFDoc*		doc = new PDFDoc(name);
 	
 	if (!doc) {
diff -p -up ./texk/web2c/pdftexdir/depend.mk.orig007 ./texk/web2c/pdftexdir/depend.mk
--- ./texk/web2c/pdftexdir/depend.mk.orig007	2009-02-09 13:12:51.000000000 -0500
+++ ./texk/web2c/pdftexdir/depend.mk	2009-02-09 13:20:49.000000000 -0500
@@ -1,246 +1,4 @@
-avl.o: ../../../../texk/web2c/pdftexdir/avl.c \
-  ../../../../texk/web2c/pdftexdir/avl.h
-avlstuff.o: ../../../../texk/web2c/pdftexdir/avlstuff.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
-epdf.o: ../../../../texk/web2c/pdftexdir/epdf.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
 macnames.o: ../../../../texk/web2c/pdftexdir/macnames.c
-mapfile.o: ../../../../texk/web2c/pdftexdir/mapfile.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
-pkin.o: ../../../../texk/web2c/pdftexdir/pkin.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
-subfont.o: ../../../../texk/web2c/pdftexdir/subfont.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
-tounicode.o: ../../../../texk/web2c/pdftexdir/tounicode.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
 ttf2afm.o: ../../../../texk/web2c/pdftexdir/ttf2afm.c \
   ../../../../texk/web2c/pdftexdir/../../kpathsea/kpathsea.h \
   ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
@@ -296,518 +54,3 @@ ttf2afm.o: ../../../../texk/web2c/pdftex
   ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexmac.h \
   ../../../../texk/web2c/pdftexdir/../pdftexdir/writettf.h \
   ../../../../texk/web2c/pdftexdir/macnames.c
-utils.o: ../../../../texk/web2c/pdftexdir/utils.c \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-stat.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/md5/md5.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zlib.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zconf.h \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/png.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zlib.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/pngconf.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/xpdf/xpdf/config.h
-vfpacket.o: ../../../../texk/web2c/pdftexdir/vfpacket.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
-writeenc.o: ../../../../texk/web2c/pdftexdir/writeenc.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
-writefont.o: ../../../../texk/web2c/pdftexdir/writefont.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
-writeimg.o: ../../../../texk/web2c/pdftexdir/writeimg.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h \
-  ../../../../texk/web2c/pdftexdir/image.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/png.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zlib.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zconf.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/pngconf.h
-writejbig2.o: ../../../../texk/web2c/pdftexdir/writejbig2.c \
-  ../../../../texk/web2c/pdftexdir/writejbig2.h \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h \
-  ../../../../texk/web2c/pdftexdir/image.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/png.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zlib.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zconf.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/pngconf.h
-writejpg.o: ../../../../texk/web2c/pdftexdir/writejpg.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h \
-  ../../../../texk/web2c/pdftexdir/image.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/png.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zlib.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zconf.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/pngconf.h
-writepng.o: ../../../../texk/web2c/pdftexdir/writepng.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h \
-  ../../../../texk/web2c/pdftexdir/image.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/png.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zlib.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zconf.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/libpng/pngconf.h
-writet1.o: ../../../../texk/web2c/pdftexdir/writet1.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h
-writet3.o: ../../../../texk/web2c/pdftexdir/writet3.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-glyph.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/magstep.h
-writettf.o: ../../../../texk/web2c/pdftexdir/writettf.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h \
-  ../../../../texk/web2c/pdftexdir/writettf.h \
-  ../../../../texk/web2c/pdftexdir/macnames.c
-writezip.o: ../../../../texk/web2c/pdftexdir/writezip.c \
-  ../../../../texk/web2c/pdftexdir/ptexlib.h ../pdftexd.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmp.h \
-  ../../../../texk/web2c/pdftexdir/../cpascal.h \
-  ../../../../texk/web2c/pdftexdir/../config.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/config.h \
-  ../../kpathsea/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-std.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-unistd.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/systypes.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-memstr.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-errno.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-minmax.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-limits.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-proto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/debug.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/types.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/lib.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/progname.h \
-  ../../web2c/c-auto.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-vararg.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-fopen.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/getopt.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/proginit.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-file.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/variable.h \
-  ../../../../texk/web2c/pdftexdir/../help.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-pathch.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/c-ctype.h \
-  ../../../../texk/web2c/pdftexdir/../../kpathsea/tex-make.h \
-  ../../../../texk/web2c/pdftexdir/../texmfmem.h ../pdftexcoerce.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/pdftex.h \
-  ../../../../texk/web2c/pdftexdir/../pdftexdir/ptexlib.h \
-  ../../../../texk/web2c/pdftexdir/ptexmac.h \
-  ../../../../texk/web2c/pdftexdir/avlstuff.h \
-  ../../../../texk/web2c/pdftexdir/avl.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/openbsd-compat.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/includes.h \
-  ../../../libs/xpdf/../obsdcompat/config.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/defines.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zlib.h \
-  ../../../../texk/web2c/pdftexdir/../../../libs/zlib/zconf.h
diff -p -up ./texk/web2c/pdftexdir/Makefile.in.orig000 ./texk/web2c/pdftexdir/Makefile.in
--- ./texk/web2c/pdftexdir/Makefile.in.orig000	2009-02-11 14:45:06.000000000 -0500
+++ ./texk/web2c/pdftexdir/Makefile.in	2009-02-11 14:46:26.000000000 -0500
@@ -8,7 +8,7 @@ kpse_include ../make/library.mk
 kpathsea_srcdir_parent = $(srcdir)/../..
 kpathsea_dir_parent = ../..
 
-ALL_CXXFLAGS = @CXXFLAGS@ @DEFS@ $(XXCFLAGS) -I. -I$(srcdir) -I$(kpathsea_dir_parent) -I$(kpathsea_srcdir_parent) @LIBXPDFCPPFLAGS@ -I$(LIBOBSDCOMPATDIR) -I$(LIBOBSDCOMPATDIR)/.. -I$(LIBOBSDCOMPATFSRCDIR) -I$(LIBOBSDCOMPATFSRCDIR)/..
+ALL_CXXFLAGS = @CXXFLAGS@ @DEFS@ $(XXCFLAGS) -I. -I$(srcdir) -I$(kpathsea_dir_parent) -I$(kpathsea_srcdir_parent) -I/usr/include/poppler @LIBXPDFCPPFLAGS@ -I$(LIBOBSDCOMPATDIR) -I$(LIBOBSDCOMPATDIR)/.. -I$(LIBOBSDCOMPATFSRCDIR) -I$(LIBOBSDCOMPATFSRCDIR)/..
 CXX = @CXX@
 
 .SUFFIXES: .cc .o