Submitted By: Ken Moffat Date: 2008-10-22 Initial Package Version: 8.63 (well, it's needed for 8.63, obviously ex 8.61) Upstream Status: unknown Origin: fedora Description: Allows gnu-ghostscript to compile against external libjasper. To do that, you need to remove the jasper/ directory. The included version is 1.701 which is somewhat old. diff -up ghostscript-8.61/src/sjpx.c.system-jasper ghostscript-8.61/src/sjpx.c --- ghostscript-8.61/src/sjpx.c.system-jasper 2008-02-22 14:10:00.000000000 +0000 +++ ghostscript-8.61/src/sjpx.c 2008-02-22 14:10:15.000000000 +0000 @@ -34,14 +34,6 @@ static void s_jpxd_set_defaults(stream_s private_st_jpxd_state(); /* creates a gc object for our state, defined in sjpx.h */ -/* error reporting callback for the jpx library */ -static void -s_jpx_jas_error_cb(jas_error_t err, char *msg) -{ - dprintf2("jasper (code %d) %s", (int)err, msg); -} - - /* initialize the steam. this involves allocating the stream and image structures, and initializing the decoder. @@ -59,7 +51,6 @@ s_jpxd_init(stream_state * ss) } status = jas_init(); - jas_set_error_cb(s_jpx_jas_error_cb); #ifdef JPX_DEBUG /* raise the error reporting threshold from the default (0) */ jas_setdbglevel(1);