openbsd-ports/print/epdfview/patches/patch-src_PrintPter_cxx

77 lines
2.3 KiB
Plaintext

$OpenBSD: patch-src_PrintPter_cxx,v 1.1 2012/08/04 14:40:08 ajacoutot Exp $
https://bugzilla.redhat.com/show_bug.cgi?id=841880
--- src/PrintPter.cxx.orig Sat May 28 12:25:01 2011
+++ src/PrintPter.cxx Sat Jul 28 14:31:48 2012
@@ -22,6 +22,40 @@
#include <locale.h>
#include "epdfview.h"
+#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5)
+#define HAVE_CUPS_1_6 1
+#endif
+
+#ifndef HAVE_CUPS_1_6
+inline int ippGetInteger (ipp_attribute_t *attr, int element)
+{
+ return (attr->values[element].integer);
+}
+
+inline const char * ippGetString (ipp_attribute_t *attr,
+ int element,
+ const char **language /*UNUSED*/)
+{
+ return (attr->values[element].string.text);
+}
+
+inline int ippSetOperation (ipp_t *ipp, ipp_op_t op)
+{
+ if (!ipp)
+ return (0);
+ ipp->request.op.operation_id = op;
+ return (1);
+}
+
+inline int ippSetRequestId (ipp_t *ipp, int request_id)
+{
+ if (!ipp)
+ return (0);
+ ipp->request.any.request_id = request_id;
+ return (1);
+}
+#endif
+
using namespace ePDFView;
// Structures
@@ -380,8 +414,8 @@ PrintPter::getPrinterAttributes (const gchar *printerN
ipp_t *request = ippNew ();
- request->request.op.operation_id = IPP_GET_PRINTER_ATTRIBUTES;
- request->request.op.request_id = 1;
+ ippSetOperation(request, IPP_GET_PRINTER_ATTRIBUTES);
+ ippSetRequestId(request, 1);
ippAddString (request, IPP_TAG_OPERATION, IPP_TAG_CHARSET,
"attributes-charset", NULL, "utf-8");
@@ -403,7 +437,7 @@ PrintPter::getPrinterAttributes (const gchar *printerN
ippFindAttribute (answer, "printer-state", IPP_TAG_ZERO);
if ( NULL != state )
{
- switch (state->values[0].integer)
+ switch (ippGetInteger (state, 0))
{
case IPP_PRINTER_IDLE:
attributes->state = g_strdup (_("Idle"));
@@ -425,7 +459,7 @@ PrintPter::getPrinterAttributes (const gchar *printerN
ippFindAttribute (answer, "printer-location", IPP_TAG_ZERO);
if ( NULL != location )
{
- attributes->location = g_strdup (location->values[0].string.text);
+ attributes->location = g_strdup (ippGetString (location, 0, NULL));
}
ippDelete (answer);