diff options
| author | Jean-Louis Fuchs <ganwell@fangorn.ch> | 2017-01-29 16:57:30 +0100 |
|---|---|---|
| committer | Timo Teräs <timo.teras@iki.fi> | 2017-01-30 16:49:42 +0000 |
| commit | 265ae0af6f5b50fd0bfdb39e9956a6316697f494 (patch) | |
| tree | 4d6f809a1e4f2d80a958726942df4a5e6851a946 /testing/libspectre/ghostscript-api.patch | |
| parent | 0fae44bb7bcf8491b490cd17055d8d5f4f7a683d (diff) | |
| download | aports-265ae0af6f5b50fd0bfdb39e9956a6316697f494.tar.bz2 aports-265ae0af6f5b50fd0bfdb39e9956a6316697f494.tar.xz | |
testing/libspectre: move from unmaintained, update
Diffstat (limited to 'testing/libspectre/ghostscript-api.patch')
| -rw-r--r-- | testing/libspectre/ghostscript-api.patch | 52 |
1 files changed, 52 insertions, 0 deletions
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 <ghostscript/iapi.h> + #include <ghostscript/ierrors.h> + ++/* 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; + } + |
