Blame SOURCES/0001-foomatic-rip-Changed-Ghostscript-call-to-count-pages.patch

706f84
From 297cc2decc53e0b08eb03049fce375db33df2131 Mon Sep 17 00:00:00 2001
706f84
From: Till Kamppeter <till.kamppeter@gmail.com>
706f84
Date: Sun, 7 Apr 2019 16:34:16 +0200
706f84
Subject: [PATCH] foomatic-rip: Changed Ghostscript call to count pages in a
706f84
 PDF file so that it works with GS 9.27.
706f84
706f84
diff --git a/filter/foomatic-rip/pdf.c b/filter/foomatic-rip/pdf.c
706f84
index 9c3979bb..bc739bd8 100644
706f84
--- a/filter/foomatic-rip/pdf.c
706f84
+++ b/filter/foomatic-rip/pdf.c
706f84
@@ -47,9 +47,8 @@ static int pdf_count_pages(const char *filename)
706f84
     size_t bytes;
706f84
 
706f84
     snprintf(gscommand, CMDLINE_MAX, "%s -dNODISPLAY -q -c "
706f84
-	     "'/pdffile (%s) (r) file def pdfdict begin pdffile pdfopen begin "
706f84
-	     "(PageCount: ) print pdfpagecount == flush currentdict pdfclose "
706f84
-	     "end end quit'",
706f84
+	     "'/pdffile (%s) (r) file runpdfbegin (PageCount: ) print "
706f84
+	     "pdfpagecount = quit'",
706f84
 	     gspath, filename);
706f84
 
706f84
     FILE *pd = popen(gscommand, "r");