From 580eeb805aafee6ff4900639d398b0831007dcf4 Mon Sep 17 00:00:00 2001 From: Cy Schubert Date: Tue, 8 Nov 2016 20:52:59 +0000 Subject: [PATCH] Replace cupsTempFile() with tmpnam(). cupsTempFile() no longer exists. PR: 214332 --- print/xpp/Makefile | 2 +- print/xpp/files/patch-xpp.cxx | 32 +++++++++++++++++++++++++++++--- 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/print/xpp/Makefile b/print/xpp/Makefile index 3211ee638ba5..7654717aa68d 100644 --- a/print/xpp/Makefile +++ b/print/xpp/Makefile @@ -3,7 +3,7 @@ PORTNAME= xpp PORTVERSION= 1.5 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= print MASTER_SITES= SF/cups/${PORTNAME}/${PORTVERSION} diff --git a/print/xpp/files/patch-xpp.cxx b/print/xpp/files/patch-xpp.cxx index 2d1c5c875711..e972adc2464b 100644 --- a/print/xpp/files/patch-xpp.cxx +++ b/print/xpp/files/patch-xpp.cxx @@ -1,6 +1,32 @@ --- xpp.cxx.orig 2004-12-06 11:00:04.000000000 -0800 -+++ xpp.cxx 2011-12-03 22:11:00.788941301 -0800 -@@ -2500,7 +2500,7 @@ ++++ xpp.cxx 2016-11-08 12:49:34.251265000 -0800 +@@ -30,6 +30,7 @@ + * Include necessary headers... + */ + ++#include + #include "xpp.h" + + #ifndef WIN32 +@@ -48,7 +49,7 @@ + * Globals... + */ + +-char tempfile[1024]; /* Temporary file for printing from stdin */ ++static char *tempfile; /* Temporary file for printing from stdin */ + + /* + * Parse options and send files for printing. +@@ -651,7 +652,7 @@ + #endif + #endif // !WIN32 + +- temp = fopen(cupsTempFile(tempfile, sizeof(tempfile)), "w"); ++ temp = fopen((tempfile = tmpnam(NULL)), "w"); + + if (temp == NULL) + { +@@ -2500,7 +2501,7 @@ // Redraw the destination menu in the main window printerPack->parent()->redraw(); @@ -9,7 +35,7 @@ } -@@ -2674,7 +2674,7 @@ +@@ -2674,7 +2675,7 @@ // Redraw the destination menu in the main window printerPack->parent()->redraw();