From 265ae0af6f5b50fd0bfdb39e9956a6316697f494 Mon Sep 17 00:00:00 2001 From: Jean-Louis Fuchs Date: Sun, 29 Jan 2017 16:57:30 +0100 Subject: testing/libspectre: move from unmaintained, update --- testing/libspectre/ghostscript-api.patch | 52 ++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 testing/libspectre/ghostscript-api.patch (limited to 'testing/libspectre/ghostscript-api.patch') diff --git a/testing/libspectre/ghostscript-api.patch b/testing/libspectre/ghostscript-api.patch new file mode 100644 index 0000000000..d7f907828e --- /dev/null +++ b/testing/libspectre/ghostscript-api.patch @@ -0,0 +1,52 @@ +diff -ru a/libspectre/spectre-gs.c b/libspectre/spectre-gs.c +--- a/libspectre/spectre-gs.c 2010-04-18 18:01:05.000000000 +0200 ++++ b/libspectre/spectre-gs.c 2017-01-29 15:49:14.428958824 +0100 +@@ -29,6 +29,12 @@ + #include + #include + ++/* Fix ghostscript API till a new release of libspectre ++ * e_ExecStackUnderflow -> gs_error_ExecStackUnderflow ++ * e_Fatal -> gs_error_Fatal ++ * e_NeedInput -> gs_error_NeedInput ++ */ ++ + #define BUFFER_SIZE 32768 + + struct SpectreGS { +@@ -43,12 +49,12 @@ + + if (code <= -100) { + switch (code) { +- case e_Fatal: ++ case gs_error_Fatal: + fprintf (stderr, "fatal internal error %d", code); + return TRUE; + break; + +- case e_ExecStackUnderflow: ++ case gs_error_ExecStackUnderflow: + fprintf (stderr, "stack overflow %d", code); + return TRUE; + break; +@@ -109,9 +115,9 @@ + set = _spectre_strdup_printf ("%d %d translate\n", -x, -y); + error = gsapi_run_string_continue (ghostscript_instance, set, strlen (set), + 0, &exit_code); +- error = error == e_NeedInput ? 0 : error; ++ error = error == gs_error_NeedInput ? 0 : error; + free (set); +- if (error != e_NeedInput && critic_error_code (error)) { ++ if (error != gs_error_NeedInput && critic_error_code (error)) { + fclose (fd); + return FALSE; + } +@@ -126,7 +132,7 @@ + read = fread (buf, sizeof (char), to_read, fd); + error = gsapi_run_string_continue (ghostscript_instance, + buf, read, 0, &exit_code); +- error = error == e_NeedInput ? 0 : error; ++ error = error == gs_error_NeedInput ? 0 : error; + left -= read; + } + -- cgit v1.2.3